/* ============================================================
   LIBERTA SOLAR — Landing Page CSS
   ============================================================ */

/* ---- TOKENS / CUSTOM PROPERTIES ---- */
:root {
  --orange:        #FF6B00;  /* laranja puro — único tom oficial da marca */
  --orange-light:  #FF6B00;  /* alias — sem degradê, mesma cor sólida       */
  --orange-dark:   #E05A00;  /* hover escuro do botão                       */
  --yellow:        #FF6B00;  /* alias — substituído pelo laranja puro        */
  --yellow-light:  #FF6B00;  /* alias — substituído pelo laranja puro        */
  --green:         #22C55E;
  --green-dark:    #16A34A;
  --blue:          #0EA5E9;
  --dark:          #0F172A;
  --dark-secondary:#1E293B;
  --dark-tertiary: #334155;
  --gray:          #F1F5F9;
  --gray-card:     #F8FAFC;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --white:         #FFFFFF;
  --border:        #E2E8F0;

  --font-heading:  'Jeko', 'Poppins', sans-serif;
  --font-body:     'Jeko', 'Poppins', sans-serif;

  --shadow-sm:     0 2px 8px rgba(0,0,0,.06);
  --shadow-md:     0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.15);
  --shadow-orange: 0 8px 32px rgba(255,107,0,.30);

  /* =====================================================
     PALETA OFICIAL LIBERTA — manual de marca (imagem)
     Azul marinho:  HEX #1E3E6A  RGB 27 62 108
     Neutro claro:  HEX #EBEFF0  RGB 236 239 242
     Laranja:       HEX #FF6B00  (mantido — consistente com brand)
     ===================================================== */
  --brand-blue:        #1E3E6A;  /* azul marinho oficial ★ HEX 1E3E6A       */
  --brand-blue-mid:    #2A5298;  /* azul médio — hover / destaques           */
  --brand-blue-dark:   #162D52;  /* azul escuro — fundos, seções             */
  --brand-neutral:     #EBEFF0;  /* neutro claro oficial                     */
  --brand-orange:      #FF6B00;  /* laranja institucional — cor sólida única */
  --brand-orange-light:#FF6B00;  /* sem degradê — mesma cor sólida            */
  --shadow-blue:       0 12px 40px rgba(30,62,106,.30);

  /* Aliases para compatibilidade — apontam para a paleta oficial */
  --old-blue-dark:     #162D52;  /* alias de --brand-blue-dark               */

  --radius:        16px;
  --radius-sm:     8px;
  --radius-lg:     24px;
  --transition:    .3s ease;

  --container:     1200px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;        /* Jeko Regular — corpo base */
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hierarquia tipográfica Jeko (manual de marca Liberta)
   Títulos    → Black  900
   Subtítulos → Bold   700
   Corpo      → Medium 500
   Pequenos   → Regular 400  */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 900;        /* Jeko Black */
  line-height: 1.2;
}
h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;        /* Jeko Bold */
}
p, li, span, label, input, select, textarea, button {
  font-weight: 400;        /* Jeko Regular */
}
strong, b { font-weight: 700; } /* Jeko Bold */

