@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Inter:wght@300;400;600&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Inter',sans-serif;
  color:#eee;
  overflow-x:hidden;
  background:#000;
}
.bg{
  position:fixed;
  width:100%;
  height:100%;
  z-index:-2;
  background:radial-gradient(circle at 20% 30%, rgba(201,167,78,.15), transparent 40%),
             radial-gradient(circle at 80% 70%, rgba(201,167,78,.08), transparent 40%),
             #000;
}
header{
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  padding:18px 25px;
  background:rgba(0,0,0,.5);
  backdrop-filter:blur(12px);
  z-index:1000;
}
.menu.active{left:0}
.overlay{
  position:fixed;
  width:100%;
  height:100%;
  display:none;
}
.overlay.active{display:block}


@keyframes fadeUp{
  from{opacity:0;transform:translateY(40px)}
  to{opacity:1;transform:translateY(0)}
}


.card{
  position:relative;
  background:rgba(10,10,10,.9);
  border-radius:14px;
  overflow:hidden;
  padding:3px; /* grosor del marco */
  transition:.4s;

  background:linear-gradient(145deg,
    #d4af37 0%,
    #f5e6a8 20%,
    #c9a74e 40%,
    #b8962e 60%,
    #f5e6a8 80%,
    #d4af37 100%
  );
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:14px;
  padding:2px;
  background:linear-gradient(120deg,#fff3,#0000,#fff2);
  opacity:.4;
  pointer-events:none;
}

.card > *{
  background:#0a0a0a;
  border-radius:11px;
}

.card:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 60px rgba(0,0,0,.9),
              0 0 25px rgba(212,175,55,.25);
}

.card:hover{
  transform:translateY(-10px) scale(1.03);
  border-color:#c9a74e;
  box-shadow:0 20px 50px rgba(0,0,0,.9);
}

.card img{
  width:100%;
  transition:.4s;
}

.card:hover img{
  transform:scale(1.08);
}

.info{
  padding:15px;
}

.price{
  color:#c9a74e;
  font-weight:600;
}

/* SCROLL REVEAL */
.hidden{
  opacity:0;
  transform:translateY(40px);
  transition:all .6s ease;
}

.show{
  opacity:1;
  transform:translateY(0);
}




.footer{
  background:#050505;
  padding:30px 10% 2px;
  border-top:1px solid rgba(201,167,78,.15);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:60px;
  flex-wrap:wrap;
}

/* LOGO */
.logo{
  font-family:'Cinzel';
  color:#c9a74e;
  letter-spacing:5px;
  font-size:22px;

}

/* TEXTO */
.f-info p{
  color:#777;
  max-width:250px;
}

/* LINKS */
.f-links a{
  display:block;
  color:#888;
  text-decoration:none;
  margin-bottom:10px;
  letter-spacing:2px;
  position:relative;
}

.f-links a::after{
  content:"";
  position:absolute;
  bottom:-3px;
  left:0;
  width:0%;
  height:1px;
  background:#c9a74e;
  transition:.3s;
}

.f-links a:hover{
  color:#c9a74e;
}

.f-links a:hover::after{
  width:100%;
}

/* CONTACTO */
.f-contact{
  color:#888;
  font-size:14px;
}

.f-contact b{
  color:#c9a74e;
}

/* COPY */
.copy{
  text-align:center;
  font-size:12px;
  color:#555;
  letter-spacing:2px;
}

/* RESPONSIVE */
@media(max-width:800px){
  .footer-wrap{
    flex-direction:column;
    gap:30px;
  }
}
/* GRID REAL (rompe estilo bootstrap feo) */
.row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* CARD COMPLETA */
.guard-of{
  display:flex;
  flex-direction:column;
  height:100%; /* clave */
  border-radius:14px;
  overflow:hidden;
  padding:3px;

  background:linear-gradient(145deg,
    #d4af37 0%,
    #f5e6a8 20%,
    #c9a74e 40%,
    #b8962e 60%,
    #f5e6a8 80%,
    #d4af37 100%
  );
}

