:root{
  --bg:#0b0d12;
  --bg-soft:#121722;
  --card:#1c2b43;
  --card-2:#0d1420;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.15);
  --text:#f4f7fb;
  --muted:#b9c2d0;
  --red:#d61111;
  --black:#000;
  --white:#fff;
  --orange:#a40000;
  --yellow:#ffd400;
  --green:#22c55e;
  --blue:#39a0ff;
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --shadow-soft:0 10px 28px rgba(0,0,0,.24);
  --radius:24px;
  --radius-sm:18px;
  --radius-xs:14px;
  --max:1380px;
  --header-h:84px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-width:320px;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,212,0,.08), transparent 26%),
    radial-gradient(circle at top left, rgba(255,59,48,.12), transparent 22%),
    linear-gradient(180deg,#090b10 0%, #0d1118 100%);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

body.body-lock{
  overflow:hidden;
}

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

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

button,
input,
textarea,
select{
  font:inherit;
}

button{
  border:0;
  background:none;
  cursor:pointer;
}

iframe{
  border:0;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.section{
  padding:72px 0;
}

.section-sm{
  padding:36px 0;
}

.grid{
  display:grid;
  gap:20px;
}

.title{
  margin:16px 0 14px;
  font-size:clamp(2.2rem, 4.8vw, 4.8rem);
  line-height:1.05;
  letter-spacing:-.035em;
  font-weight:900;
}

.title-md{
  font-size:clamp(2rem, 4vw, 3.4rem);
}

.subtitle{
  margin:0;
  color:var(--muted);
  font-size:clamp(1rem, 2vw, 1.12rem);
  max-width:840px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  max-width:100%;
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--yellow);
  font-size:.86rem;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--yellow),var(--orange));
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:#fff;
  color:#000;
  padding:10px 14px;
  z-index:9999;
  border-radius:12px;
}

.skip-link:focus{
  left:12px;
  top:12px;
}

a:focus-visible,
button:focus-visible{
  outline:2px solid var(--yellow);
  outline-offset:3px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 20px;
  border-radius:3px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.01em;
  text-align:center;
  white-space:nowrap;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    opacity .22s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--orange));
  box-shadow:0 16px 40px rgba(255,59,48,.22);
}

.btn-primary:hover{
  box-shadow:0 22px 46px rgba(255,59,48,.3);
}

.btn-secondary{
  color:#fff;
  background:#2196F3;
  border-color:var(--line);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--line-strong);
}

.btn-whatsapp{
  color:#08110b;
  background:#25D366;
  box-shadow:0 16px 34px rgba(37,211,102,.18);
}

.btn-whatsapp:hover{
  box-shadow:0 20px 42px rgba(37,211,102,.26);
}

.btn-block{
  width:100%;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1100;
  min-height:var(--header-h);
  backdrop-filter:blur(16px);
  background:rgba(8,11,17,.82);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav{
  min-height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  flex:0 0 auto;
}

.brand img{
  width:195px;
  height:auto;
}

.nav-menu{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex:1 1 auto;
}

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

.nav-links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 12px;
  border-radius:12px;
  font-weight:800;
  transition:background .2s ease, transform .2s ease, color .2s ease;
}

.nav-links a:hover{
  background:rgba(255,255,255,.05);
  transform:translateY(-1px);
}

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

.nav-lang{
  display:flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
  justify-content: center;
}

.nav-lang a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:0 10px;
  border-radius:6px;
  border:1px solid #ffffffa1;
  background:rgba(255,255,255,.04);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
  transition:all .2s ease;
}

.nav-lang a:hover{
  background:rgba(255,255,255,.08);
  border-color:var(--line-strong);
  transform:translateY(-1px);
}

.nav-lang a.active{
  background:#fff;
  color:#000;
  border-color:#fff;
}

.nav-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
  color:#fff;
}

.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .22s ease, opacity .22s ease;
}

.nav-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2){
  opacity:0;
}

.nav-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  min-height:84svh;
  display:grid;
  align-items:center;
  border-bottom:1px solid var(--line);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(7,10,15,.34), rgba(7,10,15,.8)),
    linear-gradient(90deg, rgba(11,13,18,.95) 0%, rgba(11,13,18,.68) 42%, rgba(11,13,18,.34) 100%),
    url('../img/karting-benidorm-hero.webp') center/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:86px;
  background:linear-gradient(180deg, rgba(11,13,18,0), rgba(11,13,18,1));
}

