/* ────────────────────────────────────────────────
   1. TOKENS & RESET
──────────────────────────────────────────────── */
:root {
  --orange: #f97316;
  --orange-dark: #d9620f;
  --orange-light: rgba(249, 115, 22, 0.15);
  --navy: #052f4a;
  --navy-light: #0a4a6e;
  --cloud: #f5f5f5;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-fast: 0.18s ease;
  --transition-med: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.scroll-locked {
  overflow-y: hidden; /* trava rolagem vertical */
}
html.scroll-locked body {
  overflow-y: hidden; /* garante nos dois níveis */
}
body {
  font-family: "Geist", "Archivo", sans-serif;
  background: var(--cloud);
  color: var(--navy);
  overflow-x: clip; /* ← era hidden, clip não quebra o fixed */
  animation: pageFadeIn 0.6s ease both;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,
ol {
  list-style: none;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ────────────────────────────────────────────────
   2. ACESSIBILIDADE
──────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ────────────────────────────────────────────────
   3. BOTÕES GLOBAIS
──────────────────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  color: white;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  background: white;
  color: var(--orange);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  position: relative;
  z-index: 2;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ────────────────────────────────────────────────
   4. SECTION BASE
──────────────────────────────────────────────── */
section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.light {
  color: var(--white);
}

.section-desc {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(5, 47, 74, 0.65);
  max-width: 580px;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 600px) {
  section {
    padding: 72px 5%;
  }
}

/* ────────────────────────────────────────────────
   5. UTILITÁRIOS (REVEAL / ANIMAÇÕES)
──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.92);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ────────────────────────────────────────────────
   6. NAV DESKTOP
──────────────────────────────────────────────── */
nav#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  transition: box-shadow var(--transition-med);
}
nav#mainNav.scrolled {
  box-shadow: 0 4px 32px rgba(5, 47, 74, 0.45);
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: "Geist", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition-fast);
  padding: 4px 0;
  margin-left: -10px;
}

.lies{
  margin-right: 15px !important;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange);
}

/* Login dropdown */
.nav-login {
  position: relative;
}
.nav-login > a {
  color: var(--white) !important;
  background: var(--orange);
  border: 1px solid rgba(209, 204, 201, 0.4);
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast) !important;
}
.nav-login > a:hover,
.nav-login > a:focus-visible {
  background: var(--orange-dark) !important;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  min-width: 200px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}
.nav-login:hover .nav-dropdown,
.nav-login:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  font-family: "Geist", sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.15s;
}
.nav-dropdown a:last-child {
  border-bottom: none;
}
.nav-dropdown a svg {
  opacity: 0.6;
  flex-shrink: 0;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding-left: 22px;
}

/* Hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition-med);
  display: block;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Painel mobile */
#mobileMenu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 99;
  flex-direction: column;
  padding: 20px 5% 28px;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}
#mobileMenu .btn-store-promo{
  display:flex;
  justify-content: center;
  margin: 0 10px 0 10px !important;
}
#mobileMenu.open {
  display: flex;
}
#mobileMenu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast);
}
#mobileMenu a:last-child {
  border-bottom: none;
}
#mobileMenu a:hover,
#mobileMenu a:focus-visible {
  color: var(--orange);
}
#mobileMenu .mob-section-label {
  font-family: "Archivo", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  padding: 18px 0 6px;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}

/* ────────────────────────────────────────────────
   7. HERO
──────────────────────────────────────────────── */
#hero {
  height: 660px;
  min-height: auto;
  background:
    linear-gradient(rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.6)),
    url("../img/fundohero.jpeg") no-repeat center center;
  background-size: cover;
  position: relative;
  /* overflow: visible  ← REMOVIDO */
  display: flex;
  flex-direction: column;
  padding-top: 68px;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
}

.hero-inner {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--orange);
  font-family: "Geist", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .accent {
  color: var(--orange);
}