/* Parágrafos de corpo: Medium para melhor leitura */
.section-subtitle,
.form-info p,
.benefit-card p,
.step-card__desc,
.testimonial__text,
.faq-answer p {
  font-weight: 500;        /* Jeko Medium */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
/* padding base mobile — expandido nos breakpoints acima */
.section { padding: 64px 0; }
.section--dark { background: var(--brand-blue-dark); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p, .section--dark li { color: var(--white); }
.section--dark .text-muted { color: rgba(255,255,255,.75); }
.section--gray { background: var(--gray); }

/* ---- HIGHLIGHT ---- */
.highlight {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 40px; }
@media (min-width: 1024px) { .section-header { margin-bottom: 64px; } }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(30,62,106,.10), rgba(42,82,152,.10));
  color: var(--brand-blue);
  border: 1px solid rgba(30,62,106,.25);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag--light { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: var(--white); }
.section-tag--white { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); color: var(--white); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;        /* Jeko Black */
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header--light .section-title { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 500;        /* Jeko Medium */
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header--light .section-subtitle { color: rgba(255,255,255,.7); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.0);
  transition: var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,.1); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 12px 40px rgba(255,107,0,.45);
}
.btn--cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
  padding: 12px 24px;
  font-size: .88rem;
}
.btn--cta:hover { transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
/* .btn--whatsapp removido — contato apenas por formulário */
.btn--large { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* PULSE ANIMATION */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,107,0,.5), var(--shadow-orange); }
  70% { box-shadow: 0 0 0 18px rgba(255,107,0,0), var(--shadow-orange); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,0,0), var(--shadow-orange); }
}
.pulse { animation: pulse-ring 2.2s infinite; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(30,62,106,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(22,45,82,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
  border-bottom-color: rgba(255,255,255,.05);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
/* ---- LOGO — PNG com fundo transparente ---- */
.logo-img {
  display: block;
  width: auto;
  transition: height var(--transition), transform var(--transition);
  /* Sem mix-blend-mode: exibe a logo com todas as cores originais intactas */
}
.logo-img--header {
  height: 92px;
}
.header.scrolled .logo-img--header {
  height: 74px;
}
.logo-img--footer {
  height: 140px;
}
.header__logo:hover .logo-img {
  transform: scale(1.04);
}
/* Mobile */
@media (max-width: 640px) {
  .logo-img--header { height: 70px; }
  .logo-img--footer { height: 110px; }
}

/* Fallback text logo (caso img não carregue) */
.logo-icon { font-size: 1.6rem; display: none; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;        /* Jeko Black */
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo-accent {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  color: rgba(255,255,255,.8);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.header__nav a:hover { color: var(--white); }
.header__nav a:hover::after { transform: scaleX(1); }
.header__cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin-left: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
/* Estado aberto — X animado */
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: #162D52;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
/* Foto da van como fundo */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  background: url('images/van-liberta.jpg') center center / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
/* Overlay elegante em camadas */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(22,45,82,.75) 0%,
      rgba(30,62,106,.50) 40%,
      rgba(22,45,82,.82) 100%),
    linear-gradient(to right,
      rgba(22,45,82,.65) 0%,
      transparent 60%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,0,.5), transparent);
  animation: floatParticle linear infinite;
  pointer-events: none;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: .5; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--orange-light);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 28px;
  animation: fadeInDown .8s ease both;
  /* sem quebra de linha — sem palavra órfã */
  white-space: nowrap;
  max-width: 100%;
}
/* Em telas muito pequenas reduz fonte para caber numa linha */
@media (max-width: 400px) {
  .hero__badge { font-size: .75rem; padding: 7px 14px; }
}
.hero__badge i { color: var(--yellow); flex-shrink: 0; }
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp .8s ease .2s both;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  animation: fadeInUp .8s ease .4s both;
}
.hero__subtitle strong { color: var(--yellow); }
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp .8s ease .6s both;
}
.hero__trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp .8s ease .8s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
}
.trust-item i { color: var(--yellow); font-size: 1rem; }
.trust-item strong { color: var(--white); }
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--orange);
  padding: 48px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.3);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.stat-item p {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 6px;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,62,106,.15);
}
.benefit-card--featured {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  color: var(--white);
}
.benefit-card--featured h3 { color: var(--white); }
.benefit-card--featured p { color: rgba(255,255,255,.75); }
.benefit-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
}
.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.benefit-icon--orange { background: rgba(255,107,0,.12); color: var(--orange); }
.benefit-icon--yellow { background: rgba(255,107,0,.10); color: var(--orange); }
.benefit-icon--green  { background: rgba(34,197,94,.12);  color: var(--green); }
.benefit-icon--blue   { background: rgba(30,62,106,.10); color: var(--brand-blue); }
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }
.benefit-card--featured p { color: rgba(255,255,255,.88); }

/* ============================================================
   HOW IT WORKS — 4 PASSOS (redesign limpo)
   ============================================================ */
