﻿:root {
  --bg: #f7fbf7;
  --surface: #ffffff;
  --surface-soft: #eef8ef;
  --text: #123222;
  --muted: #4c6458;
  --primary: #1d8a4b;
  --primary-dark: #166a39;
  --accent: #2fbf71;
  --accent-dark: #1f8d53;
  --line: #d4e6d8;
  --shadow: 0 20px 45px rgba(18, 56, 34, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --motion-fast: 0.22s;
  --motion-base: 0.38s;
  --motion-slow: 0.72s;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pageGlow {
  0% {
    background-position: 0% 0%, 100% 8%, 0 0;
  }
  50% {
    background-position: 14% 6%, 86% 0%, 0 0;
  }
  100% {
    background-position: 0% 0%, 100% 8%, 0 0;
  }
}

@keyframes heroMainFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes heroFloatTop {
  0% {
    transform: translateY(0px) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(-1deg);
  }
}

@keyframes heroFloatBottom {
  0% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-7px) rotate(-1deg);
  }
  100% {
    transform: translateY(0px) rotate(1deg);
  }
}

@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(19, 176, 111, 0.46);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(19, 176, 111, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(19, 176, 111, 0);
  }
}

@keyframes heroCaretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 5% 0%, rgba(115, 224, 166, 0.24), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(74, 207, 124, 0.24), transparent 30%),
    linear-gradient(180deg, #062f22 0%, #0b5a3a 18%, #eff8f1 42%, var(--bg) 100%);
  background-size: 140% 140%, 140% 140%, 100% 100%;
  animation: pageGlow 20s ease-in-out infinite;
  color: var(--text);
  font-family: "Sora", sans-serif;
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

main section[id] {
  scroll-margin-top: 96px;
}

main > section:not(.hero) {
  background: #ffffff;
}

main > section:not(.hero):nth-of-type(odd) {
  background: linear-gradient(160deg, #1d8a4b 0%, #0f5c32 55%, #083d22 100%);
}

main > section:not(.hero):nth-of-type(odd) .section-head h2,
main > section:not(.hero):nth-of-type(odd) .section-head h3,
main > section:not(.hero):nth-of-type(odd) .section-head p,
main > section:not(.hero):nth-of-type(odd) .coverage-note,
main > section:not(.hero):nth-of-type(odd) .testimonial-meta span {
  color: #ffffff;
}

main > section:not(.hero):nth-of-type(odd) .section-head .eyebrow {
  color: rgba(220, 255, 234, 0.92);
}

main > section:not(.hero):nth-of-type(odd) .section-head .eyebrow::before {
  background: rgba(220, 255, 234, 0.92);
}

main > section:not(.hero):nth-of-type(odd) .highlight-card,
main > section:not(.hero):nth-of-type(odd) .benefit-item,
main > section:not(.hero):nth-of-type(odd) .coverage-card,
main > section:not(.hero):nth-of-type(odd) .assist-plan,
main > section:not(.hero):nth-of-type(odd) .assist-plans-wrap,
main > section:not(.hero):nth-of-type(odd) .step-item,
main > section:not(.hero):nth-of-type(odd) .faq-item,
main > section:not(.hero):nth-of-type(odd) .service-card,
main > section:not(.hero):nth-of-type(odd) .metric-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

main > section:not(.hero):nth-of-type(odd) .highlight-card h3,
main > section:not(.hero):nth-of-type(odd) .benefit-item h3,
main > section:not(.hero):nth-of-type(odd) .coverage-card h3,
main > section:not(.hero):nth-of-type(odd) .step-item h3,
main > section:not(.hero):nth-of-type(odd) .faq-item h3,
main > section:not(.hero):nth-of-type(odd) .service-card h3,
main > section:not(.hero):nth-of-type(odd) .metric-card h3,
main > section:not(.hero):nth-of-type(odd) .faq-question {
  color: #ffffff;
}

main > section:not(.hero):nth-of-type(odd) .highlight-card p,
main > section:not(.hero):nth-of-type(odd) .benefit-item p,
main > section:not(.hero):nth-of-type(odd) .coverage-card p,
main > section:not(.hero):nth-of-type(odd) .step-item p,
main > section:not(.hero):nth-of-type(odd) .faq-answer p,
main > section:not(.hero):nth-of-type(odd) .service-card p,
main > section:not(.hero):nth-of-type(odd) .metric-card p,
main > section:not(.hero):nth-of-type(odd) .assist-plan ul,
main > section:not(.hero):nth-of-type(odd) .coverage-list,
main > section:not(.hero):nth-of-type(odd) .testimonial-meta strong {
  color: rgba(255, 255, 255, 0.84);
}

main > section:not(.hero):nth-of-type(odd) .coverage-cta,
main > section:not(.hero):nth-of-type(odd) .assist-plan-highlight {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.33);
}

main > section:not(.hero):nth-of-type(odd) li::marker {
  color: #8fffc0;
}

main > section:not(.hero):nth-of-type(odd) .highlight-card:hover,
main > section:not(.hero):nth-of-type(odd) .benefit-item:hover,
main > section:not(.hero):nth-of-type(odd) .coverage-card:hover,
main > section:not(.hero):nth-of-type(odd) .assist-plan:hover,
main > section:not(.hero):nth-of-type(odd) .step-item:hover,
main > section:not(.hero):nth-of-type(odd) .faq-item:hover,
main > section:not(.hero):nth-of-type(odd) .service-card:hover,
main > section:not(.hero):nth-of-type(odd) .metric-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.25);
}

