:root{
      --svb:#00A86B;
      --svb2:#0bbd7c;
      --bg:#ffffff;
      --ink:#0b1220;
      --muted:#556273;
      --card:#f7faf9;
      --line:rgba(11,18,32,.10);
      --shadow:0 18px 44px rgba(11,18,32,.10);
      --shadow2:0 10px 24px rgba(11,18,32,.08);
      --radius:22px;
      --radius2:16px;
      --max:1120px;
      --pad:24px;
    }

    *{box-sizing:border-box}
   html, body {
  width: 100%;
  overflow-x: hidden;
}

    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      color:var(--ink);
      background:
        radial-gradient(1200px 600px at 16% -10%, rgba(0,168,107,.16), transparent 56%),
        radial-gradient(900px 600px at 88% 10%, rgba(11,189,124,.12), transparent 55%),
        var(--bg);
      line-height:1.45;
      letter-spacing: -0.01em;
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}
    .anchor{scroll-margin-top:90px}

    /* Topbar */
    .topbar{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.78);
      border-bottom:1px solid var(--line);
    }
    
    /* AJUSTE DE RESPONSIVIDADE NO NAV */
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      height:74px;
      gap:8px; /* Reduzido para evitar quebra em telas médias */
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight:900;
      letter-spacing:-0.02em;
      flex-shrink: 0; /* Impede o logo de ser esmagado */
    }
    .logo{
      width:42px; height:42px; border-radius:14px;
      background: linear-gradient(135deg, var(--svb), #0fe093);
      box-shadow: var(--shadow2);
      display:grid; place-items:center;
      color:#fff;
      font-weight:950;
      position:relative;
      overflow:hidden;
      flex-shrink: 0;
    }
    .logo::after{
      content:"";
      position:absolute; inset:-18px -22px auto -22px; height:60px;
      background: radial-gradient(140px 64px at 30% 60%, rgba(255,255,255,.42), transparent 62%);
      transform: rotate(8deg);
      opacity:.8;
    }
    .brand small{
      display:block; margin-top:2px;
      color:var(--muted);
      font-weight:750;
      font-size:12.5px;
    }

    .menu{display:flex; gap:8px; align-items:center}
    .menu a{
      padding:10px 10px;
      border-radius:12px;
      font-weight:800;
      color:rgba(11,18,32,.86);
      white-space: nowrap;
    }
    .menu a:hover{background:rgba(0,168,107,.08)}
/* Deixa o botão hambúrguer quadrado e centralizado */
.btn.hamb {
  width: 42px;         /* Largura fixa */
  height: 42px;        /* Altura igual à largura */
  padding: 0;          /* Remove padding para não achatar o ícone */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;      /* Impede que o botão seja esmagado */
  border-radius: 12px; /* Cantos levemente arredondados */
}

/* Ajuste do Menu Lateral para formato "Card Quadrado" */
.mobile-menu {
  position: fixed;
  top: 75px;           /* Distância do topo */
  right: 15px;         /* Distância da lateral */
  width: 250px;        /* Largura do card */
  height: auto;        /* Altura automática baseada no conteúdo */
  max-height: 80vh;    /* Limite para não cortar em telas pequenas */
  
  background: white;
  border-radius: 20px; /* Bordas arredondadas em todos os lados */
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 168, 107, 0.15);
  border: 1px solid rgba(0, 168, 107, 0.1);
  
  /* Animação */
  transform: translateX(120%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}
    .actions{display:flex; gap:8px; align-items:center; flex-shrink: 0;}
    .btn{
      border:1px solid var(--line);
      background:#fff;
      padding:11px 14px;
      border-radius:14px;
      font-weight:850;
      display:inline-flex;
      gap:10px;
      align-items:center;
      cursor:pointer;
      transition:.18s transform ease, .18s box-shadow ease, .18s background ease, .18s border-color ease;
      white-space:nowrap;
    }
    .btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2)}
    .btn:active{transform: translateY(0)}
    .btn-primary{
      border-color: rgba(0,168,107,.22);
      background: linear-gradient(135deg, rgba(0,168,107,.96), rgba(11,189,124,.96));
      color:#fff;
      box-shadow: 0 18px 34px rgba(0,168,107,.22);
    }
    .btn-primary:hover{box-shadow: 0 20px 40px rgba(0,168,107,.28)}
    .btn-ghost{
      background: rgba(0,168,107,.08);
      border-color: rgba(0,168,107,.18);
    }

    .hamb{display:none; flex-shrink: 0;}

    /* Pills / Seals */
    .pill{
      display:inline-flex; gap:10px; align-items:center;
      padding:8px 12px;
      border:1px solid rgba(0,168,107,.20);
      background: rgba(0,168,107,.08);
      border-radius:999px;
      font-weight:900;
      font-size:13px;
      color: rgba(11,18,32,.9);
    }
    .dot{width:8px; height:8px; border-radius:99px; background:var(--svb)}
    .seal{
      display:inline-flex; align-items:center; gap:10px;
      padding:7px 10px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(11,18,32,.10);
      box-shadow: 0 10px 22px rgba(11,18,32,.06);
      font-weight:950;
      font-size:12px;
    }
    .seal svg{width:16px; height:16px}
    .seal img { width: 100%; height: auto; max-height: 50px; }

    /* Hero */
    .hero{padding:56px 0 18px}
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:24px;
      align-items:stretch;
    }
    h1{
      margin:14px 0 12px;
      font-size: clamp(34px, 4.1vw, 56px);
      line-height:1.02;
      letter-spacing:-0.035em;
    }
    .sub{
      margin:0;
      font-size: clamp(16px, 1.5vw, 19px);
      color: var(--muted);
      max-width: 62ch;
      font-weight:700;
    }
    .hero-cta{
      display:flex; gap:10px; flex-wrap:wrap;
      margin-top:18px;
      align-items:center;
    }

    .kpis{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:12px;
      margin-top:18px;
    }
    .kpi{
      border:1px solid var(--line);
      background: rgba(255,255,255,.78);
      border-radius: var(--radius2);
      padding:14px;
      box-shadow: 0 10px 26px rgba(11,18,32,.06);
    }
    .kpi b{display:block; font-size:15px}
    .kpi span{display:block; margin-top:6px; color:var(--muted); font-weight:700; font-size:13px}

    /* Cards / Layout */
    .card{
      border:1px solid var(--line);
      background: rgba(255,255,255,.82);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .card-inner{padding:18px}
    .muted{color:var(--muted)}
    .mini{font-size:13px; font-weight:750; color:rgba(11,18,32,.78)}
/* Container principal do Mock/Card */
/* Card Principal - Ajustado para Desktop e Mobile */
/* Card Principal - Limpo e Centralizado */
.card.mock {
  max-width: 800px; /* Largura ideal para PC */
  margin: 40px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0, 168, 107, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Header do Selo */
.seal-brand-header {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza no PC e Mobile */
  gap: 10px;
  font-weight: 800;
  color: var(--svb);
  font-size: 18px;
  padding-bottom: 10px;
}

/* Moldura da Foto Responsiva */
.photo-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #f9fbf9;
  line-height: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.main-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* No PC, limitamos a altura para não quebrar a rolagem */
  max-height: 550px; 
}

/* Rodapé Simples e Organizado */
.bag-footer-simple {
  text-align: center;
  padding-top: 10px;
}

.bag-footer-simple p {
  margin: 6px 0;
  font-size: 16px;
  color: var(--ink);
}

.bag-footer-simple .muted {
  font-size: 14px;
  color: var(--muted);
  opacity: 0.8;
}

/* Ajustes para Celular (Mobile) */
@media (max-width: 480px) {
  .card.mock {
    padding: 20px;
    margin: 20px 15px; /* Margem lateral para respirar */
    width: auto;
  }

  .seal-brand-header {
    font-size: 16px;
  }

  .bag-footer-simple p {
    font-size: 14px;
  }
}
  .bag-header {
    flex-direction: column; /* Um em cima do outro no celular */
    align-items: flex-start;
    gap: 12px;
  }

  .tag-label {
    width: auto;
    font-size: 10px;
  }

@media (min-width: 992px) {
  /* Alarga o container para telas grandes */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Folga generosa nas laterais */
  }

  .nav {
    height: 80px; /* Header mais alto e imponente */
    justify-content: space-between;
  }

  /* Esconde o botão hambúrguer no PC */
  .btn.hamb {
    display: none;
  }

  /* Mostra o menu de links horizontal */
  .menu {
    display: flex;
    gap: 30px;
    align-items: center;
  }

  .menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
  }

  .menu a:hover {
    color: var(--svb);
  }

  /* Garante que os botões de ação fiquem alinhados */
  .actions {
    display: flex;
    gap: 15px;
  }
