/* =========================================================
   XODÓ AUTO ALINHAMENTO — DESIGN SYSTEM
   Cores oficiais (Manual de Marca):
   Vermelho #BB2F32 | Azul #015792 | Teal #1B998B
   Preto #000000 | Lilás claro #F5EBFF
========================================================= */

:root{
  --red: #BB2F32;
  --red-dark: #8D2325;
  --red-light: #D65A5C;
  --blue: #015792;
  --blue-dark: #013C66;
  --blue-light: #0174C0;
  --teal: #1B998B;
  --black: #0B0B0C;
  --lilac: #F5EBFF;

  --bg: #ffffff;
  --bg-soft: #F7F8FA;
  --text: #1A1B1E;
  --text-muted: #5B5F66;
  --border: #E7E9ED;

  --font-display: 'Oswald', 'Century Gothic', sans-serif;
  --font-body: 'Poppins', 'Century Gothic', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 16px rgba(1, 20, 40, .06);
  --shadow-md: 0 12px 32px rgba(1, 20, 40, .10);
  --shadow-lg: 0 24px 60px rgba(1, 20, 40, .16);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; }
button{ font: inherit; cursor: pointer; border: none; background: none; }
svg{ width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--black);
  line-height: 1.15;
}

.text-gradient{
  background: linear-gradient(100deg, var(--red) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow{
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp{
  from{ opacity: 0; transform: translateY(28px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
@keyframes pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(27,153,139,.45); }
  50%{ box-shadow: 0 0 0 14px rgba(27,153,139,0); }
}

.fade-in-up{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in-up.in-view{ opacity: 1; transform: translateY(0); }

.fade-in{
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.in-view{ opacity: 1; }

/* ===== BUTTONS ===== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary{
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(187,47,50,.35);
}
.btn--primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(187,47,50,.45);
}
.btn--ghost{
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{
  border-color: #fff;
  background: rgba(255,255,255,.16);
  transform: translateY(-3px);
}
.btn--whatsapp{
  background: linear-gradient(120deg, #1FBF6A, #17A85A);
  color: #fff;
  padding: 11px 20px;
  box-shadow: 0 8px 20px rgba(23,168,90,.3);
}
.btn--whatsapp:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(23,168,90,.4); }
.btn--cta{
  background: #fff;
  color: var(--red);
  padding: 18px 40px;
  font-size: 1.1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.btn--cta:hover{ transform: translateY(-4px) scale(1.02); }
.icon-wpp{ width: 1.2em; height: 1.2em; fill: currentColor; stroke: none; }

/* ===== HEADER ===== */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(255,255,255,0);
}
.header.scrolled{
  padding: 10px 0;
  background: rgba(1,60,102,.92);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--red);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo{ position: relative; display: inline-block; }
.header__logo img{ height: 46px; transition: var(--transition); }
.header.scrolled .header__logo img{ height: 38px; }
.header__logo-color{ display: none; }

.nav__list{ display: flex; gap: 34px; }
.nav__link{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .5px;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav__link::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transition: width .3s ease;
}
.nav__link:hover, .nav__link.active{ color: var(--blue); }
.nav__link:hover::after, .nav__link.active::after{ width: 100%; }

.header__actions{ display: flex; align-items: center; gap: 16px; }

.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.hamburger span{
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
  background: #0a0e14 url("../assets/img/hero-bg.png") center 30% / cover no-repeat;
}
.hero::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  z-index: 2;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,10,16,.75) 0%, rgba(6,10,16,.55) 45%, rgba(6,10,16,.3) 75%, rgba(6,10,16,.15) 100%),
    linear-gradient(0deg, rgba(6,10,16,.5) 0%, transparent 30%);
  z-index: 0;
}
.hero__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 60px;
}
.tag{
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero h1{
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  margin-bottom: 20px;
  color: #fff;
}
.hero__subtitle{
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero__cta{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__stats{ display: flex; gap: 40px; }
.stat{ display: flex; flex-direction: column; }
.stat strong{
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--red-light);
}
.stat span{ font-size: .82rem; color: rgba(255,255,255,.7); }

.hero__media{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__glow{
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(1,87,146,.25), rgba(187,47,50,.12) 60%, transparent 75%);
  filter: blur(10px);
  border-radius: 50%;
  z-index: 0;
}
.hero__mascote{
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.25));
  animation: floaty 5s ease-in-out infinite;
}

.scroll-down{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 100px;
  z-index: 1;
}
.scroll-down span{
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot{
  0%{ opacity: 1; top: 6px; }
  70%{ opacity: 0; top: 22px; }
  100%{ opacity: 0; top: 6px; }
}

/* ===== SECTION HEAD ===== */
.section-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2{ font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.section-head p{ color: var(--text-muted); font-size: 1.05rem; }
.section-head.light h2, .section-head.light .eyebrow{ color: #fff; }
.section-head.light p{ color: rgba(255,255,255,.75); }

/* ===== SERVICES ===== */
.services{
  padding: 120px 0;
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.services .container{ position: relative; z-index: 1; }
.services__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card__icon{
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(1,87,146,.28);
}
.card:nth-child(3n+2) .card__icon{ background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 10px 20px rgba(187,47,50,.28); }
.card:nth-child(3n+3) .card__icon{ background: linear-gradient(135deg, var(--teal), #117367); box-shadow: 0 10px 20px rgba(27,153,139,.28); }
.card__icon svg{ width: 28px; height: 28px; }
.card h3{ font-size: 1.2rem; margin-bottom: 10px; position: relative; z-index: 1; color: var(--black); }
.card p{ color: var(--text-muted); font-size: .93rem; position: relative; z-index: 1; }

/* ===== ABOUT ===== */
.about{ padding: 120px 0; background: var(--bg); }
.about__inner{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about__media{ position: relative; display: flex; justify-content: center; }
.about__frame{
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue), var(--red));
  padding: 8px;
  box-shadow: var(--shadow-lg);
}
.about__frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  background: #fff;
}
.about__mascote{
  position: absolute;
  bottom: -30px;
  right: -10px;
  width: 160px;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.25));
  animation: floaty 6s ease-in-out infinite;
}
.about__content .eyebrow{ color: var(--blue); }
.about__content h2{ font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 22px; }
.about__content p{ color: var(--text-muted); margin-bottom: 18px; }
.about__signature{ margin-top: 26px; }
.about__signature img{ height: 54px; }

/* ===== WHY ===== */
.why{
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.why__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why__item{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why__item:hover{
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.why__icon{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(1,87,146,.22);
}
.why__item:nth-child(3n+2) .why__icon{ background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 10px 20px rgba(187,47,50,.22); }
.why__item:nth-child(3n+3) .why__icon{ background: linear-gradient(135deg, var(--teal), #117367); box-shadow: 0 10px 20px rgba(27,153,139,.22); }
.why__icon svg{ width: 26px; height: 26px; }
.why__item h3{ color: var(--black); font-size: 1.1rem; margin-bottom: 8px; }
.why__item p{ color: var(--text-muted); font-size: .92rem; }

.why__item--photo{
  padding: 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--black);
}
.why__item--photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.why__item--photo:hover img{ transform: scale(1.06); }

.why__item-caption{
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: rgba(4,10,20,.72);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.why__item-caption .why__icon{
  width: 28px; height: 28px;
  margin-bottom: 6px;
  background: rgba(255,255,255,.14);
}
.why__item-caption .why__icon svg{ width: 14px; height: 14px; }
.why__item-caption h3{ font-size: .85rem; margin-bottom: 2px; }
.why__item-caption p{ font-size: .72rem; line-height: 1.4; }

/* ===== TESTIMONIALS ===== */
.testimonials{ padding: 120px 0; background: var(--bg); }
.testimonials__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.t-card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.t-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.t-card__stars{ color: #E8A400; letter-spacing: 3px; margin-bottom: 16px; }
.t-card p{ color: var(--text-muted); font-size: .95rem; margin-bottom: 24px; font-style: italic; }
.t-card__author{ display: flex; align-items: center; gap: 12px; }
.t-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--blue));
  color: #fff;
  font-family: var(--font-display);
  font-size: .82rem;
  flex-shrink: 0;
}
.t-card__author strong{ display: block; color: var(--black); font-size: .92rem; }
.t-card__author small{ color: var(--text-muted); font-size: .78rem; }

/* ===== CTA ===== */
.cta{
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__inner{ position: relative; z-index: 1; }
.cta h2{ color: var(--black); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta p{ color: var(--text-muted); margin-bottom: 34px; font-size: 1.05rem; }

/* ===== LOCATION ===== */
.location{ padding: 120px 0; background: var(--bg); }
.location__inner{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.location__content .eyebrow{ color: var(--blue); }
.location__content h2{ font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 14px; }
.location__content > p{ color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }

.location__list{ display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.location__list li{ display: flex; align-items: flex-start; gap: 16px; }
.location__list svg{
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}
.location__list strong{
  display: block;
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--black);
  margin-bottom: 3px;
}
.location__list span, .location__list a{
  color: var(--text-muted);
  font-size: .93rem;
}
.location__list a:hover{ color: var(--blue); }

.location__map{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  border: 6px solid #fff;
}
.location__map iframe{
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.15) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer{ background: var(--blue-dark); color: rgba(255,255,255,.7); padding: 80px 0 0; position: relative; }
.footer::before{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}
.footer__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand img{ height: 44px; margin-bottom: 18px; }
.footer__brand p{ font-size: .9rem; max-width: 280px; color: rgba(255,255,255,.55); }
.footer h4{ color: #fff; font-size: 1rem; margin-bottom: 20px; letter-spacing: .5px; }
.footer__col ul{ display: flex; flex-direction: column; gap: 14px; }
.footer__col li{ display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.footer__col li svg{ width: 16px; height: 16px; flex-shrink: 0; color: var(--red); }
.footer__col a:hover{ color: #fff; }
.footer__links a{ font-size: .88rem; }
.footer__links a:hover{ color: #fff; }

.footer__social{ display: flex; gap: 12px; }
.footer__social a{
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  transition: var(--transition);
}
.footer__social a svg{ width: 18px; height: 18px; stroke: none; fill: currentColor; }
.footer__social a:hover{ background: linear-gradient(135deg, var(--red), var(--blue)); transform: translateY(-3px); }

.footer__bottom{
  text-align: center;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer__legal{ margin-top: 4px; font-size: .76rem; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 26px rgba(37,211,102,.4);
  animation: pulse 2.4s infinite;
  transition: transform .3s;
}
.whatsapp-float svg{ width: 30px; height: 30px; fill: #fff; stroke: none; }
.whatsapp-float:hover{ transform: scale(1.1); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1080px){
  .services__grid{ grid-template-columns: repeat(2, 1fr); }
  .why__grid{ grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid{ grid-template-columns: repeat(2, 1fr); }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .hero__inner{ grid-template-columns: 1fr; text-align: center; }
  .hero__cta{ justify-content: center; }
  .hero__stats{ justify-content: center; }
  .hero__subtitle{ margin-left: auto; margin-right: auto; }
  .hero__media{ order: -1; margin-bottom: 20px; }
  .hero__mascote{ max-width: 280px; }

  .about__inner{ grid-template-columns: 1fr; text-align: center; }
  .about__media{ margin-bottom: 20px; }
  .about__signature{ display: flex; justify-content: center; }

  .location__inner{ grid-template-columns: 1fr; text-align: center; }
  .location__content > p{ margin-left: auto; margin-right: auto; }
  .location__list{ text-align: left; }
  .location__map{ order: -1; }

  .nav{
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    padding: 100px 32px;
    transition: right .4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav.open{ right: 0; }
  .nav__list{ flex-direction: column; gap: 26px; }
  .nav__link{ font-size: 1.1rem; color: var(--black); }
  .header .nav__link{ color: var(--black); }
  .hamburger{ display: flex; }
  .hamburger.open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2){ opacity: 0; }
  .hamburger.open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 640px){
  .container{ padding: 0 18px; }

  .header__actions .btn--whatsapp span{ display: none; }
  .header__actions .btn--whatsapp{ padding: 11px; }

  .hero{ min-height: 100svh; padding-top: 90px; background-position: center 18%; }
  .hero__inner{ padding-bottom: 40px; gap: 28px; }
  .hero__subtitle{ font-size: 1rem; }
  .hero__stats{ gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stat strong{ font-size: 1.6rem; }
  .hero__mascote{ max-width: 220px; }

  .section-head{ margin-bottom: 36px; }
  .section-head p{ font-size: .95rem; }

  .services{ padding: 64px 0; background-position: center 22%; }
  .services__grid{ grid-template-columns: 1fr; gap: 18px; }
  .card{ padding: 26px 22px; }

  .about{ padding: 64px 0; }
  .about__frame{ max-width: 280px; }
  .about__mascote{ width: 120px; }

  .why{ padding: 64px 0; }
  .why__grid{ grid-template-columns: 1fr; gap: 16px; }
  .why__item{ padding: 24px 20px; }

  .testimonials{ padding: 64px 0; }
  .testimonials__grid{ grid-template-columns: 1fr; gap: 18px; }
  .t-card{ padding: 24px 20px; }

  .location{ padding: 64px 0; }
  .location__map{ aspect-ratio: 4 / 3.2; }

  .footer{ padding-top: 56px; }
  .footer__inner{ grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__col li{ justify-content: center; }
  .footer__social{ justify-content: center; }
  .footer__brand p{ margin: 0 auto; }

  .cta{ padding: 56px 0; }
  .cta h2{ font-size: 1.6rem; }
  .btn--cta{ padding: 16px 30px; font-size: 1rem; }

  .whatsapp-float{ width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
}

@media (max-width: 380px){
  .hero h1{ font-size: 2.1rem; }
  .hero__stats{ gap: 16px; }
  .stat strong{ font-size: 1.4rem; }
  .stat span{ font-size: .74rem; }
}