.how-it-works {
  background: #f8faff;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
  margin-bottom: 48px;
}
@media (min-width: 560px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid::before { display: none; }
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px 32px;
  text-align: center;
  border: 1px solid #e8edf8;
  box-shadow: 0 4px 24px rgba(30,62,106,.07);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30,62,106,.14);
}

/* número decorativo */
.step-card__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(30,62,106,.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ícone */
.step-card__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(30,62,106,.25);
  transition: transform .3s ease;
}
.step-card:hover .step-card__icon {
  transform: scale(1.08);
}
.step-card__icon--green {
  background: linear-gradient(135deg, #16A34A, #22C55E);
  box-shadow: 0 8px 24px rgba(34,197,94,.3);
}

/* título */
.step-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

/* descrição */
.step-card__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* seta conectora entre cards */
.step-card__connector {
  display: none; /* mostrado via pseudo-elementos abaixo */
}

/* linha de conexão entre cards via ::after no grid */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 68px; /* alinha com centro do ícone */
  left: calc(12.5% + 38px);
  right: calc(12.5% + 38px);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(30,62,106,.2) 0px,
    rgba(30,62,106,.2) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
  pointer-events: none;
}

/* CTA centralizado */
.steps-cta {
  text-align: center;
}

/* steps mobile */
@media (max-width: 560px) {
  .step-card { padding: 28px 20px; }
  .step-card__num { font-size: 2.5rem; }
}

/* ============================================================
   SISTEMAS
   ============================================================ */
.systems__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .systems__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.system-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.system-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,62,106,.20);
}
.system-card--featured {
  background: linear-gradient(160deg, var(--brand-blue-dark) 0%, var(--brand-blue) 100%);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
  color: var(--white);
  transform: translateY(-8px);
}
.system-card--featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 24px 60px rgba(30,62,106,.40);
}
.system-card--featured p { color: #ffffff !important; }
.system-card--featured .system-list li { color: #ffffff; border-bottom-color: rgba(255,255,255,.15); }
.system-card--featured .system-list li i { color: var(--orange); }

.system-card__icon {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(30,62,106,.08), rgba(42,82,152,.08));
  border: 1px solid rgba(30,62,106,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-blue);
  margin-bottom: 20px;
}
.system-card--featured .system-card__icon {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
  color: var(--white);
}
.system-card__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  letter-spacing: .04em;
}
.system-card__badge--blue {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-mid));
}
.system-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;        /* Jeko Black */
  margin-bottom: 12px;
  color: #0F172A;
}
.system-card--featured h3 { color: var(--white); }
.system-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.system-list {
  margin-bottom: 24px;
  flex: 1;
}
.system-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: #1E293B;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.system-list li:last-child { border-bottom: none; }
.system-list li i { color: var(--brand-blue); font-size: .75rem; flex-shrink: 0; }
.btn--outline-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
}
.btn--outline-blue:hover {
  background: var(--brand-blue);
  color: var(--white);
}
.system-card--featured .btn--outline-blue {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.system-card--featured .btn--outline-blue:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.systems__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 32px;
  font-size: .95rem;
  box-shadow: var(--shadow-blue);
}
.systems__badge i {
  font-size: 1.5rem;
  color: var(--white);
}
.systems__badge strong { color: var(--white); }

@media (min-width: 768px) {
  .system-card--featured { transform: translateY(-8px); }
}

/* ============================================================
   CALCULATOR
   ============================================================ */
