/* Estilos para widgets de viajes organizados */

.widgets-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
}

.widget-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
}

.widget-container iframe {
    border: none;
    border-radius: 8px;
    width: 100%;
    display: block;
}

.widget-full-width {
    width: 100%;
}

/* Estilos para secciones de widgets en el layout principal */
.widget-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.widget-section--first {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.widget-section--second {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.widget-section--third {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

.widget-section .widget-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0;
}

.widget-section .widget-container iframe {
    border-radius: 12px;
    width: 100%;
    display: block;
}

/* Estilos para widgets en vista detallada */
.viajes-organizados-section .widget-container {
    margin-bottom: 1.5rem;
}

.viaje-widgets .widget-container {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .widgets-section {
        padding: 1rem 0;
    }

    .widget-container {
        margin-bottom: 0.5rem;
    }

    .destination-details .trip-widgets {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
}

/* Animaciones suaves */
.widget-container {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.widget-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Estilos para títulos de sección de widgets */
.widgets-section h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Estilos para contenedores de widgets en tarjetas */
.trip-widgets h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Ajustes para iframes de booking */
.widget-container iframe[src*="booking.nattivusviajes.com"] {
    min-height: 420px;
}

/* Estilos para widgets vacíos */
.widget-container:empty {
    display: none;
}