@media (min-width: 992px) {
  .card.mock {
    max-width: 850px; /* Largura ideal para não "sufocar" a visão */
    margin: 60px auto; /* Centraliza com muita folga vertical */
    padding: 40px;     /* Respiro interno generoso */
    border-radius: 32px;
  }

  /* No PC, o selo e a tag voltam a ficar lado a lado */
  .bag-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .photo-frame {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--max); /* Usa o limite de 1120px que você já tem no root */
    margin: 0 auto;
    padding: 0 40px; /* Folga nas laterais do monitor */
  }
  
  h1 {
    font-size: 48px; /* Título imponente mas equilibrado */
    line-height: 1.1;
  }
}
  /* Aumenta a foto sem perder a qualidade */
  .photo-frame {
    border-radius: 20px;
    transition: transform 0.4s ease;
  }

  .card.mock:hover .photo-frame {
    transform: scale(1.02); /* Efeito suave de zoom ao passar o mouse */
  }
}
/* Responsividade para telas pequenas (Dando o "respiro" que você pediu) */
@media (max-width: 480px) {
  .card.mock {
    padding: 16px; /* Reduz um pouco o sufocamento lateral */
    margin: 0 10px; /* Cria uma folga entre o card e a borda do celular */
  }
  
  .bag-header {
    flex-direction: column; /* No celular pequeno, um fica em cima do outro */
    align-items: flex-start;
  }
}
    /* Mock visual */
    .mock{
      position:relative;
      min-height: 380px;
      background:
        radial-gradient(640px 260px at 35% 20%, rgba(0,168,107,.22), transparent 55%),
        radial-gradient(640px 260px at 80% 70%, rgba(11,189,124,.16), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
    }
    .mock .badge{
      position:absolute; top:14px; right:14px;
      display:flex; align-items:center; gap:8px;
      padding:8px 11px;
      border-radius:999px;
      background: rgba(255,255,255,.84);
      border:1px solid rgba(0,168,107,.22);
      font-weight:950;
      font-size:12px;
    }
    .bag{
      position:absolute; left:18px; right:18px; bottom:18px; top:70px;
      border-radius: 28px;
      border:1px solid rgba(11,18,32,.10);
      background:
        linear-gradient(135deg, rgba(0,168,107,.18), rgba(11,189,124,.10)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 10px, rgba(255,255,255,.20) 10px 20px);
      box-shadow: 0 18px 40px rgba(11,18,32,.10);
      overflow:hidden;
    }
    .bag::before{
      content:"";
      position:absolute; inset:-40px -60px auto -60px; height:160px;
      background: radial-gradient(220px 130px at 30% 60%, rgba(255,255,255,.55), transparent 62%);
      transform: rotate(6deg);
      opacity:.92;
    }
    .bag .print{
      position:absolute; inset:auto 18px 18px 18px;
      display:grid;
      gap:10px;
      padding:14px;
      border-radius: 18px;
      background: rgba(255,255,255,.78);
      border:1px solid rgba(11,18,32,.08);
      backdrop-filter: blur(6px);
    }
    .row{display:flex; align-items:center; justify-content:space-between; gap:12px}
    .tag{
      font-size:12px;
      font-weight:950;
      border-radius:999px;
      padding:6px 10px;
      background: rgba(0,168,107,.12);
      border:1px solid rgba(0,168,107,.18);
      white-space:nowrap;
    }
    .print p{margin:0; font-size:12px; color: rgba(11,18,32,.78); font-weight:700}

    /* Sections */
    section{padding:56px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between;
      gap:12px; margin-bottom:18px;
    }
    .section-head h2{
      margin:0;
      font-size: clamp(24px, 2.4vw, 34px);
      letter-spacing:-0.02em;
      line-height:1.12;
    }
    .section-head p{margin:0; color:var(--muted); max-width: 64ch; font-weight:700}

    .grid{
      display:grid;
      grid-template-columns: repeat(12,1fr);
      gap:14px;
    }
    .col-4{grid-column: span 4}
    .col-6{grid-column: span 6}
    .col-8{grid-column: span 8}
    .col-12{grid-column: span 12}

    .info{
      padding:18px;
      border-radius: var(--radius);
      border:1px solid var(--line);
      background: var(--card);
      box-shadow: 0 10px 24px rgba(11,18,32,.06);
    }
    .info h3{margin:0 0 10px; font-size:16px}
    .info p{margin:0; color:var(--muted); font-weight:700}

    .bullets{
      margin:12px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .li{
      display:flex; gap:10px; align-items:flex-start;
      padding:12px 12px;
      border:1px solid var(--line);
      border-radius: var(--radius2);
      background: rgba(255,255,255,.80);
    }
    .li svg{flex:0 0 auto; margin-top:2px}
    .li b{display:block}
    .li span{display:block; margin-top:3px; color:var(--muted); font-weight:700; font-size:13px}

    .steps{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:12px;
      margin-top:12px;
    }
    .step{
      border:1px solid var(--line);
      border-radius: var(--radius2);
      padding:14px;
      background: rgba(255,255,255,.78);
    }
    .step b{display:flex; align-items:center; gap:10px}
    .num{
      width:26px; height:26px; border-radius:999px;
      display:grid; place-items:center;
      background: rgba(0,168,107,.14);
      border:1px solid rgba(0,168,107,.22);
      font-weight:950;
    }
    .cta-row{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}

    /* Social proof */
    .proof{
      display:grid;
      grid-template-columns: repeat(3,1fr);
      gap:12px;
      margin-top:12px;
    }
    .quote{
      border:1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.82);
      padding:16px;
      box-shadow: 0 10px 24px rgba(11,18,32,.06);
    }
    .quote p{margin:0; color:rgba(11,18,32,.84); font-weight:800}
    .quote small{display:block; margin-top:10px; color:var(--muted); font-weight:800}

    /* Calculator + Counter */
    .calc{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .field{
      border:1px solid var(--line);
      background: rgba(255,255,255,.84);
      border-radius: var(--radius2);
      padding:12px;
    }
    .field label{display:block; font-weight:900; font-size:13px; margin-bottom:8px}
    .field input{
      width:100%;
      padding:12px 12px;
      border-radius: 14px;
      border:1px solid rgba(11,18,32,.12);
      outline:none;
      font-weight:850;
      font-size:14px;
      background:#fff;
    }
    .field input:focus{border-color: rgba(0,168,107,.55); box-shadow: 0 0 0 4px rgba(0,168,107,.12)}

    .result{
      border:1px solid rgba(0,168,107,.22);
      background: rgba(0,168,107,.08);
      border-radius: var(--radius2);
      padding:12px;
    }
    .result b{display:block; font-size:14px}
    .result span{display:block; margin-top:6px; color:rgba(11,18,32,.78); font-weight:800; font-size:13px}

    .counter{
      border:1px solid var(--line);
      background: rgba(255,255,255,.82);
      border-radius: var(--radius);
      padding:16px;
      box-shadow: 0 10px 24px rgba(11,18,32,.06);
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      margin-top:12px;
    }
    .count{
      font-size: clamp(26px, 3.2vw, 40px);
      font-weight:980;
      letter-spacing:-0.03em;
    }

    .fine{font-size:12px; color:rgba(84,96,113,.92); font-weight:750}

    /* Final CTA */
    .final{
      background:
        radial-gradient(900px 420px at 30% 0%, rgba(0,168,107,.16), transparent 58%),
        linear-gradient(180deg, rgba(247,250,249,.9), rgba(255,255,255,.88));
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .finalbox{
      border:1px solid rgba(0,168,107,.22);
      background: rgba(255,255,255,.86);
      border-radius: 28px;
      padding:22px;
      box-shadow: var(--shadow);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    /* Footer */
    .footer{padding:34px 0 46px; background: rgba(255,255,255,.72)}
    .foot-grid{
      display:grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap:14px;
      align-items:flex-start;
    }
    .links a{display:block; padding:7px 0; color:rgba(11,18,32,.86); font-weight:800}
    .links a:hover{color: var(--svb)}

    /* Toast */
    .toast{
      position:fixed; left:50%; transform:translateX(-50%);
      bottom:16px; z-index:99;
      background: rgba(11,18,32,.88);
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      border-radius: 999px;
      padding:10px 14px;
      display:none;
      gap:10px;
      align-items:center;
      box-shadow: var(--shadow2);
      font-weight:850;
      font-size:13px;
      max-width:min(92vw, 680px);
    }
    .toast.show{display:inline-flex}
    .kbd{
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size:12px; padding:2px 8px; border-radius:999px;
      border:1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.08);
    }

    /* Mobile Menu Sidebar */
    /* Mobile Menu — Estilo Card Quadrado e Flutuante */
.mobile-menu {
  position: fixed;
  /* Posiciona o card abaixo do header e um pouco afastado da lateral */
  top: 80px; 
  right: 20px;
  
  /* Largura fixa e altura automática para ficar "quadrado" */
  width: 260px;
  height: auto; 
  max-height: 70vh; /* Limita a altura para não sumir da tela */
  
  /* Visual de Card */
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 168, 107, 0.2);
  border: 1px solid rgba(0, 168, 107, 0.1);
  border-radius: 24px; /* Bordas arredondadas em todos os lados */
  
  /* Animação */
  transform: translateX(120%) scale(0.9); /* Começa menor e fora da tela */
  transform-origin: top right;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  z-index: 1000;
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0) scale(1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,168,107,0.1);
}

.mobile-menu-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--svb);
  margin: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Deixa os botões dentro do menu mais compactos */