.hero-sub {
  font-family: "Geist", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 16px;
  margin: 0 0 20px;
  animation: slideIn 0.7s 0.25s ease both;
}
.hero-highlight p {
  font-family: "Geist", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.hero-highlight strong {
  color: #fff;
  font-weight: 600;
}

/* PATCH 1 — hero-actions + botões de loja */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-store-promo{
  padding: 8px !important;
  margin-left: -20px !important;
}

.btn-store-promo:hover {
  background: none !important;
  border-color: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.btn-store-hero, .btn-store-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-decoration: none;
  color: white;
  backdrop-filter: blur(6px);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.btn-store-hero:hover {
  background: rgba(249, 115, 22, 0.18);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
}
.btn-store-hero svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.btn-store-hero small {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Geist", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}
.btn-store-hero strong {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  line-height: 1.3;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}
.hero-mockup-img {
  width: 110%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  position: relative;
  bottom: -5px;
  margin-bottom: 1px;
  filter: drop-shadow(-15px 35px 50px rgba(0, 0, 0, 0.7));
  z-index: 10;
  animation: fadeIn 0.9s 0.3s ease both;
}

.hero-extra-buttons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(78, 144, 255, 0.35);
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: rgba(78, 144, 255, 0.12);
  border-color: rgba(78, 144, 255, 0.7);
  transform: translateY(-2px);
}

.btn-secondary-hero svg {
  color: #ffffff;
}
/* Hero responsivo */
@media (max-width: 992px) {
  #hero {
    height: auto;
    background-position: 75% center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero-label,
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .hero-visual {
    display: none;
  }

}

@media (max-width: 480px) {
  .btn-store-hero {
    flex: 1;
    justify-content: center;
    min-width: 130px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }
}

/* ─────────────────────────────────────────────
   08. EMPRESAS QUE CONFIAM (CARROSSEL)
───────────────────────────────────────────── */
.trusted-by-section {
  max-width: 100%;
  padding: 40px 5%;
  background-color: #f9f9f9;
  overflow: hidden;
}

.trusted-by-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.trusted-by-section .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}

.logo-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: glide 15s linear infinite;
}
.logo-grid:hover {
  animation-play-state: paused;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
}
.logo-item img {
  max-height: 24px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition:
    opacity 0.3s ease,
    filter 0.3s ease;
}
.logo-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes glide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 25px));
  }
}

@media (max-width: 968px) {
  .trusted-by-section .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .trusted-by-section .title {
    white-space: normal;
  }
}

/* ─────────────────────────────────────────────
   09. SOBRE / QUEM SOMOS + VANTAGENS
───────────────────────────────────────────── */
#sobre {
  background-color: var(--cloud);
  padding: 0;
}

.sobre-grid {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  align-items: stretch;
  min-height: 650px;
}

.gscsh-col-text {
  flex: 1.1;
  padding: 40px 20px 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gscsh-col-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  font-family: "Archivo", sans-serif;
}
.gscsh-col-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 24px;
  max-width: 520px;
  text-align: justify;
  font-family: "Geist", sans-serif;
}

.gscsh-col-media {
  flex: 1.3;
  position: relative;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.gscsh-col-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 240px;
  height: 100%;
  background-color: var(--cloud);
  border-radius: 0 100% 100% 0 / 0 50% 50% 0;
  z-index: 2;
}
.gscsh-main-img {
  width: 100%;
  max-width: 100%;
  max-height: 580px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.gscsh-main-img:hover {
  transform: scale(1.13);
}

/* Vantagens */
.vantagens-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5px 100px;
}

.titulo-vanta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  gap: 10px;
}
.titulo-vanta .section-label {
  justify-content: center;
}

.vantage7 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.vantage-sub {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(5, 47, 74, 0.55);
  max-width: 480px;
  text-align: center;
}

.vantagens-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vcg-card {
  background: #fff;
  border: 1px solid rgba(5, 47, 74, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.vcg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.vcg-card:hover::before {
  transform: scaleX(1);
}
.vcg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249, 115, 22, 0.2);
}

.vcg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}
.vcg-card:hover .vcg-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.05);
}

.vcg-card h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
}
.vcg-card p {
  font-family: "Geist", sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(5, 47, 74, 0.6);
  flex: 1;
}

.vcg-card--highlight {
  background: var(--navy);
  border-color: transparent;
}
.vcg-card--highlight h3 {
  color: #fff;
}
.vcg-card--highlight p {
  color: rgba(255, 255, 255, 0.65);
}
.vcg-card--highlight .vcg-icon {
  background: rgba(249, 115, 22, 0.2);
  color: var(--orange);
}
.vcg-card--highlight:hover .vcg-icon {
  background: var(--orange);
  color: #fff;
}
.vcg-card--highlight::before {
  background: var(--orange);
}

