/* =========================================================
   AB CONECTA | AB SPORTS — LANDING PAGE
   ========================================================= */

:root{
  --red: #e30613;
  --red-dark: #b3050f;
  --black: #0b0b0b;
  --black-soft: #161616;
  --gray-light: #f3f3f3;
  --gray-mid: #8a8a8a;
  --white: #ffffff;
  --green: #25d366;
  --green-dark: #1ebe57;

  --font-title: 'Oswald', 'Oswald', sans-serif;
  --font-body: 'Poppins', 'Montserrat', sans-serif;
  --font-marker: 'Permanent Marker', cursive;

  --header-h: 78px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.12);
  --shadow-strong: 0 20px 45px rgba(0,0,0,.35);
  --ease: cubic-bezier(.22,.9,.32,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top: var(--header-h);}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%; height:auto; display:block;}
a{text-decoration:none; color:inherit;}
ul{list-style:none; margin:0; padding:0;}
h1,h2,h3,h4{font-family:var(--font-title); text-transform:uppercase; margin:0; letter-spacing:.5px;}
p{margin:0; line-height:1.6;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
.hl-red{color:var(--red);}
.hl-white{color:var(--white);}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.5px;
  padding:.85rem 1.6rem;
  border-radius:50px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space:nowrap;
}
.btn svg{width:18px; height:18px; fill:currentColor; flex-shrink:0;}
.btn--whatsapp{background:var(--green); color:#fff; box-shadow:0 8px 20px rgba(37,211,102,.35);}
.btn--whatsapp:hover{background:var(--green-dark); transform:translateY(-3px); box-shadow:0 12px 26px rgba(37,211,102,.45);}
.btn--red{background:var(--red); color:#fff;}
.btn--red:hover{background:var(--red-dark); transform:translateY(-3px);}
.btn--green{background:var(--green); color:#fff;}
.btn--green:hover{background:var(--green-dark); transform:translateY(-3px);}
.btn--lg{padding:1.05rem 2.4rem; font-size:1rem;}
.btn--sm{padding:.65rem 1.3rem; font-size:.75rem;}
.btn--nav{padding:.6rem 1.3rem; font-size:.78rem;}
.btn:focus-visible{outline:3px solid var(--red); outline-offset:2px;}

.pulse{animation:pulse 2.2s infinite;}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);}
  70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* ============ HEADER ============ */
.header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.is-scrolled{background:rgba(255,255,255,.97); box-shadow:0 6px 24px rgba(0,0,0,.08);}
.header__inner{
  height:var(--header-h);
  max-width:1400px; margin:0 auto; padding:0 2rem;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center;
}
.header__nav{display:flex; align-items:center; gap:1.4rem;}
.header__nav--left{justify-content:flex-start;}
.header__nav--right{justify-content:flex-end;}
.nav-link{
  font-weight:600; font-size:.82rem; text-transform:uppercase; letter-spacing:.3px;
  position:relative; padding:.4rem 0; color:var(--black);
  white-space:nowrap;
}
.nav-link::after{
  content:''; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--red);
  transition:width .25s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after{width:100%;}
.nav-link.is-active{color:var(--red);}

.header__logo{display:flex; align-items:center; justify-self:center;}
.header__logo-img{
  height:56px;
  width:auto;
  
  object-fit:contain;
  transition: height .3s var(--ease);
}
.header.is-scrolled .header__logo-img{height:44px;}

.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:44px; height:44px; align-items:center;
}
.hamburger span{width:26px; height:3px; background:var(--black); border-radius:2px; transition:.3s var(--ease);}
.hamburger.is-open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
.hamburger.is-open span:nth-child(2){opacity:0;}
.hamburger.is-open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}

