/* VARIABLES CORPORATIVAS DE LUJO ("OLD MONEY") */
:root {
    --bg-dark: #070B14;
    --bg-card: #0D1322;
    --bg-featured: #11182B;
    --gold: #D4AF37;
    --gold-hover: #F1CD5C;
    --white-luxury: #F5F7FA;
    --text-muted: #8A99AD;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* CONFIGURACIÓN GENERAL RESETS */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--white-luxury); font-family: var(--font-sans); overflow-x: hidden; line-height: 1.4; }

/* ENCABEZADO */
.main-header { display: flex; justify-content: space-between; align-items: center; padding: 30px 6%; position: absolute; width: 100%; z-index: 10; background: linear-gradient(to bottom, rgba(7, 11, 20, 0.8), transparent); transition: all 0.4s ease; }
.main-header .logo { font-family: var(--font-serif); font-size: 1.6rem; letter-spacing: 3px; color: var(--white-luxury); font-weight: 400; transition: color 0.3s ease; }
.main-header .logo:hover { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--white-luxury); text-decoration: none; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.btn-nav { border: 1px solid var(--gold); padding: 10px 22px !important; }
.btn-nav:hover { background: var(--gold); color: var(--bg-dark) !important; }

/* HERO */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(7, 11, 20, 0.5), rgba(7, 11, 20, 0.85)); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 0 24px; }
.hero-content h1 { font-family: var(--font-serif); font-size: 4.5rem; font-weight: 300; letter-spacing: 2px; margin-bottom: 25px; line-height: 1.1; color: var(--white-luxury); }
.hero-content p { font-size: 1.15rem; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 45px; font-weight: 300; }

/* BOTONES PREMIUM */
.btn-primary { display: inline-block; background-color: var(--gold); color: var(--bg-dark); text-decoration: none; padding: 16px 40px; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s ease; border: 1px solid var(--gold); }
.btn-primary:hover { background-color: transparent; color: var(--gold); }
.btn-secondary { display: block; text-align: center; border: 1px solid var(--gold); color: var(--gold); text-decoration: none; padding: 14px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; transition: all 0.3s ease; }
.btn-secondary:hover { background: var(--gold); color: var(--bg-dark); }

/* SECCIONES Y TARJETAS */
.services-section, .portfolio-section, .booking-section { padding: 120px 6%; background-color: var(--bg-dark); }
.container-title { text-align: center; margin-bottom: 60px; }
.container-title h2 { font-family: var(--font-serif); font-size: 2.8rem; color: var(--gold); letter-spacing: 2px; font-weight: 400; }
.container-title p { font-size: 1rem; color: var(--text-muted); letter-spacing: 1px; margin-top: 12px; }

.pricing-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

/* TARJETAS CON BORDE METÁLICO Y EFECTO SHIMMER */
.price-card { 
    background: var(--bg-card); 
    padding: 50px 40px; width: 100%; max-width: 420px; position: relative; 
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #D4AF37 0%, #8b6b1a 100%);
    border-image-slice: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.price-card:hover { transform: translateY(-12px); box-shadow: 0 15px 40px rgba(0,0,0,0.7), 0 0 15px rgba(212, 175, 55, 0.2); }

.price-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to bottom right, rgba(255,255,255,0) 40%, rgba(212, 175, 55, 0.1) 50%, rgba(255,255,255,0) 60%);
    transform: rotate(45deg); animation: shine 6s infinite; pointer-events: none;
}
@keyframes shine { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }

.price-card h3 { font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold); margin-bottom: 15px; font-weight: 400; }
.price { font-size: 2.8rem; font-weight: 500; margin-bottom: 25px; }
.price-card .card-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 35px; line-height: 1.6; }
.price-card ul { list-style: none; margin-bottom: 45px; }
.price-card ul li { font-size: 0.9rem; margin-bottom: 15px; padding-left: 25px; position: relative; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }

/* PROMOCIÓN BELLA VISTA */
.promo-box { 
    border: 1px solid var(--gold); padding: 40px; margin: 60px auto; max-width: 700px; text-align: center; 
    background: radial-gradient(circle, #1a243d 0%, #070b14 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}
.promo-box h3 { font-family: var(--font-serif); color: var(--gold); font-size: 1.8rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.promo-box p { color: var(--white-luxury); font-size: 1rem; line-height: 1.6; }

/* PORTAFOLIO Y RESTO */
.portfolio-grid { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.portfolio-item { background: var(--bg-card); border: 1px solid rgba(212, 175, 55, 0.1); max-width: 440px; width: 100%; transition: 0.4s; }
.portfolio-item:hover { border-color: var(--gold); }
.image-container { position: relative; overflow: hidden; height: 280px; background: #111726; }
.image-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: 0.6s; }
.item-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(7, 11, 20, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.4s; }
.portfolio-item:hover .image-container img { transform: scale(1.05); opacity: 0.4; }
.portfolio-item:hover .item-overlay { opacity: 1; }
.portfolio-details { padding: 30px; }
.portfolio-details h4 { font-family: var(--font-serif); color: var(--white-luxury); font-size: 1.4rem; }
.calendar-wrapper { max-width: 950px; margin: 0 auto; background: var(--bg-card); border: 1px solid rgba(212, 175, 55, 0.15); padding: 15px; }
.main-footer { padding: 60px 6%; background-color: var(--bg-dark); text-align: center; border-top: 1px solid rgba(212, 175, 55, 0.1); }
/* AJUSTE PARA MÓVILES */
@media (max-width: 768px) {
    /* El header se vuelve más compacto */
    .main-header { padding: 20px; flex-direction: column; gap: 15px; }
    
    /* El título del Hero se reduce para que no se corte */
    .hero-content h1 { font-size: 2.5rem !important; }
    
    /* Las tarjetas de servicios se ponen una debajo de otra */
    .pricing-container { 
        flex-direction: column; 
        align-items: center; 
        gap: 20px; 
    }
    
    .price-card { 
        max-width: 90% !important; 
        padding: 30px 20px !important; 
    }

    /* El portafolio también se ajusta */
    .portfolio-grid { gap: 20px; }
    
    /* Ajuste del calendario para que no se desborde */
    .calendar-wrapper { width: 95% !important; padding: 5px; }
}