:root{
  --black:#070707;
  --black-2:#121212;
  --black-3:#1b1b1b;
  --yellow:#f7b912;
  --yellow-2:#ffdc4d;
  --white:#ffffff;
  --paper:#f6f3ec;
  --muted:#d8d8d8;
  --red:#d70d14;
  --green:#25d366;
  --shadow:0 24px 70px rgba(0,0,0,.35);
  --radius:28px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  background:var(--black);
  color:var(--white);
  overflow-x:hidden;
  font-family:'Segoe UI', Arial, sans-serif;
}

body::selection{
  background:var(--yellow);
  color:#000;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(1180px, calc(100% - 34px));
  margin-inline:auto;
}

.section{
  padding:92px 0;
}

h1,
h2,
h3,
.brand-copy,
.btn,
.phone-pill,
.tagline,
.rent-options span,
.stamp-list strong,
.audience-grid div{
  font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', 'Arial Black', sans-serif;
  letter-spacing:.02em;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(7,7,7,.94);
  border-bottom:1px solid rgba(247,185,18,.26);
  backdrop-filter:blur(14px);
}

.navbar{
  width:min(1240px, calc(100% - 28px));
  min-height:88px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
  min-width:235px;
}

.brand-logo{
  width:66px;
  height:66px;
  object-fit:contain;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 3px rgba(247,185,18,.65);
}

.brand-copy{
  display:grid;
  line-height:.95;
  text-transform:uppercase;
}

.brand-copy strong{
  font-size:1.05rem;
}

.brand-copy small{
  color:var(--yellow);
  font-size:1.4rem;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

.nav-links a{
  padding:11px 15px;
  border-radius:999px;
  color:#f1f1f1;
  font-weight:800;
  transition:.25s ease;
}

.nav-links a:hover{
  color:#050505;
  background:var(--yellow);
}

.header-whatsapp,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  min-height:48px;
  padding:0 23px;
  font-size:1rem;
  text-transform:uppercase;
  font-weight:900;
  transition:.25s ease;
}

.header-whatsapp,
.btn-primary{
  background:linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color:#080808;
  box-shadow:0 16px 35px rgba(247,185,18,.25);
}

.header-whatsapp:hover,
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 46px rgba(247,185,18,.34);
}

.btn-secondary{
  color:#fff;
  border:2px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.04);
}

.btn-secondary:hover{
  border-color:var(--yellow);
  color:var(--yellow);
  transform:translateY(-2px);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(247,185,18,.45);
  background:#111;
  border-radius:16px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
}

.menu-toggle span{
  width:22px;
  height:3px;
  background:var(--yellow);
  border-radius:5px;
}

.hero{
  position:relative;
  min-height:calc(100vh - 88px);
  display:flex;
  align-items:center;
  padding:86px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(247,185,18,.18), transparent 32%),
    radial-gradient(circle at 15% 85%, rgba(215,13,20,.13), transparent 30%),
    linear-gradient(135deg, #090909 0%, #141414 48%, #050505 100%);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(118deg, rgba(247,185,18,.12) 0 2px, transparent 2px 100%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.03) 25px 26px);
  opacity:.6;
  pointer-events:none;
}

.speed-lines{
  position:absolute;
  left:-120px;
  top:18%;
  width:360px;
  height:280px;
  background:linear-gradient(90deg, transparent, rgba(247,185,18,.7), transparent);
  clip-path:polygon(0 20%, 100% 36%, 100% 45%, 0 36%, 0 56%, 88% 64%, 88% 72%, 0 68%);
  opacity:.28;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.04fr .96fr;
  align-items:center;
  gap:52px;
}

.tagline{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--yellow);
  text-transform:uppercase;
  font-size:1.05rem;
  margin-bottom:16px;
}

.tagline::before,
.tagline::after{
  content:"";
  width:34px;
  height:4px;
  background:currentColor;
  border-radius:999px;
}

.tagline.red{
  color:var(--red);
}

.hero h1{
  font-size:clamp(3.5rem, 8.5vw, 8.2rem);
  line-height:.8;
  text-transform:uppercase;
  text-shadow:0 8px 0 rgba(0,0,0,.3);
}

.hero h1 span{
  display:block;
  color:var(--yellow);
  font-size:1.06em;
}

.headline{
  max-width:760px;
  margin-top:28px;
  font-size:clamp(1.35rem, 3vw, 2.25rem);
  font-weight:1000;
  color:#fff;
  text-transform:uppercase;
}

.hero-text{
  max-width:650px;
  margin-top:18px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.75;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.phone-pill{
  margin-top:28px;
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:13px 20px 13px 14px;
  border-radius:999px;
  background:#fff;
  color:#070707;
  box-shadow:var(--shadow);
  font-size:clamp(1.15rem, 3vw, 2rem);
}

.phone-pill span{
  width:48px;
  height:48px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--yellow);
}