.mobile-menu{
  position:fixed; top:var(--header-h); left:0; right:0;
  background:#fff; box-shadow:0 12px 24px rgba(0,0,0,.1);
  display:flex; flex-direction:column; padding:.5rem 1.5rem 1.5rem;
  transform:translateY(-12px); opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index:999;
}
.mobile-menu.is-open{opacity:1; transform:translateY(0); visibility:visible; pointer-events:auto;}
.mobile-link{padding:.9rem 0; font-weight:600; text-transform:uppercase; font-size:.95rem; border-bottom:1px solid #eee;}
.mobile-link--cta{color:var(--green); font-weight:800; border-bottom:none; margin-top:.5rem;}

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:998;
  width:60px; height:60px; border-radius:50%;
  background:var(--green); display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 25px rgba(37,211,102,.5);
  animation: wa-bob 2.6s ease-in-out infinite, wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg{width:32px; height:32px; fill:#fff;}
.wa-float:hover{transform:scale(1.08);}
@keyframes wa-bob{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
@keyframes wa-pulse{
  0%{box-shadow:0 10px 25px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.6);}
  70%{box-shadow:0 10px 25px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0);}
  100%{box-shadow:0 10px 25px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0);}
}
@media (max-width:640px){
  .wa-float{width:52px; height:52px; right:1rem; bottom:1rem;}
  .wa-float svg{width:28px; height:28px;}
}

/* ============ HERO ============ */
.hero{
  position:relative;
  min-height:100vh;
  padding-top:var(--header-h);
  background:var(--black);
  overflow:hidden;
  display:flex; align-items:center;
}
.hero__bg-collage{
  position:absolute; inset:0; width:100%; height:100%; z-index:0;
}
.hero__bg-collage img{
  width:100%; height:100%; object-fit:cover; object-position:center;
 
}

.hero::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(0,0,0,.9) 30%, rgba(0,0,0,.45) 100%);
  z-index:1;
}