.vcg-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: gap var(--transition-fast);
}
.vcg-cta:hover {
  gap: 10px;
}

/* Responsivo sobre/vantagens */
@media (max-width: 1024px) {
  .sobre-grid {
    flex-direction: column;
  }
  .gscsh-col-text {
    padding: 60px 24px;
    align-items: center;
    text-align: center;
  }
  .gscsh-col-text p {
    max-width: 100%;
  }
  .gscsh-col-media {
    height: 380px;
    padding: 20px;
  }
  .gscsh-col-media::before {
    display: none;
  }
  .vantagens-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .vantagens-cards-grid {
    grid-template-columns: 1fr;
  }
  .vantagens-wrapper {
    padding: 60px 5% 80px;
  }
}
/* ─────────────────────────────────────────────
    POSTOS PARCEIROS
───────────────────────────────────────────── */
.banner-container {
  width: 100%;
  max-width: 1200px;
  height: 650px;
  margin: -40px auto 50px auto;
  background: 
    linear-gradient(
      90deg,
      #031220 35%,
      rgba(3, 18, 32, 0.8) 55%,
      rgba(3, 18, 32, 0.1) 100%
    ),
    url("../img/redeestrela.jpeg") no-repeat;
  background-position: center right;
  background-size: auto 100%, cover; 
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  padding: 0 60px; 
  box-sizing: border-box;
}

/* Efeito de linhas e brilho neon na parte inferior */
.banner-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -10%;
  width: 120%;
  height: 100px;
  background: transparent;
  border-top: 4px solid var(--orange);
  filter: blur(2px);
  box-shadow: 0 -5px 25px var(--orange);
  transform: rotate(-2deg);
  pointer-events: none;
}

/* Coluna de Conteúdo (Esquerda) */
.content-side {
  width: 50%;
  padding: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Tag: Parceiro Oficial */
.badge-partner {
  align-self: flex-start;
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-partner span {
  color: var(--orange);
  font-size: 1.1rem;
}

/* Bloco de Títulos */
.title-block {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Cria um espaço amigável entre o título e o logo */
  margin: -40px 0 -40px;
}

.brand-name {
  display: flex;
}

.logo-imge {
  margin-left: -55px;
  max-width: 400px; /* Controla a largura máxima do seu logo (ajuste como preferir) */
  height: auto; /* Mantém a proporção original da imagem para não distorcer */
  object-fit: contain;
}

/* Texto Descritivo */
.description-text {
  color: var(--cloud);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: justify;
  padding-right: 73px;
}

.description-text strong {
  color: var(--orange);
  font-weight: 600;
}

.description-text .highlight-app {
  color: var(--orange);
  font-weight: 600;
}

/* Seção de Download do App */
.download-section {
  border: 1.5px solid var(--navy-light);
  border-radius: 16px;
  padding: 20px;
  background: rgba(5, 47, 74, 0.2);
  backdrop-filter: blur(5px);
}

.download-section p {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.store-buttons {
  display: flex;
  gap: 12px;
}

.btn-store {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.btn-store:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-store svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.store-text .sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  opacity: 0.8;
}

.store-text .main {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Rodapé: Em breve mais postos */
.footer-notice {
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 14px 28px; 
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Efeito interativo ao passar o mouse */
.footer-notice:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.footer-notice .icon-user {
  width: 36px; /* Aumentado de 32px para 36px */
  height: 36px;
  border: 1.5px solid var(--white); /* Força o destaque no círculo do ícone */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: rgba(249, 115, 22, 0.1); /* Fundo suave no ícone */
}

.footer-notice p {
  color: var(--white);
  font-size: 0.95rem; /* Aumentado levemente para melhor leitura */
  letter-spacing: 0.3px;
}

.footer-notice p strong {
  color: var(--white);
  font-weight: 700; /* Deixou o negrito ainda mais marcante */
  text-transform: uppercase; /* Opcional: coloca "MAIS POSTOS PARCEIROS" em caixa alta para impacto máximo */
  font-size: 0.98rem;
}

/* Responsividade básica */
@media (max-width: 900px) {
  .banner-container {
    height: auto;
    background: #031220;
    padding: 20px 0;
  }
  .badge-partner{
    margin: auto;
  }
  .description-text{
    text-align: center;
    margin-right: -73px;
  }

  .download-section p{
    text-align: center;

  }
  .content-side {
    width: 100%;
    padding: 30px;
  }
}
/* ─────────────────────────────────────────────
   10. SEJA PARCEIROS
───────────────────────────────────────────── */
#postos {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  font-family: "Geist", "Archivo", sans-serif;
}

/* Brilho radial de fundo */
#postos::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 87, 34, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

#postos .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column; /* Força o empilhamento vertical conforme a imagem */
}

.section-inner h2,
.section-inner p,
.section-inner .section-label {
  text-align: center;
}

/* Labels e títulos */
#postos .section-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 16px;
}

#postos .section-tit {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.main-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 1000px; /* Alinha o limite de leitura do texto */
}
.main-desc {
  margin: auto auto 20px auto;
}

/* ── Grid de benefícios (Ocupa a largura total da página) ── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 16px 18px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.benefit-row:hover {
  border-color: rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-2px);
}

.grid-full-width {
  grid-column: span 2; /* 7º item em tela cheia idêntico à imagem */
}