.hero-logo-card{
  position:relative;
  isolation:isolate;
  padding:28px;
  border-radius:42px;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.hero-logo-card::before{
  content:"";
  position:absolute;
  inset:18px;
  z-index:-1;
  border-radius:34px;
  border:4px solid rgba(247,185,18,.48);
  transform:rotate(-3deg);
}

.logo-ring{
  padding:16px;
  border-radius:34px;
  background:#fff;
}

.logo-ring img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  border-radius:28px;
}

.hero-logo-card p{
  margin-top:18px;
  text-align:center;
  color:var(--yellow);
  font-weight:1000;
  text-transform:uppercase;
}

.ticker{
  border-block:1px solid rgba(247,185,18,.45);
  background:var(--yellow);
  color:#050505;
  overflow:hidden;
}

.ticker-track{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:42px;
  white-space:nowrap;
  font-weight:1000;
  text-transform:uppercase;
}

.ticker-track span{
  position:relative;
}

.ticker-track span:not(:last-child)::after{
  content:"•";
  position:absolute;
  right:-26px;
}

.section-heading{
  max-width:780px;
  margin:0 auto 42px;
  text-align:center;
}

.section-heading h2,
.visual-copy h2,
.rent-content h2,
.cdmx-panel h2,
.contact-info h2{
  font-size:clamp(2.3rem, 5vw, 4.6rem);
  line-height:.9;
  text-transform:uppercase;
}

.section-heading p:not(.tagline),
.visual-copy p,
.cdmx-panel p,
.contact-info p{
  margin-top:14px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.65;
}

.services{
  background:
    radial-gradient(circle at 10% 10%, rgba(247,185,18,.12), transparent 28%),
    #101010;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.service-card,
.benefit-card{
  position:relative;
  overflow:hidden;
  min-height:235px;
  padding:28px;
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 18px 50px rgba(0,0,0,.22);
}

.service-card::after,
.benefit-card::after{
  content:"";
  position:absolute;
  width:125px;
  height:125px;
  right:-45px;
  top:-45px;
  border-radius:50%;
  background:rgba(247,185,18,.14);
}

.service-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#050505;
  color:var(--yellow);
  border:2px solid var(--yellow);
  font-size:1.55rem;
  margin-bottom:22px;
}

.service-card h3,
.benefit-card h3{
  font-size:1.65rem;
  line-height:1;
  text-transform:uppercase;
}

.service-card p,
.benefit-card p{
  margin-top:14px;
  color:var(--muted);
  line-height:1.65;
}

.image-block{
  background:var(--paper);
  color:#090909;
}

.visual-grid{
  display:grid;
  grid-template-columns:1fr .84fr;
  align-items:center;
  gap:44px;
}

.poster-card,
.rent-poster{
  border-radius:34px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
  border:8px solid #fff;
}

.poster-card img,
.rent-poster img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.visual-copy{
  padding:38px;
  border-radius:34px;
  background:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,.12);
}

.visual-copy .tagline{
  color:#111;
}

.visual-copy .tagline::before,
.visual-copy .tagline::after{
  background:var(--yellow);
}

.visual-copy p{
  color:#333;
}

.checks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.checks span{
  padding:10px 14px;
  border-radius:999px;
  background:#111;
  color:#fff;
  font-weight:900;
}

.rent{
  background:
    linear-gradient(100deg, #fff 0 46%, transparent 46%),
    radial-gradient(circle at 88% 18%, rgba(215,13,20,.18), transparent 32%),
    #f5f5f5;
  color:#090909;
}

.rent-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:44px;
  align-items:center;
}

.rent-content{
  padding:40px;
  border-radius:34px;
  background:#fff;
  box-shadow:0 24px 70px rgba(0,0,0,.13);
}

.rent-content h2{
  color:var(--red);
  font-size:clamp(4rem, 8vw, 7rem);
}

.rent-main{
  margin-top:8px;
  color:#111;
  font-size:1.45rem;
  font-weight:1000;
  text-transform:uppercase;
}

.rent-options{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
  margin-top:24px;
}

.rent-options span{
  min-height:62px;
  display:grid;
  place-items:center;
  padding:12px;
  border-radius:18px;
  background:var(--red);
  color:#fff;
  text-align:center;
  text-transform:uppercase;
}

.stamp-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}

.stamp-list strong{
  display:block;
  padding:13px 15px;
  border:3px solid var(--red);
  border-radius:16px;
  color:#111;
  text-transform:uppercase;
}

.benefits{
  background:#090909;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.benefit-card{
  min-height:210px;
}

.benefit-card span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  margin-bottom:18px;
  border-radius:50%;
  color:#050505;
  background:var(--yellow);
  font-weight:1000;
}