.section-head {
  max-width: 700px;
  margin-bottom: 32px;
}

.content-gallery {
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}

.content-gallery-single {
  grid-template-columns: 1fr;
}

.content-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-gallery-card {
  margin: 0;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--motion-fast) var(--ease-smooth), box-shadow var(--motion-base) var(--ease-smooth);
}

.content-gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(18, 56, 34, 0.2);
}

.content-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 62, 42, 0.68);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease, backdrop-filter 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(247, 251, 247, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(18, 50, 30, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--motion-fast) var(--ease-smooth), filter var(--motion-fast) var(--ease-smooth);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  transition: filter var(--motion-fast) var(--ease-smooth);
}

.brand:hover img {
  filter: drop-shadow(0 8px 16px rgba(14, 72, 45, 0.25));
}

.brand-segundo {
  height: 36px;
  width: auto;
}

.brand-segundo-white {
  display: none;
  filter: brightness(0) saturate(100%) invert(100%);
}

.site-header:not(.scrolled) .brand-segundo-color {
  display: none;
}

.site-header:not(.scrolled) .brand-segundo-white {
  display: block;
}

.site-header.scrolled .brand-segundo-color {
  display: block;
}

.site-header.scrolled .brand-segundo-white {
  display: none;
}

.brand-suhai {
  height: 30px;
  width: auto;
}

.brand-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav > a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color var(--motion-fast) ease, transform var(--motion-fast) var(--ease-smooth);
}

.nav-dropdown {
  position: relative;
  z-index: 1;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-family: "Sora", sans-serif;
}