/* Ícones dos benefícios */
.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #d9620f);
  box-shadow:
    0 8px 20px rgba(249, 115, 22, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.benefit-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
}

/* Variantes de gradientes para os ícones */
.icon-chart {
  background: linear-gradient(135deg, #f97316, #ea580c);
}
.icon-users {
  background: linear-gradient(135deg, #fb923c, #f97316);
}
.icon-shield {
  background: linear-gradient(135deg, #fdba74, #f97316);
}
.icon-gear {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}
.icon-check-shield {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}
.icon-eye {
  background: linear-gradient(135deg, #f97316, #c2410c);
}
.icon-lightning {
  background: linear-gradient(135deg, #ffb347, #ff7b00);
}

/* ── Card CTA Centralizado (Abaixo do Grid) ── */
.posto-footer-row {
  display: flex;
  flex-direction: row-reverse; /* Inverte a ordem dos elementos filhos */
  align-items: flex-start; /* Alinha o topo dos dois cards */
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0 auto;
}

.posto-cta-card {
  flex: 1.8; /* Ocupa uma proporção maior do espaço disponível */
  background: linear-gradient(135deg, var(--navy-light) 0%, #030f2b 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  min-height: 320px;
  align-items: center;
}

.cta-card-content {
  position: relative;
  z-index: 2;
}

.posto-cta-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}

.posto-cta-card .highlight-orange {
  color: var(--orange);
}

.posto-cta-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 450px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 24px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

/* Imagem lateral direita dentro do container */
.cta-card-bg-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cta-card-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 35%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 35%
  );
}

/* ── Mini stats (Alinhados na base) ── */
.posto-mini-stats-wrapper {
  flex: 1; /* Ocupa o espaço restante ao lado do CTA */
  display: flex;
  flex-direction: column;
}

.posto-mini-stats {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  height: 340px; /* Mantém a altura para casar com o CTA */
}

/* O Card Individual - Agora estruturado verticalmente */
.mini-stat {
  grid-area: 1 / 1 / 2 / 2;
  background: var(--orange);
  border: 1px solid #e0640d;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column; /* Alinha o cabeçalho e a lista em coluna */
  align-items: center;
  justify-content: center;
  height: 330px;
  box-sizing: border-box;

  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.3s ease;
}

.mini-stat.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

/* Cabeçalho do Card (Ícone + Texto lado a lado) */
.stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

/* Quadrado do Ícone */
.stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(11, 27, 61, 0.15);
  color: var(--white);
  font-size: 22px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mini-stat:hover .stat-icon {
  background: #0b1b3d;
  color: var(--white);
}

/* Números e Textos do topo */
.mini-stat .n {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.mini-stat .t {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}

/* Linha Divisória Sutil */
.stat-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(11, 27, 61, 0.12);
  margin: 20px 0;
}

/* Lista de Informações/Tópicos */
.stat-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.stat-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

/* Ícones da Lista */
.stat-features li .font-icon {
  font-size: 14px;
  color: var(--cloud);
  opacity: 0.8;
  width: 16px;
  text-align: center;
}

/* Indicadores de bolinhas na parte inferior */
.stat-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 27, 61, 0.3);
  transition: background 0.3s ease;
}

.dot.active {
  background: #0b1b3d;
}
@media (max-width: 992px) {
  .posto-footer-row {
    flex-direction: column; /* No mobile, eles voltam a ficar um embaixo do outro */
    align-items: center;
  }

  .posto-cta-card,
  .posto-mini-stats-wrapper {
    width: 100%; /* Ocupam largura total em telas menores */
    flex: none;
  }

  .cta-card-bg-image {
    display: none;
  }
}

/* Ajuste rápido para telas menores */
@media (max-width: 768px) {
  .posto-mini-stats {
    grid-template-columns: 1fr;
  }
}

/* ── Responsividade para Dispositivos Móveis ── */
@media (max-width: 992px) {
  .posto-cta-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }
  .cta-card-bg-image {
    display: none; /* Esconde a foto em telas muito pequenas para focar no CTA */
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .grid-full-width {
    grid-column: span 1;
  }
  .posto-mini-stats {
    grid-template-columns: 1fr; /* Mini stats empilhados no mobile */
  }
}

/* ─────────────────────────────────────────────
   11. CRÉDITO COMBUSTÍVEL
───────────────────────────────────────────── */
#credito {
  background: var(--cloud);
  padding: 50px 20px;
  font-family: "Geist", sans-serif;
  overflow: hidden;
}

