:root{
  --bg:#ffffff;
  --alt:#f7f6f3;

  --brand:#7a1f2b;      /* bordó */
  --accent:#f2c94c;     /* amarillo */

  --text:#2b2b2b;
  --muted:#6a6a6a;

  --radius:22px;
  --shadow:0 20px 40px rgba(0,0,0,.10);

  --max:1140px;
  --pad:28px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--max), 100% - (var(--pad) * 2));
  margin-inline:auto;
}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--brand);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.logo{ height:40px; width:auto; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:700;
  color:#fff;
}
.nav a{
  padding:10px 12px;
  border-radius:999px;
  opacity:.92;
}
.nav a:hover{
  background: rgba(255,255,255,.12);
  opacity:1;
}

/* HERO */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(0deg, rgba(122,31,43,.78), rgba(122,31,43,.25)),
    url("../img/hero.jpg") center/cover no-repeat;
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.05);
}
.hero__content{
  position:relative;
  padding:70px 0 50px;
  max-width:760px;
  color:#fff;
}

.badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  font-weight:700;
  margin:0 0 14px;
}

.hero h1{
  margin:0 0 12px;
  font-size:clamp(60px, 4vw, 56px);
  line-height:1.05;
  letter-spacing:-0.5px;
}
.accent{
  background: linear-gradient(135deg, #ffe29e, var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero__p{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.7;
  opacity:.95;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  color:#7a1f2b;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform:translateY(-1px); box-shadow: 0 16px 30px rgba(0,0,0,.12); }

.btn--primary{
  background: var(--accent);
  border-color: transparent;
}

.btn--ghost{
  background: rgba(255,255,255,.12);
  color:#fff;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow:none;
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); box-shadow:none; }

.btn--small{ padding:10px 14px; }

.btn--full{
  width:100%;
  border-radius:14px;
  padding:12px 14px;
}


.hero__stats{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  max-width:720px;
}
.stat{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:14px;
  color:#111;
}
.stat__n{ display:block; font-weight:900; }
.stat__t{ display:block; margin-top:2px; color: var(--brand); font-size:13px; font-weight:700; }

/* SECTIONS */
.section{ padding:80px 0; }
.section--alt{ background: var(--alt); }
.section--alt1{ background: #f2c94c; }

.section__head{
  margin-bottom:28px;
  max-width:760px;
}
.section__head h2{
  margin:0 0 10px;
  font-size:clamp(35px, 2.4vw, 34px);
  color: var(--brand);
}
.section__head p{
  margin:0;
  color: var(--muted);
  line-height:1.7;
}

/* GRID CARDS */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:32px;
}
.grid--3{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.card{
  background:#fff;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,.15);
}

.card__img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.card__body{ padding:20px 20px 18px; }

.card__title{
  margin:0 0 10px;
  font-size:16px;
  color: var(--brand);
  letter-spacing:.3px;
}

.card__desc{
  margin:0 0 10px;
  color:#5e5e5e;
  line-height:1.6;
  font-size:14px;
}

.card__hint{
  margin:0 0 14px;
  color:#7a7a7a;
  font-size:13px;
}

.card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}



.pill{
  padding:7px 10px;
  border-radius:999px;
  background: #f80000;
  color:#fff;
  font-size:13px;
  font-weight:900;
}
.pill2{
  padding:7px 10px;
  border-radius:999px;
  background:#ececec;
  color:#4a4a4a;
  font-size:12px;
  font-weight:800;
}

.note{
  margin-top:18px;
  padding:14px 16px;
  border-radius:18px;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.06);
  color:#4a4a4a;
}

/* REDES */
.redes-linea{
  display:flex;
  align-items:center;
  gap:40px;
}

.redes-info{
  max-width:360px;
}
.redes-info h2{
  margin:0 0 10px;
  color: var(--brand);
  font-size:32px;
}
.redes-info p{
  margin:0 0 18px;
  color: #ffffff;
  line-height:1.7;
}

.redes-grid{
  flex-grow:1;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.redes-grid img{
  width:100%;
  aspect-ratio: 1/1;
  object-fit:cover;
  border-radius:16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  transition: transform .25s ease;
}
.redes-grid img:hover{ transform: scale(1.03); }

/* QUIENES SOMOS */
.quote{
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
}
.quote p{
  margin:0 0 12px;
  color:#555;
  line-height:1.7;
}
.quote span{
  color: var(--brand);
  font-weight:900;
}

/* CONTACTO: 1 línea con mapa grande */
.contacto-linea{
  display:flex;
  align-items:center;
  gap:40px;
}

.contacto-info{
  flex-shrink:0;
  max-width:420px;
}
.contacto-info h2{
  margin:0 0 12px;
  color: var(--brand);
  font-size:34px;
}
.contacto-sub{
  margin:0 0 18px;
  color:#333;
}
.contacto-info p{
  margin:6px 0;
  color:#444;
}

.contacto-cta{ margin-top:16px; }

.contacto-img{
  flex-shrink:0;
}
.contacto-img img{
  width:140px;
  height:auto;
  opacity:.9;
}

.contacto-mapa{
  flex-grow:1;
}
.contacto-mapa iframe{
  width:100%;
  height:320px;
  border:0;
  border-radius:18px;
  box-shadow: var(--shadow);
}

/* FOOTER */
.footer{
  background: #f2c94c;
  color:#fff;
  padding:26px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.small{
  margin:0;
  font-size:13px;
  opacity:.92;
}

/* WhatsApp flotante */
.wa-float{
width: 50px;
height: 50px;
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:80;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  
}
.wa-float:hover{ transform: translateY(-1px); }

@media (max-width: 768px) {
  .wa-float {
    width: 45px;
    height: 45px;
    right: 14px;
    bottom: 14px;
  }

  .wa-float img,
  .wa-float svg {
    width: 30px;
    height: px;
  }
}

/* RESPONSIVE */
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__stats{ grid-template-columns: 1fr; max-width: 420px; }
  .contacto-linea{ align-items:flex-start; }
}

@media (max-width: 900px){
  .redes-linea{
    flex-direction:column;
    align-items:flex-start;
  }
  .redes-grid{
    width:100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .contacto-linea{
    flex-direction:column;
    align-items:stretch;
  }
  .contacto-img{
    order:2;
  }
  .contacto-mapa{
    order:3;
  }
  .contacto-mapa iframe{
    height:240px;
  }
}

@media (max-width: 680px){
  :root{ --pad: 16px; }
  .nav{ display:none; }
  .grid{ grid-template-columns: 1fr; }
}

.promos-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
  margin-top: 18px;
}

.promo{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.promo:hover{
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.promo__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}

.promo__left{
  display:flex;
  align-items:center;
  gap:12px;
}

.promo__logo{
  height:28px;
  width:auto;
  object-fit:contain;
}

.promo__icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(0,0,0,.06);
  font-size:18px;
}

.promo__tag{
  font-size:12px;
  font-weight:900;
  color: var(--brand);
  background: rgba(122,31,43,.10);
  padding: 6px 10px;
  border-radius: 999px;
}

.promo__day{
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  color:#111;
  background: rgba(242,201,76,.35);
  padding: 7px 12px;
  border-radius:999px;
}

.promo__title{
  margin: 0 0 8px;
  color: var(--brand);
  font-size:18px;
}

.promo__desc{
  margin: 0 0 14px;
  color: var(--muted);
  line-height:1.6;
  font-size:14px;
}

.promo__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom: 14px;
}