.audience{
  background:linear-gradient(135deg, #121212, #070707);
}

.audience-box{
  padding:44px;
  border-radius:40px;
  background:linear-gradient(135deg, rgba(247,185,18,.18), rgba(255,255,255,.05));
  border:1px solid rgba(247,185,18,.26);
  box-shadow:var(--shadow);
}

.section-heading.compact{
  margin-bottom:30px;
}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.audience-grid div{
  min-height:118px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:24px;
  color:#090909;
  background:#fff;
  font-size:1.2rem;
  text-transform:uppercase;
  border-bottom:8px solid var(--yellow);
}

.cdmx{
  background:
    radial-gradient(circle at 12% 50%, rgba(247,185,18,.18), transparent 30%),
    var(--black);
}

.cdmx-panel{
  text-align:center;
  max-width:950px;
  padding:54px 38px;
  border-radius:40px;
  background:#fff;
  color:#080808;
  box-shadow:var(--shadow);
}

.cdmx-panel .tagline{
  justify-content:center;
}

.cdmx-panel p{
  color:#333;
  max-width:720px;
  margin-inline:auto;
  margin-bottom:28px;
}

.contact{
  background:
    linear-gradient(135deg, rgba(247,185,18,.13), transparent 35%),
    #121212;
}

.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.big-number{
  margin-top:28px;
  display:inline-grid;
  gap:6px;
  padding:22px 26px;
  border-radius:26px;
  background:#050505;
  border:2px solid var(--yellow);
}

.big-number span{
  color:var(--yellow);
  font-weight:900;
  text-transform:uppercase;
}

.big-number strong{
  font-size:clamp(1.75rem, 5vw, 3.2rem);
}

.contact-card{
  padding:30px;
  border-radius:38px;
  background:#fff;
  color:#090909;
  text-align:center;
  box-shadow:var(--shadow);
}

.contact-card img{
  width:min(340px, 90%);
  margin:0 auto 18px;
  border-radius:28px;
}

.contact-card h3{
  font-size:2rem;
  text-transform:uppercase;
}

.contact-card p{
  margin:8px 0 20px;
  font-weight:900;
}

.full{
  width:100%;
}

.footer{
  padding:34px 0;
  background:#050505;
  border-top:1px solid rgba(247,185,18,.3);
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer strong{
  display:block;
  margin-bottom:7px;
  color:var(--yellow);
  text-transform:uppercase;
}

.footer p{
  color:#dcdcdc;
}

.whatsapp-float,
.back-top{
  position:fixed;
  right:20px;
  z-index:90;
  width:58px;
  height:58px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  box-shadow:0 16px 38px rgba(0,0,0,.3);
  cursor:pointer;
}

.whatsapp-float{
  bottom:22px;
  background:var(--green);
  color:#fff;
  font-size:1.5rem;
}

.back-top{
  bottom:92px;
  background:var(--yellow);
  color:#070707;
  font-size:1.3rem;
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
  transition:.25s ease;
}

.back-top.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.reveal{
  opacity:1;
  transform:none;
}

.js-animate .reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .65s ease, transform .65s ease;
}

.js-animate .reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 1020px){
  .hero-grid,
  .visual-grid,
  .rent-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
  }

  .hero-logo-card,
  .poster-card,
  .rent-poster,
  .contact-card{
    max-width:760px;
    margin-inline:auto;
  }

  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .benefits-grid,
  .audience-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .rent{
    background:#f5f5f5;
  }
}

@media (max-width: 820px){
  .navbar{
    min-height:78px;
  }

  .brand{
    min-width:0;
  }

  .brand-logo{
    width:56px;
    height:56px;
  }

  .brand-copy strong{
    font-size:.86rem;
  }

  .brand-copy small{
    font-size:1.12rem;
  }

  .menu-toggle{
    display:flex;
  }

  .header-whatsapp{
    display:none;
  }

  .nav-links{
    position:absolute;
    top:78px;
    left:14px;
    right:14px;
    display:grid;
    gap:0;
    background:#101010;
    border:1px solid rgba(247,185,18,.36);
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px);
    transition:.25s ease;
  }

  .nav-links.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .nav-links a{
    border-radius:0;
    padding:17px 20px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .section{
    padding:72px 0;
  }

  .hero{
    padding:64px 0;
  }

  .hero h1{
    font-size:clamp(3.2rem, 15vw, 5.4rem);
  }

  .hero-actions{
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .ticker-track{
    justify-content:flex-start;
    overflow-x:auto;
    padding:0 18px;
  }

  .visual-copy,
  .rent-content,
  .audience-box,
  .cdmx-panel,
  .contact-card{
    padding:26px;
    border-radius:28px;
  }
}

@media (max-width: 620px){
  .container{
    width:min(100% - 24px, 1180px);
  }

  .services-grid,
  .benefits-grid,
  .audience-grid,
  .rent-options{
    grid-template-columns:1fr;
  }

  .service-card,
  .benefit-card{
    min-height:auto;
  }

  .phone-pill{
    width:100%;
    justify-content:center;
    font-size:1.4rem;
  }

  .tagline{
    font-size:.9rem;
  }

  .tagline::before,
  .tagline::after{
    width:18px;
  }

  .footer-grid{
    display:grid;
    text-align:center;
  }

  .whatsapp-float,
  .back-top{
    right:14px;
    width:54px;
    height:54px;
  }
}