.mobile-menu .btn {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  font-size: 14px;
  justify-content: center;
}
    /* Contact Form */
    .contact-info {
      padding: 20px;
    }

    .contact-form {
      display: grid;
      gap: 12px;
      margin-top: 12px;
    }

    .contact-form .field {
      display: flex;
      flex-direction: column;
    }


/* Responsividade – ajustada para mobile não ficar apertado */
@media (max-width: 1024px) {
  .selo-padrao-section { padding: 50px 0; }
  .selo-card { padding: 24px; border-radius: 24px; }
}

@media (max-width: 768px) {
  .selo-padrao-section { padding: 40px 0; }
  .selo-card { 
    padding: 20px; 
    border-radius: 22px; 
    max-width: 95%; 
  }
  .selo-imagem { max-height: 380px; }
  .selo-regra { font-size: 16px; }
  .selo-slogan { font-size: 22px; }
}
.status-msg {
  display: none;
}
@media (max-width: 480px) {
  .selo-padrao-section { padding: 36px 0; }
  .selo-card { padding: 18px; border-radius: 20px; }
  .selo-imagem { max-height: 320px; }
  .selo-regra { font-size: 15px; }
  .selo-slogan { font-size: 20px; }
}
/* ────────────────────────────────────────────────
   Responsividade
───────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .selo-padrao-section {
    padding: 60px 0;
  }
  .selo-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .selo-padrao-section {
    padding: 50px 0;
  }
  .selo-card {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .selo-image-container {
    padding: 16px;
  }
  .selo-regra {
    font-size: 17px;
  }
  .selo-slogan {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .selo-padrao-section {
    padding: 40px 0;
  }
  .selo-card {
    padding: 24px 16px;
  }
  .selo-image-container {
    padding: 12px;
  }
  .selo-regra {
    font-size: 16px;
  }
  .selo-slogan {
    font-size: 22px;
  }
}
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border-radius: 14px;
      border: 1px solid rgba(11,18,32,.12);
      outline: none;
      font-weight: 850;
      font-size: 14px;
      background: #fff;
      resize: vertical;
    }

    .contact-form textarea:focus {
      border-color: rgba(0,168,107,.55);
      box-shadow: 0 0 0 4px rgba(0,168,107,.12);
    }

    /* Header Photo */
    .header-photo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0,168,107,.18);
    }

    .menu-photo {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
    }

    /* Responsive Media Queries */
    @media (max-width: 1200px) {
      .container { padding: 0 20px; }
      .hero-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 1024px) {
      .menu { display: none; }
      .hamb { display: inline-flex; }
      .actions .btn:not(.hamb) { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      .grid { gap: 12px; }
      .col-4, .col-6, .col-8 { grid-column: span 12; }
      .calc { grid-template-columns: 1fr; }
      .steps, .proof, .kpis { grid-template-columns: repeat(2, 1fr); }
      .counter { flex-direction: column; align-items: center; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      .container { padding: 0 16px; }
      .nav { height: 68px; gap: 6px; }
      .brand { font-size: 16px; }
      .logo { width: 38px; height: 38px; border-radius: 12px; font-size: 14px; }
      .btn { padding: 10px 12px; font-size: 14px; }
      .hero { padding: 40px 0 12px; }
      h1 { font-size: 36px; }
      .sub { font-size: 16px; }
      .hero-cta { flex-direction: column; align-items: stretch; }
      .kpis { grid-template-columns: 1fr; }
      section { padding: 40px 0; }
      .section-head { flex-direction: column; align-items: flex-start; }
      .steps, .proof { grid-template-columns: 1fr; }
      .cta-row { flex-direction: column; align-items: stretch; }
      .mock { min-height: 300px; }
      .bag { left: 12px; right: 12px; top: 60px; }
      .finalbox { flex-direction: column; align-items: flex-start; }
      .foot-grid { grid-template-columns: 1fr; }
      .row { flex-direction: column; align-items: flex-start; }
      .tag, .seal { white-space: normal; text-align: center; }
      .btn { width: 100%; justify-content: center; }
      .links a { display: inline-block; margin-right: 10px; white-space: nowrap; }
    }

    @media (max-width: 480px) {
      .brand small { display: none; }
      .btn-ghost { display: none; }
      .nav { height: 60px; }
      .brand { font-size: 15px; }
      .logo { width: 36px; height: 36px; border-radius: 11px; font-size: 13px; }
      .btn { padding: 9px 12px; font-size: 13px; }
      .mobile-menu { width: 240px; padding: 15px; }
      h1 { font-size: 28px; }
      .sub { font-size: 14px; }
      .mock { min-height: 240px; }
      .bag { top: 50px; border-radius: 20px; }
      .print { padding: 10px; border-radius: 14px; }
    }
    
/* FORÇAR RESPIRO NO MOBILE */
@media (max-width: 768px) {
  /* O container precisa ter um preenchimento lateral obrigatório */
  .container.hero {
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Garante que o grid interno não ignore o padding do pai */
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  /* Ajusta o título para não bater nas bordas */
  h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-top: 20px !important;
  }

  /* Garante que os KPIs e parágrafos também fiquem soltos */
  .sub, .kpis {
    padding: 0 !important;
    width: 100% !important;
  }
}
    @media (max-width: 320px) {
      .container { padding: 0 10px; }
      .btn { font-size: 12px; padding: 8px 10px; }
      .mobile-menu { width: 200px; }
    }
.seal-center {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 10px 0;
  max-width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .seal-center {
    padding: 8px;
    margin: 8px 0;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

/* Animação leve SOMENTE no mobile quando clica/toca no marcador */
@media (max-width: 768px) {
  .marker-clicked {
    animation: marker-pulse-mobile 0.8s ease-out 1;
  }
}

@keyframes marker-pulse-mobile {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  70%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
/* Container da foto abaixo dos produtos */
.produto-footer-img {
    width: 100%;
    margin: 40px 0; /* Espaço em cima e embaixo */
    display: flex;
    justify-content: center; /* Centraliza a imagem horizontalmente */
    align-items: center;
}

.produto-footer-img img {
    /* AJUSTE AQUI O TAMANHO QUE VOCÊ DESEJA */
    width: 90%;            /* No mobile, ocupa quase tudo */
    max-width: 500px;      /* No PC, não passa desse tamanho (mude para 400px se quiser menor ainda) */
    
    height: auto;
    border-radius: 12px;   /* Arredondamento suave */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sombra leve para dar profundidade */
    transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse */
.produto-footer-img img:hover {
    transform: scale(1.02);
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .produto-footer-img img {
        max-width: 300px; /* No celular ela fica um pouco menor */
    }
}

  @media (max-width: 768px) {
      #upload-label {
        min-height: 200px !important; /* Menor no mobile */
        font-size: 16px;
      }
      #state-select {
      
        padding: 10px 14px; /* Ajuste para mobile */
      }
      section#contribua {
        padding: 0 10px; /* Margens laterais para não colar na tela */
      }
    }
        @media (max-width: 768px) {
      #upload-label {
        min-height: 200px !important;
        font-size: 16px;
      }
      #state-select {
        padding: 10px 36px 10px 14px;
      }
      section#contribua {
        padding: 0 10px;
      }
      div[style*="flex"] {
        flex-direction: column; /* Stack botões no mobile se necessário */
        gap: 10px;
      }
    }
    #state-select:hover, #state-select:focus {
      border-color: var(--svb);
      box-shadow: 0 0 0 3px rgba(0,168,107,0.12);
    }

    #upload-label.sending {
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--svb);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Estilos personalizados para o select de estados */
/* ==========================================================================
   Área de upload com adaptação automática de proporção
   ========================================================================== */