/* Wrapper: sempre coluna única — inputs no topo, results abaixo */
.calculator__wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Inputs lado a lado no desktop */
.calculator__inputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .calculator__inputs {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
  }
}
.calc-group { margin-bottom: 0; }
.calc-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  font-size: .9rem;
}
.range-wrapper { display: flex; align-items: center; gap: 16px; }
input[type="range"] {
  flex: 1;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(to right, var(--brand-blue) 0%, var(--brand-blue) 10%, var(--border) 10%);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,107,0,.4);
  border: 3px solid var(--white);
}
.range-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  min-width: 100px;
  text-align: right;
}
.property-selector { display: flex; gap: 10px; flex-wrap: wrap; }
.prop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  font-family: var(--font-heading);
}
.prop-btn:hover, .prop-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(30,62,106,.06);
}
.calculator__results {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Cards de resultado em grade 2×2 no desktop */
.calc-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .calc-cards-grid { grid-template-columns: 1fr; }
}
.calc-result-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}
.calc-result-card i {
  font-size: 1.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.calc-result-card--highlight {
  background: linear-gradient(135deg, rgba(30,62,106,.07), rgba(42,82,152,.07));
  border-color: rgba(30,62,106,.20);
}
.calc-result-card--highlight i { color: var(--orange); }
.calc-result-card--green { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.2); }
.calc-result-card--green i { color: var(--green); }

/* ---- BARRA DE ECONOMIA ---- */
.calc-saving-bar {
  background: linear-gradient(135deg, rgba(30,62,106,.06), rgba(42,82,152,.06));
  border: 1px solid rgba(30,62,106,.15);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 4px;
}
.calc-saving-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.calc-saving-bar__label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: var(--font-heading);
}
.calc-saving-bar__pct {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--brand-blue);
  line-height: 1;
}
.calc-saving-bar__track {
  height: 36px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.calc-saving-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-mid));
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  transition: width .6s cubic-bezier(.4,0,.2,1);
  min-width: 60px;
  position: relative;
}
.calc-saving-bar__fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18) 0%, transparent 100%);
  border-radius: inherit;
}
.calc-saving-bar__value {
  font-family: var(--font-heading);
  font-weight: 700;        /* Jeko Bold */
  font-size: .95rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.calc-saving-bar__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-saving-bar__remain {
  font-size: .8rem;
  color: var(--text-muted);
}
.calc-saving-bar__remain strong { color: var(--text); }
.calc-saving-bar__note {
  font-size: .75rem;
  color: var(--brand-orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.calc-saving-bar__note i { font-size: .7rem; }

/* ---- DISCLAIMER DA CALCULADORA ---- */
.calc-disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(0,0,0,.03);
  border-left: 3px solid var(--brand-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.calc-disclaimer i {
  color: var(--brand-orange);
  font-size: .85rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.calc-result-card div { display: flex; flex-direction: column; }
.calc-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }
.calc-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;        /* Jeko Black */
  color: var(--text);
}
.calc-result-card--highlight .calc-value { color: var(--orange); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* ============================================================
   CARROSSEL DE DEPOIMENTOS — REDESIGN PROFISSIONAL MOBILE FIRST
   ============================================================ */

.testimonials { background: #f8faff; }

.testimonials__track-wrapper {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 0;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Card — mobile first: 1 por vez, 100% */
.testimonial-card {
  min-width: 100%;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 32px rgba(30,62,106,.10);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(30,62,106,.08);
  transition: box-shadow .3s ease;
  box-sizing: border-box;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(30,62,106,.16);
}

/* Estrelas */
.testimonial__stars {
  color: #FBBC05;
  font-size: 1.15rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

/* Texto da avaliação */
.testimonial__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.testimonial__text::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2.2rem;
  color: #FF6B00;
  font-style: normal;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Autor */
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e8edf8;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30,62,106,.25);
}

.testimonial__author strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.testimonial__author span {
  font-size: .78rem;
  color: #64748b;
}

/* Controles */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  color: #1e293b;
  font-size: .95rem;
  transition: all .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  flex-shrink: 0;
}

.testimonial-btn:hover {
  background: #FF6B00;
  border-color: #FF6B00;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,0,.35);
  transform: scale(1.08);
}

/* Dots de navegação */
.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.testimonials__dots .dot.active {
  background: #FF6B00;
  width: 24px;
  border-radius: 4px;
}

/* Contador de slides */
.testimonials__counter {
  font-size: .82rem;
  color: #94a3b8;
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

/* Desktop: 3 cards visíveis */
@media (min-width: 900px) {
  .testimonial-card {
    min-width: calc(33.333% - 16px);
    width: calc(33.333% - 16px);
  }
  .testimonials__track {
    gap: 24px;
  }
}

/* Tablet: 2 cards */
@media (min-width: 600px) and (max-width: 899px) {
  .testimonial-card {
    min-width: calc(50% - 12px);
    width: calc(50% - 12px);
  }
  .testimonials__track {
    gap: 24px;
  }
}

/* ---- Elementos internos dos cards (badge Google, tempo) ---- */
.testimonial__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.testimonial__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f1f3f4;
  border-radius: 50px;
  padding: 4px 10px 4px 6px;
  font-size: .75rem;
  font-weight: 600;
  color: #444;
}
.testimonial__time {
  font-size: .75rem;
  color: var(--text-muted);
  font-style: italic;
}
.testimonial__stars {
  margin-bottom: 12px;
}
/* Avatar com foto */
.author-avatar--photo {
  background: linear-gradient(135deg, var(--brand-blue-dark), var(--brand-blue)) !important;
  overflow: hidden;
  padding: 0;
}
.author-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.testimonials__dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(30,62,106,.3); }
.faq-item.open {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(30,62,106,.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-card); }
.faq-item.open .faq-question { background: rgba(30,62,106,.04); color: var(--brand-blue); }
.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform .3s ease;
  font-size: .8rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 24px;
  background: var(--white);
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; }
.faq-answer strong { color: var(--orange); }

/* ============================================================
   FORM SECTION — Mobile First
   ============================================================ */
.form-section {
  background: var(--brand-blue);
  padding: 56px 0;
}

/* Cabeçalho centralizado — sempre visível */
.form-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.form-section__header .section-tag--white {
  margin-bottom: 14px;
}
.form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.form-title .highlight {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}
.form-section__subtitle {
  font-size: clamp(.9rem, 2vw, 1rem);
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Layout — coluna única mobile, duas colunas desktop */
.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

/* Coluna de benefícios — oculta no mobile, visível no desktop */
.form-info {
  display: none;
}
@media (min-width: 1024px) {
  .form-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
  }
}
.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.form-benefits li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
.form-benefits li i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* Selos de confiança */
.form-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}
.form-trust__item i {
  color: var(--orange);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* ---- Card do formulário ---- */
.form-container {
  background: var(--white);
  border-radius: 20px;
  /* padding único, sem conflitos — mobile first */
  padding: 28px 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.30);
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .form-container { padding: 36px 32px; border-radius: 24px; }
}
@media (min-width: 1024px) {
  .form-container { padding: 44px 40px; }
}

/* Eyebrow do card */
.form-container__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.form-container__eyebrow i { color: var(--orange); }

/* Formulário */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
}
.req { color: var(--orange); }