.hero-inner{
  position:relative;
  z-index:1;
  padding:44px 0 84px;
}

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

.hero-copy{
  min-width:0;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}

.hero-meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:28px;
}

/* MINI STATS */
.mini-stat{
  display:flex;
  align-items:center;
  gap:12px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:12px 14px;
  text-align:left;
}

.mini-stat__icon{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  color:var(--yellow);
}

.mini-stat__icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.mini-stat__content{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.mini-stat strong{
  font-size:1rem;
  font-weight:800;
  line-height:1.2rem;
  color:#fff;
}

.mini-stat span{
  font-size:.85rem;
  color:var(--muted);
}

.hero-panel{
  display:grid;
  gap:16px;
  background:linear-gradient(180deg, rgba(10,12,17,.62), rgba(10,12,17,.88));
  border:1px solid rgba(255,255,255,.08);
  border-radius:26px;
  padding:20px;
  box-shadow:var(--shadow);
}

.hero-panel img{
  width:100%;
  border-radius:20px;
  aspect-ratio:16/11;
  object-fit:cover;
}

.checklist{
  display:grid;
  gap:6px;
  list-style:none;
  margin:0;
  padding:0;
}

.checklist li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.08);
}

.checklist li:last-child{
  border-bottom:0;
}

.dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--yellow),var(--red));
  margin-top:7px;
  flex:0 0 auto;
}

/* HERO VIDEO */
.hero-video{
  position:relative;
  width:100%;
  border-radius:20px;
  overflow:hidden;
  background:#000;
}

.hero-video__trigger{
  position:relative;
  display:block;
  width:100%;
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
  color:#fff;
}

.hero-video__poster{
  display:block;
  width:100%;
  aspect-ratio:16 / 11;
  object-fit:cover;
  background:#000;
}

.hero-video__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.4)),
    radial-gradient(circle at center, rgba(0,0,0,.06), rgba(0,0,0,.25));
}

.hero-video__play-wrap{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%, -50%);
  width:92px;
  height:92px;
  display:grid;
  place-items:center;
  pointer-events:none;
}

.hero-video__play{
  position:relative;
  z-index:3;
  width:92px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,.28);
  color:#fff;
  transition:transform .22s ease, background .22s ease;
}

.hero-video__pulse{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
  animation:heroVideoPulse 2.2s ease-out infinite;
}

.hero-video__pulse--2{
  animation-delay:.7s;
}

@keyframes heroVideoPulse{
  0%{
    transform:scale(.72);
    opacity:.75;
  }
  70%{
    transform:scale(1.25);
    opacity:0;
  }
  100%{
    transform:scale(1.35);
    opacity:0;
  }
}

@media (hover:hover) and (pointer:fine){
  .hero-video__trigger:hover .hero-video__play{
    transform:scale(1.06);
    background:rgba(255,255,255,.22);
  }
}

/* HERO VIDEO MODAL */
.hero-video__modal{
  position:fixed;
  inset:0;
  z-index:2200;
  display:none;
}

.hero-video__modal.is-open{
  display:block;
}

.hero-video__backdrop{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  background:rgba(3,6,10,.86);
  backdrop-filter:blur(8px);
}

.hero-video__dialog{
  position:relative;
  z-index:2;
  width:min(1100px, calc(100% - 28px));
  margin:15vh auto 0;
  border-radius:20px;
  overflow:hidden;
  background:#000;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.hero-video__close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:3;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(0,0,0,.48);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
}

.hero-video__frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  background:#000;
}

.hero-video__frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* HERO GOOGLE RATING CARD */
.hero-rating{
  display:inline-flex;
  gap:8px;
  margin-top:18px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:3px;
  color:#fff;
}

.hero-rating__google{
  font-weight:800;
  font-size:20px;
  letter-spacing:-0.2px;
  line-height:1;
  user-select:none;
}