/* Estado inicial (sem imagem) — proporção padrão confortável */
#upload-label {
  aspect-ratio: 4 / 3;          /* proporção inicial ~ quadrado-retangular suave */
  transition: aspect-ratio 0.4s ease, max-height 0.4s ease, border-color 0.3s ease;
  will-change: aspect-ratio, max-height; /* melhora performance da animação */
}

/* Quando a imagem está carregada */
#upload-label:has(#preview-img[style*="display: block"]) {
  border-style: solid;          /* muda de dashed → solid para indicar "carregado" */
  border-width: 2px;
  background: #f8fdf8;
  box-shadow: 0 4px 16px rgba(0, 168, 107, 0.12);
}

/* A imagem em si sempre preenche o container respeitando proporção */
#preview-img {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* Evita que o label fique absurdamente grande ou pequeno */
#upload-label {
  max-width: 520px;
  min-height: 180px;            /* nunca menor que isso */
  max-height: 520px;            /* limite superior seguro (controlado também via JS) */
}

/* Mobile: mais espaço respirável e limite menor */
@media (max-width: 640px) {
  #upload-label {
    max-width: 100%;
    min-height: 160px;
    max-height: 420px;          /* evita ocupar tela toda em celulares */
  }
}

/* Opcional: efeito suave quando está enviando */
#upload-label.sending {
  opacity: 0.75;
  filter: brightness(0.98);
  transition: opacity 0.4s ease;
}