.hero__content{
  position:relative; z-index:2;
  max-width:1400px; margin:0 auto; width:100%;
  padding:3rem 2rem;
  display:grid; grid-template-columns:.9fr 1.1fr; gap:2rem; align-items:center;
}
.hero__players{
  width:100%;
  max-width:480px;
  aspect-ratio:560/680;
  object-fit:cover;
  border-radius:12px;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.6));
}
.hero__title{
  color:#fff; font-size:clamp(2.4rem, 5vw, 4.2rem); line-height:1.02; margin-bottom:1.2rem;
}
.hero__title span{display:block;}
.hero__subtitle{color:#d8d8d8; font-size:1.05rem; max-width:520px; margin-bottom:1.6rem;}
.hero__features{display:flex; flex-wrap:wrap; gap:1.4rem; margin-bottom:2rem;}
.hero__features li{
  display:flex; align-items:center; gap:.5rem; color:#fff; font-size:.78rem; font-weight:700; text-transform:uppercase;
}
.hero__features svg{width:20px; height:20px; fill:var(--red);}
.hero__scroll-cue{
  position:absolute; bottom:1.6rem; left:50%; transform:translateX(-50%); z-index:2;
}
.hero__scroll-cue span{
  display:block; width:26px; height:42px; border:2px solid rgba(255,255,255,.5); border-radius:14px; position:relative;
}
.hero__scroll-cue span::before{
  content:''; position:absolute; top:6px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; background:var(--red); border-radius:2px;
  animation: scroll-cue 1.6s infinite;
}
@keyframes scroll-cue{
  0%{opacity:1; top:6px;}
  100%{opacity:0; top:22px;}
}

@media (max-width:900px){
  .hero{min-height:auto; padding-bottom:3rem;}
  .hero__content{grid-template-columns:1fr; text-align:center; padding:2.4rem 1.4rem;}
  .hero__players{max-width:320px; margin:0 auto;}
  .hero__subtitle{margin-left:auto; margin-right:auto;}
  .hero__features{justify-content:center;}
  .hero__bg-collage img{filter:grayscale(.15) brightness(.4);}
}

/* ============ SECTION HEAD ============ */
.section-head{text-align:center; padding:4.5rem 1.5rem 2.5rem;}
.section-head--dark{padding-top:4.5rem;}
.section-title{font-size:clamp(1.8rem, 4vw, 2.8rem); position:relative; display:inline-block;}
.section-title::after{
  content:''; display:block; width:70px; height:4px; background:var(--red); margin:.8rem auto 0; border-radius:2px;
}
.section-title--light{color:#fff;}

/* Título estilo "rabisco de marcador", como na referência */
.section-title--marker{
  font-family: var(--font-marker);
  text-transform:none;
  font-size:clamp(1.6rem, 3.6vw, 2.4rem);
  transform: rotate(-2deg);
  letter-spacing:.5px;
}
.section-title--marker::after{
  width:130px; height:8px; border-radius:50% 50% 0 0/100% 100% 0 0;
  background:var(--red);
  transform: rotate(-2deg);
  opacity:.9;
}

/* Setas ao lado do título (seção Produtos) */
.title-row{display:inline-flex; align-items:center; justify-content:center; gap:1rem;}
.title-row .arrow{color:var(--red); font-size:1.4rem; display:inline-block;}
.title-row .arrow--left{transform:scaleX(-1);}
@media (max-width:560px){
  .title-row{gap:.5rem;}
  .title-row .arrow{font-size:1rem;}
}

/* ============ JOURNEY ============ */
.journey{background:#fff; padding-bottom:4rem;}
.journey__track{
  position:relative; max-width:1200px; margin:0 auto; padding:2rem 2rem 1rem;
  display:flex; flex-direction:column; gap:3.5rem;
}
.journey__line{
  position:absolute; top:0; left:0; width:100%; height:100%;
  pointer-events:none; z-index:0; overflow:visible;
}
.journey__line path{
  fill:none; stroke:var(--red); stroke-width:7; stroke-linecap:round; stroke-linejoin:round;
  filter: drop-shadow(0 3px 4px rgba(179,5,15,.25));
}

.step{
  position:relative; z-index:1;
  display:grid; grid-template-columns:auto minmax(0,440px) auto; align-items:center; gap:2.5rem;
  justify-content:center;
}
.step--reverse{grid-template-columns:auto minmax(0,440px) auto;}
.step--reverse .step__content{order:1;}
.step--reverse .step__media{order:0;}

.step__marker{
  width:56px; height:56px; border-radius:50%; background:var(--black);
  color:#fff; font-family:var(--font-title); font-size:1.5rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  border:4px solid var(--red);
  flex-shrink:0;
  align-self:center;
}
.step__content{align-self:center;}
.step__content h3{font-size:1.35rem; margin-bottom:.6rem;}
.step__content p{color:#555; margin-bottom:1.1rem; max-width:420px;}
.step__media{
  width:230px; height:165px; border-radius:14px; overflow:hidden; box-shadow:var(--shadow-soft);
  flex-shrink:0;
  align-self:center;
  margin:auto 0;
}
.step__media img{width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease);}
.step:hover .step__media img{transform:scale(1.06);}

@media (max-width:860px){
  .step, .step--reverse{grid-template-columns:auto 1fr; grid-template-areas:"marker content" "marker media";}
  .step__marker{grid-area:marker;}
  .step__content{grid-area:content; order:initial !important;}
  .step__media{grid-area:media; order:initial !important; width:100%; height:190px; margin-top:1rem;}
  .journey__track{gap:2.4rem; padding:1.5rem 1.2rem;}
}

/* ============ PRODUCTS ============ */
.products{background:var(--black); padding-bottom:4rem;}
.products--white{background:#fff;}
.products--white .product-card{box-shadow:0 12px 30px rgba(0,0,0,.12);}
.products__grid{
  max-width:1400px; margin:0 auto; padding:0 1.5rem;
  display:grid; grid-template-columns:repeat(5, 1fr); gap:1.2rem;
}
.product-card{
  position:relative; border-radius:14px; overflow:hidden; aspect-ratio:3/4;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.product-card img{width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease);}
.product-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.9) 10%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.55) 100%);
  z-index:1;
}
.product-card:hover img{transform:scale(1.1);}
.product-card:hover{box-shadow:0 18px 40px rgba(227,6,19,.35);}
.product-card__overlay{
  position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:flex-end;
  padding:1.4rem; gap:.6rem;
}
.product-card__overlay h3{color:#fff; font-size:1.05rem; line-height:1.15;}
.product-card__overlay p{
  color:#ddd; font-size:.8rem; max-height:0; opacity:0; overflow:hidden;
  transition:max-height .35s var(--ease), opacity .35s var(--ease), margin .35s var(--ease);
}
.product-card:hover .product-card__overlay p{max-height:100px; opacity:1;}
.product-card__overlay .btn{align-self:flex-start;}

@media (max-width:1100px){
  .products__grid{grid-template-columns:repeat(3,1fr);}
}

/* ---- Carousel arrows: hidden by default (desktop/tablet grid needs no nav) ---- */
.products__carousel{position:relative;}
.products__nav{
  display:none;
  position:absolute; top:42%; transform:translateY(-50%); z-index:5;
  width:40px; height:40px; border-radius:50%; border:none;
  background:rgba(0,0,0,.55); color:#fff; backdrop-filter:blur(2px);
  align-items:center; justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,.35);
  cursor:pointer; transition:background .2s, opacity .2s;
}
.products--white .products__nav{background:rgba(20,20,20,.7);}
.products__nav svg{width:20px; height:20px;}
.products__nav:hover{background:var(--red);}
.products__nav--prev{left:.4rem;}
.products__nav--next{right:.4rem;}
.products__nav:disabled{opacity:.35; cursor:default;}
.products__nav:disabled:hover{background:rgba(0,0,0,.55);}