.nav-caret {
  font-size: 0.8rem;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret,
.nav-dropdown.open .nav-caret {
  transform: rotate(180deg);
}

.site-header:not(.scrolled) .brand-divider {
  background: rgba(255, 255, 255, 0.3);
}

.site-header:not(.scrolled) .main-nav > a,
.site-header:not(.scrolled) .nav-dropdown-toggle {
  color: #ddf4e5;
}

.site-header:not(.scrolled) .main-nav > a:hover,
.site-header:not(.scrolled) .main-nav > a.active,
.site-header:not(.scrolled) .nav-dropdown:hover > .nav-dropdown-toggle,
.site-header:not(.scrolled) .nav-dropdown:focus-within > .nav-dropdown-toggle,
.site-header:not(.scrolled) .nav-dropdown.open > .nav-dropdown-toggle {
  color: #ffffff;
}

.site-header:not(.scrolled) .main-nav > a::after,
.site-header:not(.scrolled) .nav-dropdown-toggle::after {
  background: linear-gradient(90deg, #8effb7, #d0ff87);
}

.site-header.scrolled .main-nav > a,
.site-header.scrolled .nav-dropdown-toggle {
  color: var(--muted);
}

.site-header.scrolled .main-nav > a:hover,
.site-header.scrolled .main-nav > a.active,
.site-header.scrolled .nav-dropdown:hover > .nav-dropdown-toggle,
.site-header.scrolled .nav-dropdown:focus-within > .nav-dropdown-toggle,
.site-header.scrolled .nav-dropdown.open > .nav-dropdown-toggle {
  color: var(--text);
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.nav-dropdown.open > .nav-dropdown-toggle {
  color: var(--text);
  transform: translateY(-1px);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover > .nav-dropdown-toggle::after,
.nav-dropdown:focus-within > .nav-dropdown-toggle::after,
.nav-dropdown.open > .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 34px rgba(18, 50, 30, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  z-index: 70;
  transition: opacity var(--motion-fast) var(--ease-smooth), transform var(--motion-fast) var(--ease-smooth), visibility var(--motion-fast) var(--ease-smooth);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover,
.nav-dropdown:focus-within,
.nav-dropdown.open {
  z-index: 80;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  color: var(--text);
  background: #f2faf4;
  transform: none;
}

.site-header:not(.scrolled) .main-nav .nav-submenu a {
  color: var(--muted);
}

.site-header:not(.scrolled) .main-nav .nav-submenu a:hover,
.site-header:not(.scrolled) .main-nav .nav-submenu a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform var(--motion-fast) var(--ease-smooth), box-shadow var(--motion-base) var(--ease-smooth), background-color var(--motion-fast) ease, border-color var(--motion-fast) ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-20deg);
  transition: left var(--motion-slow) var(--ease-smooth);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  left: 118%;
}

.btn-nav,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 12px 26px rgba(29, 138, 75, 0.25);
}

.site-header:not(.scrolled) .btn-nav {
  color: #103823;
  background: linear-gradient(135deg, #b8f065, #56d46e);
}

.btn-nav:hover,
.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(29, 138, 75, 0.35);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #e5f8ea;
}

.btn-secondary:hover {
  background: #d5f1de;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  margin: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header:not(.scrolled) .menu-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

.hero {
  position: relative;
  padding: 78px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(106deg, rgba(4, 53, 33, 0.88) 0%, rgba(10, 92, 57, 0.8) 58%, rgba(16, 122, 73, 0.76) 100%),
    url('../imgs/art-geral1.png') center 58% / cover no-repeat;
  color: #fff;
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
}

.hero-bg-glow {
  position: absolute;
  inset: auto -8% -130px auto;
  width: 580px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(71, 241, 146, 0.24), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  max-width: 980px;
}

.hero-title {
  font-size: clamp(1.7rem, 3.3vw, 2.95rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 980px;
}

.hero-title span {
  display: block;
  color: #48f49b;
}

.hero-title .hero-title-main {
  color: #fff;
}

.hero-title .hero-title-sub {
  margin-top: 8px;
  font-size: clamp(1rem, 1.45vw, 1.5rem);
  line-height: 1.2;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .hero-title .hero-title-main {
    white-space: nowrap;
  }
}

.hero .eyebrow {
  color: #d5ffe5;
}

.hero .eyebrow::before {
  background: #d5ffe5;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  max-width: 860px;
  min-height: 2.7em;
}

#hero-subtitle-typing {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #7fffc0;
  background: linear-gradient(90deg, #d7ffe9 0%, #8fffd0 38%, #3cf59c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero-subtitle-typing:not(:empty) {
  padding: 8px 12px;
  border-radius: 10px;
  color: #0d6843;
  background: rgba(255, 255, 255, 0.96);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #0d6843;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

#hero-subtitle-typing:not(:empty) + .hero-typing-caret {
  background: #0d6843;
}

.hero-typing-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 5px;
  vertical-align: -0.1em;
  background: rgba(255, 255, 255, 0.95);
  animation: heroCaretBlink 0.88s steps(1, end) infinite;
}

.hero-badges {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
}

.hero-badge .material-symbols-outlined {
  font-size: 1.1rem;
  color: #48f49b;
}

.hero-proof {
  margin-top: 34px;
  color: #60ffad;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-cta {
  border-radius: 999px;
  padding: 14px 28px;
  font-size: clamp(0.98rem, 1.25vw, 1.2rem);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #06d76d, #00b45a);
  box-shadow: 0 14px 30px rgba(0, 178, 88, 0.38);
}

.hero-cta:hover {
  box-shadow: 0 18px 34px rgba(0, 178, 88, 0.48);
}

.hero-cta .material-symbols-outlined {
  font-size: 1.25em;
}

.quote-form-section,
main > section.quote-form-section {
  padding: 64px 0 64px;
  background: url('../imgs/art-bg.png') center center / cover no-repeat !important;
  color: var(--text) !important;
  position: relative;
}

.quote-form-section .container {
  position: relative;
  z-index: 1;
}

main > section.quote-form-section .quote-modal-head h2,
main > section.quote-form-section .quote-modal-head p,
main > section.quote-form-section .quote-modal-head .eyebrow {
  color: #fff !important;
}

.quote-section-intro {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.quote-intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 10px 24px rgba(29, 138, 75, 0.30);
  flex-shrink: 0;
}

.quote-intro-icon .material-symbols-outlined {
  font-size: 32px;
  color: #fff;
}

.quote-intro-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}

.quote-intro-desc {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.quote-glow-wrap {
  border-radius: 24px;
  animation: shadowColor 3s ease-in-out infinite;
}

@keyframes shadowColor {
  0%   { box-shadow: 0 0 28px 8px rgba(180, 190, 185, 0.55); }
  50%  { box-shadow: 0 0 28px 8px rgba(29, 138, 75, 0.60);  }
  100% { box-shadow: 0 0 28px 8px rgba(180, 190, 185, 0.55); }
}

.quote-inline-shell {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #bfe4cc;
  background: #fff;
  box-shadow: 0 30px 60px rgba(5, 34, 20, 0.2);
  position: relative;
  z-index: 1;
}

.quote-modal-head {
  padding: 20px 24px 16px;
  background:
    radial-gradient(circle at 10% 0, rgba(167, 255, 199, 0.24), transparent 34%),
    linear-gradient(135deg, #0c5337, #178757);
  color: #fff;
}

.quote-modal-head h2 {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  margin: 0;
}

.quote-modal-head .eyebrow {
  color: #d8ffe8;
}

.quote-modal-head .eyebrow::before {
  background: #d8ffe8;
}

.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-live::before {
  display: none;
}

.live-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.live-dot::before,
.live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #7ffcaa;
}

.live-dot::after {
  background: transparent;
  border: 2px solid #7ffcaa;
  animation: livePulse 1.6s ease-out infinite;
}

@keyframes livePulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.quote-subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.quote-modal-body {
  padding: 16px 20px 20px;
}

.quote-form {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.quote-form:hover {
  box-shadow: 0 26px 45px rgba(18, 56, 34, 0.18);
}

.quote-progress {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: #e7f8eb;
  margin-bottom: 10px;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
}

.quote-block {
  margin-bottom: 10px;
}

.quote-label {
  display: block;
  margin: 0 0 5px;
  font-weight: 700;
  color: var(--text);
  font-size: 0.96rem;
}

.quote-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quote-vehicle-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  min-height: 54px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform var(--motion-fast) var(--ease-smooth), box-shadow var(--motion-base) var(--ease-smooth), border-color var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.quote-vehicle-btn strong {
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.quote-vehicle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.quote-vehicle-btn .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary-dark);
}

.quote-vehicle-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(18, 56, 34, 0.12);
}

.quote-vehicle-btn.is-active {
  border-color: var(--accent-dark);
  background: #effaf2;
  box-shadow: 0 0 0 2px rgba(31, 141, 83, 0.12);
}

.quote-grid-two,
.quote-grid-three {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.quote-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-grid-plate {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

/* CPF (fixo) · Celular (fixo) · Nascimento · Sexo · Estado Civil */
.quote-grid-personal {
  display: grid;
  grid-template-columns: 158px 168px 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

/* CEP (fixo) · UF (fixo) · espaço restante */
.quote-grid-location {
  display: grid;
  grid-template-columns: 120px 80px 1fr;
  gap: 10px;
  margin-top: 8px;
}

.quote-input-plate {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
}

.quote-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-input-wrap {
  margin-top: 8px;
}

.quote-full {
  grid-column: span 1;
}

.quote-input {
  width: 100%;
  border: 1px solid #cddfd1;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 0.9rem;
  padding: 9px 11px;
  font-family: "Sora", sans-serif;
}

.quote-input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(47, 191, 113, 0.15);
}

.quote-input.invalid {
  border-color: #d93025;
}

.quote-check-wrap {
  margin-top: 6px;
}

.quote-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-check input[type="checkbox"] {
  accent-color: var(--accent-dark);
}

.quote-extra-vehicle {
  display: none;
}

.quote-extra-vehicle.show {
  display: grid;
}

.quote-fieldset {
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}

.quote-choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.quote-choice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--motion-fast) ease, background-color var(--motion-fast) ease, box-shadow var(--motion-base) var(--ease-smooth), transform var(--motion-fast) var(--ease-smooth);
}

.quote-choice:hover {
  background: #f4fbf6;
  transform: translateY(-1px);
}

.quote-choice input[type="radio"] {
  margin-top: 2px;
  accent-color: var(--accent-dark);
}

.quote-choice.is-selected {
  border-color: var(--accent-dark);
  background: #effaf2;
  box-shadow: 0 0 0 2px rgba(31, 141, 83, 0.1);
}

.quote-field-error {
  display: none;
  color: #d93025;
  font-size: 0.84rem;
  margin-top: 5px;
}

.quote-field-error.show {
  display: block;
}

.quote-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.quote-btn-next,
.quote-btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.quote-btn-next .material-symbols-outlined,
.quote-btn-submit .material-symbols-outlined {
  font-size: 18px;
}

.quote-btn-back {
  background: #74837b;
  color: #fff;
}

.quote-submit-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.media-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #cfe7d6;
  box-shadow: var(--shadow);
  background: #fff;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-main {
  width: min(690px, 100%);
  height: auto;
  animation: heroMainFloat 6s ease-in-out infinite;
}

.hero-media .media-main img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center top;
}