/* Spinner (caso você ainda não tenha definido em outro lugar) */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #e0e0e0;
  border-top: 3px solid var(--svb);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Botão de trava/destrava – dentro do mapa, canto superior direito */
#map {
  position: relative; /* Garante que o absolute funcione em relação ao mapa */
}

.map-lock-btn {
  position: absolute;
  top: 10px;           /* Distância da borda superior */
  right: 10px;         /* Distância da borda direita – ajuste se quiser mais colado */
  z-index: 1000;       /* Acima de todas as camadas do Leaflet (normal é ~400-900) */
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 168, 107, 0.3);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: all 0.18s ease;
  user-select: none;
}

.map-lock-btn:hover {
  background: white;
  border-color: var(--svb);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,168,107,0.18);
}

.map-lock-btn.locked {
  border-color: #e74c3c66;
}

.map-lock-btn.locked .lock-text {
  color: #c0392b;
}

.map-lock-btn:not(.locked) {
  background: rgba(0,168,107,0.12);
  border-color: var(--svb);
  color: var(--svb);
}

.map-lock-btn svg {
  flex-shrink: 0;
}

/* Mobile: esconde texto, deixa só o ícone */
@media (max-width: 480px) {
  .map-lock-btn .lock-text {
    display: none;
  }
  .map-lock-btn {
    padding: 8px;
    border-radius: 50%;
    top: 8px;
    right: 8px;
  }
}