@media (max-width:720px){
  .products__grid{grid-template-columns:1fr; grid-auto-flow:column; grid-auto-columns:80%; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:1rem;}
  .product-card{scroll-snap-align:center;}
  .product-card__overlay p{max-height:100px; opacity:1;}
  .products__nav{display:flex;}
}

/* ---- Affordance: card is clickable to open the gallery ---- */
.product-card{cursor:zoom-in;}
.product-card__zoom{
  position:absolute; top:.8rem; right:.8rem; z-index:3;
  width:38px; height:38px; border-radius:50%; border:none;
  background:rgba(0,0,0,.55); color:#fff; backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(-6px); transition:opacity .25s var(--ease), transform .25s var(--ease), background .2s;
  cursor:zoom-in;
}
.product-card__zoom svg{width:17px; height:17px;}
.product-card:hover .product-card__zoom, .product-card:focus-within .product-card__zoom{opacity:1; transform:translateY(0);}
.product-card__zoom:hover{background:var(--red);}
@media (max-width:720px){
  .product-card__zoom{opacity:1; transform:none;}
}

/* ============ LIGHTBOX (galeria de modelos) ============ */
.lightbox{
  position:fixed; inset:0; z-index:1200;
  display:flex; align-items:center; justify-content:center;
  visibility:hidden; opacity:0;
  transition:opacity .3s var(--ease), visibility .3s var(--ease);
  padding:1.5rem;
}
.lightbox.is-open{visibility:visible; opacity:1;}
.lightbox__backdrop{
  position:absolute; inset:0; background:rgba(8,8,8,.9); backdrop-filter:blur(4px);
}
.lightbox__dialog{
  position:relative; z-index:1; width:100%; max-width:820px; max-height:90vh;
  background:var(--black-soft); border-radius:18px; overflow:hidden;
  display:flex; flex-direction:column;
  box-shadow:var(--shadow-strong);
  transform:scale(.94) translateY(10px); transition:transform .35s var(--ease);
}
.lightbox.is-open .lightbox__dialog{transform:scale(1) translateY(0);}
.lightbox__media{position:relative; background:#000; display:flex; align-items:center; justify-content:center; min-height:320px; flex:1;}
.lightbox__img{width:100%; height:100%; max-height:78vh; object-fit:contain;}
.lightbox__footer{
  padding:1.2rem 1.6rem; display:flex; align-items:center; justify-content:center;
  background:var(--black-soft);
}
.lightbox__cta{width:100%; max-width:340px; text-align:center;}

.lightbox__close{
  position:absolute; top:.9rem; right:.9rem; z-index:3;
  width:40px; height:40px; border-radius:50%; border:none;
  background:rgba(0,0,0,.55); color:#fff; font-size:1.6rem; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .2s;
}
.lightbox__close:hover{background:var(--red);}

.lightbox__nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%; border:none;
  background:rgba(0,0,0,.5); color:#fff; font-size:1.1rem;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .2s;
}
.lightbox__nav:hover{background:var(--red);}
.lightbox__nav--prev{left:.9rem;}
.lightbox__nav--next{right:.9rem;}

