:root {
    /* PALETA PREMIUM */
    --primary: #0056b3;
    --primary-hover: #003d7a;
    --accent: #FF6A00; 
    --accent-hover: #E65C00;
    --white: #ffffff;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    
    /* CONFIGURACIÓN VISUAL */
    --logo-height: 85px; 
    --shadow-header: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-search: 0 30px 60px rgba(0,0,0,0.25);
    --radius-pill: 100px;
    
    /* ANIMACIONES */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- HEADER --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-header);
}

.logo-premium {
    height: var(--logo-height);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.logo-premium:hover { transform: scale(1.08); }

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -5px; left: 0;
    background: var(--primary);
    transition: var(--transition-smooth);
}
.nav-link:hover::after { width: 100%; }

.btn-presupuesto {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-presupuesto:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

/* --- HERO --- */
.hero {
    min-height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.2), rgba(0,0,0,0.1)), 
                url('../images/heroinicio.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    letter-spacing: -2px;
}

.hero-text h1 span {
    color: var(--accent);
    display: block;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(255, 106, 0, 0.6), 0 5px 15px rgba(0,0,0,0.5);
}

/* ARREGLO TEXTO CARCAIXENT (TAGLINE PREMIUM) */
.tagline-premium {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    color: white !important;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 60px; /* Espacio para que no se pegue al buscador */
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- BUSCADOR --- */
.search-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-search);
    transition: var(--transition-smooth);
    position: relative; /* Para posicionar la tarjeta de resultado */
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 10px 25px;
    flex: 1;
    gap: 15px;
    border-radius: var(--radius-pill);
    transition: var(--transition-smooth);
    text-align: left;
    cursor: pointer;
}

.search-item:hover { background: #f1f5f9; }

.icon-svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    stroke-width: 2.5px;
}

.search-info label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SELECT Y CALENDARIO */
.select-styled {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    padding: 5px 0;
}

.input-date-custom {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    width: 100%;
    cursor: pointer;
}

.input-date-custom::-webkit-calendar-picker-indicator {
    background-color: var(--primary);
    padding: 5px;
    border-radius: 6px;
    filter: invert(1);
    cursor: pointer;
}

.v-divider {
    width: 1px;
    height: 45px;
    background: #e2e8f0;
}

/* DESPLEGABLE DE OPCIONES */
.select-options {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: hidden;
    margin-top: 15px;
    border: 1px solid #eee;
}

.select-options.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.option-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
    color: var(--text-main);
}

.option-item:hover { background: #f0f7ff; color: var(--primary); }

/* --- BOTÓN BUSCAR --- */
.btn-search-main {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.3);
}

.btn-search-main:hover {
    transform: scale(1.05);
    background: var(--accent-hover);
}

/* --- TARJETA DE RESULTADO SIMULADO --- */
.trip-card-popup {
    display: none;
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    z-index: 2000;
    overflow: hidden;
}

