:root {
    --beige-light: #FCF2DC;
    --beige-dark: #F4DFB9;
    --verde-tic: #87B867;
    --verde-hover: #76a35a;
    --azul-tic: #2B3E4C;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--beige-light);
    color: var(--azul-tic);
    padding-bottom: 2rem;
}

/* Navbar */
.navbar {
    background-color: var(--azul-tic);
    padding: 1rem 0;
    margin-bottom: 2rem;
}
.navbar-brand {
    color: var(--beige-light) !important;
    font-weight: 700;
    font-size: 1.5rem;
}
.nav-link-btn {
    color: var(--beige-light) !important;
    margin: 0 5px;
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 8px;
}
.nav-link-btn:hover {
    border-color: var(--verde-tic);
    color: var(--verde-tic) !important;
}

/* Secciones */
.section-container {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-block {
    background: linear-gradient(135deg, #ffffff 0%, var(--beige-dark) 100%);
    border-bottom: 6px solid var(--verde-tic);
}
.subtitle-min {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--verde-tic);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.section-header-title {
    background-color: #2B3E4C !important;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px 12px 0 0;
    margin-bottom: 2rem;
    text-align: center;
}

.section-header-title h2 {
    color: white !important;
}


/* Botones */
.btn-custom-primary {
    background-color: var(--azul-tic);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.btn-custom-outline {
    background-color: transparent;
    color: var(--azul-tic);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--azul-tic);
    text-decoration: none;
    display: inline-block;
}
.btn-custom-green {
    background-color: var(--verde-tic);
    color: white;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}
.btn-custom-green:hover { 
    background-color: var(--verde-hover); 
    color: white !important;
}

/* Tarjetas */
.info-card {
    background: var(--beige-light);
    padding: 25px;
    border-radius: 20px;
    height: 100%;
    border-top: 4px solid var(--verde-tic);
}

.custom-tag {
    display: inline-block;
    background: var(--beige-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 4px;
    font-weight: 600;
    border: 1px solid var(--beige-dark);
}

/* Cronograma */
.schedule-item { 
    border-left: 3px solid var(--verde-tic); 
    padding-left: 20px; 
    margin-bottom: 25px; 
    position: relative; 
}
.date-highlight { 
    color: var(--verde-tic); 
    font-weight: 700; 
    display: block; 
}

.tip-box { 
    background-color: #fdf2d0; 
    border: 1px dashed #d4c18a; 
    border-radius: 15px; 
    padding: 20px; 
    margin-top: 25px;
}

/* Inputs */
.form-control { 
    border-radius: 12px; 
    padding: 12px; 
    border: 1px solid var(--beige-dark); 
    background-color: var(--beige-light); 
    margin-bottom: 15px; 
}



#formMessage {
    display: none;
    padding: 10px;
    border-radius: 12px;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Accordion */

/* Item de cada sede */
.accordion-item {
    border: none;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
}

/* Pestaña cerrada */
.accordion-button {
    background-color: #2B3E4C;
    color: var(--beige-light);
    font-weight: 600;
    padding: 1rem 1.25rem;
    box-shadow: none !important;
}

/* Pestaña abierta */
.accordion-button:not(.collapsed) {
    background-color: var(--azul-tic);
    color: var(--beige-light);
    box-shadow: none;
    border-left: 5px solid var(--verde-tic);
}

/* Quitar borde azul bootstrap al hacer foco */
.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* Cuerpo */
.accordion-body {
    background-color: #ffffff;
    color: var(--azul-tic);
    border-top: 2px solid var(--verde-tic);
}

/* Flecha botón accordion */
.accordion-button::after {
    filter: brightness(0) invert(1);
}



/* Imagenes */

.imagen-colonia {
    max-height: 250px;
    width: auto;
}

/* Responsive */

@media (max-width: 768px) {
    /* Hero */
    .hero-title { font-size: 2.2rem; }
    .hero-description{ font-size: 1rem;}

    /* Secciones */
    .section-container { padding: 40px 20px; }


    /* Navbar */
    .navbar-brand {
        font-size: 1.1rem;
    }
    .navbar-toggler {
        background-color: var(--verde-tic);
        border: none;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Cabeceras */
    .section-header-title {
        padding: 16px;
    }

    /* Botones */
    .btn-custom-primary, .btn-custom-outline {
        padding: 10px 20px;
        font-size: .95;
    }

    /* Imagenes */
    .imagen-colonia {
        width: 100%;
        height: auto;
        border-radius: 16px;
        margin-bottom: 1rem;
    }

    /* Accordion */
    .accordion-button {
        font-size: .95rem;
    }

    p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Tags */
    .tags-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .custom-tag {
        width: 100%;
        text-align: center;
    }
}