/* =========================================================
   PALETA (EXATAMENTE DA IMAGEM)
   ========================================================= */
:root{
  --black: #000000;
  --white: #F4F4F4;

  --blue-1: #022ED8;
  --blue-2: #1F46E0;
  --blue-3: #0C219F;
  --blue-4: #0C1965;

  --gray-1: #5E5E5E;
  --gray-2: #9E9E9E;

  --container: 1120px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);

  --border: 1px solid rgba(244,244,244,.10);
}

/* =========================================================
   RESET BÁSICO
   ========================================================= */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

/* =========================================================
   LAYOUT
   ========================================================= */
.container{
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.section{
  padding: 84px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(12,25,101,.25), rgba(0,0,0,0));
  border-top: var(--border);
  border-bottom: var(--border);
}
.section__head{
  margin-bottom: 28px;
}
.section__title{
  display: inline-block;
  margin: 0 0 16px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  border-radius: 999px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: .3px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(2,46,216,.35);
}
.section__desc{
  margin: 0;
  color: rgba(244,244,244,.80);
  max-width: 62ch;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px);
  border-bottom: var(--border);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__logo{
  width: 160px;
  max-width: 52vw;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(2,46,216,.25));
}

/* menu desktop */
.nav__links{
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav__links a{
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(244,244,244,.92);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.nav__links a:hover{
  background: rgba(2,46,216,.18);
  color: var(--white);
  transform: translateY(-1px);
}

/* hamburger CSS-only */
.nav__toggle{ display: none; }
.nav__hamburger{
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: var(--border);
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.nav__hamburger span{
  width: 16px;
  height: 2px;
  background: var(--white);
  display: block;
  opacity: .9;
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding-top: 74px;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.tag{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: var(--border);
  color: rgba(244,244,244,.9);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .78rem;
}
.title{
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 1.12;
  color: var(--blue-2);
}
.subtitle{
  margin: 0 0 18px;
  color: rgba(244,244,244,.82);
  max-width: 60ch;
}
.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__highlights{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(12,33,159,.16);
  border: 1px solid rgba(31,70,224,.25);
  color: rgba(244,244,244,.92);
}

.photo-frame{
  border-radius: var(--radius);
  border: 1px solid rgba(31,70,224,.35);
  background: radial-gradient(800px 300px at 50% 20%, rgba(2,46,216,.12), transparent 65%),
              rgba(244,244,244,.04);
  padding: 14px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
}
.photo-frame img{
  border-radius: calc(var(--radius) - 8px);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: rgba(244,244,244,.06);
  position: relative;
  z-index: 1;
}
.photo-frame::before{
  content: '';
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  width: 160%;
  height: 140%;
  background: radial-gradient(circle at 50% 20%, rgba(2,46,216,0.42), rgba(31,70,224,0.18) 40%, transparent 60%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

/* =========================================================
   COMPONENTES
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .3px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:active{ transform: translateY(0); }
.btn--primary{
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(2,46,216,.28);
}
.btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(2,46,216,.34);
}
.btn--ghost{
  background: transparent;
  border-color: rgba(244,244,244,.18);
  color: rgba(244,244,244,.95);
}
.btn--ghost:hover{
  background: rgba(244,244,244,.06);
  border-color: rgba(31,70,224,.45);
  transform: translateY(-1px);
}
.btn--full{ width: 100%; }

.card{
  border-radius: var(--radius);
  border: var(--border);
  background: rgba(244,244,244,.04);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card--thin{ padding: 16px; }
.card__title{
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.card__note{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  background: rgba(12,25,101,.20);
  border: 1px solid rgba(31,70,224,.26);
  color: rgba(244,244,244,.86);
}

.list{
  display: grid;
  gap: 10px;
}
.list li{
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(244,244,244,.88);
}
.dot{
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(31,70,224,.15);
}

/* =========================================================
   SOBRE
   ========================================================= */
.about__grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.about__photos{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.img-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244,244,244,.10);
  background: rgba(244,244,244,.04);
  display: flex;
  flex-direction: column;
}
.img-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: rgba(244,244,244,.06);
  margin-right: 1px;
}
.img-card figcaption{
  text-align: center;
  font-size: 1.15rem;
  font-weight: 400;          /* sem negrito */
  letter-spacing: .04em;
  padding: 16px 10px;
  color: rgba(244,244,244,.85);
  border-top: 1px solid rgba(244,244,244,.08);
}

/* =========================================================
   RESULTADOS (AJUSTADO / ALINHADO)
   ========================================================= */
.results__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.result-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244,244,244,.10);
  background: rgba(244,244,244,.04);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.result-card__media{
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
  background: rgba(244,244,244,.02);
}
.result-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(244,244,244,.06);
}
.result-card__body{
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 320px;
}
.result-card__title{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  min-height: 44px;
}
.result-card__text{
  margin: 0;
  color: rgba(244,244,244,.78);
  line-height: 1.6;
  min-height: 72px;
}
.result-info{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 8px 0 6px;
  padding: 12px 12px;
  background: rgba(2,10,30,0.55);
  border: 1px solid rgba(31,70,224,.18);
  border-radius: 12px;
  align-items: start;
}
.result-info li{
  color: var(--white);
  font-size: .88rem;
  line-height: 1.25;
}
.result-info li strong{
  display: block;
  color: var(--blue-1);
  font-weight: 900;
  margin: 0 0 4px;
}
.result-highlight{
  margin: 2px 0 8px;
  color: rgba(244,244,244,.92);
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  min-height: 44px;
}
.result-highlight::before{
  content: '✔';
  color: var(--blue-1);
  display: inline-block;
  font-weight: 900;
  transform: translateY(1px);
}
.result-card__body .btn{ margin-top: auto; }

/* =========================================================
   PLANOS - CONSULTORIA ONLINE
   ========================================================= */
.plans__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.plan-card{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244,244,244,.10);
  background: rgba(244,244,244,.04);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 420px;
}
.plan-card__head{
  display: grid;
  gap: 4px;
}
.plan-card__title{
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
}
.plan-card__subtitle{
  margin: 0;
  color: rgba(244,244,244,.78);
  font-size: .95rem;
}
.plan-card__price{
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(2,10,30,0.55);
  border: 1px solid rgba(31,70,224,.18);
}
.plan-card__currency{
  font-weight: 900;
  color: rgba(244,244,244,.9);
}
.plan-card__value{
  font-size: 2.2rem;
  font-weight: 1000;
  letter-spacing: .5px;
  color: var(--white);
}
.plan-card__per{
  color: rgba(244,244,244,.75);
  font-weight: 700;
}
.plan-save{
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(12,25,101,.20);
  border: 1px solid rgba(31,70,224,.26);
}
.plan-save__label{
  font-size: .85rem;
  color: rgba(244,244,244,.85);
  font-weight: 800;
}
.plan-save__value{
  font-size: 1.1rem;
  font-weight: 1000;
  color: #5CE65C;
}
.plan-save__note{
  font-size: .85rem;
  color: rgba(244,244,244,.75);
}
.plan-card__list{
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.plan-card__list li{
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(244,244,244,.88);
}
.plan-card__list .dot{
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(31,70,224,.15);
}
.plan-card .btn{ margin-top: auto; }
.plan-card--featured{
  border-color: rgba(31,70,224,.38);
  background: radial-gradient(800px 300px at 50% 0%, rgba(2,46,216,.18), transparent 60%),
              rgba(244,244,244,.04);
}
.plan-badge{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .12em;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  border: 1px solid rgba(244,244,244,.10);
  box-shadow: 0 12px 26px rgba(2,46,216,.28);
}

/* =========================================================
   CONTATO ELEGANTE (CENTRALIZADO)
   ========================================================= */
.contact--simple{
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(244,244,244,.08);
  background:
    radial-gradient(800px 280px at 10% 0%, rgba(2,46,216,.18), transparent 70%),
    rgba(244,244,244,.02);
  box-shadow: var(--shadow);
  padding: 48px 40px;
}
.contact__content{
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.section__title--contact{
  width: fit-content;
  padding: 10px 26px;
  background: rgba(244,244,244,.03);
  border: 1px solid rgba(244,244,244,.08);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact__desc{
  max-width: 52ch;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(244,244,244,.92);
  font-weight: 300;
}
.contact__actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
}
.btn--cta{
  grid-column: 1 / -1;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(2,46,216,.35);
}
.btn--social{
  height: 52px;
  font-weight: 600;
  border-radius: 999px;
}
.contact__hint{
  margin-top: 16px;
  color: rgba(244,244,244,.60);
  font-size: .95rem;
  letter-spacing: .2px;
  border-top: 1px solid rgba(244,244,244,.06);
  padding-top: 20px;
}
.contact--simple:hover{
  box-shadow:
    0 25px 45px rgba(2,46,216,.25),
    0 0 0 1px rgba(244,244,244,.05) inset;
  transition: box-shadow .4s ease;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer{
  margin-top: 36px;
  padding-top: 18px;
  border-top: var(--border);
  color: rgba(244,244,244,.72);
  text-align: center;
}

/* =========================================================
   WHATSAPP FIXO
   ========================================================= */
.wpp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;

  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .2px;

  color: var(--white);
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  box-shadow: 0 18px 40px rgba(2,46,216,.35);
  border: 1px solid rgba(244,244,244,.10);

  transition: transform .18s ease, box-shadow .18s ease;
}
.wpp:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(2,46,216,.42);
}

/* =========================================================
   RESPONSIVO (PERFEITO NO CELULAR)
   ========================================================= */

/* <= 1024px (tablet) */
@media (max-width: 1024px){
  .section{ padding: 72px 0; }

  .hero__grid{ grid-template-columns: 1fr; }
  .about__grid{ grid-template-columns: 1fr; }

  .results__grid{ grid-template-columns: 1fr; }
  .plans__grid{ grid-template-columns: 1fr; }

  /* deixa o hero mais “clean” */
  .photo-frame{ max-width: 520px; margin: 0 auto; }
}

/* <= 768px (celular grande / tablets pequenos) */
@media (max-width: 768px){
  .container{ width: min(var(--container), calc(100% - 1.25rem)); }
  .section{ padding: 56px 0; }
  .hero{ padding-top: 56px; }

  .brand__logo{ width: 140px; }

  /* MENU MOBILE */
  .nav__hamburger{ display: inline-flex; }
  .nav__links{
    position: absolute;
    top: 62px;
    right: .75rem;
    left: .75rem;

    display: grid;
    gap: 10px;
    padding: 12px;

    border-radius: var(--radius);
    border: var(--border);
    background: rgba(0,0,0,.94);
    box-shadow: var(--shadow);

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav__links a{
    padding: 12px 12px;
    background: rgba(244,244,244,.04);
    border: 1px solid rgba(244,244,244,.08);
  }
  .nav__toggle:checked ~ .nav__links{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* HERO (texto + botões) */
  .title{ font-size: clamp(1.75rem, 6vw, 2.35rem); }
  .subtitle{ font-size: 1rem; }
  .hero__cta{ gap: 10px; }
  .hero__cta .btn{ width: 100%; }          /* CTA sempre confortável no dedo */

  /* pills em “chips” bons no mobile */
  .pill{ padding: 10px 12px; font-size: .95rem; }

  /* foto não estoura e fica centralizada */
  .photo-frame{ max-width: 420px; margin: 0 auto; }
  .photo-frame img{ aspect-ratio: 3/4; }   /* fica melhor no celular */

  /* SOBRE */
  .about__photos{ grid-template-columns: 1fr; }
  .img-card figcaption{ font-size: 1.05rem; }

  /* RESULTADOS */
  .result-card__body{ min-height: auto; }
  .result-info{ grid-template-columns: 1fr; }

  /* PLANOS */
  .plan-card{ min-height: auto; }
  .plan-card__value{ font-size: 2rem; }

  /* CONTATO */
  .contact--simple{ padding: 30px 18px; }
  .contact__desc{ font-size: 1.08rem; }
  .contact__actions{ grid-template-columns: 1fr; }
  .btn--cta{ grid-column: auto; }

  /* WhatsApp fixo não cobre conteúdo */
  .wpp{ right: 14px; bottom: 14px; padding: 12px 14px; }
}

/* <= 420px (celular pequeno) */
@media (max-width: 420px){
  .section{ padding: 48px 0; }
  .tag{ font-size: .72rem; letter-spacing: .12em; }
  .btn{ padding: 12px 14px; }
  .photo-frame{ padding: 12px; }
  .wpp{ padding: 11px 13px; }
}
/* =========================================================
   MOBILE QUALITY FIXES (recomendado)
   ========================================================= */
body{ overflow-x: hidden; } /* evita scroll lateral */

.section__title{
  max-width: 100%;
  white-space: normal;
}

.result-card__text,
.subtitle,
.section__desc{
  overflow-wrap: anywhere;  /* evita estourar em palavras grandes */
}

.nav__links a{
  -webkit-tap-highlight-color: transparent;
}
/* =========================================================
   AJUSTE FINO - HERO MOBILE (print)
   Cole no FINAL do CSS
   ========================================================= */

/* melhora o espaçamento e limita largura do texto no hero */
.hero__content{
  max-width: 680px;
}

/* tag menor e mais alinhada no mobile */
@media (max-width: 768px){
  .tag{
    padding: 7px 10px;
    font-size: .72rem;
    letter-spacing: .14em;
  }

  /* TÍTULO: reduz tamanho e melhora leitura */
  .title{
    margin: 12px 0 10px;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.12;
  }

  /* subtítulo mais leve e com melhor quebra */
  .subtitle{
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: 40ch;
  }

  /* botões: com menos altura e mais “premium” */
  .hero__cta .btn{
    width: 100%;
    padding: 12px 14px;
    font-size: 1rem;
  }

  /* pills: vira lista vertical pra não quebrar feio */
  .hero__highlights{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 6px;
  }

  .pill{
    width: 100%;
    justify-content: flex-start;
    padding: 11px 12px;
    font-size: .98rem;
  }

  /* WhatsApp fixo menor e mais discreto */
  .wpp{
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: .95rem;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(2,46,216,.28);
  }
}

/* celulares pequenos */
@media (max-width: 420px){
  .title{
    font-size: 1.55rem;
  }
  .subtitle{
    font-size: .98rem;
  }
  .hero__cta .btn{
    font-size: .98rem;
  }
}
/* =========================================================
   PATCH RESPONSIVO (COLAR NO FINAL DO styles.css)
   Ajustes: HERO + SOBRE + NAV (mobile perfeito)
   ========================================================= */

/* evita scroll lateral por algum elemento estourando */
html, body { overflow-x: hidden; }

/* melhora clique/scroll em âncoras com header sticky */
section { scroll-margin-top: 90px; }

/* =========================
   NAVBAR (mais compacta no celular)
   ========================= */
@media (max-width: 760px){
  .nav{
    padding: 10px 0;
  }

  .brand__logo{
    width: 132px;      /* menor no celular */
    max-width: 60vw;
  }

  .header{
    background: rgba(0,0,0,.82);
  }
}

/* =========================
   HERO (mobile-first perfeito)
   ========================= */
@media (max-width: 760px){
  .hero{
    padding-top: 58px;   /* menos espaço */
  }

  .hero__grid{
    gap: 18px;
  }

  .tag{
    font-size: .72rem;
    letter-spacing: .14em;
    padding: 7px 10px;
  }

  .title{
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    line-height: 1.08;
    margin: 10px 0 10px;
  }

  .subtitle{
    font-size: 1rem;
    margin-bottom: 14px;
  }

  /* botões do hero: 100% */
  .hero__cta{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero__cta .btn{
    width: 100%;
    padding: 14px 16px;
  }

  /* pills: encaixe bonito */
  .hero__highlights{
    gap: 10px;
  }
  .pill{
    width: 100%;
    justify-content: flex-start;
  }

  /* foto: segura proporção e não estoura */
  .photo-frame{
    padding: 12px;
  }
  .photo-frame img{
    aspect-ratio: 4/5;
    object-fit: cover;
  }
}

/* =========================
   SOBRE MIM (desktop alinhado e “encaixado”)
   ========================= */
.about__grid{
  align-items: start;
}

/* força o bloco das fotos a não “espalhar” pelo layout */
.about__photos{
  width: 100%;
  max-width: 560px;          /* limita e deixa elegante */
  margin-left: auto;         /* alinha à direita do grid */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* cards das fotos: tamanho consistente e centralizados */
.img-card{
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-card img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* legenda maior + central (sem negrito) */
.img-card figcaption{
  text-align: center;
  font-size: 1.05rem;         /* maior */
  font-weight: 400;           /* sem negrito */
  letter-spacing: .03em;
  padding: 14px 10px;
  color: rgba(244,244,244,.86);
}

/* =========================
   SOBRE MIM (tablet/celular)
   ========================= */
@media (max-width: 980px){
  .about__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about__photos{
    max-width: 720px;
    margin: 0;                /* centraliza no fluxo */
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px){
  .about__photos{
    grid-template-columns: 1fr;  /* 1 coluna no celular */
    max-width: 420px;
    margin: 0 auto;              /* centraliza */
  }

  .img-card figcaption{
    font-size: 1.1rem;
    padding: 16px 10px;
  }
}

/* =========================
   BOTÃO WHATSAPP FIXO (não “cobre” conteúdo no celular)
   ========================= */
@media (max-width: 760px){
  .wpp{
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    font-size: .95rem;
  }
}
/* centralizar os cards do "Sobre" no mobile */
@media (max-width: 768px){
  .about__photos{
    display: grid;
    grid-template-columns: 1fr;     /* 1 por linha */
    justify-items: center;          /* centraliza cada card */
  }

  .img-card{
    width: min(92vw, 360px);        /* limita a largura e centraliza */
  }
}
/* ================================
   WhatsApp elegante
================================ */

.wpp{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wpp i{
  font-size: 20px;
}

/* Mobile → só ícone */
@media (max-width: 768px){
  .wpp{
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
  }

  .wpp-text{
    display: none;
  }

  .wpp i{
    font-size: 26px;
  }
}
/* ==========================================
   VÍDEO APENAS NO MOBILE
========================================== */

/* Esconde vídeo no desktop */
.hero__video-mobile{
  display: none;
}

/* Mostra só no mobile */
@media (max-width: 768px){

  .hero{
    padding-top: 0; /* remove espaço extra */
  }

  .hero__video-mobile{
    display: block;
    width: 100%;
    height: 60vh; /* altura do vídeo */
    overflow: hidden;
    position: relative;
  }

  .hero__video-mobile video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* opcional: cria leve separação do conteúdo */
  .hero__grid{
    padding-top: 24px;
  }
}/* ==========================================
   HERO COM VÍDEO DE FUNDO (APENAS MOBILE)
   (mantém a imagem do hero)
========================================== */

.hero__video-mobile{
  display: none;
}

@media (max-width: 768px){

  .hero{
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  /* ativa vídeo */
  .hero__video-mobile{
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero__video-mobile video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* camada escura para leitura */
  .hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
    z-index: 1;
  }

  /* conteúdo por cima do vídeo */
  .hero .container{
    position: relative;
    z-index: 2;
  }

  /* layout mobile: texto em cima, imagem abaixo */
  .hero__grid{
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .hero__content{
    order: 1;
  }

  .hero__media{
    order: 2;          /* mantém a imagem */
    display: block;
  }

  /* foto menor e centralizada */
  .photo-frame{
    max-width: 360px;
    margin: 0 auto;
  }

  .photo-frame img{
    aspect-ratio: 4/5;
    object-fit: cover;
  }

  /* botões confortáveis no dedo */
  .hero__cta{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }
  .hero__cta .btn{
    width: 100%;
    max-width: 420px;
  }

  /* pills alinhadas */
  .hero__highlights{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
  }
  .pill{
    width: 100%;
    max-width: 420px;
    justify-content: center;
  }
}/* ============================
   AJUSTE SUBTÍTULO HERO MOBILE
============================ */

@media (max-width: 768px){

  .subtitle{
    max-width: 100%;        /* remove limite estreito */
    width: 100%;
    margin: 0 auto 18px;
    text-align: center;
    line-height: 1.6;
    padding: 0 6px;         /* pequeno respiro lateral */
  }

}
.hero__video-mobile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero__video-mobile video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}