*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  font-family:'Poppins', sans-serif;
}

body{
  background:#0f0b0b;
  color:white;
  overflow-x:hidden;
}

:root{
  --vino:#5b0f1a;
  --dorado:#d4af37;
  --negro:#0f0b0b;
  --gris:#1b1b1b;
  --blanco:#ffffff;
}

/* HEADER */

header{
  width:100%;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  padding:18px 8%;
  backdrop-filter: blur(10px);
  background:rgba(0,0,0,0.45);
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  width:140px;
}

/* MENÚ */

.nav-links{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:white;
  font-weight:500;
  transition:0.3s;
  position:relative;
}

.nav-links a::after{
  content:'';
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-6px;
  background:var(--dorado);
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--dorado);
}

.nav-links a:hover::after{
  width:100%;
}

/* HAMBURGUESA */

.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:5px;
}

.menu-toggle span{
  width:28px;
  height:3px;
  background:white;
  border-radius:10px;
}

/* HERO */

.hero{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
  url('p1.jpg');

  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.hero-content{
  max-width:650px;
}

.hero-content h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero-content span{
  color:var(--dorado);
}

.hero-content p{
  color:#ddd;
  margin-bottom:35px;
  line-height:1.7;
}

/* BOTONES */

.btn{
  padding:14px 34px;
  background:var(--dorado);
  color:black;
  border:none;
  border-radius:50px;
  cursor:pointer;
  font-weight:600;
  transition:0.4s;
  text-decoration:none;
  display:inline-block;
}

.btn:hover{
  transform:translateY(-5px);
  background:white;
  box-shadow:0 10px 25px rgba(212,175,55,0.4);
}

/* SECCIONES */

section{
  padding:100px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:2.8rem;
  color:var(--dorado);
  margin-bottom:10px;
}

.section-title p{
  color:#ccc;
}

/* SERVICIOS */

.services{
  background:#161010;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card{
  background:linear-gradient(145deg,#1b1b1b,#2a1117);
  border-radius:25px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid rgba(212,175,55,0.15);
}

.card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 35px rgba(212,175,55,0.2);
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card-content{
  padding:25px;
}

.card-content h3{
  color:var(--dorado);
  margin-bottom:15px;
}

.card-content p{
  color:#ddd;
  line-height:1.6;
  margin-bottom:20px;
}

/* BOTÓN TARJETA */

.card-btn{
  background:transparent;
  border:1px solid var(--dorado);
  color:var(--dorado);
  padding:12px 20px;
  border-radius:50px;
  cursor:pointer;
  transition:0.4s;
  font-weight:600;
}

.card-btn:hover{
  background:var(--dorado);
  color:black;
}

/* PAQUETES */

.packages{
  background:#0f0b0b;
}

.package-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.package{
  background:#1a1a1a;
  padding:40px 30px;
  border-radius:25px;
  text-align:center;
  transition:0.4s;
}

.package:hover{
  transform:translateY(-10px);
  background:#2a1117;
}

.package h3{
  color:var(--dorado);
  margin-bottom:15px;
}

.price{
  font-size:2.5rem;
  margin:20px 0;
  font-weight:700;
}

.package ul{
  list-style:none;
  margin-bottom:25px;
}

.package ul li{
  margin:12px 0;
  color:#ddd;
}

/* CONTACTO */

.contact{
  background:linear-gradient(to right,#2a1117,#0f0b0b);
  text-align:center;
}

.contact p{
  max-width:700px;
  margin:20px auto 35px;
  color:#ddd;
  line-height:1.8;
}

/* FOOTER */

footer{
  padding:25px;
  text-align:center;
  background:black;
  color:#aaa;
}

/* ======================
   CONTACTO PREMIUM
====================== */

.contact-section{

    background:#0f0b0b;

    padding:100px 8%;
}

.contact-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    margin-top:50px;
}

.contact-info{

    background:#1a1a1a;

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(212,175,55,.2);
}

.contact-info h3{

    color:#d4af37;

    margin-bottom:30px;
}

.info-item{

    margin-bottom:20px;

    color:#ddd;

    font-size:1rem;
}

.social-links{

    display:flex;

    gap:15px;

    margin:25px 0;
}

.social-links a{

    text-decoration:none;

    color:#d4af37;

    border:1px solid #d4af37;

    padding:10px 20px;

    border-radius:50px;

    transition:.3s;
}

.social-links a:hover{

    background:#d4af37;

    color:black;
}

.map-container{

    overflow:hidden;

    border-radius:20px;

    margin-top:20px;
}

/* FORMULARIO */

.contact-form{

    background:#1a1a1a;

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(212,175,55,.2);
}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:15px;

    border:none;

    border-radius:15px;

    background:#2a2a2a;

    color:white;

    outline:none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border:1px solid #d4af37;
}

.btn-whatsapp{

    background:#d4af37;

    color:black;

    border:none;

    padding:15px;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;

    transition:.4s;
}

.btn-whatsapp:hover{

    transform:translateY(-5px);

    background:white;
}

/* RESPONSIVE */

@media(max-width:900px){

    .contact-container{

        grid-template-columns:1fr;
    }

}

/* RESPONSIVE */

@media(max-width:900px){

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:90px;
    right:-100%;
    background:#1a1a1a;
    width:260px;
    height:320px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:0.4s;
    border-radius:20px 0 0 20px;
  }

  .nav-links.active{
    right:0;
  }

  .hero-content h1{
    font-size:2.8rem;
  }

}

@media(max-width:600px){

  .hero-content h1{
    font-size:2.2rem;
  }

  .section-title h2{
    font-size:2rem;
  }

  .btn{
    width:100%;
    text-align:center;
  }

}

/* =========================
   GALERÍA
========================= */

.gallery-section{

    background: linear-gradient(
    180deg,
    #5b0f1a,
    #0f0b0b
    );

    overflow:hidden;
}

.gallery-slider{

    width:100%;
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

.gallery-track{

    display:flex;
    gap:20px;
    width:max-content;
    animation: scrollGallery 30s linear infinite;
}

.gallery-slider:hover .gallery-track{
    animation-play-state: paused;
}

.gallery-item{

    width:320px;
    height:220px;
    flex-shrink:0;

    border-radius:20px;
    overflow:hidden;

    cursor:pointer;

    position:relative;

    transition:.4s;
}

.gallery-item::before{

    content:'';

    position:absolute;
    inset:0;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.4)
    );

    z-index:1;
}

.gallery-item:hover{

    transform:translateY(-10px);
}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.6s;
}

.gallery-item:hover img{

    transform:scale(1.15);
}

/* ANIMACIÓN */

@keyframes scrollGallery {

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* LIGHTBOX */

.lightbox{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.95);

    display:flex;

    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.4s;

    z-index:99999;
}

.lightbox.active{

    opacity:1;
    visibility:visible;
}

.lightbox img{

    max-width:90%;
    max-height:85%;

    border-radius:20px;

    border:3px solid #d4af37;
}

.close-lightbox{

    position:absolute;

    top:30px;
    right:50px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    transition:.3s;
}

.close-lightbox:hover{

    color:#d4af37;
}

/* RESPONSIVE */

@media(max-width:768px){

    .gallery-item{

        width:250px;
        height:180px;
    }

}