.hero-rating .g-b{ color:#4285F4; }
.hero-rating .g-r{ color:#EA4335; }
.hero-rating .g-y{ color:#FBBC05; }
.hero-rating .g-g{ color:#34A853; }

.hero-rating__row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:-4px;
  margin-bottom:-6px;
}

.hero-rating__score{
  font-weight:800;
  font-size:16px;
  color:#fff;
  white-space:nowrap;
}

.hero-rating__stars{
  display:flex;
  gap:2px;
  transform:translateY(1px);
}

.hero-rating__star{
  width:16px;
  height:16px;
  display:block;
}

.hero-rating__star-base{
  fill:#d8d8d8;
}

.hero-rating__star-fill{
  fill:#f4c542;
}

.hero-rating__sub{
  font-size:12px;
  color:#fff;
}

.hero-rating__sub strong{
  color:#fff;
  font-weight:800;
}

/* Trust */
.trustbar{
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.trust-items{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:18px 0;
}

.trust-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:62px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  text-align:center;
  font-weight:800;
}

/* KART CARDS */
#precios,
#precios .container,
.cards-wrapper{
  overflow:visible;
}

.cards-wrapper{
  position:relative;
  width:100%;
}

.cards-intro{
  margin-bottom:8px;
}

.cards-hint{
  display:none;
  margin:10px 0 8px;
  color:var(--yellow);
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.01em;
}

.cards{
  display:flex;
  flex-wrap:nowrap;
  gap:15px;
  align-items:stretch;
  width:100%;
  max-width:100%;
  margin:25px 0 0;
  padding:0;
}

.cards > .card{
  margin:0 !important;
  box-sizing:border-box;
  min-width:0;
}

.card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:linear-gradient(180deg,var(--card),var(--card-2));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--yellow),var(--red),var(--blue));
}

.card-media{
  padding:18px 18px 0;
}

.card-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:linear-gradient(180deg,#fff,#eceff4);
  border-radius:18px;
  padding:0;
}

.card-body{
  display:grid;
  gap:12px;
  align-content:start;
  flex:1;
  padding:18px;
}

.badge-type{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.22);
  background:rgba(255,212,0,.12);
  color:var(--yellow);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.card h3{
  font-size:1.7rem;
  line-height:1;
  font-weight:900;
  margin:0;
}

.card p{
  color:var(--muted);
  margin:0;
}

.price{
  display:flex;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:8px;
}

.price strong{
  font-size:2.5rem;
  line-height:1;
  color:#fff;
}

.price span{
  color:var(--muted);
  font-weight:800;
}

.price-list{
  display:grid;
  gap:10px;
  margin-top:2px;
  padding-top:14px;
  border-top:1px dashed rgba(255,255,255,.12);
}

.price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:800;
}

.price-row span:last-child{
  color:var(--yellow);
}

.card-actions{
  display:grid;
  gap:10px;
  margin-top:auto;
}

@media (hover:hover) and (pointer:fine){
  .card:hover{
    transform:translateY(-6px);
    border-color:var(--line-strong);
    box-shadow:0 24px 60px rgba(0,0,0,.42);
  }

  .race-card:hover{
    transform:translateY(-6px);
    border-color:var(--line-strong);
    box-shadow:0 24px 60px rgba(0,0,0,.42);
  }

  .gallery-grid img:hover{
    transform:scale(1.03);
    box-shadow:0 14px 40px rgba(0,0,0,.35);
  }
}

@media (min-width:981px){
  .cards{
    justify-content:center;
  }

  .cards > .card{
    flex:0 0 calc((100% - (15px * 4)) / 5);
    max-width:calc((100% - (15px * 4)) / 5);
  }
}

@media (min-width:768px) and (max-width:980px){
  .cards-hint{
    display:block;
  }

  .cards{
    overflow-x:auto;
    overflow-y:visible;
    touch-action:pan-x pan-y;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    padding:10px 15px;
    scroll-padding-left:15px;
  }

  .cards > .card{
    flex:0 0 calc((100% - 15px) / 2.2);
    min-width:calc((100% - 15px) / 2.2);
    max-width:calc((100% - 15px) / 2.2);
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
}

@media (max-width:767px){
  .cards-hint{
    display:block;
  }

  .cards{
    overflow-x:auto;
    overflow-y:visible;
    touch-action:pan-x pan-y;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    padding:10px 15px;
    scroll-padding-left:15px;
  }

  .cards > .card{
    flex:0 0 85%;
    min-width:85%;
    max-width:85%;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
}

@media (max-width:980px){
  .cards{
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .cards::-webkit-scrollbar{
    display:none;
  }
}

/* GROUP RACES */
.group-races-section{
  position:relative;
  overflow:hidden;
}

.group-races-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.03), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  pointer-events:none;
}

.group-races-head{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:980px;
  margin:0 auto 34px;
}

.group-races-lead{
  margin:8px 0;
  color:var(--yellow);
  font-size:clamp(1.25rem, 2vw, 1.8rem);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.group-races-subtitle{
  max-width:860px;
  margin-inline:auto;
}

.group-races-divider{
  display:block;
  width:72px;
  height:8px;
  margin:22px auto 0;
  background:linear-gradient(90deg,var(--yellow),var(--red),var(--blue));
  border-radius:999px;
}

.group-races-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.race-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:linear-gradient(180deg,var(--card),var(--card-2));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.race-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:4px;
  background:linear-gradient(90deg,var(--yellow),var(--red),var(--blue));
}

.race-card__topbar{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:calc(100% - 36px);
  margin:18px 18px 0;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,212,0,.22);
  background:rgba(255,212,0,.12);
  color:var(--yellow);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  line-height:1;
}