@media (max-width:760px){
  .lightbox__dialog{max-height:92vh;}
  .lightbox__media{min-height:44vh;}
  .lightbox__footer{padding:1rem;}
  .lightbox__nav{width:38px; height:38px;}
}

/* ============ WHY ============ */
.why{background:var(--gray-light); padding-bottom:4.5rem;}
.why__grid{
  max-width:1300px; margin:0 auto; padding:0 1.5rem;
  display:grid; grid-template-columns:repeat(5,1fr); gap:1.5rem;
}
.why__item{
  text-align:center; padding:2rem 1.2rem; background:#fff; border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  border-top:3px solid transparent;
}
.why__item:hover{transform:translateY(-8px); box-shadow:0 16px 30px rgba(0,0,0,.1); border-top-color:var(--red);}
.why__item svg{width:42px; height:42px; fill:none; stroke:var(--red); stroke-width:1.6; margin-bottom:1rem;}
.why__item h3{font-size:.95rem; margin-bottom:.5rem;}
.why__item p{font-size:.85rem; color:#666;}

@media (max-width:1000px){ .why__grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .why__grid{grid-template-columns:1fr;} }

/* ============ GALLERY / INSTAGRAM ============ */
.gallery{background:#fff; padding-bottom:3rem;}
.gallery .section-head{padding-bottom:1.6rem; display:flex; flex-direction:column; align-items:center; gap:.8rem;}
.instagram-handle{
  display:inline-flex; align-items:center; gap:.5rem;
  font-weight:700; font-size:.95rem; color:var(--black);
  padding:.5rem 1.1rem; border:2px solid var(--black); border-radius:50px;
  transition: all .25s var(--ease);
}
.instagram-handle svg{width:18px; height:18px; fill:currentColor;}
.instagram-handle:hover{background:var(--black); color:#fff;}

.gallery__swiper{max-width:1400px; margin:0 auto; padding:0 1.5rem;}
.gallery__slide{
  display:block; position:relative; border-radius:12px; overflow:hidden; cursor:pointer; aspect-ratio:1/1;
}
.gallery__slide img{width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease);}
.gallery__slide:hover img{transform:scale(1.08);}
.gallery__ig-icon{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.35); opacity:0; transition:opacity .3s var(--ease);
}
.gallery__ig-icon svg{width:38px; height:38px; fill:#fff;}
.gallery__slide:hover .gallery__ig-icon{opacity:1;}
.gallery .swiper-pagination-bullet-active{background:var(--red);}

.gallery__follow-cta{text-align:center; margin-top:2.2rem;}

/* ============ SOBRE / VÍDEO INSTITUCIONAL ============ */
.about-video{
  background:var(--gray-light);
  display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:3rem;
  padding:4.5rem 2rem; max-width:1400px; margin:0 auto;
}
.about-video__text .section-title{text-align:left;}
.about-video__text .section-title::after{margin-left:0;}
.about-video__text p{color:#444; font-size:1.02rem; margin:1.2rem 0;}
.about-video__list{margin:1.4rem 0 1.8rem; display:flex; flex-direction:column; gap:.7rem;}
.about-video__list li{display:flex; align-items:center; gap:.7rem; font-weight:600; font-size:.92rem;}
.about-video__list svg{width:22px; height:22px; flex-shrink:0; fill:none; stroke:var(--red); stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; background:#fff; border-radius:50%; padding:2px;}

.about-video__frame{
  position:relative; border-radius:16px; overflow:hidden; box-shadow:var(--shadow-strong);
  aspect-ratio:4/5;
}
.about-video__frame iframe{width:100%; height:100%; border:0; display:block;}
.about-video__poster{width:100%; height:100%; object-fit:cover;}
.about-video__play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:84px; height:84px; border-radius:50%; background:rgba(227,6,19,.92);
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px rgba(0,0,0,.4);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.about-video__play svg{width:34px; height:34px; fill:#fff; margin-left:4px;}
.about-video__play:hover{transform:translate(-50%,-50%) scale(1.08); background:var(--red-dark);}

@media (max-width:900px){
  .about-video{grid-template-columns:1fr; text-align:center; gap:2rem; padding:3.5rem 1.4rem;}
  .about-video__text .section-title{text-align:center;}
  .about-video__text .section-title::after{margin:.8rem auto 0;}
  .about-video__list{align-items:center;}
  .about-video__frame{max-width:420px; margin:0 auto;}
}

/* ============ FINAL CTA ============ */
.final-cta{
  position:relative; background:linear-gradient(120deg, var(--black) 40%, var(--red-dark) 100%);
  overflow:hidden; display:flex; align-items:center; min-height:60vh;
}
.final-cta__content{position:relative; z-index:2; max-width:640px; padding:4rem 2rem 4rem 3rem;}
.final-cta__content h2{color:#fff; font-size:clamp(1.9rem,4vw,3rem); line-height:1.1; margin-bottom:1rem;}
.final-cta__content p{color:#eee; font-size:1.05rem; margin-bottom:1.8rem;}
.final-cta__image{
  position:absolute; right:0; bottom:0; height:100%; max-width:45%; object-fit:cover;
  -webkit-mask-image:linear-gradient(to left, black 60%, transparent 100%);
  mask-image:linear-gradient(to left, black 60%, transparent 100%);
  opacity:.85;
}
@media (max-width:800px){
  .final-cta{min-height:auto; padding-bottom:2rem;}
  .final-cta__content{padding:3rem 1.4rem; text-align:center; max-width:100%;}
  .final-cta__image{position:relative; max-width:100%; height:260px; width:100%; margin-top:1rem; mask-image:none; -webkit-mask-image:none; opacity:.5;}
}

/* ============ FOOTER ============ */
.footer{background:#000; color:#ccc; padding:3.5rem 2rem 1.5rem;}
.footer__top{
  max-width:1300px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2rem; padding-bottom:2.5rem; border-bottom:1px solid #262626;
}
.footer__brand{display:flex; align-items:center;}
.footer__logo-img{ width:auto; max-width:250px; object-fit:contain;}
.footer__col{display:flex; flex-direction:column; gap:.7rem;}
.footer__col h4{color:#fff; font-size:.85rem; margin-bottom:.3rem; letter-spacing:1px;}
.footer__col a, .footer__col span{font-size:.85rem; color:#aaa; transition:color .2s;}
.footer__col a:hover{color:var(--red);}
.footer__bottom{max-width:1300px; margin:0 auto; padding-top:1.4rem; text-align:center; font-size:.78rem; color:#777;}

@media (max-width:800px){
  .footer__top{grid-template-columns:1fr 1fr; text-align:left;}
  .footer__brand{grid-column:1/-1; justify-content:center; margin-bottom:1rem;}
}

/* ============ AOS OVERRIDE (perf) ============ */
[data-aos]{transition-duration:700ms !important;}

/* ============ RESPONSIVE HEADER SWITCH ============ */
@media (max-width:1180px){
  .header__nav{display:none;}
  .header__inner{grid-template-columns:auto 1fr auto;}
  .header__logo{justify-self:start;}
  .hamburger{display:flex;}
  .header__inner{padding:0 1.2rem;}
  .header__logo-img{height:42px;}
}