/* Header */
.credito-header {
  text-align: center;
  margin-bottom: 20px;
}

.vantagens-label {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  max-width: 760px;
  margin: 0 auto 20px;
}

.section-des {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.section-desc-su {
  margin-top: 10px;
  color: rgba(5, 47, 74, 0.7);
  font-size: 1rem;
}

/* Mockups */
.features-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 1px;
  flex-wrap: wrap;
}

.feature-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.phone-mockup {
  width: 100%;
  max-width: 280px;
}
.phone-mockup img {
  width: 100%;
  height: 580px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.phone-mockup img:hover {
  transform: translateY(-10px);
}

/* Vantagens list */
.vantagens-section {
  text-align: center;
}
.vantagens-title {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 0;
}

.vantagens-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.vantagem-item {
  background-color: #ff7a1a; /* Cor laranja de exemplo */
  border-radius: 15px; /* Bordas arredondadas do bloco */
  overflow: hidden; /* IMPORTANTE: impede que o quadrado azul "vaze" as bordas arredondadas */

  display: flex;
  align-items: center; /* Alinha o texto do lado direito verticalmente */

  /* Se você usa padding no pai, zere o do lado esquerdo: */
  padding: 0 20px 0 0; /* cima, direita, baixo, esquerda (0) */

  /* Caso queira uma altura fixa ou mínima: */
  min-height: 60px;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.vantagem-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}
.vantagem-num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  background: var(--navy);
  flex-shrink: 0;

  /* --- Modificações aqui --- */
  width: 50px; /* Aumentei um pouco para dar mais respiro ao número */
  align-self: stretch; /* Força o elemento a esticar de cima a baixo */

  display: flex; /* Transforma em flex para centralizar o número */
  align-items: center; /* Centraliza o número verticalmente */
  justify-content: center; /* Centraliza o número horizontalmente */

  margin-right: 15px;
}
.vantagem-item p {
  font-family: "Geist", sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--white);
}