.race-card__media{
  padding:18px 18px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:0;
}

.race-card__media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:linear-gradient(180deg,#fff,#eceff4);
  border-radius:18px;
  padding:0;
  max-width:none;
}

.race-card__body{
  display:grid;
  gap:12px;
  align-content:start;
  flex:1;
  padding:18px;
}

.race-features{
  display:grid;
  gap:10px;
  margin:0;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

.race-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  list-style:none;
  margin:0;
  padding:0;
  color:#fff;
}

.race-features__icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  min-width:22px;
  height:22px;
  color:var(--yellow);
  font-size:1rem;
  transform:translateY(1px);
}

.race-prices{
  display:grid;
  gap:10px;
  margin-top:2px;
  padding-top:14px;
  border-top:1px dashed rgba(255,255,255,.12);
}

.race-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:800;
  color:#fff;
  font-size:1rem;
}

.race-price-row span:first-child{
  color:#fff;
}

.race-price-row span:last-child{
  color:var(--yellow);
}

.race-card__actions{
  display:grid;
  gap:10px;
  margin-top:auto;
  padding-top:4px;
}

.booking-race-selector{
  margin-bottom:16px;
  text-align:center;
}

.booking-race-selector__label{
  margin:0 0 12px;
  color:#111;
  font-size:1rem;
  font-weight:800;
}

.booking-race-selector__tabs{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.booking-race-tab{
  min-height:46px;
  padding:0 18px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  background:#e4e8ef;
  color:#111;
  font-size:.96rem;
  font-weight:900;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.booking-race-tab:hover{
  transform:translateY(-1px);
}

.booking-race-tab.active{
  background:linear-gradient(90deg,var(--yellow),#ffbf00);
  color:#111;
  border-color:rgba(255,212,0,.35);
  box-shadow:0 10px 18px rgba(255,212,0,.24);
}

.booking-shell{
  display:block;
  width:100%;
  min-height:420px;
  border-radius:18px;
  border:1px dashed rgba(255,255,255,.12);
  background:#fff;
  padding:14px;
}

.booking-race-widgets{
  display:block;
  width:100%;
}

.race-group{
  display:none;
}

.race-group.active{
  display:block;
}

.race-tab-content{
  display:none;
}

.race-tab-content.active{
  display:block;
}

.booking-race-widgets .load-turitop{
  display:block;
  width:100%;
  min-height:1500px;
}

.booking-race-widgets .load-turitop iframe{
  width:100% !important;
  min-height:1500px !important;
  height:auto !important;
  border:none !important;
  overflow:hidden !important;
  display:block !important;
  background:#fff;
  border-radius:18px;
}

.booking-shell .load-turitop{
  min-height:390px;
}

.booking-help{
  margin-top:10px;
  color:var(--muted);
  font-size:.92rem;
}

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

@media (max-width:860px){
  .group-races-grid{
    display:flex;
    flex-wrap:nowrap;
    gap:14px;
    overflow-x:auto;
    overflow-y:visible;
    width:100%;
    max-width:100%;
    padding:8px 15% 18px 0;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    touch-action:pan-x pan-y;
  }

  .group-races-grid::-webkit-scrollbar{
    display:none;
  }

  .group-races-grid > .race-card{
    flex:0 0 86%;
    min-width:86%;
    max-width:86%;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }

  .race-card{
    min-height:100%;
  }

  .race-card__topbar{
    margin:16px 16px 0;
  }

  .race-card__media{
    padding:16px 16px 0;
  }

  .race-card__body{
    padding:16px;
  }

  .race-price-row{
    font-size:1rem;
  }

  .booking-race-widgets .load-turitop{
    min-height:1200px;
  }

  .booking-race-widgets .load-turitop iframe{
    min-height:1200px !important;
  }
}

@media (max-width:560px){
  .group-races-grid{
    padding-right:0%;
  }

  .group-races-grid > .race-card{
    flex:0 0 85%;
    min-width:85%;
    max-width:85%;
  }

  .booking-race-tab{
    width:100%;
  }

  .booking-race-widgets .load-turitop{
    min-height:1000px;
  }

  .booking-race-widgets .load-turitop iframe{
    min-height:1000px !important;
  }
}

/* CIRCUITO */
.circuito-section{
  position:relative;
  overflow:hidden;
}

.circuito-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.03), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  pointer-events:none;
}

.circuito-head{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:980px;
  margin:0 auto 34px;
}

.circuito-subtitle{
  max-width:900px;
  margin-inline:auto;
}

.circuito-divider{
  display:block;
  width:72px;
  height:8px;
  margin:22px auto 0;
  background:repeating-linear-gradient(
    90deg,
    var(--red) 0 14px,
    transparent 14px 20px
  );
  border-radius:999px;
}

.circuito-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(220px, 260px) minmax(0, 1fr) minmax(220px, 260px);
  gap:26px;
  align-items:center;
}

