/* referencias/style/itinerario.css */
:root {
    --primary-blue: #1a234e;
    --whatsapp-green: #25D366;
    --light-bg: #f4f7f6;
    --text-dark: #333;
    --accent-gold: #c5a059;
}

/* Banner Superior CTA */
.promo-banner {
    background: var(--primary-blue);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contenedor Principal */
.origin-selection-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 40px;
}

.itinerary-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.itinerary-header p.subtitulo {
    font-size: 1.1rem;
    color: #666;
    margin-top: 5px;
}

.price-display {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-top: 10px;
}

.price-display small {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
}

/* Grid de 2 Columnas */
.itinerary-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: start;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.info-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
}

/* Timeline del Itinerario */
.day-box {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-blue);
}

.day-box b {
    color: var(--primary-blue);
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.day-box p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Listas de Inclusión / Exclusión */
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #374151;
}

.check-list i.include-icon {
    color: var(--whatsapp-green);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.check-list i.exclude-icon {
    color: #ef4444;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Botón flotante/directo a WhatsApp */
.btn-ws {
    background: var(--whatsapp-green);
    color: white;
    padding: 14px 25px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.3s ease;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.btn-ws:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Galería de Fotos Opcional */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .itinerary-grid {
        grid-template-columns: 1fr;
    }
    .itinerary-header h2 {
        font-size: 1.8rem;
    }
}