.media-float {
  position: absolute;
  width: 44%;
  height: 185px;
}

.media-float.top {
  top: 18px;
  left: -14%;
  animation: heroFloatTop 5.6s ease-in-out infinite;
}

.media-float.bottom {
  bottom: 22px;
  right: -8%;
  animation: heroFloatBottom 6.2s ease-in-out infinite;
}

.highlights {
  padding: 26px 0 46px;
}

.highlights .highlight-card {
  background: rgba(255, 255, 255, 0.98);
}

.material-symbols-outlined.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, #1f8f4d, #31bf71);
  box-shadow: 0 10px 20px rgba(18, 56, 34, 0.2);
  transition: transform var(--motion-base) var(--ease-smooth), box-shadow var(--motion-base) var(--ease-smooth), filter var(--motion-base) var(--ease-smooth);
  animation: iconPulse 4.4s ease-in-out infinite;
  animation-delay: calc(var(--stagger-index, 0) * 120ms);
}

.metric-card .card-icon {
  width: 38px;
  height: 38px;
  font-size: 21px;
  margin-bottom: 8px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.highlight-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.highlight-card,
.benefit-item,
.perfil-card,
.coverage-card,
.fit-card,
.assist-plan,
.service-card,
.step-item,
.testimonial-card,
.metric-card,
.faq-item,
.quote-form {
  transition: transform var(--motion-base) var(--ease-smooth), box-shadow var(--motion-base) var(--ease-smooth), border-color var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.highlight-card:hover,
.benefit-item:hover,
.perfil-card:hover,
.coverage-card:hover,
.fit-card:hover,
.assist-plan:hover,
.service-card:hover,
.step-item:hover,
.testimonial-card:hover,
.metric-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(17, 62, 38, 0.16);
  border-color: #b4dbbf;
}

.highlight-card:hover .card-icon,
.benefit-item:hover .card-icon,
.perfil-card:hover .card-icon,
.coverage-card:hover .card-icon,
.fit-card:hover .card-icon,
.service-card:hover .card-icon,
.metric-card:hover .card-icon {
  transform: translateY(-2px) scale(1.06) rotate(-4deg);
  filter: saturate(1.2);
  box-shadow: 0 14px 24px rgba(18, 56, 34, 0.28);
}

.highlight-card h3 {
  font-size: 1.03rem;
}

.highlight-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-suhai {
  padding-top: 72px;
}

.about-suhai-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: start;
}