.circuito-side{
  display:grid;
  gap:28px;
}

.circuito-map{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  padding:24px;
  border-radius:28px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.04), rgba(255,255,255,.01)),
    rgba(255,255,255,.01);
  box-shadow:var(--shadow);
}

.circuito-map::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background-image:radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:12px 12px;
  opacity:.18;
  pointer-events:none;
}

.circuito-map img{
  filter:brightness(0%) contrast(200%) invert(100%);
  backface-visibility:hidden;
  position:relative;
  z-index:1;
  width:100%;
  max-width:620px;
  height:auto;
  object-fit:contain;
}

.circuito-stat{
  display:grid;
  justify-items:center;
  text-align:center;
  gap:14px;
}

.circuito-stat__num{
  width:57px;
  height:57px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:linear-gradient(180deg, #d61111, #a40000);
  color:#fff;
  font-size:1.5rem;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 14px 30px rgba(233,30,25,.24);
}

.circuito-stat__title{
  margin:0;
  color:#fff;
  font-size:1.7rem;
  font-weight:900;
  line-height:.95;
}

.circuito-stat__value{
  margin:0;
  color:var(--yellow);
  font-size:1.08rem;
  font-weight:900;
  line-height:1.2;
}

/* TESTIMONIALS */
.testimonials-grid{
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}

.testimonial-card{
  display:grid;
  gap:14px;
  padding:26px 22px 22px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.testimonial-google-badge{
  top:14px;
  left:14px;
  width:39px;
  height:39px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
}

.testimonial-google-badge img{
  width:30px;
  height:30px;
  object-fit:contain;
}

.testimonial-top{
  display:grid;
  gap:4px;
}

.testimonial-name{
  font-size:1rem;
  font-weight:900;
  color:#fff;
}

.testimonial-source{
  font-size:.86rem;
  color:var(--muted);
}

.testimonial-rating{
  display:flex;
  align-items:center;
  gap:10px;
}

.testimonial-stars{
  color:var(--yellow);
  letter-spacing:2px;
  font-size:1rem;
  line-height:1;
}

.testimonial-score{
  font-weight:800;
  color:#fff;
  font-size:.95rem;
}

.testimonial-text{
  margin:0;
  color:var(--muted);
  font-size:.97rem;
  line-height:1.65;
}

/* GALLERY GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:10px;
  margin-top:28px;
}

.gallery-grid img{
  width:100%;
  height:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--line);
  transition:transform .25s ease, box-shadow .25s ease;
}

/* Extra bloques */
.warn-box{
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,59,48,.08);
  border:1px solid rgba(255,59,48,.18);
}

.warn-box h3{
  margin:0 0 8px;
  font-size:1rem;
}

.warn-box p{
  color:var(--muted);
  margin:0;
}

/* Split / gallery / contact */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.feature-box,
.contact-card,
.faq-item{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}

.gallery{
  grid-template-columns:repeat(3,1fr);
}

.gallery figure{
  margin:0;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  transition:transform .22s ease, border-color .22s ease;
}

.gallery figure:hover{
  transform:translateY(-4px);
  border-color:var(--line-strong);
}

.gallery img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}