/* Área de compra */
.compra-area {
  background: linear-gradient(135deg, rgba(0,168,107,0.06), rgba(255,255,255,0.4));
  border: 1px solid rgba(0,168,107,0.16);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,168,107,0.10);
  text-align: center;
}

.compra-titulo {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--svb);
  letter-spacing: -0.02em;
}

.compra-sub {
  font-size: 1.05rem;
}

/* Grid dos tamanhos */
.tamanhos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 0 0 32px;
}

.tamanho-card {
  position: relative;
  background: white;
  border: 1px solid rgba(11,18,32,0.08);
  border-radius: var(--radius2);
  padding: 24px 16px 20px;
  transition: all 0.24s ease;
}

.tamanho-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,168,107,0.14);
  border-color: rgba(0,168,107,0.28);
}

.tamanho-card.destaque {
  border: 2px solid var(--svb);
  background: rgba(0,168,107,0.04);
}

.tamanho-nome {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
  margin: 12px 0 6px;
}

.tamanho-desc {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.tag-recomendado {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--svb);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0,168,107,0.3);
}

/* Botão com brilho passando (shine effect leve) */
.btn-comprar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 16px 36px;
  font-size: 1.18rem;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, #00c67a, #00a86b);
  border: none;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,168,107,0.32);
  position: relative;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-comprar:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 48px rgba(0,168,107,0.42);
}