/* Input com ícone prefixado */
.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: .9rem;
  pointer-events: none;
  z-index: 1;
}
.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: 14px 16px 14px 40px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;             /* evita zoom no iOS */
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.input-wrap input:focus,
.input-wrap select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.12);
}
.input-wrap input.error,
.input-wrap select.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.10);
}

/* Seta customizada no select */
.input-wrap--select::after {
  content: '';
  position: absolute;
  right: 14px;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--text-muted);
  pointer-events: none;
}
.input-wrap--select select { padding-right: 40px; }

.field-error {
  font-size: .78rem;
  color: #EF4444;
  font-weight: 600;
  min-height: 14px;
  line-height: 1.4;
}

/* Botão de envio */
.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 4px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-orange);
}
.form-submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,107,0,.40);
}
.form-submit-btn:active { transform: translateY(0); }

/* Loader do botão */
.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
  flex-shrink: 0;
}
.btn-loader.visible { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Aviso de privacidade */
.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}
.form-privacy i { color: var(--green); flex-shrink: 0; }

/* Aviso de termos abaixo do botão */
.form-terms {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}
.form-terms__link {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.form-terms__link:hover { color: var(--orange); }

/* ---- Tela de sucesso ---- */
.form-success {
  text-align: center;
  padding: 48px 16px;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
}
.form-success p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================================
   LOGO SVG — SEM FUNDO
   ============================================================ */
.logo-svg {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: all .3s ease;
}
.header.scrolled .logo-svg { height: 46px; }
.logo-svg--footer { height: 68px; }
.header__logo:hover .logo-svg { opacity: 0.9; transform: scale(1.04); }
/* Logo SVG legado — oculto (agora usamos <img>) */
/* .logo-svg — regra legada removida */

/* ============================================================
   GAL-ACCORDION — galeria com gaveta + fade (portfólio e clientes)
   ============================================================ */

/* Wrapper */
.gal-accordion {
  position: relative;
}

/* Grade unificada — sempre 3 colunas, sem buracos */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Item de galeria */
.gal-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(30,62,106,.22);
}