.gallery figcaption{
  padding:12px 14px;
  color:var(--text);
  font-size:.92rem;
  font-weight:600;
  letter-spacing:-0.4px;
}

.contact-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:20px;
}

.contact-list{
  display:grid;
  gap:12px;
}

.contact-link{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}

.contact-link:hover{
  transform:translateY(-2px);
  border-color:var(--line-strong);
  background:rgba(255,255,255,.05);
}

.contact-link:hover .contact-icon{
  transform:translateY(-1px);
  transition:transform .2s ease;
}

.contact-content{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.contact-icon{
  --icon-size:47px;
  width:var(--icon-size);
  height:var(--icon-size);
  flex:0 0 var(--icon-size);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#E91E19;
  margin-top:2px;
  border:1px solid var(--line);
  border-radius:100%;
  padding:9px;
}

.contact-icon svg{
  width:100%;
  height:100%;
  display:block;
  fill:currentColor;
}

.map-embed{
  width:100%;
  min-height:750px;
  border-radius:24px;
  box-shadow:var(--shadow);
}

/* FAQ accordion */
.faq-wrap{
  max-width:1040px;
}

.faq-accordion{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.faq-item{
  padding:0;
  overflow:hidden;
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 22px;
  color:#fff;
  text-align:left;
  font-weight:900;
  font-size:1.02rem;
  transition:background .22s ease;
}

.faq-question:hover{
  background:rgba(255,255,255,.03);
}

.faq-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  min-width:30px;
  min-height:30px;
  flex:0 0 30px;
  border-radius:50%;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#e91e1a;
  font-size:1.1rem;
  line-height:1;
  transition:transform .22s ease;
}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .24s ease;
}

.faq-answer p{
  min-height:0;
  overflow:hidden;
  color:var(--muted);
  margin:0;
  padding:0 22px 0;
}

.faq-item.is-open .faq-answer{
  grid-template-rows:1fr;
}

.faq-item.is-open .faq-answer p{
  padding-bottom:22px;
}

.faq-item.is-open .faq-icon{
  transform:rotate(45deg);
}

/* RENT CIRCUIT */
#rent-circuit .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  min-height:550px;
  background:linear-gradient(180deg, var(--card), var(--card-2));
  border-radius:30px;
  padding:45px;
}

#rent-circuit .rent-circuit-content{
  max-width:600px;
}

#rent-circuit .title,
#rent-circuit .rent-circuit-text{
  color:#fff;
}

#rent-circuit .rent-circuit-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  background:linear-gradient(90deg, #ff2a00, #ffb300);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border-radius:3px;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background .22s ease,
    border-color .22s ease,
    opacity .22s ease;
}

#rent-circuit .rent-circuit-btn:hover{
  transform:translateY(-2px);
}

#rent-circuit .rent-circuit-visual{
  position:relative;
  width:45%;
  min-height:400px;
}

#rent-circuit .rent-circuit-kart-wrap{
  position:absolute;
  right:0;
  bottom:0;
  width:100%;
  max-width:100%;
}

#rent-circuit .rent-circuit-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  transform:none;
  transition:none;
}

/* FOOTER */
.footer{
  padding:75px 0 28px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.02);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:32px;
  align-items:start;
  padding-bottom:75px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-col{
  display:flex;
  flex-direction:column;
  gap:12px;
  min-width:0;
}

.footer-col--brand,
.footer-col--legal,
.footer-col--payments{
  align-items:flex-start;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:8px;
}

.footer-logo img{
  max-width:195px;
  height:auto;
  display:block;
}

.footer-brand{
  font-size:1.1rem;
  font-weight:900;
  color:#fff;
}

.footer-title{
  font-size:1rem;
  font-weight:900;
  color:#fff;
  margin:0;
}

.footer-copy{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.6;
  max-width:500px;
}

