: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;
}

/* 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; 
}

@media (max-width: 768px) { 
    .hero-title { font-size: 2.5rem; } 
    .section-container { padding: 40px 20px; } 
}

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