/* ====== ESTILOS GENERALES ====== */
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#0f172a;
color:white;
}

/* ====== CONTENEDOR CENTRADO ====== */
.contenedor-recorrido{
display:flex;
justify-content:center;
align-items:center;
height:20vh;
}

/* ====== BOTON RECORRIDO ====== */
.btn-recorrido{
padding:20px 40px;
font-size:24px;
font-weight:bold;
color:white;
text-decoration:none;
border-radius:14px;
background:linear-gradient(45deg,#007bff,#00c6ff);
box-shadow:0px 10px 30px rgba(0,0,0,0.4);
transition:all 0.3s ease;
animation:latido 1.8s infinite;
}

/* EFECTO HOVER */
.btn-recorrido:hover{
transform:scale(1.12);
box-shadow:0px 20px 40px rgba(0,0,0,0.6);
}

/* ANIMACION */
@keyframes latido{
0%{transform:scale(1);}
50%{transform:scale(1.05);}
100%{transform:scale(1);}
}

/* ====== RESPONSIVE ====== */
@media (max-width:768px){
.btn-recorrido{
font-size:20px;
padding:16px 30px;
}
}

/* Base */
:root{
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-card: 0 12px 30px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }
section { scroll-margin-top: 90px; }

/* Tiny UI helpers */
.kbd{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 20px;
  min-width: 20px;
  padding: 0 6px;
  border: 1px solid rgba(0,0,0,0.10);
  border-bottom-width: 2px;
  border-radius: 8px;
  font-size: 11px;
  color: rgba(0,0,0,0.65);
  background: white;
}

/* Links */
.navlink{
  color: rgb(63 63 70);
  transition: 150ms ease;
}
.navlink:hover{ color: rgb(9 9 11); }

.mobilelink{
  border: 1px solid rgb(228 228 231);
  border-radius: 14px;
  padding: 12px 14px;
  background: white;
  transition: 150ms ease;
}
.mobilelink:hover{ background: rgb(250 250 250); }

/* Buttons */
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding: 12px 18px;
  font-weight: 700;
  color: white;
  background: rgb(9 9 11);
  transition: 180ms ease;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ transform: translateY(-1px); background: rgb(24 24 27); }

.btn-secondary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding: 12px 18px;
  font-weight: 700;
  color: rgb(9 9 11);
  background: white;
  border: 1px solid rgb(228 228 231);
  transition: 180ms ease;
}
.btn-secondary:hover{ transform: translateY(-1px); background: rgb(250 250 250); }

.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding: 12px 18px;
  font-weight: 700;
  color: rgb(9 9 11);
  border: 1px solid rgb(228 228 231);
  transition: 150ms ease;
  background: transparent;
}
.btn-ghost:hover{ background: rgb(250 250 250); }

/* Sections */
.section{
  padding: 64px 0;
}
.section-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom: 28px;
}
.section-title{
  font-size: 28px;
  font-weight: 700;
}
.section-subtitle{
  color: rgb(82 82 91);
}
.section-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 4px;
}

/* Hero */
.hero{
  background:
    radial-gradient(1000px 500px at 20% 20%, rgba(0,0,0,0.06), transparent 55%),
    radial-gradient(800px 400px at 80% 10%, rgba(0,0,0,0.04), transparent 60%),
    white;
}
.hero-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.08);
}
.hero-img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display:block;
  filter: contrast(1.02) saturate(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.08) 60%);
}
.pill{
  border: 1px solid rgb(228 228 231);
  background: white;
  border-radius: 999px;
  padding: 10px 12px;
  text-align:center;
}

/* Cards */
.card{
  display:block;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgb(228 228 231);
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 180ms ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
}
.card-img{
  width:100%;
  height: 190px;
  object-fit: cover;
  display:block;
}
.card-body{ padding: 16px; }
.card-title{ font-weight: 800; font-size: 18px; }
.card-text{ margin-top: 6px; color: rgb(82 82 91); font-size: 14px; }
.card-cta{ display:inline-block; margin-top: 10px; font-weight: 700; }

/* Collections */
.collection{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgb(228 228 231);
  background: white;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.collection-img{ width:100%; height: 200px; object-fit: cover; display:block; }
.collection-body{ padding: 18px; display:flex; flex-direction:column; gap:8px; }
.collection-title{ font-weight: 800; font-size: 18px; }
.collection-text{ color: rgb(82 82 91); font-size: 14px; }

/* Info cards */
.info-card{
  display:flex;
  gap:12px;
  border-radius: 22px;
  border: 1px solid rgb(228 228 231);
  background: white;
  padding: 16px;
}
.info-icon{
  width: 42px; height: 42px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 16px;
  background: rgb(244 244 245);
  font-size: 18px;
}
.info-title{ font-weight: 800; }
.info-text{ margin-top: 4px; color: rgb(82 82 91); font-size: 14px; }

/* Steps */
.step{
  border-radius: 22px;
  border: 1px solid rgb(228 228 231);
  background: white;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.step-img{ width:100%; height: 200px; object-fit: contain; background: white; display:block; }
.step-text{ padding: 14px 14px 16px; color: rgb(82 82 91); font-size: 14px; text-align:center; }

/* Brands */
.brand{
  width: 110px;
  height: 80px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 18px;
  border: 1px solid rgb(228 228 231);
  background: white;
  transition: 180ms ease;
}
.brand img{
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: 180ms ease;
}
.brand:hover img{ filter: grayscale(0); opacity: 1; }

/* Quotes */
.quote{
  border-radius: 24px;
  border: 1px solid rgb(228 228 231);
  background: white;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.quote-text{ color: rgb(39 39 42); line-height: 1.55; }
.quote-meta{ margin-top: 10px; font-size: 12px; color: rgb(82 82 91); }

/* FAQ */
.faq{ display:grid; gap: 10px; }
.faq-item{
  border-radius: 18px;
  border: 1px solid rgb(228 228 231);
  background: white;
  padding: 14px 14px;
}
.faq-item summary{
  cursor:pointer;
  font-weight: 800;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{
  margin-top: 8px;
  color: rgb(82 82 91);
  font-size: 14px;
}

/* Social links */
.social{
  font-size: 14px;
  color: rgb(82 82 91);
  border: 1px solid rgb(228 228 231);
  padding: 8px 10px;
  border-radius: 999px;
  transition: 150ms ease;
}
.social:hover{
  color: rgb(9 9 11);
  background: rgb(250 250 250);
}

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  z-index: 60;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding: 30px 16px;
}
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}
.modal__panel{
  position:relative;
  width: min(720px, 100%);
  border-radius: 26px;
  background: white;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 16px;
}
.result-item{
  display:flex;
  flex-direction:column;
  gap:2px;
  border-radius: 16px;
  border: 1px solid rgb(228 228 231);
  padding: 12px;
  transition: 150ms ease;
}
.result-item:hover{ background: rgb(250 250 250); }

/* Floating buttons */
.floating-shop{
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 55;
  width: 52px;
  height: 52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgb(9 9 11);
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  transition: 150ms ease;
}
.floating-shop:hover{ transform: translateY(-2px); background: rgb(24 24 27); }

.floating-wa{
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 55;
  width: 56px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: #22c55e;
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transition: 150ms ease;
}
.floating-wa:hover{ transform: translateY(-2px); background: #16a34a; }

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: 500ms ease;
}
.reveal.reveal-in{
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0,0,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

.btn-attention {
  animation: pulse-soft 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.btn-blink {
  animation: blink 1s infinite;
}