.promo__fineprint{
  margin: 12px 0 0;
  color:#7a7a7a;
  font-size:12px;
  line-height:1.4;
}

/* Responsive */
@media (max-width: 900px){
  .promos-grid{
    grid-template-columns: 1fr;
  }
}

.pay-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 22px;
  margin-top: 18px;
}

.pay{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  border: 1px solid rgba(0,0,0,.06);
  text-align:left;
}

.pay__icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(122,31,43,.10);
  font-size:20px;
  margin-bottom: 12px;
}

.pay h3{
  margin:0 0 8px;
  color: var(--brand);
  font-size:16px;
}

.pay p{
  margin:0;
  color: var(--muted);
  font-size:14px;
  line-height:1.5;
}

@media (max-width: 980px){
  .pay-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 680px){
  .pay-grid{
    grid-template-columns: 1fr;
  }
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-top: 20px;
}

.step{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align:center;
}

.step__n{
  display:inline-flex;
  width:42px;
  height:42px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  background: var(--brand);
  color:#fff;
  font-weight:900;
  margin-bottom: 12px;
}

.step p{
  margin:0;
  color: var(--muted);
  font-size:15px;
  line-height:1.5;
}

.horarios{
  margin-top: 26px;
  padding: 16px 18px;
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
}

.horarios p{
  margin:6px 0;
  color:#444;
  font-size:14px;
}

@media (max-width: 900px){
  .steps{
    grid-template-columns: 1fr;
  }
}

.logos{
  padding: 70px 0;
}

.logos__wrap{
  display:grid;
  gap: 22px;
}

.logos__head h2{
  margin:0 0 8px;
  color: var(--brand);
  font-size: 28px;
}
.logos__head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
  max-width: 760px;
}

.logos__row{
  display:flex;
  align-items:center;
  gap: 26px;
  padding: 18px 20px;
  background:#fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow);
  overflow:auto;                 /* si hay muchos, scrollea horizontal */
  -webkit-overflow-scrolling: touch;
}

.logos__row img{
  height: 34px;                  /* sutil */
  width: auto;
  object-fit: contain;
  opacity: .85;
  filter: grayscale(1);
  transition: opacity .2s ease, filter .2s ease;
}

.logos__row img:hover{
  opacity: 1;
  filter: grayscale(0);
}

.promo-hub{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}

.promo-card{
  background:#fff;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.promo-card__img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

.promo-card__body{
  padding:14px 16px 16px;
}

.promo-card__body h3{
  margin:0 0 6px;
  color: var(--brand);
  font-size:16px;
}

.promo-card__body p{
  margin:0 0 12px;
  color: var(--muted);
  font-size:13px;
}

.promo-card__actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}

@media (max-width: 900px){
  .promo-hub{ grid-template-columns: 1fr; }
}


.promo .card{
  width: 220px;
padding: 12px;
}

.sn-section{
  padding: 60px 20px;
  background: #f3f5f7;
  display: flex;
  justify-content: center;
}

.sn-box{
  max-width: 700px;
  background: #1471b7;
  color: #fff;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.sn-logo-top{
  display: block;
  width: 100px;          /* ajustable */
  margin: 0 auto 14px;  /* centra horizontal y separa del título */
}

.sn-sub{
  font-size: 14px;
  opacity: .85;
  margin-bottom: 12px;
}

.sn-text{
  font-size: 15px;
  line-height: 1.5;
  opacity: .95;
  margin-bottom: 20px;
}

.sn-btn-linktree{
  display: inline-block;
  background: #ffffff;
  color: #1471b7;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.sn-note{
  margin-top: 14px;
  font-size: 12px;
  opacity: .7;}
    
.sn-mini-logo {
 max-width:170px; display:block;}

.sn-center{
  flex-direction: column;
  text-align: center;
}

.sn-mini-logo{
  width: 56px;
  margin-bottom: 6px;

}

.sn-mini-text{
  align-items: center;
}

.sn-mini-btn{
  margin-left: 0;
  margin-top: 10px;
}