/* =========================================
   1. RESET Y CONFIGURACIÓN GLOBAL
========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body { 
    font-family: 'Cabin', sans-serif; 
    background: #ffffff; 
    color: #333; 
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 90px; 
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Lora', serif; 
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. NAVBAR ULTRA PREMIUM (Cristal Fijo)
========================================= */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 10px 0;
}

.navbar-brand img.logo {
    height: 70px; width: auto; display: block;
    mix-blend-mode: multiply; filter: contrast(1.1);
}

.navbar-nav { display: flex; list-style: none; gap: 40px; }
.navbar-nav li a {
    text-decoration: none; font-weight: 700; font-size: 0.9rem; color: #333;
    text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; padding: 5px 0;
}
.navbar-nav li a:hover { color: #cc0000; }

/* =========================================
   3. HERO SECTION
========================================= */
.hero-section {
    height: calc(100vh - 90px); background-size: cover; background-position: center;
    background-attachment: fixed; display: flex; justify-content: center; align-items: center;
    text-align: center; position: relative;
}
.hero-section::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)); z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 0 20px; animation: fadeIn 1.5s ease-out; }
.hero-content h1 { font-size: 4.5rem; color: #ffffff; letter-spacing: 3px; margin-bottom: 15px; text-shadow: 0 5px 20px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.5rem; color: #e0e0e0; font-weight: 300; letter-spacing: 1px; }

/* =========================================
   4. NOSOTROS (Look Editorial de Lujo)
========================================= */
.about-section {
    padding: 120px 20px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Marca de agua de comillas */
.about-section::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18rem;
    color: rgba(0,0,0,0.03);
    font-family: 'Lora', serif;
    line-height: 1;
    z-index: 0;
}

.relative-z { position: relative; z-index: 2; }

.about-section h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 50px;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.about-section p:first-of-type {
    font-size: 1.4rem; color: #222; font-weight: 400; line-height: 1.8;
    max-width: 800px; margin: 0 auto 30px auto;
}

.about-section p:last-of-type {
    font-size: 1.15rem; color: #666; font-style: italic; line-height: 1.8;
    max-width: 650px; margin: 0 auto;
}
.about-section p:last-of-type::before {
    content: "— "; color: #cc0000; font-weight: 900;
}

/* =========================================
   5. EL GRID Y TUS CARDS (TTX PRO)
========================================= */
/* Sección Blanca para Regiones */
.top-destinos-section { padding: 80px 0; background: #ffffff; }
.top-destinos-section h2 { font-size: 2.5rem; margin-bottom: 40px; color: #111; position: relative; display: inline-block; text-align: center; width: 100%;}

/* Sección Oscura para Top Ventas */
.top-sales-section { padding: 90px 0; background: #111111; }
.top-sales-section h2 { font-size: 2.5rem; margin-bottom: 40px; color: #ffffff; position: relative; display: inline-block; text-align: center; width: 100%;}

/* Línea roja de títulos */
.top-destinos-section h2::after, .top-sales-section h2::after, .form-section h2::after {
    content: ""; position: absolute; width: 100px; height: 3px;
    background: #cc0000; bottom: -10px; left: calc(50% - 50px); border-radius: 2px;
}

.grid { display: grid; gap: 40px; padding: 20px 0; }
.grid-destinos { grid-template-columns: repeat(3, 1fr); }
.grid-sales { grid-template-columns: repeat(3, 1fr); }

/* --- EFECTO MODO CINE --- */
/* Cuando pasas el mouse por el contenedor completo... */
.grid:hover .card {
    opacity: 0.5;
    filter: grayscale(30%) blur(2px);
}
/* ...y resalta solo la tarjeta que tocas */
.grid .card:hover {
    opacity: 1;
    filter: grayscale(0%) blur(0px);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    z-index: 10;
}

.card {
    position: relative; height: 450px; border-radius: 20px; overflow: visible;
    background: #000; box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease; border: none; cursor: pointer; /* Indicador de Clic */
}

.card-img-bg {
    width: 100%; height: 100%; object-fit: cover; border-radius: 20px; 
    opacity: 0.75; transition: opacity 0.4s;
}
.card:hover .card-img-bg { opacity: 0.6; }

.card-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    padding: 30px; display: flex; flex-direction: column; justify-content: space-between;
    box-sizing: border-box; z-index: 5;
}

.card-nights { text-align: right; color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.card-center { margin-top: auto; margin-bottom: 110px; }
.top-sales-section .card-center {
    margin-bottom: 120px; /* 👈 AQUÍ ESTÁ LA MAGIA: Sube este número para que el título suba, bájalo para que baje */
}
.card-title-main { font-family: 'Lora', serif; font-size: 2.2rem; color: #fff; text-align: center; margin: 0; line-height: 1.1; text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.card-divider { width: 60px; border: 0; border-top: 3px solid #fff; margin: 15px auto; box-shadow: 0 2px 5px rgba(0,0,0,0.5); }

/* Indicador de "Explorar Región" (Solo para Regiones) */
.explore-indicator {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    color: #fff; font-family: 'Cabin', sans-serif; text-transform: uppercase;
    letter-spacing: 2px; font-size: 0.85rem; font-weight: 700;
    opacity: 0; transform: translateY(15px); transition: all 0.4s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.card:hover .explore-indicator { opacity: 1; transform: translateY(0); }
.explore-indicator i { color: #cc0000; font-size: 1.1rem; }

/* Listón rojo (Solo Top Ventas) */
.price-tag {
    position: absolute; left: -15px; bottom: 90px;
    background: linear-gradient(90deg, #ff0000, #b30000); 
    padding: 10px 25px; border-radius: 0 50px 50px 0;
    color: #fff; box-shadow: 5px 5px 15px rgba(0,0,0,0.4); z-index: 10;
}
.price-tag::before {
    content: ""; position: absolute; top: -12px; left: 0;
    border-left: 12px solid transparent; border-bottom: 12px solid #660000;
}
.price-flex { display: flex; align-items: baseline; gap: 6px; }
.curr { font-size: 0.75rem; font-weight: bold; letter-spacing: 1px;}
.amt { font-size: 1.8rem; font-weight: 700; font-family: 'Cabin', sans-serif; }
.pp { font-size: 0.75rem; opacity: 0.9; }

.card-flags { display: flex; gap: 8px; }
.flag-icon { width: 30px; height: 20px; object-fit: cover; border-radius: 3px; box-shadow: 0 3px 6px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.4); }

/* =========================================
   6. FORMULARIO DE CONTACTO LUXURY
========================================= */
.form-section { padding: 100px 20px; background: #f4f6f8; text-align: center; }
.form-section h2 { font-size: 2.5rem; margin-bottom: 40px; color: #111; position: relative; display: inline-block; }

.contact-form {
    max-width: 850px; margin: 0 auto; background: #ffffff; padding: 50px;
    border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); text-align: left;
}
.contact-form .form-row { display: flex; gap: 30px; flex-wrap: wrap; }
.contact-form .form-group { flex: 1; display: flex; flex-direction: column; margin-bottom: 25px; min-width: 250px; }
.contact-form label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: #555; }
.contact-form input { padding: 15px; border: 1px solid #e0e0e0; background: #fafafa; font-size: 1rem; font-family: 'Cabin', sans-serif; border-radius: 8px; transition: all 0.3s ease; }
.contact-form input:focus { outline: none; border-color: #cc0000; background: #fff; box-shadow: 0 0 10px rgba(204, 0, 0, 0.1); }

.contact-form button {
    background: linear-gradient(90deg, #cc0000, #990000); color: #fff; font-family: 'Cabin', sans-serif;
    font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px;
    padding: 18px 30px; border: none; border-radius: 8px; margin-top: 20px; cursor: pointer;
    transition: all 0.3s ease; width: 100%; box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
}
.contact-form button:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(204, 0, 0, 0.3); }

/* =========================================
   7. FOOTER
========================================= */
.footer-section { padding: 60px 20px; background: #0a0a0a; color: #fff; text-align: center; }
.footer-section p { font-size: 1rem; opacity: 0.6; letter-spacing: 1px; }
.footer-section .social-links { margin-top: 20px; }
.footer-section .social-links a { color: #fff; margin: 0 15px; font-size: 1.5rem; opacity: 0.6; transition: all 0.3s; }
.footer-section .social-links a:hover { opacity: 1; color: #cc0000; transform: scale(1.1); }

/* =========================================
   8. ANIMACIONES Y RESPONSIVE
========================================= */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 1024px){ .grid-destinos, .grid-sales { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px){ .navbar-nav { display: none; } .hero-content h1 { font-size: 3rem; } .grid-destinos, .grid-sales { grid-template-columns: 1fr; } .contact-form { padding: 30px; } }