.trip-card-popup.active {
    display: block;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trip-card-popup img { width: 100%; height: 180px; object-fit: cover; }
.card-details { padding: 20px; text-align: left; }

.badge { 
    background: #e6fcf5; color: #0ca678; 
    padding: 4px 12px; border-radius: 20px; 
    font-size: 12px; font-weight: 700; 
}

#card-title { font-size: 1.5rem; margin: 10px 0 5px; color: var(--text-main); }
#card-date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }

.card-footer { 
    display: flex; justify-content: space-between; 
    align-items: center; border-top: 1px solid #eee; padding-top: 15px; 
}

.price { font-size: 1.4rem; font-weight: 900; color: var(--primary); }

.btn-ver { 
    background: var(--accent); color: white; border: none; 
    padding: 8px 15px; border-radius: 8px; cursor: pointer; font-weight: 600;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%, 30px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* RESPONSIVO */
@media (max-width: 992px) {
    .search-bar { flex-direction: column; }
    .search-wrapper { border-radius: 25px; padding: 20px; }
    .v-divider { display: none; }
    .search-item { width: 100%; }
    .btn-search-main { width: 100%; justify-content: center; margin-top: 10px; }
    .hero-text h1 { font-size: 2.8rem; }
}
/* Mejora visual de los inputs de fecha */
.input-date-custom {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 8px;
    transition: var(--transition-smooth);
    background: #f8fafc !important;
}

.input-date-custom:focus {
    border-color: var(--primary);
    background: white !important;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

/* Personalización del icono del calendario (Webkit) */
.input-date-custom::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%230056b3" viewBox="0 0 16 16"><path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"/></svg>');
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    cursor: pointer;
    filter: none; /* Quitamos el invert anterior para usar el color corporativo */
}
/* Cuando el destino está elegido */
.selected-text {
    color: var(--primary) !important;
    font-weight: 800;
}

/* Estilo para que el calendario Flatpickr coincida con el diseño premium */
.flatpickr-calendar {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border: 1px solid #eee !important;
}

.flatpickr-day.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

/* Fix para que los inputs de fecha no se vean como cajas de texto feas */
.input-date-custom {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    outline: none;
}

/* Animación de entrada de la tarjeta */
.trip-card-popup.active {
    display: block;
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destinos-grid {
    padding: 100px 5%;
    background: #fdfdfd;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px auto;
    border-radius: 2px;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card-dest {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    border: 1px solid #f0f0f0;
}

.card-dest:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-dest:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.card-body {
    padding: 25px;
}

.btn-card {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    border: 2px solid var(--primary);
    padding: 10px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: var(--primary);
    color: white;
}

.btn-card-exp {
    display: inline-block;
    margin-top: 20px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-card-exp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-card-exp:hover {
    color: white;
}

.btn-card-exp:hover::before {
    left: 0;
}

/* Animación de entrada para toda la sección */
.destinos-grid {
    animation: fadeInSection 1s ease-out;
}

@keyframes fadeInSection {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fix de interactividad */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* Evita bloqueos */
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto; /* Activa clics solo cuando se ve */
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 30px;
    padding: 35px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.modal-overlay.active .modal-content { transform: translateY(0); }

/* La X de cerrar ahora siempre arriba y visible */
.close-modal {
    position: absolute;
    top: 10px; right: 10px;
    background: #ff4757; color: white; border: none;
    width: 35px; height: 35px; border-radius: 50%;
    font-size: 22px; cursor: pointer; z-index: 1001;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.close-modal:hover { transform: rotate(90deg); background: #e84118; }

.modal-features {
    display: flex; flex-direction: column; gap: 12px;
    margin-top: 20px; max-height: 300px;
    overflow-y: auto; padding: 5px;
}

/* Mini Cards Interactivas */
.mini-card {
    background: #f8fafc; border: 2px solid #e2e8f0;
    padding: 15px; border-radius: 15px; text-align: left;
    transition: all 0.3s ease; cursor: pointer;
}
.mini-card:hover { border-color: #0056b3; background: white; transform: translateX(5px); }

/* Animación de Botón "Enviado" */
.btn-presupuesto-modal {
    margin-top: 30px; width: 100%;
    background: #0056b3; color: white; border: none;
    padding: 18px; border-radius: 15px;
    font-weight: 800; cursor: pointer; transition: all 0.4s ease;
}
.btn-presupuesto-modal.enviado {
    background: #2ed573 !important;
}
/* Estilo para la tarjeta seleccionada */
.mini-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 15px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.mini-card:hover {
    border-color: #0056b3;
    background: #f0f7ff;
}

.mini-card.selected {
    border-color: #0056b3;
    background: #e0efff;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,86,179,0.1);
}

/* Check de selección */
.mini-card.selected::after {
    content: 'L';
    font-family: Arial;
    transform: scaleX(-1) rotate(-35deg);
    position: absolute;
    top: 15px;
    right: 15px;
    color: #0056b3;
    font-weight: bold;
}

.mini-card h4 { margin: 0; color: #1e293b; font-size: 1.1rem; }
.mini-card p { margin: 5px 0; font-size: 0.9rem; color: #64748b; }
.mini-card .details { font-size: 0.8rem; color: #0056b3; font-weight: 600; }

/* Botón deshabilitado hasta que elijas algo */
.btn-presupuesto-modal:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.trust-section {
    padding: 80px 5%;
    background: #fdfdfd;
}

.trust-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: #e0efff;
    color: #0056b3;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 5px;
}

/* El efecto visual de la foto */
.image-blob {
    width: 100%;
    aspect-ratio: 1;
    background: #0056b3;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Forma orgánica */
    overflow: hidden;
    position: relative;
    transition: 0.5s ease-in-out;
}

.image-blob:hover {
    border-radius: 50%;
}

.image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.counter {
    font-variant-numeric: tabular-nums; /* Evita que los números "bailen" al cambiar de ancho */
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInCounter 0.5s ease forwards;
}

@keyframes fadeInCounter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reviews-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #fdfdfd 0%, #f0f7ff 100%);
    text-align: center;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-top: 10px;
}

.reviews-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Oculta scroll en Firefox */
}

.reviews-container::-webkit-scrollbar { display: none; } /* Oculta scroll en Chrome/Safari */

.review-card {
    min-width: 350px;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.05);
    scroll-snap-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: #0056b3;
}

.quote-icon {
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: #0056b3;
    opacity: 0.1;
    font-family: serif;
}

.review-card p {
    font-style: italic;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.rev-info strong {
    display: block;
    color: #1e293b;
    font-size: 1.1rem;
}

.rev-info span {
    color: #0056b3;
    font-size: 0.85rem;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px; /* Para efecto 3D */
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 179, 0.1);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover {
    transform: rotateY(5deg) rotateX(5deg) translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 86, 179, 0.1);
}

.g-logo {
    width: 25px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.btn-google-write {
    margin-top: 50px;
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-google-write:hover {
    background: #4285F4; /* Azul Google */
    color: white;
    border-color: #4285F4;
}

.editorial-value {
    padding: 120px 5%;
    background: #ffffff;
    overflow: hidden; /* Seguridad total contra el scroll lateral */
}

.editorial-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Hacemos la columna de la imagen un poco más estrecha */
    gap: 60px;
    align-items: center;
    max-width: 1100px; /* Estrechamos un poco el contenedor general */
    margin: 0 auto;
}

/* La imagen con efecto revista */
.img-wrapper-main {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.img-wrapper-main img {
    width: 100%;
    height: 450px; /* ANTES era 700px. Aquí es donde controlas el tamaño real */
    object-fit: cover;
    border-radius: 30px; /* Un poco más suave */
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-wrapper-main:hover img {
    transform: scale(1.08);
}

.floating-card-info {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard 4s ease-in-out infinite;
    font-size: 0.85rem;
}

@keyframes floatCard {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

/* Tipografía impactante */
.eyebrow {
    color: #0056b3;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.editorial-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 30px;
}

.highlight {
    color: #0056b3;
    font-style: italic;
}

.luxury-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.luxury-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #475569;
}

.luxury-list span {
    color: #0056b3;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Botón Minimalista pero Pro */
.btn-editorial {
    background: #1e293b;
    color: white;
    border: none;
    padding: 22px 45px;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-editorial:hover {
    background: #0056b3;
    padding-right: 55px;
}

/* Responsive para que no rompa nada */
@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .img-wrapper-main img { height: 400px; }
    .editorial-text h2 { font-size: 2.5rem; }
}
.btn-editorial.loading {
    background: #475569;
    pointer-events: none;
    opacity: 0.8;
}

.btn-editorial.success {
    background: #22c55e; /* Verde éxito */
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading .icon-arrow {
    animation: spin 1s linear infinite;
}

.pre-footer-cta {
    background: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.9)), 
                url('https://images.unsplash.com/photo-1436491865332-7a61a109c0f3?auto=format&fit=crop&w=1500');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto Parallax sutil */
    padding: 100px 5%;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary-rsw {
    background: #0056b3;
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary-rsw:hover {
    background: #ffffff;
    color: #0056b3;
    transform: scale(1.05);
}

.main-footer {
    background: #111827;
    color: #9ca3af;
    padding: 80px 5% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo { width: 150px; margin-bottom: 20px; filter: brightness(0) invert(1); }

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; }
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    line-height: 2.5;
    transition: 0.3s;
}

.footer-links a:hover { color: #ffffff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.rsw-signature span {
    color: white;
    font-weight: 700;
}