/* Fotos de clientes: ratio mais retrato */
.gal-item--photo { aspect-ratio: 3/4; }

/* Itens extras: ocultos por padrão */
.gal-item--extra {
  display: none;
}
/* Quando o accordion está aberto */
.gal-accordion.is-open .gal-item--extra {
  display: block;
  animation: galFadeIn .4s ease forwards;
}
@keyframes galFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Wrap da imagem */
.gal-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.gal-item:hover .gal-img-wrap img {
  transform: scale(1.07);
}

/* Overlay hover (portfólio) */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,62,106,.92) 0%, rgba(30,62,106,.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--brand-orange, #FF3D00);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 6px;
  width: fit-content;
}
.gal-overlay p {
  color: rgba(255,255,255,.9);
  font-size: .83rem;
  margin: 0;
  line-height: 1.4;
}

/* --- Fade gradiente sobre a última linha visível --- */
.gal-fade {
  position: relative;
  margin-top: -80px;   /* sobrepõe a grade de cima */
  height: 100px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,.7)  50%,
    #ffffff               100%
  );
  transition: opacity .35s ease;
}
/* Versão escura para a seção de clientes */
.gal-fade--dark {
  background: linear-gradient(
    to bottom,
    rgba(22,45,82,0)    0%,
    rgba(22,45,82,.80)  50%,
    var(--brand-blue-dark) 100%
  );
}
/* Oculta o fade quando aberto */
.gal-accordion.is-open .gal-fade {
  opacity: 0;
  pointer-events: none;
}

/* --- Botão toggle --- */
.gal-toggle-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
  position: relative;
  z-index: 3;
}
.gal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: 100px;
  border: 2px solid var(--brand-blue);
  background: #fff;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(30,62,106,.16);
}
.gal-btn:hover {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 8px 28px rgba(30,62,106,.3);
  transform: translateY(-2px);
}
.gal-btn--light {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  backdrop-filter: blur(8px);
}
.gal-btn--light:hover {
  background: rgba(255,255,255,.25);
  border-color: #fff;
}
.gal-btn i {
  font-size: .85rem;
  transition: transform .35s ease;
}
.gal-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gal-item--photo { aspect-ratio: 1/1; }
}

/* ============================================================
   PORTFÓLIO DE PROJETOS
   ============================================================ */
.portfolio { background: #fff; }
.portfolio__filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.portfolio__filter {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--brand-blue);
  background: transparent;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all .25s ease;
}
.portfolio__filter:hover,
.portfolio__filter.active {
  background: var(--brand-blue);
  color: #fff;
}
/* Legacy grid classes — mantidas por compatibilidade */
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 4/3;
}
.portfolio__item:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30,62,106,.18); }
.portfolio__item.hidden { display: none; }
.portfolio__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.portfolio__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio__item:hover .portfolio__img-wrap img { transform: scale(1.08); }
.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,62,106,.92) 0%, rgba(30,62,106,.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }
.portfolio__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-orange, #FF6B00);
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 8px;
  width: fit-content;
}
.portfolio__overlay p {
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  margin: 0;
  line-height: 1.4;
}
.portfolio__cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(30,62,106,.06), rgba(42,82,152,.1));
  border-radius: 20px;
}
.portfolio__cta p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 16px;
}

/* ============================================================
   CLIENTES SATISFEITOS COM FOTOS
   ============================================================ */