.about-suhai-copy .section-head {
  margin-bottom: 18px;
}

.about-suhai-copy p + p {
  margin-top: 10px;
}

.about-vehicle-tags {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-vehicle-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #c8e6d1;
  background: #ebf8ee;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-vehicle-tags .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
}

.about-profile-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.about-profile-list li::marker {
  color: var(--accent-dark);
}

.about-suhai-copy .btn {
  margin-top: 16px;
}

.about-suhai-side {
  display: grid;
  gap: 12px;
}

.about-suhai-media {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #163a2a;
  box-shadow: 0 22px 48px rgba(9, 47, 30, 0.34), 0 10px 22px rgba(9, 47, 30, 0.22);
  display: flex;
  justify-content: center;
  line-height: 0;
  width: fit-content;
  margin: 0 auto;
}

.about-suhai-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(420px, 46vw, 560px);
  object-fit: contain;
  display: block;
  margin: 0;
  border-radius: 0;
  transform: scale(1.003);
  transform-origin: center;
  box-shadow: none;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px;
}

.metric-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  line-height: 1.3;
}

.metric-card span {
  margin-top: 6px;
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.about-source {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: start;
}

.benefits-main {
  display: grid;
  gap: 18px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.benefits-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: var(--shadow);
  align-self: stretch;
}

.benefits-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.benefits .section-head h2,
.perfis .section-head h2 {
  color: var(--text);
  text-shadow: none;
}

.benefits .section-head .eyebrow,
.perfis .section-head .eyebrow {
  color: var(--primary);
}

.benefits .section-head .eyebrow::before,
.perfis .section-head .eyebrow::before {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.benefit-item {
  background: linear-gradient(180deg, #ffffff, #f6fbf6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 20px;
}

.benefit-item p {
  margin-top: 8px;
  color: var(--muted);
}

.perfis {
  padding-top: 74px;
}

.perfis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.perfil-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.perfil-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.perfil-content {
  padding: 20px;
}

.perfil-content p {
  color: var(--muted);
  margin-top: 8px;
}

.perfil-list {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.93rem;
}

.perfil-list li::marker {
  color: var(--accent-dark);
}

.perfil-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 800;
  font-size: 0.86rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 10px 20px rgba(29, 138, 75, 0.24);
}

.perfil-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(29, 138, 75, 0.3);
}

.perfil-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.coverage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.coverage-card p {
  margin-top: 8px;
  color: var(--muted);
}

.coverage-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
  display: grid;
  gap: 6px;
}