.footer-links--stack{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-links--stack a{
  color:var(--muted);
  font-weight:300;
  transition:color .2s ease, transform .2s ease;
}

.footer-links--stack a:hover{
  color:#fff;
  transform:translateY(-1px);
}

.footer-payments{
  margin-top:4px;
}

.footer-payments__text{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

.footer-payments img{
  display:block;
  width:100%;
  max-width:320px;
  height:auto;
  object-fit:contain;
  filter:brightness(0) invert(1) opacity(.9);
}

/* SOCIALS */
.socials{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
  gap:12px;
  margin-top:6px;
}

.social-link{
  --size:48px;
  --icon-size:22px;
  width:var(--size);
  height:var(--size);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.02);
  color:#ffffff;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.social-icon{
  width:var(--icon-size);
  height:var(--icon-size);
  fill:currentColor;
}

.social-link:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.35);
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* FOOTER BOTTOM */
.footer-bottom{
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-bottom__left{
  color:var(--muted);
  font-size:.9rem;
}

.footer-bottom__right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.footer-dev{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.footer-dev img{
  max-width:120px;
  height:auto;
  display:block;
  opacity:.85;
  transition:opacity .2s ease, transform .2s ease;
}

.footer-dev:hover img{
  opacity:1;
  transform:translateY(-2px);
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  z-index:2000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  background:rgba(3,6,10,.82);
  backdrop-filter:blur(8px);
}

.modal[aria-hidden="false"]{
  display:flex;
}

.modal-dialog{
  width:min(860px, 100%);
  max-height:min(92vh, 980px);
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg,#111722,#0a0f17);
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
}

.modal-body{
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  flex:1;
}

.modal-title{
  font-size:1.2rem;
  font-weight:900;
}

.modal-close{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  transition:background .22s ease, transform .22s ease;
}

.modal-close:hover{
  background:rgba(255,255,255,.14);
  transform:scale(1.04);
}

/* Sticky mobile CTA */
.sticky-cta{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:99999999;
  display:none;
  grid-template-columns:1fr auto auto;
  gap:10px;
  padding:10px;
  background:rgba(8,10,15,.86);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.08);
  border-radius:3px;
  box-shadow:var(--shadow);
  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease;
}

.sticky-cta .btn{
  min-height:50px;
  width:100%;
}

body.hide-sticky-cta .sticky-cta{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(12px);
}

/* LEGAL PAGES */
.section.legal{
  background:#fff;
  color:#000;
  padding:60px 0;
}

.legal-wrap{
  max-width:900px;
}

.legal h2{
  margin-top:30px;
  margin-bottom:10px;
  font-size:1.2rem;
}

.legal h3{
  margin-top:18px;
  margin-bottom:8px;
  font-size:1rem;
}

.legal p,
.legal li{
  color:var(--black);
  line-height:1.7;
}

.legal ul{
  padding-left:20px;
  margin-bottom:16px;
}

/* Responsive */
@media (max-width:1250px){
  .hero-grid,
  .contact-grid,
  .footer-grid,
  .split{
    grid-template-columns:1fr;
  }

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

  .footer-grid > div:first-child{
    align-items:center;
    text-align:center;
  }

  .socials{
    justify-content:center;
  }
}

@media (max-width:1100px){
  .circuito-layout{
    grid-template-columns:1fr;
    gap:22px;
  }

  .circuito-side{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:18px;
  }

  .circuito-side--left{
    order:1;
  }

  .circuito-map{
    order:2;
  }

  .circuito-side--right{
    order:3;
  }
}

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

  .footer-col--brand{
    grid-column:1 / -1;
  }

  .gallery-grid{
    grid-template-columns:repeat(3, 1fr);
  }

  .testimonials-grid{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:visible;
    touch-action:pan-x pan-y;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    padding:10px 15px;
    scroll-padding-left:15px;
    gap:15px;
    scrollbar-width:none;
    -ms-overflow-style:none;
  }

  .testimonials-grid::-webkit-scrollbar{
    display:none;
  }

  .testimonials-grid > .testimonial-card{
    flex:0 0 calc((100% - 15px) / 2.2);
    min-width:calc((100% - 15px) / 2.2);
    max-width:calc((100% - 15px) / 2.2);
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }
}