/* CONTENIDO INTERNO */
.guard-of a{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#0a0a0a;
  border-radius:11px;
  text-decoration:none;
  color:#eee;
}

/* IMAGEN CON PROPORCIÓN (esto quita efecto pastilla) */
.guard-of img{
  width:100%;
  aspect-ratio:1/1; /* CUADRADA */
  object-fit:cover;
}

/* INFO ABAJO COMO CARD */
.guard-of b{
  padding:15px;
  display:block;
  margin-top:auto; /* empuja hacia abajo */
  font-weight:500;
  color:#c9a74e;
}

/* HOVER PRO */
.guard-of:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 20px 60px rgba(0,0,0,.9),
              0 0 25px rgba(212,175,55,.25);
}

/* RESPONSIVE */
@media(max-width:900px){
  .row{
    grid-template-columns:repeat(2,1fr);
  }
}


/* MISMO TAMAÑO QUE LAS DE ABAJO */
.row{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(180px, 1fr));
  gap:25px;
  max-width:1000px; /* limita ancho total */
  margin:auto;
}

/* OPCIONAL: reduce un poco la card */
.card{
  max-width:200px;
  margin:auto;
}
.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

/* OPCIONAL: MISMA ALTURA VISUAL */
.card img{
  aspect-ratio:1/1;
  object-fit:cover;
}
/* NAV */
.nav{
  position:fixed;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(12px);
  z-index:1000;
}



/* BOTÓN HAMBURGUESA */
.menu-btn{
  width:30px;
  height:22px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}

.menu-btn span{
  height:3px;
  background:#c9a74e;
  border-radius:2px;
  transition:.3s;
}

/* ANIMACIÓN X */
.menu-btn.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.menu-btn.active span:nth-child(2){
  opacity:0;
}

.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* MENU LATERAL */
.menu{
  position:fixed;
  top:0;
  left:-100%;
  width:280px;
  height:100%;
  background:#050505;
  padding:80px 30px;
  transition:.4s;
  box-shadow:10px 0 40px rgba(0,0,0,.9);
  z-index:999;
}


/* OVERLAY */
.overlay{
  position:fixed;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background:rgba(0,0,0,.6);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:998;
}

.overlay.active{
  opacity:1;
  pointer-events:auto;
}
.menu a{
  display:block;
  margin:25px 0;
  color:#c9a74e;
  font-size:18px;
  text-decoration:none;
  letter-spacing:2px;
  position:relative; /* IMPORTANTE */
}

/* línea animada */
.menu a::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:0;
  width:0%;
  height:1px;
  background:#c9a74e;
  transition:.3s;
}

/* hover */
.menu a:hover{
  color:#c9a74e;
}

.menu a:hover::after{
  width:100%;
}

/* IMAGEN LOGO */
.logo img{
  height:40px; /* ajusta tamaño */
  width:auto;
  display:block;
}




.hero{
  width:100%;
  height:70vh; /* altura controlada */
  overflow:hidden;
  position:relative;
}

.hero-bg{
  width:100%;
  height:100%;
  object-fit:cover; /* 🔥 clave */
  display:block;
}


.hero p{
  color:#aaa;
  letter-spacing:4px;
  margin-top:10px;
  animation:fadeUp 1.8s ease;

  -webkit-text-stroke: 1px red;
}
/* LOGO FOOTER */
.logo-footer{
  margin-bottom:10px;
}

.logo-footer img{
  height:145px; /* ajusta tamaño */
  width:auto;
  display:block;
}
 
/* =========================
   BARRA DE PAGOS (BASE)
========================= */
.payment-bar{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;

  background:#050505;
  padding:15px 10px;

  flex-wrap:nowrap; /* desktop */
}

/* ICONOS */
.payment-bar img{
  width:80px;
  height:auto;
  object-fit:contain;
  opacity:.9;
  transition:.3s;
}

/* HOVER PRO */
.payment-bar img:hover{
  opacity:1;
  transform:scale(1.05);
}


row