/* CTA Banner */
.banner-wrapper {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner {
  background: #021224;
  border-radius: 24px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.cta-phone {
  --tamanho-celular: 380px;
  position: absolute;
  width: var(--tamanho-celular);
  right: 60px;
  bottom: -130px;
  z-index: 10;
  pointer-events: none;
}
.cta-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: 15px;
  top: -40px;
  width: 440px;
  height: 440px;
  border: 52px solid #ff6b00;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  max-width: 55%;
  z-index: 2;
}
.cta-content h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-content p {
  text-align: start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.5;
}
.cta-content .highlight {
  color: #ff6b00;
  font-weight: bold;
}

.store-buttons {
  display: flex;
  gap: 14px;
}

.store-btn img {
  height: 42px;
  width: auto;
}

/* Responsivo crédito */
@media (max-width: 1024px) {
  .features-grid {
    gap: 20px;
  }
  .phone-mockup {
    max-width: 200px;
  }
  .phone-mockup img {
    height: 460px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px 60px;
  }
  .cta-content {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .store-buttons {
    justify-content: center;
  }
  .cta-phone {
    display: none;
  }
  .cta-banner::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .vantagens-list {
    grid-template-columns: 1fr;
  }
  .phone-mockup {
    max-width: 180px;
  }
  .phone-mockup img {
    height: 400px;
  }
  .se {
    display: none;
  }
}

@media (max-width: 480px) {
  #credito {
    padding: 60px 16px;
  }
  .phone-mockup {
    max-width: 160px;
  }
  .phone-mockup img {
    height: 340px;
  }
  .features-grid {
    gap: 12px;
  }
  .cta-phone {
    width: 200px;
  }
}

/* ─────────────────────────────────────────────
   12. APP
───────────────────────────────────────────── */
#app {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
#app::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  animation: pulse 5s ease-in-out infinite;
}
#app::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

#app .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Geist", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
#app .section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.app-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-desc {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 460px;
  margin-top: 12px;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}
.app-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 14px;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}
.app-feat:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.app-feat .icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  transition: background var(--transition-fast);
}
.app-feat:hover .icon-box {
  background: white;
}
.app-feat:hover .icon-box svg {
  stroke: var(--orange);
}
.app-feat p {
  font-family: "Geist", sans-serif;
  font-size: 0.85rem;
  color: white;
  line-height: 1.4;
}

.app-store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
.store-btn small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Geist", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.store-btn strong {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

/* Slider de screenshots */
.app-slider-container {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 50%;
  height: 140%;
  overflow: hidden;
  transform: rotate(-12deg) skewX(-6deg);
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 85%,
    transparent
  );
}

.app-slider-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 100%;
  width: 100%;
}

.slider-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.slider-column img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.col-up {
  animation: scrollUp 25s linear infinite;
}
.col-down {
  animation: scrollDown 25s linear infinite;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsivo app */
@media (max-width: 1050px) {
  .app-slider-container {
    opacity: 0.2;
    width: 80%;
    right: -15%;
  }
  .app-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .app-inner {
    gap: 48px;
  }
  #app .section-label {
    display: flex;
    justify-content: center;
  }
  .app-features {
    grid-template-columns: 1fr 1fr;
  }
  .app-slider-container {
    display: none;
  }
}
@media (max-width: 600px) {
  .app-features {
    grid-template-columns: 1fr;
  }
  #app .section-title {
    font-size: 2rem !important;
    white-space: normal !important;
  }
}
@media (max-width: 380px) {
  .app-store-btns {
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────
   13. CONTATO / FORMULÁRIO
───────────────────────────────────────────── */
#contato {
  background: var(--cloud);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contato-desc {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(5, 47, 74, 0.7);
  max-width: 420px;
  margin-bottom: 32px;
}

.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.contato-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(5, 47, 74, 0.07);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition:
    border-color var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
}
.contato-card:hover {
  background: #fdf6f0;
  transform: translateX(4px);
}

.contato-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.12),
    rgba(249, 115, 22, 0.22)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.contato-card strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(5, 47, 74, 0.45);
  margin-bottom: 2px;
}
.contato-card a,
.contato-card span {
  font-family: "Geist", sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
}
.contato-card a:hover {
  color: var(--orange);
}

/* Mini FAQ */
.contato-faq {
  margin-top: 8px;
}
.faq-title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(5, 47, 74, 0.45);
  margin-bottom: 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(5, 47, 74, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
}
.faq-item[open] {
  border-color: var(--orange);
}

.faq-item summary {
  font-family: "Geist", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "›";
  font-size: 1.1rem;
  color: var(--orange);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 8px;
}
.faq-item[open] summary::after {
  transform: rotate(90deg);
}
.faq-item p {
  font-family: "Geist", sans-serif;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(5, 47, 74, 0.65);
  padding: 0 18px 16px;
}