.btn-comprar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.30),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.8s ease;
}

.btn-comprar:hover::before {
  left: 130%;
}

/* Mobile */
@media (max-width: 640px) {
  .compra-area {
    padding: 28px 20px;
  }
  .btn-comprar {
    min-width: 100%;
    padding: 15px 28px;
    font-size: 1.1rem;
  }
}

/* FOOTER CORPORATE - LINHA INFINITA */
/* FOOTER PADRÃO CORPORATIVO */
.footer-corporate {
    padding: 40px 0;
    margin-top: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f4fcf8 100%);
    border-top: 1px solid rgba(0, 168, 107, 0.12);
}

.footer-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 0;
}

.strip-item:first-child {
    border-left: none;
    padding-left: 0;
}

/* Rótulos */
.strip-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

/* Instagram */
.strip-insta {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
}

.strip-insta svg {
    width: 18px;
    height: 18px;
    color: var(--svb);
}

.bold-text, .glow-date {
    font-weight: 900;
    font-size: 15px;
    white-space: nowrap;
}

/* Nome do Fundador com Animação Shine */
.founder-name {
    font-weight: 900;
    font-size: 15px;
    white-space: nowrap;
    background: linear-gradient(90deg, #0b1220 0%, var(--svb) 50%, #0b1220 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
    display: inline-block;
}

@keyframes textShine {
    from { background-position: 0% center; }
    to { background-position: 200% center; }
}

.legal-copy {
    font-size: 10px;
    color: var(--muted);
    margin-left: 4px;
}

/* --- RESPONSIVIDADE PROFISSIONAL --- */

@media (max-width: 900px) {
    .footer-corporate {
        padding: 30px 10px;
    }

    .footer-strip {
        gap: 10px;
    }

    .strip-item {
        padding-left: 10px;
    }

    /* Redução proporcional para manter tudo em uma linha */
    .bold-text, .glow-date, .founder-name {
        font-size: 11px;
    }

    .strip-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    .strip-insta svg {
        width: 14px;
        height: 14px;
    }
}

/* Ajuste para celulares pequenos para não quebrar layout */
@media (max-width: 450px) {
    .footer-strip {
        gap: 5px;
    }
    
    .strip-item {
        padding-left: 6px;
    }

    .bold-text, .glow-date, .founder-name {
        font-size: 9px;
    }
}
  @media (max-width: 768px) {
    #envie-foto-container {
      margin-left: 5% !important; 
      width: 95% !important;
    }
    .resumo-impacto {
      font-size: clamp(1.1rem, 5vw, 2.4rem) !important; 
    }
    .sub-resumo {
      font-size: clamp(0.8rem, 3.5vw, 1.1rem) !important;
    }
  }


















  
  /* Layout Base VIDEO SVB */
.video-header-left { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 650px; /* mesma largura do vídeo */
    margin: 0 auto 20px auto;
}

/* FRASE - ESQUERDA TOTAL */
.video-header-left .video-title { 
    font-size: 30px; 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    margin: 0;
    margin-left: -200px;
    white-space: nowrap;
}

/* CAMPANHA - DIREITA TOTAL (DESIGN ORIGINAL) */
.video-header-left .video-company {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    white-space: nowrap;
    flex-shrink: 0; /* impede esmagar */
}
/* Estado Normal (Horizontal) */
.video-player {
    position: relative;
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
    aspect-ratio: 16 / 9; /* Formato deitado */
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transição suave */
}

