/* =========================================================
   PALETA / BASE
   Mesma identidade visual do index.php do gerador
========================================================= */

:root{
  --azul-escuro:#073B78;
  --azul:#075AA8;
  --azul-vivo:#0089C7;
  --ciano:#18B9D6;
  --verde-lima:#C9E52A;
  --branco:#FFFFFF;
  --gelo:#F4F8FB;
  --texto:#10253B;
  --texto-suave:#60758A;
  --borda:#D9E5EE;
  --sombra:0 12px 30px rgba(5,45,92,.14);
  --raio:22px;

  /* aliases para manter compatibilidade com o HTML/CSS anterior */
  --primary:var(--azul);
  --primary-2:var(--azul-vivo);
  --primary-3:var(--ciano);
  --yellow:var(--verde-lima);
  --surface:var(--branco);
  --surface-2:var(--gelo);
  --surface-3:#EAF4F9;
  --text:var(--texto);
  --muted:var(--texto-suave);
  --border:var(--borda);
  --shadow-1:0 5px 16px rgba(5,45,92,.10);
  --shadow-2:var(--sombra);
  --shadow-3:0 18px 42px rgba(5,45,92,.20);
  --radius:var(--raio);
  --radius-sm:16px;
  --max:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color:var(--texto);

  /* mesmo fundo do index.php */
  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(201,229,42,.48),
      transparent 28%
    ),
    radial-gradient(
      circle at 0% 18%,
      rgba(24,185,214,.28),
      transparent 31%
    ),
    linear-gradient(
      180deg,
      #0795c8 0%,
      #075aa8 21%,
      #f4f8fb 21%,
      #f4f8fb 100%
    );

  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input{
  font:inherit;
}

/* =========================
   LOGOS DOS CANDIDATOS
========================= */

.logos-section .logos-box{
  position:relative;

  width:100%;

  padding:0;
  margin-top:-10px;
  margin-bottom:150px;

  border-radius:22px;
  overflow:hidden;

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(20,174,220,.40) 0%,
      rgba(7,90,168,.18) 38%,
      rgba(3,43,105,.05) 70%
    ),
    linear-gradient(
      135deg,
      #062b68 0%,
      #075aa8 48%,
      #078ba8 100%
    ) !important;

  border:1px solid rgba(255,255,255,.15);

  box-shadow:
    0 18px 45px rgba(3,31,70,.20),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.logos-img{
  display:block;

  width:100%;
  height:auto;

  object-fit:contain;

  border-radius:inherit;
}


/* MOBILE */

@media(max-width:699px){

  .logos-section .logos-box{
    border-radius:16px;
    margin-bottom:80px;
  }

  .logos-img{
    width:100%;
    height:auto;
  }

}

/* =========================================================
   LAYOUT
========================================================= */

.container{
  width:min(100%,var(--max));
  margin:0 auto;
  padding:0 16px;
}

.section{
  padding-top:18px;
}

.surface{
  background:var(--branco);
  border:1px solid rgba(7,90,168,.08);
  border-radius:var(--raio);
  box-shadow:var(--sombra);
  padding:20px;
  margin-bottom: 60px;
  margin-top: -100px;
}