/* Formulário */
.contato-form-wrapper {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow:
    0 2px 0 0 var(--orange),
    0 12px 50px rgba(5, 47, 74, 0.1);
  border: 1px solid rgba(5, 47, 74, 0.07);
  position: relative;
  overflow: hidden;
}
.contato-form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "Archivo", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
}
.form-group label span {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Geist", sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: #f4f7fa;
  border: 1.5px solid #d1dae6;
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f97316' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #f4f7fa;
  padding-right: 36px;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05252;
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.1);
}
.form-error {
  font-family: "Geist", sans-serif;
  font-size: 0.78rem;
  color: #c53030;
  min-height: 16px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  border: 1.5px solid #b8c6d6;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--orange);
}
.form-check label {
  font-family: "Geist", sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a {
  color: var(--orange);
  text-decoration: none;
}
.form-check label a:hover {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem !important;
  background: linear-gradient(135deg, var(--orange) 0%, #e8620a 100%);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}
.form-submit:hover {
  background: linear-gradient(135deg, #fb8230 0%, var(--orange-dark) 100%);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: "Geist", sans-serif;
  font-size: 0.9rem;
  color: #065f46;
  font-weight: 500;
}
.form-success svg {
  color: #10b981;
  flex-shrink: 0;
}
.form-success[hidden] {
  display: none;
}

/* Responsivo contato */
@media (max-width: 900px) {
  .contato-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  /* Sobrescreve o inline 'text-align: justify' do parágrafo para centralizá-lo */
  .footer-brand p {
    text-align: center !important;
    margin: 16px auto; /* Espaçamento equilibrado */
    max-width: 320px; /* Evita que o texto espalhe demais no mobile */
  }

  /* Garante que os ícones de redes sociais fiquem alinhados ao centro */
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
  }

  /* Centraliza o link/imagem da logo */
  .footer-brand .logo {
    display: inline-flex;
    justify-content: center;
  }
  #contato .section-label {
    display: flex;
    justify-content: center;
  }
  .contato-desc {
    max-width: 100%;
  }

  footer {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contato-form-wrapper {
    padding: 24px 20px;
  }
}

/* ESTILIZAÇÃO DO CARD FLUTUANTE */
/* O FUNDO ESCURO QUE TRAVA A TELA */
.privacy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(
    5,
    47,
    74,
    0.6
  ); /* Navy com opacidade para escurecer o fundo */
  display: none; /* Controlado instantaneamente pelo JS */
  justify-content: center;
  align-items: center;
  z-index: 9999999999; /* Fica acima de absolutamente tudo */
}

/* O CARD DO MODAL CENTRALIZADO */
.privacy-modal-card {
  background-color: var(--white);
  width: 100%;
  max-width: 500px; /* Tamanho clássico de caixa de diálogo */
  border-radius: 16px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.2),
    0 10px 10px -5px rgba(0, 0, 0, 0.1);
  border-top: 6px solid var(--orange); /* Detalhe marcante em laranja */
  padding: 2rem;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: modalScaleUp 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.privacy-modal-header {
  margin-bottom: 1rem;
}

.privacy-title {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
}

.privacy-modal-body {
  margin-bottom: 1.5rem;
}

.privacy-text {
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: justify;
}

.privacy-text a {
  color: var(--navy-light);
  text-decoration: underline;
  font-weight: 600;
}

.privacy-text a:hover {
  color: var(--orange-dark);
}

/* ESTRUTURA DO RODAPÉ DO MODAL */
.privacy-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.action-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-options {
  background: none;
  border: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

.btn-options:hover {
  color: var(--orange-dark);
}

.btn-reject {
  background: none;
  border: 1px solid #cbd5e1;
  color: var(--text-color);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reject:hover {
  background-color: var(--cloud);
  border-color: var(--navy);
  color: var(--navy);
}

.btn-accept {
  background-color: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-accept:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}

/* RESPONSIVIDADE */
@media (max-width: 540px) {
  .privacy-modal-card {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  .privacy-modal-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .action-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}
/* ─────────────────────────────────────────────
   14. FOOTER
───────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 64px 5% 40px;
  color: white;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 36px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-brand p {
  font-family: "Geist", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}
.social-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-family: "Geist", sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}
.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: "Geist", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.contact-info {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-family: "Geist", sans-serif;
}
.contact-info a {
  color: var(--orange);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.contact-info a:hover {
  opacity: 0.8;
}

/* Responsivo footer */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