.section--blue { background: linear-gradient(160deg, var(--brand-blue-dark) 0%, var(--brand-blue) 55%, var(--brand-blue-mid) 100%); }
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.highlight-orange { color: var(--brand-orange, #FF6600); }
/* .happy-client__card — mantido para compatibilidade mas layout via .gal-item */
.happy-client__card {
  border-radius: 16px;
  overflow: hidden;
}

/* Showcase van + sede */
.liberta-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.showcase__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/7;
}
.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.showcase__item:hover img { transform: scale(1.04); }
.showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(22,45,82,.9), transparent);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: .92rem;
}
.showcase__caption i { color: #FF6600; font-size: 1.1rem; }

/* RESPONSIVO PORTFÓLIO LEGACY */
@media (max-width: 768px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .liberta-showcase { grid-template-columns: 1fr; }
  .portfolio__filters { gap: 8px; }
  .portfolio__filter { padding: 8px 16px; font-size: .82rem; }
}
@media (max-width: 480px) {
  .portfolio__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .logo-svg { height: 44px; }
  .header.scrolled .logo-svg { height: 38px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding-top: 72px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
}
.footer__logo { margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}
.footer__links h4, .footer__contact h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.footer__links ul li, .footer__contact ul li {
  margin-bottom: 10px;
}
.footer__links a, .footer__contact a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--orange); }
.footer__contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
}
.footer__contact ul li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer__bottom {
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer__credit {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}
.footer__credit a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
}
.footer__credit a:hover { color: var(--orange); }
.footer__heart {
  color: var(--orange);
  font-size: .7rem;
  vertical-align: middle;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,.7); }
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); background: var(--orange-dark); }


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   MENU MOBILE — Overlay completo
   ============================================================ */

/* Overlay de fundo (aparece por trás do menu) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,10,32,.55);
  backdrop-filter: blur(4px);
  z-index: 998;
}
.nav-overlay.is-open { display: block; }

/* Painel lateral deslizante */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--brand-blue-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open {
  transform: translateX(0);
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
}

/* Cabeçalho do painel */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav__header .logo-img {
  height: 52px;
}
.mobile-nav__close {
  background: rgba(255,255,255,.08);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.mobile-nav__close:hover { background: rgba(255,255,255,.18); }

/* Links de navegação */
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  flex: 1;
}
.mobile-nav__links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s;
}
.mobile-nav__links a:hover,
.mobile-nav__links a:active {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.mobile-nav__links a i {
  width: 20px;
  text-align: center;
  color: var(--brand-orange, #FF6600);
  font-size: .95rem;
}

/* CTA no final do painel */
.mobile-nav__cta {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav__cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px 24px;
}

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

/* --- Base mobile (padrão — nenhum breakpoint necessário) --- */
.section { padding: 64px 0; }
.hero__trust { gap: 16px; }
.trust-item { font-size: .78rem; }
.hero__actions { flex-direction: column; align-items: center; }
.testimonials__track .testimonial-card { min-width: 100%; }
.calculator__results { padding: 20px; }
.stat-item:nth-child(3)::before,
.stat-item:nth-child(4)::before { display: none; }

.google-banner__inner {
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 28px 20px;
}
.google-banner__divider { display: none; }
.google-banner__cta { width: 100%; text-align: center; justify-content: center; }

/* --- Hamburguer visível por padrão no mobile --- */
.header__nav { display: none; }
.header__cta { display: none; }
.hamburger { display: flex; }

/* --- Tablet (640 px+) --- */
@media (min-width: 640px) {
  .section { padding: 80px 0; }
  .hero__actions { flex-direction: row; }
  .trust-item { font-size: .85rem; }
  .google-banner__inner { flex-direction: row; gap: 0; padding: 18px 24px; text-align: left; }
  .google-banner__divider { display: block; }
  .google-banner__cta { width: auto; }
  .calculator__results { padding: 32px; }
}

/* --- Desktop (1024 px+) --- */
@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .header__nav { display: flex; }
  .header__cta { display: flex; }
  .hamburger { display: none; }
  .stat-item::before { display: block; }
  .testimonials__track .testimonial-card { min-width: calc(50% - 8px); }
}

/* ============================================================
   GOOGLE 5 ESTRELAS — BANNER COMPLETO
   ============================================================ */

/* Faixa principal logo abaixo do stats */
.google-banner {
  background: var(--brand-blue);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.google-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 24px;
  flex-wrap: wrap;
}

/* Logo Google */
.google-banner__logo {
  display: flex;
  align-items: center;
  padding: 0 28px;
}

/* Divisor vertical */
.google-banner__divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* Bloco de estrelas */
.google-banner__stars {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
}

.google-banner__score {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.google-banner__star-row {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.google-banner__star-row i {
  font-size: 1.1rem;
  color: #FBBC05;
  display: inline;
  /* Animação de brilho nas estrelas */
  animation: starPulse 2s ease-in-out infinite;
}
.google-banner__star-row i:nth-child(1) { animation-delay: 0s; }
.google-banner__star-row i:nth-child(2) { animation-delay: .15s; }
.google-banner__star-row i:nth-child(3) { animation-delay: .30s; }
.google-banner__star-row i:nth-child(4) { animation-delay: .45s; }
.google-banner__star-row i:nth-child(5) { animation-delay: .60s; }

@keyframes starPulse {
  0%, 80%, 100% { transform: scale(1); }
  40% { transform: scale(1.25); }
}

/* Info: nome empresa + avaliações */
.google-banner__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
}

.google-banner__info strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.google-banner__info span {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}

/* Badge "Nota máxima" */
.google-banner__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
}

.google-banner__badge i {
  font-size: 2rem;
  color: var(--orange);
  filter: drop-shadow(0 2px 8px rgba(255,107,0,.4));
}

.google-banner__badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-banner__badge strong {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}

.google-banner__badge span {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
}

/* Botão CTA */
.google-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 20px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: var(--shadow-orange);
}