.section-title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.section-kicker{
  display:block;
  margin-bottom:70px;
  color:var(--azul);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

h2{
  margin:0;
  font-size:clamp(1.55rem,6vw,2.4rem);
  line-height:1.04;
  letter-spacing:-.04em;
}

.section-text{
  margin:8px 0 0;
  color:var(--texto-suave);
  line-height:1.55;
  font-size:.95rem;
}


/* =========================================================
   HEADER / MENU
   Mesmo comportamento e aparência do index.php
========================================================= */

.topbar{
  position:sticky;
  top:0;
  z-index:50;

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  background:rgba(5,75,141,.88);
  border-bottom:1px solid rgba(255,255,255,.13);
}

.topbar-inner{
  width:min(100%,var(--max));
  min-height:70px;

  margin:0 auto;
  padding:10px 16px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  color:#fff;

  display:flex;
  align-items:center;
  gap:10px;

  font-weight:900;
  letter-spacing:-.03em;
}

.brand-mark{
  width:36px;
  height:36px;

  border-radius:12px;

  background:
    linear-gradient(
      145deg,
      var(--verde-lima),
      #efff61
    );

  box-shadow:0 7px 18px rgba(0,0,0,.12);

  display:grid;
  place-items:center;

  color:var(--azul-escuro);

  font-size:20px;
  font-weight:1000;
}

.menu-btn{
  width:44px;
  height:44px;

  border:0;
  border-radius:14px;

  color:#fff;
  background:rgba(255,255,255,.12);

  display:grid;
  place-items:center;

  cursor:pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after{
  display:block;

  width:20px;
  height:2px;

  background:#fff;
  border-radius:999px;

  content:"";

  transition:.2s ease;
}

.menu-btn span::before{
  transform:translateY(-6px);
}

.menu-btn span::after{
  transform:translateY(4px);
}

.menu{
  position:fixed;
  inset:70px 0 auto 0;
  z-index:45;

  background:rgba(5,48,93,.98);

  transform:translateY(-130%);
  transition:.25s ease;

  box-shadow:0 20px 40px rgba(0,0,0,.22);
}

.menu.open{
  transform:translateY(0);
}

.menu nav{
  width:min(100%,var(--max));

  margin:0 auto;
  padding:10px 16px 18px;

  display:grid;
  gap:8px;
}

.menu a{
  color:#fff;

  padding:16px 18px;

  border-radius:14px;

  background:rgba(255,255,255,.07);

  font-size:1.05rem;
  line-height:1.2;
  font-weight:800;

  transition:background .18s ease;
}

.menu a:hover{
  background:rgba(255,255,255,.12);
}


/* =========================================================
   HERO
========================================================= */

.hero{
  padding:34px 0 24px;
  color:#fff;
}

.hero-card.hero-imagem{
  position:relative;

  width:100%;
  min-height:520px;

  display:flex;
  align-items:center;

  overflow:hidden;

  border-radius:30px;
  border:1px solid rgba(255,255,255,.12);

background-image: url(hero.png);
background-color: transparent;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  box-shadow:0 18px 42px rgba(5,45,92,.22);
}

.hero-content{
  position:relative;
  z-index:2;

  width:58%;
  max-width:650px;

  padding:54px 34px;

  text-align:left;
}

.hero-content h1{
  margin:0 0 18px;

  font-size:clamp(2.6rem,5vw,4.3rem);
  line-height:.92;
  letter-spacing:-.055em;
  font-weight:1000;

  color:#fff;

  text-shadow:
    0 2px 4px rgba(0,0,0,.10),
    0 8px 25px rgba(0,0,0,.14);
}

.hero-content .accent{
  display:block;
  color:var(--verde-lima);
}

.hero-content p{
  margin:0;

  max-width:540px;

  color:rgba(255,255,255,.92);

  font-size:1.05rem;
  font-weight:600;
  line-height:1.5;

  text-shadow:0 2px 8px rgba(0,0,0,.25);
}


/* =========================================================
   PERFIS
========================================================= */

.profile-grid{
  display:grid;
  gap:14px;
  margin-top:16px;
}

.profile-card{
  background:var(--branco);

  border:1px solid rgba(7,90,168,.08);
  border-radius:var(--raio);

  overflow:hidden;

  box-shadow:0 8px 24px rgba(5,45,92,.11);
}

.profile-media.profile-media-banner{
  display:block;

  width:100%;
  height:auto;

  min-height:0;
  padding:0;
  margin:0;

  overflow:hidden;

  background:#fff;

  border-radius:var(--raio) var(--raio) 0 0;
}

.profile-media.profile-media-banner img{
  display:block;

  width:100%;
  height:auto;
  max-width:100%;

  margin:0;
  padding:0;

  object-fit:contain;
  object-position:center;
}

.profile-body{
  padding:16px 18px 18px;

  color:#324A65;

  line-height:1.52;
  font-size:.94rem;

  text-align:justify;
}

.profile-body p{
  margin:0 0 12px;
  text-indent:2em;
}

.profile-body p:last-child{
  margin-bottom:0;
}

.profile-body .titulo-desc{
  margin:0 0 14px;

  text-indent:0;
  text-align:center;

  color:var(--azul-escuro);

  font-size:1.1em;
  font-weight:900;
  text-transform:uppercase;
}


/* =========================================================
   TARCÍSIO / APOIO
========================================================= */

.support-card-new{
  position:relative;

  min-height:330px;

  display:flex;
  align-items:center;

  padding:44px 48px 44px 350px;

  overflow:hidden;

  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);

  background:
    radial-gradient(
      circle at 95% 0%,
      rgba(201,229,42,.15) 0,
      rgba(201,229,42,.06) 13%,
      transparent 29%
    ),
    linear-gradient(
      115deg,
      #05305D 0%,
      var(--azul-escuro) 44%,
      var(--azul) 72%,
      var(--azul-vivo) 100%
    );

  box-shadow:var(--sombra);
}

.support-card-new::before{
  content:"";

  position:absolute;

  left:80px;
  bottom:-75px;

  width:340px;
  height:330px;

  background-image:url("../imagens/Tarcisio.png");
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:contain;

  transform:scale(1.28);
  transform-origin:center bottom;

  filter:drop-shadow(12px 12px 18px rgba(0,0,0,.18));

  pointer-events:none;
}

.support-card-new::after{
  content:"";

  position:absolute;
  right:-70px;
  top:-100px;

  width:300px;
  height:300px;

  border-radius:50%;
  border:28px solid rgba(255,255,255,.035);

  box-shadow:
    0 0 0 22px rgba(255,255,255,.025),
    0 0 0 44px rgba(255,255,255,.018);

  pointer-events:none;
}

.support-content{
  position:relative;
  z-index:2;

  width:100%;
  max-width:700px;
}

.support-kicker{
  display:inline-flex;
  align-items:center;

  margin:0 0 40px 70px;
  padding:7px 12px;

  border-radius:999px;

  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);

  color:#BCEEF6;

  font-size:.72rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.support-content h2{
  margin:-35px 0 0 80px;

  color:#fff;

  font-size:clamp(2.4rem,4.5vw,4.2rem);
  line-height:.92;
  letter-spacing:-.055em;
  font-weight:1000;
}

.support-content h2 span{
  color:var(--verde-lima);
}

.support-content p{
  max-width:640px;

  margin:10px 0 0 80px;

  color:rgba(255,255,255,.90);

  font-size:1rem;
  line-height:1.5;
}


/* =========================================================
   INVESTIMENTOS
========================================================= */

.investment-grid{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.investment-card{
  position:relative;

  overflow:hidden;

  background:#fff;

  border:1px solid var(--borda);
  border-radius:18px;

  box-shadow:0 5px 16px rgba(5,45,92,.09);
}

.investment-top{
  position:relative;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:10px;

  padding:11px 13px;

  overflow:hidden;

  color:#fff;
  background:var(--azul-escuro);
}

.investment-top::before{
  content:"";

  position:absolute;
  inset:0 auto 0 0;

  width:var(--progress,0%);

  background:
    linear-gradient(
      90deg,
      rgba(7,90,168,.30) 0%,
      rgba(0,137,199,.34) 60%,
      rgba(24,185,214,.42) 100%
    );

  transform:scaleX(0);
  transform-origin:left center;

  transition:
    transform 3.2s cubic-bezier(.16,1,.3,1);

  z-index:0;
}

.investment-card.animate .investment-top::before{
  transform:scaleX(1);
}

.investment-top span,
.investment-top strong{
  position:relative;
  z-index:2;
}

.investment-top span{
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.investment-top strong{
  color:var(--verde-lima);

  font-size:1rem;
  white-space:nowrap;
}

.investment-body{
  padding:14px;

  text-align:center;

  color:var(--azul-escuro);

  font-weight:800;
  line-height:1.28;
}


/* =========================================================
   APOIO PERSONALIZADO
========================================================= */

.apoio-personalizado{
  padding-top:18px;
}

.apoio-personalizado-banner{
  display:block;

  width:100%;
  aspect-ratio:16 / 9;

  overflow:hidden;

  border-radius:28px 28px 0 0;
  border:1px solid rgba(7,90,168,.08);

  background-color:var(--azul);
  background-image:url("../imagens/apoio-personalizado.png");
  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;

  box-shadow:var(--sombra);

  transform:scale(1);

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease;
}

.apoio-personalizado-banner:hover{
  transform:scale(1.025);
  box-shadow:0 18px 45px rgba(5,45,92,.22);
}

.apoio-personalizado-banner:active{
  transform:scale(1.01);
}


/* =========================================================
   MATERIAIS
========================================================= */

.materials-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:14px;

  width:100%;
  margin-top:18px;
}

.material-item{
  display:block;

  width:100%;

  overflow:hidden;

  background:#fff;

  border:1px solid var(--borda);
  border-radius:16px;

  box-shadow:0 5px 16px rgba(5,45,92,.09);
}

.material-item img{
  display:block;

  width:100%;
  height:280px;

  margin:0;

  object-fit:cover;
  object-position:center;
}

.materials-download{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:10px;

  width:100%;
  min-height:56px;

  margin-top:18px;
  padding:12px 18px;

  border-radius:16px;

  background:
    linear-gradient(
      135deg,
      #169447,
      #1fb55a
    );

  color:#fff;

  font-weight:900;
  text-align:center;

  box-shadow:0 10px 24px rgba(18,140,66,.22);

  transition:
    transform .15s ease,
    filter .15s ease;
}

.materials-download:hover{
  filter:brightness(1.05);
  transform:translateY(-2px);
}

.materials-download:active{
  transform:scale(.985);
}

.materials-download svg{
  width:24px;
  height:24px;

  flex:0 0 24px;

  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.materials-whatsapp{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:9px;

  width:100%;

  margin-top:10px;
  padding:10px 14px;

  border-radius:12px;

  color:#159447;

  font-size:.9rem;
  font-weight:800;
  text-align:center;

  transition:
    background .2s ease,
    transform .2s ease;
}

.materials-whatsapp:hover{
  background:rgba(22,148,71,.08);
  transform:translateY(-1px);
}

.materials-whatsapp svg{
  width:20px;
  height:20px;

  flex:0 0 20px;

  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.social-section{
  position:relative;
  overflow:hidden;
}

.social-links{
  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:14px;

  margin-top:20px;
}

.social-link{
  position:relative;

  min-height:82px;

  display:flex;
  align-items:center;

  gap:14px;

  padding:14px 18px;

  border-radius:18px;

  color:#fff;

  overflow:hidden;

  box-shadow:0 8px 20px rgba(10,35,65,.12);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.social-link:hover{
  transform:translateY(-2px);
  filter:brightness(1.04);
  box-shadow:0 13px 28px rgba(10,35,65,.17);
}

.social-link:active{
  transform:scale(.99);
}

.social-link.instagram{
  background:
    linear-gradient(
      135deg,
      #833AB4 0%,
      #C13584 38%,
      #E1306C 68%,
      #F77737 100%
    );
}

.social-link.facebook{
  background:
    linear-gradient(
      135deg,
      #0866FF 0%,
      #1877F2 55%,
      #0758C7 100%
    );
}

.social-icon{
  width:48px;
  height:48px;

  flex:0 0 48px;

  display:grid;
  place-items:center;

  border-radius:14px;

  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.16);
}

.social-icon svg{
  width:25px;
  height:25px;
}

.social-text{
  min-width:0;

  display:flex;
  flex-direction:column;

  gap:1px;
}

.social-text small{
  color:rgba(255,255,255,.78);

  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.social-text strong{
  color:#fff;

  font-size:1.05rem;
  font-weight:900;
}

.social-arrow{
  margin-left:auto;

  color:rgba(255,255,255,.85);

  font-size:2rem;
  font-weight:300;
  line-height:1;
}


/* =========================================================
   RODAPÉ
========================================================= */

footer{
  padding:28px 6px 48px;

  color:#6A8093;

  text-align:center;

  font-size:.78rem;
  line-height:1.45;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:699px){

  .hero{
    padding:20px 0 18px;
  }

  .hero-card.hero-imagem{
    min-height:570px;

    align-items:flex-start;

    border-radius:26px;

    background-position:center bottom;

    background-image:
      linear-gradient(
        180deg,
        rgba(5,48,93,.94) 0%,
        rgba(7,59,120,.76) 28%,
        rgba(7,90,168,.24) 52%,
        rgba(7,90,168,0) 72%
      ),
      url("hero.png");
  }

  .hero-content{
    width:100%;
    max-width:none;

    padding:32px 22px 260px;

    text-align:left;
  }

  .hero-content h1{
    max-width:330px;

    margin-bottom:14px;

    font-size:clamp(2.25rem,10vw,3.3rem);
    line-height:.93;
  }

  .hero-content p{
    max-width:315px;

    font-size:.94rem;
    line-height:1.42;
  }

  .support-card-new{
    min-height:510px;

    align-items:flex-start;

    padding:28px 22px 280px;

    border-radius:26px;
  }

  .support-card-new::before{
    left:50%;
    bottom:-8px;

    width:320px;
    height:300px;

    transform:
      translateX(-50%)
      scale(1.3);

    transform-origin:center bottom;
  }

  .support-content{
    max-width:100%;
  }

  .support-kicker{
    margin:0 0 12px;
  }

  .support-content h2{
    max-width:330px;

    margin:0;

    font-size:2.55rem;
    line-height:.93;
  }

  .support-content p{
    max-width:340px;

    margin:14px 0 0;

    font-size:.92rem;
    line-height:1.45;
  }

  .support-card-new::after{
    width:210px;
    height:210px;

    right:-80px;
    top:-80px;
  }

  .materials-download{
    font-size:.92rem;
    line-height:1.25;
  }

  .social-links{
    grid-template-columns:1fr;
    gap:10px;
  }

  .social-link{
    min-height:74px;

    padding:12px 14px;

    border-radius:16px;
  }

  .social-icon{
    width:44px;
    height:44px;

    flex-basis:44px;

    border-radius:13px;
  }

  .social-icon svg{
    width:23px;
    height:23px;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media(min-width:700px){

  .profile-grid{
    grid-template-columns:1fr 1fr;
  }

  .investment-grid{
    grid-template-columns:repeat(2,1fr);
  }
}


/* =========================================================
   DESKTOP
========================================================= */

@media(min-width:980px){

  .hero-card.hero-imagem{
    min-height:560px;
  }

  .hero-content{
    padding:64px 48px;
  }

  .investment-grid{
    grid-template-columns:repeat(3,1fr);
  }
}


/* =========================================================
   GRADE DE MATERIAIS - RESPONSIVO
========================================================= */

@media(max-width:900px){

  .materials-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .material-item img{
    height:320px;
  }
}

@media(max-width:500px){

  .materials-grid{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .material-item img{
    height:230px;
  }
}

/* =========================================================
   AJUSTES FINAIS DE RESPONSIVIDADE
========================================================= */

section[id]{
  scroll-margin-top:88px;
}

@media(max-width:699px){

  body{
    background:
      radial-gradient(
        circle at 88% 0%,
        rgba(201,229,42,.34),
        transparent 24%
      ),
      radial-gradient(
        circle at 0% 14%,
        rgba(24,185,214,.22),
        transparent 27%
      ),
      linear-gradient(
        180deg,
        #0795c8 0%,
        #075aa8 18%,
        #f4f8fb 18%,
        #f4f8fb 100%
      );
  }

  .container{
    padding-left:10px;
    padding-right:10px;
  }

  .topbar-inner{
    min-height:64px;
    padding:8px 12px;
  }

  .brand-mark{
    width:34px;
    height:34px;
    border-radius:11px;
    font-size:18px;
  }

  .brand{
    font-size:.95rem;
  }

  .menu-btn{
    width:42px;
    height:42px;
    border-radius:13px;
  }

  .menu{
    inset:64px 0 auto 0;
  }

  .menu nav{
    padding:10px 12px 16px;
    gap:7px;
  }

  .menu a{
    padding:14px 15px;
    border-radius:13px;
    font-size:1rem;
  }

  .hero{
    padding:18px 0 14px;
  }

  .hero-card.hero-imagem{
    min-height:500px;
    border-radius:22px;
    background-position:center bottom;
  }

  .hero-content{
    width:100%;
    padding:28px 18px 230px;
  }

  .hero-content h1{
    max-width:300px;
    margin-bottom:12px;
    font-size:clamp(2.05rem,9.3vw,2.9rem);
    line-height:.94;
    letter-spacing:-.05em;
  }

  .hero-content p{
    max-width:300px;
    font-size:.89rem;
    line-height:1.42;
    font-weight:650;
  }

  .section{
    padding-top:12px;
  }

  .surface{
    padding:16px 14px;
    border-radius:19px;
  }

  .section-title-row{
    margin-bottom:10px;
  }

  .section-kicker{
    margin-bottom:5px;
    font-size:.69rem;
    line-height:1.25;
  }

  h2{
    font-size:clamp(1.45rem,6.7vw,1.9rem);
    line-height:1.02;
  }

  .section-text{
    margin-top:6px;
    font-size:.88rem;
    line-height:1.45;
  }

  .profile-grid{
    gap:12px;
    margin-top:13px;
  }

  .profile-card{
    border-radius:18px;
  }

  .profile-media.profile-media-banner{
    border-radius:18px 18px 0 0;
  }

  .profile-body{
    padding:14px 16px 16px;
    font-size:.88rem;
    line-height:1.48;
    text-align:left;
  }

  .profile-body p{
    margin-bottom:11px;
    text-indent:1.5em;
  }

  .profile-body .titulo-desc{
    margin-bottom:12px;
    font-size:.98rem;
    line-height:1.25;
  }

  .support-card-new{
    min-height:460px;
    padding:24px 18px 235px;
    border-radius:22px;
  }

  .support-card-new::before{
    left:50%;
    bottom:-18px;
    width:280px;
    height:260px;
    transform:
      translateX(-50%)
      scale(1.17);
  }

  .support-card-new::after{
    width:180px;
    height:180px;
    right:-78px;
    top:-78px;
  }

  .support-kicker{
    margin:0 0 9px;
    padding:6px 10px;
    font-size:.66rem;
  }

  .support-content h2{
    max-width:290px;
    margin:0;
    font-size:2.08rem;
    line-height:.94;
    letter-spacing:-.045em;
  }

  .support-content p{
    max-width:300px;
    margin:11px 0 0;
    font-size:.86rem;
    line-height:1.42;
  }

  .investment-grid{
    gap:9px;
    margin-top:13px;
  }

  .investment-card{
    border-radius:15px;
  }

  .investment-top{
    padding:10px 11px;
    gap:8px;
  }

  .investment-top span{
    font-size:.64rem;
    line-height:1.15;
  }

  .investment-top strong{
    font-size:.88rem;
    line-height:1.15;
  }

  .investment-body{
    padding:12px 10px;
    font-size:.87rem;
    line-height:1.25;
  }

  .apoio-personalizado{
    padding-top:12px;
  }

  .apoio-personalizado-banner{
    border-radius:20px;
  }

  .materials-grid{
    gap:9px;
    margin-top:14px;
  }

  .material-item{
    border-radius:14px;
  }

  .material-item img{
    height:auto;
    aspect-ratio:4 / 5;
    object-fit:cover;
  }

  .materials-download{
    min-height:50px;
    margin-top:14px;
    padding:11px 13px;
    border-radius:14px;
    font-size:.86rem;
  }

  .materials-download svg{
    width:21px;
    height:21px;
    flex-basis:21px;
  }

  .materials-whatsapp{
    margin-top:7px;
    padding:9px 10px;
    font-size:.82rem;
    line-height:1.3;
  }

  .social-links{
    margin-top:14px;
  }

  .social-link{
    min-height:66px;
    padding:10px 12px;
  }

  .social-icon{
    width:40px;
    height:40px;
    flex-basis:40px;
    border-radius:12px;
  }

  .social-icon svg{
    width:21px;
    height:21px;
  }

  .social-text small{
    font-size:.64rem;
  }

  .social-text strong{
    font-size:.95rem;
  }

  .social-arrow{
    font-size:1.7rem;
  }

  footer{
    padding:22px 8px 34px;
    font-size:.70rem;
  }
}


/* Celulares realmente estreitos */
@media(max-width:390px){

  .container{
    padding-left:8px;
    padding-right:8px;
  }

  .hero-card.hero-imagem{
    min-height:475px;
  }

  .hero-content{
    padding:24px 16px 215px;
  }

  .hero-content h1{
    max-width:275px;
    font-size:2rem;
  }

  .hero-content p{
    max-width:275px;
    font-size:.84rem;
  }

  .surface{
    padding:14px 12px;
  }

  h2{
    font-size:1.42rem;
  }

  .profile-body{
    padding:13px 14px 15px;
    font-size:.85rem;
  }

  .profile-body p{
    text-indent:1.25em;
  }

  .support-card-new{
    min-height:435px;
    padding:21px 16px 220px;
  }

  .support-card-new::before{
    width:260px;
    height:245px;
    bottom:-22px;
  }

  .support-content h2{
    max-width:265px;
    font-size:1.92rem;
  }

  .support-content p{
    max-width:270px;
    font-size:.82rem;
  }

  .investment-top{
    padding:9px 10px;
  }

  .investment-top span{
    font-size:.60rem;
  }

  .investment-top strong{
    font-size:.80rem;
  }

  .investment-body{
    padding:11px 9px;
    font-size:.82rem;
  }

  .materials-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
  }
}


/* Tablets menores: evita cartões gigantes */
@media(min-width:700px) and (max-width:900px){

  .surface{
    padding:18px;
  }

  .hero-card.hero-imagem{
    min-height:500px;
  }

  .profile-body{
    font-size:.90rem;
  }

  .support-card-new{
    padding-left:300px;
  }

  .support-card-new::before{
    left:45px;
  }
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin: 15px 0 -15px 0;
}


/* =========================================================
   CORREÇÕES FINAIS — HERO MOBILE
========================================================= */

@media(max-width:699px){

  .hero{
    padding:18px 0 14px;
  }

  .hero-card.hero-imagem{
    min-height:470px;
    align-items:flex-start;
    border-radius:22px;

    background-position:68% bottom;

    background-image:
      linear-gradient(
        180deg,
        rgba(5,48,93,.94) 0%,
        rgba(7,59,120,.80) 26%,
        rgba(7,90,168,.32) 48%,
        rgba(7,90,168,.05) 70%
      ),
      url("hero.png");
  }

  .hero-content{
    width:100%;
    max-width:none;
    padding:28px 18px 245px;
    text-align:left;
  }

  .hero-content h1{
    max-width:285px;
    margin:0 0 12px;
    font-size:2.15rem;
    line-height:.94;
    letter-spacing:-.045em;
  }

  .hero-content .accent{
    display:block;
  }

  .hero-content p{
    max-width:275px;
    margin:0;
    font-size:.86rem;
    line-height:1.4;
    font-weight:700;
  }

  .eyebrow{
    padding:7px 10px;
    margin-bottom:1px;
    font-size:.68rem;
    letter-spacing:.075em;
  }
}
@media(max-width:699px){

  .hero-card.hero-imagem{
    min-height:0;
    height:auto;

    aspect-ratio:16 / 9;

    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;

    border-radius:22px;
  }

}

/* =========================================================
   CORREÇÕES FINAIS — TARCÍSIO MOBILE
========================================================= */

@media(max-width:699px){

  .support-card-new{
    min-height:450px;
    align-items:flex-start;
    padding:24px 18px 235px;
    border-radius:22px;
  }

  .support-content{
    max-width:100%;
  }

  .support-kicker{
    margin:0 0 10px;
    padding:6px 10px;
    font-size:.66rem;
  }

  .support-content h2{
    max-width:290px;
    margin:0;
    font-size:2.02rem;
    line-height:.94;
    letter-spacing:-.045em;
  }

  .support-content p{
    max-width:295px;
    margin:12px 0 0;
    font-size:.84rem;
    line-height:1.42;
  }

  .support-card-new::before{
    left:50%;
    bottom:-28px;
    width:285px;
    height:275px;

    transform:
      translateX(-50%)
      scale(1.08);

    transform-origin:center bottom;
    background-position:center bottom;
  }

  .support-card-new::after{
    width:175px;
    height:175px;
    right:-78px;
    top:-78px;
  }
}
@media(max-width:699px){

  .support-card-new{
    position:relative;

    min-height:0;
    height:auto;

    aspect-ratio:16 / 9;

    padding:0;

    overflow:hidden;

    border-radius:22px;
  }

  .support-content{
    position:absolute;
    inset:0;

    z-index:2;

    width:100%;
    max-width:none;

    padding:5px 18px;
  }

  .support-kicker{
    margin:0 0 8px;
  }

  .support-content h2{
    max-width:58%;

    margin:0;

    font-size:1.8rem;
    line-height:.94;
  }

  .support-content p{
    max-width:55%;

    margin:10px 0 0;

    font-size:.78rem;
    line-height:1.35;
  }


  /* FOTO DO TARCÍSIO */

  .support-card-new::before{
    left:auto;
    right:0;
    bottom:0;

    width:52%;
    height:94%;

    transform:none;

    background-size:contain;
    background-position:right bottom;
    background-repeat:no-repeat;
  }

}

/* =========================================================
   CORREÇÕES FINAIS — LINK WHATSAPP / KIT IMPRESSO
========================================================= */

.materials-whatsapp{
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  align-items:center;
  column-gap:10px;

  width:100%;
  margin-top:10px;
  padding:10px 12px;

  color:#159447;

  font-size:.88rem;
  font-weight:800;
  line-height:1.3;
  text-align:left;

  border-radius:12px;

  transition:
    background .2s ease,
    transform .2s ease;
}

.materials-whatsapp:hover{
  background:rgba(22,148,71,.08);
  transform:translateY(-1px);
}

.materials-whatsapp svg{
  display:block;
  width:22px;
  height:22px;
  margin:0;

  align-self:center;
  justify-self:center;

  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.materials-whatsapp span{
  display:block;
  min-width:0;
  text-align:center;
}

@media(max-width:699px){

  .materials-whatsapp{
    grid-template-columns:20px minmax(0,1fr);
    padding:10px 8px;
    font-size:.80rem;
  }

  .materials-whatsapp svg{
    width:20px;
    height:20px;
  }
}


/* =========================================================
   AJUSTE EXTRA — TELAS MUITO ESTREITAS
========================================================= */

@media(max-width:390px){

  .hero-card.hero-imagem{
    min-height:450px;
    background-position:69% bottom;
  }

  .hero-content{
    padding:24px 16px 225px;
  }

  .hero-content h1{
    max-width:270px;
    font-size:1.98rem;
  }

  .hero-content p{
    max-width:265px;
    font-size:.82rem;
  }

  .eyebrow{
    padding:6px 9px;
    margin-bottom:11px;
    font-size:.64rem;
  }

  .support-card-new{
    min-height:425px;
    padding:21px 16px 215px;
  }

  .support-card-new::before{
    bottom:-28px;
    width:260px;
    height:250px;
    transform:
      translateX(-50%)
      scale(1.04);
  }

  .support-content h2{
    max-width:265px;
    font-size:1.88rem;
  }

  .support-content p{
    max-width:270px;
    font-size:.81rem;
  }
}