.coverage-list li::marker {
  color: var(--accent-dark);
}

.coverage-cta {
  background: linear-gradient(145deg, #ecfaef, #effff5);
}

.coverage-cta .btn {
  margin-top: 16px;
}

.coverage-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

#coberturas-suhai {
  padding-top: 72px;
  position: relative;
  background: url('../imgs/art-bg.png') center center / cover no-repeat !important;
}

#coberturas-suhai .section-head {
  display: inline-block;
  max-width: min(840px, 100%);
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  margin-bottom: 8px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}

.fit-card h3 {
  font-size: 0.98rem;
}

.fit-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  font-size: 20px;
}

.sim-badge {
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e6f8eb;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.assist-plans-wrap {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  background: #fff;
}

.assist-plans-wrap h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.assist-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.assist-plan {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  background: #f8fcf8;
}

.assist-plan-highlight {
  background: linear-gradient(145deg, #eaf8ee, #f5fcf7);
}

.plan-label {
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.assist-plan ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--muted);
}

.assist-plan li::marker {
  color: var(--accent-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.service-card p {
  margin-top: 8px;
  color: var(--muted);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--accent), var(--primary));
}

.step-item h3 {
  margin-top: 16px;
}

.step-item p {
  margin-top: 8px;
  color: var(--muted);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

.testimonial-meta strong {
  padding: 8px 14px;
  border-radius: 999px;
  background: #e7f8ec;
  color: var(--primary-dark);
  font-size: 0.88rem;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-extra {
  display: none;
}

.testimonials-grid.show-extra .testimonial-extra {
  display: block;
}

.testimonials-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.testimonials-grid.show-extra + .testimonials-actions {
  display: none;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.stars {
  margin: 0;
  display: inline-block;
  min-width: 5.5ch;
  color: #178c4a;
  font-size: 1rem;
  letter-spacing: 0;
}

.stars .star-star {
  display: inline-block;
  opacity: 0;
  transform: translate(10px, 10px) scale(0.72) rotate(-10deg);
  filter: blur(1px);
  animation: starArrive 620ms cubic-bezier(0.2, 0.7, 0.22, 1) forwards;
}

.stars .star-star + .star-star {
  margin-left: 0.1em;
}

@keyframes starArrive {
  0% {
    opacity: 0;
    transform: translate(10px, 10px) scale(0.72) rotate(-10deg);
    filter: blur(1px);
  }
  60% {
    opacity: 1;
    transform: translate(-1px, -2px) scale(1.08) rotate(2deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

.testimonial-card h3 {
  margin-top: 0;
  font-size: 0.95rem;
}

.testimonial-card p:not(.stars) {
  margin-top: 10px;
  color: var(--muted);
}

.testimonial-author {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1da25a, #147742);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 16px rgba(17, 96, 52, 0.26);
  flex-shrink: 0;
}

.testimonial-source {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  padding-top: 74px;
  padding-bottom: 74px;
}

main > section#contato {
  background: url('../imgs/art-bg.png') center center / cover no-repeat !important;
}

.cta-band-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-xl);
  padding: 36px;
  background: linear-gradient(125deg, #0f4f2b, #156f3d 42%, #1d8a4b);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band-shell p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band-shell .eyebrow {
  color: #b8f8de;
}

.cta-band-shell .eyebrow::before {
  background: #b8f8de;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cta-band-actions .btn {
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  padding: 18px 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: var(--muted);
  padding: 0 20px 18px;
}

.site-footer {
  background: #0d2a1a;
  color: #eaf6ee;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer-col {
  display: grid;
  gap: 6px;
}

.footer-col-brand {
  gap: 10px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #c4decc;
  max-width: 560px;
}

.footer-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #d5f3df;
  border: 1px solid rgba(151, 221, 173, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.footer-tags .material-symbols-outlined {
  font-size: 1rem;
  line-height: 1;
}

.site-footer h3 {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.site-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c4decc;
}

.footer-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.footer-item .material-symbols-outlined {
  font-size: 1rem;
  color: #8ce3a6;
  line-height: 1.2;
}

.site-footer a {
  color: #8ce3a6;
  text-decoration: none;
}

.site-footer a:hover {
  color: #b4f2c7;
  text-decoration: underline;
  text-decoration-color: rgba(180, 242, 199, 0.55);
  text-underline-offset: 2px;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  color: #a7c4b0;
  font-size: 0.92rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 55;
  background: #13b06f;
  color: #fff;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(19, 176, 111, 0.42);
  transition: transform var(--motion-fast) var(--ease-smooth), box-shadow var(--motion-base) var(--ease-smooth);
  animation: pulseWhats 2.6s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(19, 176, 111, 0.5);
  animation-play-state: paused;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
  filter: blur(1px);
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 0.55s var(--ease-smooth), transform 0.55s var(--ease-smooth);
  transition-delay: calc(var(--stagger-index, 0) * 65ms);
}

.section-reveal.visible .stagger-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 1120px) {
  .main-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(18, 50, 30, 0.15);
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav > a,
  .nav-dropdown,
  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    padding: 10px 0;
  }

  .nav-dropdown-toggle::after {
    bottom: 2px;
  }

  .nav-submenu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f8fcf9;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown.open .nav-submenu {
    display: grid;
  }

  .nav-dropdown::after {
    display: none;
  }

  .main-nav.open {
    display: flex;
    animation: menuDrop var(--motion-base) var(--ease-smooth);
  }

  .site-header:not(.scrolled) .main-nav > a,
  .site-header:not(.scrolled) .main-nav > a:hover,
  .site-header:not(.scrolled) .main-nav > a.active,
  .site-header:not(.scrolled) .nav-dropdown-toggle,
  .site-header:not(.scrolled) .nav-dropdown:hover > .nav-dropdown-toggle,
  .site-header:not(.scrolled) .nav-dropdown:focus-within > .nav-dropdown-toggle,
  .site-header:not(.scrolled) .nav-dropdown.open > .nav-dropdown-toggle {
    color: var(--text);
  }

  .site-header:not(.scrolled) .main-nav > a::after,
  .site-header:not(.scrolled) .nav-dropdown-toggle::after {
    background: linear-gradient(90deg, var(--accent), var(--primary));
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 3;
  }

  .btn-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .content-gallery-two {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .media-main {
    height: auto;
    width: 100%;
    aspect-ratio: auto;
  }

  .media-float {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 12px;
    aspect-ratio: 16 / 8;
  }

  .highlight-grid,
  .quote-grid-three,
  .about-metrics,
  .perfis-grid,
  .coverage-grid,
  .fit-grid,
  .service-grid,
  .testimonials-grid,
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assist-plans-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid-two,
  .quote-grid-plate,
  .quote-grid-personal,
  .quote-grid-location {
    grid-template-columns: 1fr;
  }

  .about-suhai-grid {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .benefits-main {
    gap: 14px;
  }

  .benefits-media {
    min-height: auto;
    max-width: 560px;
    margin: 0 auto;
  }

  .benefits-media img {
    height: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-segundo {
    height: 30px;
  }

  .brand-suhai {
    height: 24px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 78px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .hero-title {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
    line-height: 1.08;
  }

  .hero-title .hero-title-sub {
    margin-top: 6px;
    font-size: clamp(0.94rem, 4.3vw, 1.22rem);
    line-height: 1.18;
  }

  .hero-subtitle {
    font-size: clamp(0.86rem, 3.7vw, 1rem);
    min-height: 2.2em;
  }

  .hero-badges {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .hero-badge {
    font-size: 0.92rem;
  }

  .hero-proof {
    margin-top: 20px;
    font-size: 1.12rem;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.12;
  }

  .about-suhai-copy .section-head h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem);
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .quote-vehicle-grid,
  .quote-grid-three,
  .highlight-grid,
  .about-metrics,
  .benefits-layout,
  .benefits-grid,
  .perfis-grid,
  .coverage-grid,
  .fit-grid,
  .service-grid,
  .testimonials-grid,
  .how-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-col,
  .footer-col-brand {
    justify-items: start;
    text-align: left;
  }

  .footer-description {
    max-width: none;
  }

  .site-footer ul {
    width: 100%;
  }

  .footer-item {
    grid-template-columns: 16px auto;
    justify-content: start;
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .section {
    padding: 70px 0;
  }

  .highlight-card,
  .benefit-item,
  .perfil-content,
  .coverage-card,
  .fit-card,
  .assist-plans-wrap,
  .assist-plan,
  .service-card,
  .step-item,
  .testimonial-card,
  .faq-item {
    padding: 18px;
  }

  .benefits-media {
    max-width: 100%;
  }

  .testimonials-actions {
    margin-top: 14px;
  }

  .testimonials-more-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .quote-inline-shell {
    border-radius: 16px;
  }

  .quote-modal-head {
    padding: 22px 18px 16px;
  }

  .quote-modal-body {
    padding: 14px 14px 18px;
  }

  .quote-form {
    padding: 22px;
  }

  .quote-actions {
    justify-content: stretch;
  }

  .quote-actions .btn {
    width: 100%;
  }

  .cta-band-shell {
    padding: 28px;
  }

  .cta-band-actions {
    width: 100%;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-select-wrap {
  position: relative;
}

.cep-spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(29, 138, 75, 0.25);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  pointer-events: none;
}

.cep-spinner.active {
  display: block;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ── Modal de sucesso ── */
.success-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 28, 18, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  animation: overlayIn 0.25s ease;
}

.success-modal-overlay[hidden] {
  display: none;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.success-modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 36px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 64px rgba(6, 28, 18, 0.28);
  animation: modalIn 0.32s var(--ease-smooth);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.success-icon-wrap {
  margin: 0 auto 24px;
  width: 72px;
  height: 72px;
}

.success-circle {
  width: 72px;
  height: 72px;
}

.success-circle-bg {
  stroke: #e6f9ee;
  stroke-width: 3;
}

.success-circle-line {
  stroke: var(--primary);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  stroke-linecap: round;
  animation: drawCircle 0.55s ease forwards 0.1s;
}

.success-check {
  stroke: var(--primary);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: drawCheck 0.35s ease forwards 0.6s;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 12px;
}

.success-desc {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 28px;
}

.success-close {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  min-width: 140px;
  cursor: pointer;
}

.quote-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.quote-feedback--ok {
  background: #e6f9ee;
  color: #0f5c32;
  border: 1px solid #a8dfc0;
}

.quote-feedback--err {
  background: #fff0f0;
  color: #a00;
  border: 1px solid #f5c0c0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .section-reveal,
  .stagger-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