.google-banner__cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,.45);
}

/* ============================================================
   HERO — badges Google (mini) e trust items
   ============================================================ */
.hero__badge--google {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #fff;
  font-weight: 500;
}

.google-stars-mini {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.google-stars-mini .g-stars {
  color: #FBBC05;
  font-size: .85rem;
  letter-spacing: 1px;
}

.google-stars-mini strong {
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
}

.trust-item--google .trust-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ============================================================
   SEÇÃO "EMPRESA 5 ESTRELAS" — destaque visual extra
   ============================================================ */
.five-stars-highlight {
  background: var(--brand-blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.five-stars-highlight__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Card central grande */
.google-card-big {
  background: #fff;
  border-radius: 24px;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  position: relative;
  text-align: center;
  min-width: 300px;
}

.google-card-big::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  background: var(--orange);
  z-index: -1;
}

.google-card-big__logo {
  margin-bottom: 8px;
}
.google-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.google-card-big__score {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
}

.google-card-big__stars {
  display: flex;
  gap: 6px;
}

.google-card-big__stars i {
  font-size: 1.8rem;
  color: #FBBC05;
  filter: drop-shadow(0 2px 6px rgba(251,188,5,.6));
}

.google-card-big__reviews {
  font-size: 1rem;
  color: #64748B;
  font-weight: 500;
}

.google-card-big__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: .88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: .5px;
}

/* Textos ao lado do card */
.google-highlight-text {
  flex: 1;
  min-width: 260px;
  max-width: 440px;
  color: #fff;
}

.google-highlight-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.google-highlight-text h2 .hl-yellow {
  color: var(--orange);
}

.google-highlight-text h2 .hl-blue {
  color: var(--white);
}

.google-highlight-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.google-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.google-highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}

.google-highlight-list li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.google-highlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  transition: transform .25s, box-shadow .25s;
}

.google-highlight-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,0,.45);
}

@media (max-width: 900px) {
  .five-stars-highlight__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .google-highlight-list li { justify-content: center; }
}

@media (max-width: 640px) {
  .google-card-big { padding: 28px 24px; min-width: 260px; }
  .google-card-big__score { font-size: 4rem; }
  .google-highlight-text h2 { font-size: 1.7rem; }
}