@media (max-width:860px){
  .container{
    width:min(var(--max), calc(100% - 28px));
  }

  .section{
    padding:54px 0;
  }

  .nav{
    min-height:74px;
    padding:12px 0;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .nav-menu{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:14px;
    border-radius:22px;
    border:1px solid var(--line);
    background:rgba(9,12,18,.98);
    box-shadow:var(--shadow-soft);
  }

  .nav-menu.open{
    display:flex;
  }

  .nav-links{
    display:grid;
    gap:8px;
    justify-content:stretch;
  }

  .nav-links a{
    width:100%;
    min-height:48px;
    justify-content:center;
  }

  .nav-cta{
    width:100%;
  }

  .nav-cta .btn{
    width:100%;
  }

  .hero{
    min-height:auto;
  }

  .hero-inner{
    padding:28px 0 60px;
  }

  .hero-meta{
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
  }

  .mini-stat{
    display:block;
  }

  .sticky-cta{
    display:grid !important;
  }
}

@media (max-width:768px){
  #rent-circuit .container{
    flex-direction:column;
    gap:24px;
    min-height:auto;
    padding:30px;
  }

  #rent-circuit .rent-circuit-visual{
    order:-1;
    width:100%;
    min-height:auto;
  }

  #rent-circuit .rent-circuit-content{
    max-width:100%;
  }

  #rent-circuit .rent-circuit-kart-wrap{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    max-width:100%;
  }

  #rent-circuit .rent-circuit-image{
    width:100%;
    max-width:420px;
    margin:0 auto;
  }

  .gallery-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:10px;
  }

  .testimonials-grid{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    overflow-y:visible;
    touch-action:pan-x pan-y;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    padding:10px 15px;
    scroll-padding-left:15px;
    gap:15px;
  }

  .testimonials-grid > .testimonial-card{
    flex:0 0 85%;
    min-width:85%;
    max-width:85%;
    scroll-snap-align:start;
    scroll-snap-stop:always;
  }

  .testimonial-card{
    padding:18px;
  }
}

@media (max-width:640px){
  .footer{
    padding:56px 0 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .footer-col{
    align-items:center;
    text-align:center;
  }

  .footer-copy{
    max-width:none;
  }

  .footer-links--stack{
    align-items:center;
  }

  .socials{
    justify-content:center;
  }

  .footer-payments{
    display:flex;
    justify-content:center;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    padding-bottom:120px;
  }

  .footer-bottom__right{
    justify-content:center;
  }

  .circuito-head{
    margin-bottom:24px;
  }

  .circuito-layout{
    gap:18px;
  }

  .circuito-side{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:16px;
  }

  .circuito-map{
    padding:16px;
    border-radius:22px;
  }

  .circuito-stat{
    gap:10px;
    padding:18px 14px;
    border-radius:20px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.02);
  }

  .circuito-stat__num{
    width:54px;
    height:54px;
    font-size:1.25rem;
  }

  .circuito-stat__title{
    font-size:1.2rem;
  }

  .circuito-stat__value{
    font-size:1rem;
  }
}

@media (max-width:560px){
  .container{
    width:min(var(--max), calc(100% - 22px));
  }

  .title{
    font-size:clamp(2rem, 9vw, 3rem);
  }

  .hero-actions{
    flex-wrap:nowrap;
  }

  .hero-actions .btn{
    width:100%;
  }

  .trust-items{
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
    padding:18px 0;
  }

  .card-body{
    padding:16px;
  }

  .card h3{
    font-size:1.84rem;
  }

  .price strong{
    font-size:2.45rem;
  }

  .sticky-cta{
    grid-template-columns:1fr;
  }

  .faq-question{
    padding:18px;
  }

  .faq-answer p{
    padding-left:18px;
    padding-right:18px;
  }

  .faq-item.is-open .faq-answer p{
    padding-bottom:18px;
  }

  .hero-video__play-wrap,
  .hero-video__play{
    width:76px;
    height:76px;
  }

  .hero-video__dialog{
    width:calc(100% - 16px);
    margin:25vh auto 0;
    border-radius:16px;
  }

  .hero-video__close{
    top:10px;
    right:10px;
    width:40px;
    height:40px;
  }

  .hero-rating{
    width:100%;
    max-width:100%;
    padding:9px 10px;
  }

  .hero-rating__google{
    font-size:17px;
  }

  .hero-rating__score{
    font-size:15px;
  }

  .hero-rating__star{
    width:15px;
    height:15px;
  }

  .whatsapp-container{
    right:18px;
    bottom:50px;
  }

  .whatsapp-button{
    width:64px;
    height:64px;
  }

  .whatsapp-icon svg{
    width:40px;
    height:40px;
  }

  .whatsapp-bubble{
    right:75px;
    bottom:15px;
  }
}

@media (min-width:861px){
  .sticky-cta{
    display:none !important;
  }
}