/* ============================================================
   RLA VACACIONES - KIDS (EDICIÓN GUATEMALA)
   ============================================================ */

:root {
    --vaca-blue: #0284c7;
    --vaca-orange: #F97316;
    --vaca-yellow: #fde047;
}

/* 1. HERO - ALINEACIÓN SIN ESPACIOS EXTRA */
.vacaciones-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.vacaciones-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px !important; /* Ajuste directo al borde del nav */
    padding-right: 15px;
    width: 100%;
}

.vacaciones-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(2, 132, 199, 0.95) 0%, rgba(2, 132, 199, 0.7) 40%, rgba(2, 132, 199, 0) 100%);
    z-index: 1;
}

.hero-text-compact {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.vacaciones-tag {
    background: var(--vaca-yellow);
    color: #0c4a6e;
    padding: 6px 15px;
    font-weight: 900;
    border-radius: 4px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text-compact h1 {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-text-compact h1 span { color: var(--vaca-yellow); }

.hero-text-compact p {
    color: white;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-vacaciones-main {
    background: var(--vaca-orange);
    color: white;
    padding: 20px 40px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 6px 0 #c2410c;
    transition: 0.2s;
}

.btn-vacaciones-main:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #c2410c;
}

/* 2. GRID INFO */
.vacaciones-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.info-item {
    background: #f0f9ff;
    padding: 40px 20px;
    border-radius: 15px;
}

.info-item i { font-size: 2.5rem; color: var(--vaca-blue); margin-bottom: 20px; }
.info-item h3 { font-size: 1.5rem; color: #0c4a6e; margin-bottom: 10px; font-weight: 800; }

/* 3. FORMULARIO */
.vacaciones-contact { background: #f8fafc; }
.vacaciones-form-container {
    background: white;
    max-width: 850px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { color: var(--vaca-blue); font-size: 2.2rem; font-weight: 900; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { font-weight: 800; color: #64748b; font-size: 0.8rem; margin-bottom: 8px; display: block; }

.form-rla-vacaciones input, .form-rla-vacaciones select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
}

.btn-vacaciones-submit {
    width: 100%;
    padding: 22px;
    background: var(--vaca-blue);
    color: white;
    font-weight: 900;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vacaciones-info-grid, .form-row { grid-template-columns: 1fr; }
    .hero-text-compact { text-align: center; }
}