#videoSVB {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ESTADO VERTICAL (Ativado pelo Botão) */
.video-player.is-vertical {
    max-width: 400px;    /* Estreita o vídeo */
    aspect-ratio: 9 / 16; /* Fica vertical (formato Reels) */
}
.control-btn img {
    width: 20px;    /* Ajuste o tamanho conforme preferir */
    height: 20px;
    object-fit: contain;
    display: block;
    pointer-events: none; /* Evita que o clique na imagem atrapalhe o botão */
}

/* Efeito simples de hover */
.control-btn:hover img {
    opacity: 0.8;
    transform: scale(1.1);
    transition: 0.2s;
}
/* Ajuste nos controles quando estiver vertical */
.video-player.is-vertical .controls {
    padding: 10px;
}

/* Responsividade: No mobile, ele já costuma ser vertical, 
   então podemos travar para não ficar pequeno demais */
@media (max-width: 480px) {
    .video-player.is-vertical {
        max-width: 100%;
        aspect-ratio: 9 / 16;
    }
}
/* Bolinha verde */
.video-header-left .video-company::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}
/* ================= PLAYER ================= */
/* Ajuste do container do player para PC */
/* Wrapper responsivo do vídeo */
.video-responsive-wrapper {
    position: relative;
    width: 100%;
    padding-top: 50%; /* reduz a altura do vídeo, antes era 56.25% */
    cursor: pointer;
    background: #000;
}

/* Limitar altura máxima do player */
.player-premium-container {
    max-width: 650px;
    max-height: 380px; /* altura máxima, ajustável */
    margin: 20px auto 0 auto;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
}

/* Vídeo absoluto dentro do wrapper */
#main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    object-fit: cover;
}

/* Frase abaixo do vídeo */
.video-message-below {
    margin: 15px auto 0 auto;
    max-width: 650px;
    padding: 12px 18px; /* um pouco menor que antes */
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-weight: bold;
    font-size: 1.1rem; /* um pouco menor */
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* PLAY CENTRAL */
.poster-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    cursor: pointer;
    transition: 0.3s;
}

.poster-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.poster-play.hide {
    opacity: 0;
    pointer-events: none;
}

/* FEEDBACK */
.video-feedback {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    pointer-events: none; 
    opacity: 0; 
    z-index: 20;
}

.fb-circle { 
    background: rgba(0,0,0,0.5); 
    padding: 20px; 
    border-radius: 50%; 
}

.fb-circle svg { 
    width: 40px; 
    height: 40px; 
}

.anim-pop { animation: videoPop 0.6s ease-out; }

@keyframes videoPop {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

/* PLAYER BAR */
.custom-player-bar {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%;
    padding: 15px 20px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    z-index: 10; 
    opacity: 0; 
    transition: opacity 0.3s;
}

.player-premium-container:hover .custom-player-bar { 
    opacity: 1; 
}

.progress-bg { 
    width: 100%; 
    height: 4px; 
    background: rgba(255,255,255,0.2); 
    border-radius: 10px; 
    position: relative; 
}

.progress-filled { 
    height: 100%; 
    width: 0%; 
    background: var(--svb); 
    border-radius: 10px; 
    position: relative; 
}

.progress-dot { 
    position: absolute; 
    right: -6px; 
    top: -5px; 
    width: 14px; 
    height: 14px; 
    background: #fff; 
    border-radius: 50%; 
}

.controls-main { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 10px; 
}

.c-btn { 
    background: none; 
    border: none; 
    cursor: pointer; 
    padding: 5px; 
}

/* SLIDER VOLUME */
.volume-slider {
    width: 0;
    opacity: 0;
    margin-left: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.volume-slider.show {
    width: 90px;
    opacity: 1;
}

/* Substitua as linhas atuais de fullscreen por isso: */

#main-video:fullscreen,
#main-video:-webkit-full-screen,
#main-video:-moz-full-screen {
    object-fit: contain !important;
    background: #000;
    max-width: 92vw !important;
    max-height: 92vh !important;
    width: auto !important;
    height: auto !important;
    margin: auto !important;
}

@media (max-width: 480px) {
    .video-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .video-header-left .video-title { 
        font-size: 1.1rem; 
    }

    .custom-player-bar { opacity: 1; }
}
.hide {
  display: none;
}
.video-message-below {
     /* espaço menor acima */
    height: 100px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.15); /* verde transparente */
    color: #059669; /* verde escuro */
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
/* FIM VIDEO SVB CSS */

/* PAinel SVB video */
/* Container dos créditos */
.footer-credits {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.footer-credits p {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-credits a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.footer-credits a:hover {
    color: var(--svb);
}

/* No Mobile, garante que a frase apareça bem embaixo de tudo */
@media (max-width: 768px) {
    .footer-credits {
        margin-top: 20px;
        padding-bottom: 20px; /* Espaço extra no fim da página */
    }
}