/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1E4A1E;
    font-family: 'Arial', sans-serif;
    color: #FFFFFF;
    line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
    background-color: #F3A94D;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.header .menu-toggle {
    font-size: 24px;
    cursor: pointer;
}

.header h1 {
    font-size: 22px;
    font-weight: bold;
    color: white;
    text-align: center;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 20px;
    min-height: calc(100vh - 120px);
    background: linear-gradient(to bottom, #1E4A1E, #4A7C4A);
    overflow-y: auto;
}

/* ===== BADGE PUEBLO MÁGICO ===== */
.badge-pueblo {
    background-color: #FFC700;
    color: #1E4A1E;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 80%;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ===== TÍTULOS ===== */
.title-main {
    font-size: 28px;
    font-weight: bold;
    color: #FFC700;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subtitle {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    margin: 10px 0 30px;
    color: #F9F3E6;
}

.section-title {
    font-size: 26px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin: 30px 0 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ===== INFO CARD ===== */
.info-card {
    background-color: #4A7C4A;
    padding: 20px;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.info-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    margin: 8px 0;
    font-size: 16px;
}

/* ===== BOTONES ===== */
.btn-yellow {
    display: block;
    width: 90%;
    margin: 20px auto;
    padding: 15px 20px;
    background-color: #FFC700;
    color: #1E4A1E;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.btn-yellow:hover {
    transform: scale(1.02);
    background-color: #FFD700;
}

.btn-green {
    display: block;
    width: 90%;
    margin: 10px auto 10px;
    padding: 15px 20px;
    background-color: #6ECB63;
    color: #1E4A1E;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.btn-green:hover {
    transform: scale(1.02);
    background-color: #5EBD5E;
}

.btn-dark {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 15px 20px;
    background-color: #2E8B57;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.btn-dark:hover {
    transform: scale(1.02);
    background-color: #227B47;
}

.btn-outline {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 15px 20px;
    background: transparent;
    color: #FFC700;
    border: 2px solid #FFC700;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255,199,0,0.1);
    transform: scale(1.02);
}

.btn-light {
    display: block;
    width: 90%;
    margin: 15px auto;
    padding: 15px 20px;
    background-color: #F9F3E6;
    color: #1E4A1E;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 30px;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.btn-light:hover {
    transform: scale(1.02);
    background-color: #F0E6D5;
}

/* ===== PROVEEDORES ===== */
.provider-card {
    background-color: #F9F3E6;
    color: #1E4A1E;
    border-radius: 15px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.provider-icon {
    width: 50px;
    height: 50px;
    background-color: #F3A94D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    color: #1E4A1E;
}

.provider-info h3 {
    font-size: 18px;
    color: #8B4513;
    margin-bottom: 5px;
}

.provider-info p {
    font-size: 14px;
    margin: 3px 0;
}

.provider-info a {
    color: #2E8B57;
    text-decoration: none;
    font-weight: bold;
}

.provider-info a:hover {
    text-decoration: underline;
}

/* ===== CONTACTO ===== */
.contact-card {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.icon-circle {
    background-color: #F3A94D;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1E4A1E;
}

.contact-text strong {
    color: #8B4513;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.contact-text p {
    font-size: 14px;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.btn-call {
    background-color: #2E8B57;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-call:hover {
    background-color: #227B47;
}

.btn-whatsapp {
    background: linear-gradient(to right, #25D366, #00BFA5);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-whatsapp:hover {
    background: linear-gradient(to right, #1BB250, #00A896);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1E4A1E;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #CCCCCC;
    margin-top: 20px;
    border-top: 1px solid #336633;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header h1 {
        font-size: 18px;
    }

    .title-main {
        font-size: 24px;
    }

    .info-card {
        padding: 15px;
    }

    .provider-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .provider-info h3 {
        font-size: 16px;
    }

    .btn-yellow, .btn-green, .btn-dark, .btn-outline, .btn-light {
        width: 95%;
        font-size: 16px;
        padding: 12px 15px;
    }

    .action-buttons {
        flex-direction: column;
        width: 90%;
    }

    .btn-call, .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
}
/* ===== MENÚ DESPLEGABLE ===== */
.navbar {
    background-color: #4A7C4A;
    padding: 10px 0;
    display: none; /* oculto por defecto */
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.navbar a {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 12px;
    background-color: #6ECB63;
    color: #1E4A1E;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s;
}

.navbar a:hover {
    background-color: #5EBD5E;
    transform: scale(1.02);
}