/* =========================================================================
   Promo10 Vantagens — landing de redirecionamento para promo10floripa.com.br
   Cores, fontes e espaçamentos ficam nas variáveis abaixo — comece por aqui
   caso precise ajustar a identidade visual.
   ========================================================================= */

:root {
  --verde: #16840D;
  --verde-vivo: #2FA524;
  --verde-escuro: #0B3D08;
  --amarelo: #FFDE21;

  --gradiente-marca: linear-gradient(100deg, #16840D 0%, #2FA524 50%, #FFDE21 100%);

  --bg: #ffffff;
  --bg-alt: #f4f8f1;
  --rodape-bg: #0b2e08;

  --texto: #14201a;
  --texto-suave: #4b5a52;
  --texto-claro: #eaf2e6;

  --fonte: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --raio: 18px;
  --raio-pilula: 999px;
  --sombra: 0 8px 30px rgba(11, 61, 8, 0.10);
  --sombra-forte: 0 14px 34px rgba(11, 61, 8, 0.20);

  --largura-max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--fonte);
  color: var(--texto);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: default;
}

p {
  margin: 0 0 1em;
  line-height: 1.65;
}

h1, h2 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.15;
}

.container {
  width: 100%;
  max-width: var(--largura-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Acessibilidade: foco sempre visível ao navegar pelo teclado */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--verde-vivo);
  outline-offset: 3px;
  border-radius: 8px;
}

.text-gradient {
  background: var(--gradiente-marca);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ================= BOTÕES ================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--raio-pilula);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 18px 32px;
  font-size: 1.05rem;
}

.btn--primary {
  background: var(--gradiente-marca);
  color: #0a1a08;
  box-shadow: var(--sombra);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-forte);
  filter: brightness(1.05);
}

.btn--secondary {
  background: #ffffff;
  color: var(--verde-escuro);
  border: 2px solid rgba(22, 132, 13, 0.25);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  border-color: var(--verde);
  box-shadow: var(--sombra);
}

.btn__arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 61, 8, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__logo img {
  height: 140px;
  width: auto;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background-color: var(--bg);
  background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
    url("../img/wallpaper-promo10-vantagens.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--raio-pilula);
  background: var(--bg-alt);
  color: var(--verde-escuro);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  border: 1px solid rgba(22, 132, 13, 0.15);
}

.hero__title {
  width: 100%;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  letter-spacing: -0.01em;
}

.hero__subtitle {
  width: 100%;
  font-size: 1.15rem;
  color: #2f3b35;
  max-width: 620px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
}

.hero__badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--texto-suave);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.icon-check path {
  fill: none;
  stroke: var(--verde);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ================= CONFIANÇA (ecossistema Promo10) ================= */

.confianca {
  background-color: var(--bg-alt);
  background-image: url("../img/IMAGEM_SITE_FUNDO_HOME_3.png");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.confianca__content {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 64px;
  align-items: center;
}

.confianca__media {
  display: flex;
  justify-content: center;
}

.confianca__photo {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(11, 61, 8, 0.22));
}

.confianca__eyebrow {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}

.confianca__intro h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 18px;
}

.confianca__intro p {
  color: var(--texto-suave);
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.confianca__highlight {
  background: rgba(47, 165, 36, 0.18);
  color: var(--verde-escuro);
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 6px;
}

.confianca__intro .confianca__lead {
  color: var(--texto);
  font-weight: 700;
  margin-bottom: 26px;
}

.confianca__callout {
  background: #ffffff;
  border: 1px solid rgba(11, 61, 8, 0.1);
  border-left: 4px solid var(--verde);
  border-radius: var(--raio);
  padding: 20px 24px;
  margin-bottom: 26px;
  box-shadow: var(--sombra);
}

.confianca__callout strong {
  display: block;
  color: var(--verde-escuro);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.confianca__callout p {
  margin: 0;
  color: var(--texto-suave);
  font-size: 0.92rem;
}

.confianca__badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 0;
  margin: 0 0 30px;
}

.confianca__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--texto);
  font-size: 0.92rem;
}

.icon-outline {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-outline path {
  fill: none;
  stroke: var(--verde);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confianca__footnote {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--texto-suave);
}

/* ================= DESTAQUE REGIONAL (ponte Hercílio Luz) ================= */

.regiao {
  position: relative;
  background-image: url("../img/sobre_nos_ponte_fundo.png");
  background-size: cover;
  background-position: center;
  padding: 72px 0;
}

.regiao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 61, 8, 0.55), rgba(11, 61, 8, 0.78));
}

.regiao__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.regiao__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.regiao__content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.regiao__badges {
  gap: 14px;
  margin-bottom: 30px;
}

.regiao__badges li {
  padding: 9px 18px 9px 14px;
  border-radius: var(--raio-pilula);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.regiao__badges .icon-check path {
  stroke: var(--amarelo);
}

/* ================= FAIXA DE CONFIANÇA ================= */

.trust {
  background: var(--verde-escuro);
  color: var(--texto-claro);
  padding: 26px 0;
}

.trust p {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.92;
}

.trust strong {
  color: var(--amarelo);
  font-weight: 700;
}

/* ================= RODAPÉ ================= */

.footer {
  background: var(--rodape-bg);
  color: var(--texto-claro);
}

.footer__cta {
  text-align: center;
  padding: 64px 24px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__cta h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 22px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 44px 24px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 160px;
  width: auto;
}

.footer__info p {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: rgba(234, 242, 230, 0.75);
}

.footer__info a {
  color: var(--amarelo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__disclaimer {
  padding: 0 24px 28px;
}

.footer__disclaimer p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(234, 242, 230, 0.55);
  max-width: 900px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(234, 242, 230, 0.55);
}

/* ================= RESPONSIVO ================= */

@media (max-width: 860px) {
  .confianca__content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .confianca__badges {
    justify-content: center;
  }

  .confianca__photo {
    max-width: 240px;
  }
}

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

  .hero {
    padding: 76px 0 56px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__badges {
    gap: 14px 22px;
  }

  .header__inner {
    gap: 10px;
  }

  .header__logo img {
    height: 90px;
  }

  .header__inner .btn--sm {
    padding: 10px 14px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .confianca {
    padding: 60px 0;
  }

  .regiao {
    padding: 56px 0;
  }

  .footer__main {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .btn__arrow {
    transition: none !important;
  }
}
