:root {
  color-scheme: light;
  --ink: #07192f;
  --ink-soft: #1d3048;
  --red: #c21f37;
  --red-dark: #94172b;
  --steel: #637182;
  --line: #d9e0e8;
  --paper: #ffffff;
  --mist: #f4f7fa;
  --blue-mist: #eaf0f6;
  --shadow: 0 22px 60px rgba(7, 25, 47, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--mist);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 148px;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 224, 232, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 356px;
  height: 116px;
}

.brand img {
  width: 356px;
  height: 116px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 54px;
  padding: 0 18px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(7, 25, 47, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  transform: translateY(-1px);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 16px 34px rgba(194, 31, 55, 0.18);
  outline: 0;
}

.main-nav {
  position: absolute;
  top: calc(100% - 10px);
  right: 48px;
  display: none;
  min-width: 260px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 224, 232, 0.95);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(7, 25, 47, 0.16);
  backdrop-filter: blur(16px);
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

body.nav-open .main-nav {
  display: grid;
  gap: 8px;
}

.main-nav a {
  min-width: 0;
  padding: 15px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: left;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(199, 22, 53, 0.42);
  box-shadow: 0 14px 30px rgba(7, 25, 47, 0.1);
  color: var(--ink);
}

.main-nav .nav-important {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.main-nav .nav-important:hover,
.main-nav .nav-important:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

.main-nav.info-nav {
  position: static;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.main-nav.info-nav a {
  min-width: 116px;
  padding: 13px 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(7, 25, 47, 0.05);
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--red);
  box-shadow: 0 12px 26px rgba(199, 22, 53, 0.22);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary,
.button-ghost {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-ghost:hover,
.button-secondary:focus-visible,
.button-ghost:focus-visible {
  border-color: #aeb8c4;
  box-shadow: 0 10px 24px rgba(7, 25, 47, 0.08);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 25, 47, 0.07);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: #aeb8c4;
  box-shadow: 0 16px 34px rgba(7, 25, 47, 0.12);
  outline: 0;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 3px 0;
  background: var(--steel);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

body.nav-open .menu-toggle {
  border-color: rgba(194, 31, 55, 0.42);
}

body.nav-open .menu-toggle span {
  background: var(--ink);
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.section {
  padding: 92px 48px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - 148px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 250, 0.94) 54%, rgba(234, 240, 246, 0.86) 100%);
}

.hero-copy,
.section-heading,
.trust-copy,
.contact-box,
.site-footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  margin-right: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 20px;
  line-height: 1.65;
}

.lead-secondary {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  border-left: 1px solid rgba(217, 224, 232, 0.95);
  background:
    radial-gradient(circle at 50% 42%, rgba(199, 22, 53, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(7, 25, 47, 0.04), rgba(255, 255, 255, 0.7));
}

.hero-visual img {
  width: min(430px, 82%);
  filter: drop-shadow(0 28px 42px rgba(7, 25, 47, 0.18));
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin: 38px 0 0;
}

.quick-facts div {
  min-height: 92px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-facts dt {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.intro-section,
.topics-section,
.faq-section {
  background: #ffffff;
}

.details-section {
  background: var(--mist);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.trust-copy p,
.contact-box p {
  color: var(--steel);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 25, 47, 0.06);
}

.card-marker {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.feature-card p,
.timeline p,
.detail-card p,
.audience-card p {
  margin-bottom: 0;
  color: var(--steel);
  line-height: 1.65;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.detail-card {
  min-height: 180px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(7, 25, 47, 0.06);
}

.detail-card h3 {
  margin-bottom: 12px;
}

.audience-section {
  background: #ffffff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.audience-card {
  min-height: 220px;
  padding: 26px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.audience-card h3 {
  margin-bottom: 12px;
}

.process-section {
  background: var(--blue-mist);
}

.timeline {
  display: grid;
  gap: 16px;
  width: min(940px, 100%);
  margin: 0 auto;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.topics-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.35;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-list details {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--steel);
  line-height: 1.65;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 44px;
  align-items: center;
  background: var(--ink);
  color: #ffffff;
}

.trust-copy {
  margin-right: 0;
}

.trust-copy h2,
.trust-copy p {
  color: #ffffff;
}

.trust-copy p {
  color: #cbd5df;
}

.brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.brand-panel-transparent {
  background:
    radial-gradient(circle at 50% 45%, rgba(199, 22, 53, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 240, 246, 0.92));
}

.brand-panel-transparent img {
  width: min(520px, 86%);
  height: auto;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(7, 25, 47, 0.18));
}

.contact-section {
  background: #ffffff;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-box h2 {
  margin-bottom: 12px;
}

.contact-box p {
  margin-bottom: 0;
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
}

.contact-actions p {
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 48px;
  color: var(--steel);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: 340px;
  padding: 16px 18px;
  background: var(--ink);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.request-hero {
  background: #ffffff;
}

.sent-hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 148px);
  background: #ffffff;
}

.sent-card {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 42px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 25, 47, 0.08);
}

.sent-card h1 {
  font-size: 48px;
}

.sent-card p:not(.eyebrow) {
  color: var(--steel);
  font-size: 18px;
  line-height: 1.65;
}

.info-hero {
  background: #ffffff;
}

.contact-page {
  background: #ffffff;
}

.privacy-hero {
  background: #ffffff;
}

.request-hero .section-heading {
  margin-bottom: 28px;
}

.request-hero .section-heading p:not(.eyebrow) {
  max-width: 820px;
  color: var(--steel);
  font-size: 18px;
  line-height: 1.65;
}

.request-form {
  display: grid;
  gap: 22px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 34px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 25, 47, 0.08);
}

.request-form fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.request-form legend {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

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

.request-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 850;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #cbd5df;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.request-form textarea {
  min-height: 116px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(199, 22, 53, 0.12);
  outline: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--steel);
  line-height: 1.5;
}

.consent input {
  min-height: 20px;
  margin-top: 1px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.success-message {
  width: min(980px, 100%);
  margin: 0 auto 18px;
  padding: 16px 18px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  color: #065f46;
  font-weight: 850;
}

.error-message {
  width: min(980px, 100%);
  margin: 0 auto 18px;
  padding: 16px 18px;
  background: #fff7f8;
  border: 1px solid rgba(194, 31, 55, 0.28);
  border-radius: 8px;
  color: var(--red-dark);
  font-weight: 850;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.info-card,
.info-note,
.privacy-card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 25, 47, 0.06);
}

.info-card {
  padding: 28px;
}

.info-card h2,
.info-note h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.info-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--steel);
  line-height: 1.6;
}

.info-card p,
.info-note p {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.65;
}

.warning-card {
  background: #fff7f8;
  border-color: rgba(199, 22, 53, 0.24);
}

.warning-card h2 {
  color: var(--red-dark);
}

.info-note {
  width: min(1180px, 100%);
  margin: 26px auto 0;
  padding: 30px;
}

.info-note p {
  max-width: 880px;
}

.privacy-content {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.privacy-card {
  padding: 28px;
}

.privacy-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.privacy-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.privacy-card p,
.privacy-card li {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.65;
}

.privacy-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.privacy-placeholder {
  background: #fff7f8;
  border-color: rgba(194, 31, 55, 0.26);
}

.privacy-placeholder strong {
  color: var(--red-dark);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-card-primary,
.contact-side-card {
  padding: 34px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 25, 47, 0.08);
}

.contact-card-primary h2,
.contact-side-card h2 {
  margin-bottom: 14px;
  font-size: 30px;
}

.contact-card-primary p,
.contact-side-card p {
  color: var(--steel);
  font-size: 17px;
  line-height: 1.65;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(194, 31, 55, 0.42);
  box-shadow: 0 14px 30px rgba(7, 25, 47, 0.09);
  outline: 0;
}

.contact-methods span {
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-side-card {
  background:
    radial-gradient(circle at 50% 24%, rgba(194, 31, 55, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 240, 246, 0.94));
}

.contact-side-card img {
  width: min(360px, 78%);
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 28px rgba(7, 25, 47, 0.12));
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25d366;
  border: 1px solid rgba(11, 117, 51, 0.24);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28), 0 10px 24px rgba(7, 25, 47, 0.14);
  color: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-float::before {
  content: "";
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  mask:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.1 4.7A15.1 15.1 0 0 0 3.4 22.9L2 30l7.3-1.9a15.1 15.1 0 0 0 7.2 1.8h.1A15.1 15.1 0 0 0 27.1 4.7ZM16.6 27.3h-.1a12.5 12.5 0 0 1-6.4-1.8l-.5-.3-4.3 1.1 1.2-4.2-.3-.5a12.5 12.5 0 1 1 10.4 5.7Zm6.8-9.4c-.4-.2-2.2-1.1-2.5-1.2-.3-.1-.6-.2-.8.2-.2.4-.9 1.2-1.1 1.4-.2.2-.4.3-.8.1-.4-.2-1.6-.6-3-1.9-1.1-1-1.9-2.2-2.1-2.6-.2-.4 0-.6.2-.8.2-.2.4-.4.6-.7.2-.2.2-.4.4-.6.1-.2.1-.5 0-.7-.1-.2-.8-1.9-1.1-2.6-.3-.7-.6-.6-.8-.6h-.7c-.2 0-.7.1-1 .5-.3.4-1.3 1.3-1.3 3.1 0 1.8 1.3 3.6 1.5 3.9.2.2 2.6 4 6.2 5.6.9.4 1.5.6 2.1.8.9.3 1.7.3 2.3.2.7-.1 2.2-.9 2.5-1.8.3-.9.3-1.6.2-1.8-.1-.2-.4-.3-.8-.5Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #1ebe5d;
  box-shadow: 0 22px 42px rgba(37, 211, 102, 0.34), 0 12px 28px rgba(7, 25, 47, 0.18);
  outline: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 24px;
  }

  .request-header {
    grid-template-columns: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .request-nav {
    display: none;
  }

  .main-nav.info-nav {
    display: none;
  }

  body.nav-open .main-nav {
    display: grid;
  }

  .main-nav {
    right: 24px;
    gap: 8px;
  }

  .hero,
  .trust-section,
  .contact-box,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid rgba(217, 224, 232, 0.95);
  }

  .feature-grid,
  .detail-grid,
  .audience-grid,
  .topics-grid,
  .info-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-copy {
    margin: 0 auto;
  }

  .brand-panel,
  .brand-panel img {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 62px 20px;
  }

  .site-header {
    min-height: 116px;
    padding: 12px 20px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-contact {
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .main-nav {
    right: 20px;
    left: 20px;
    min-width: 0;
  }

  .brand,
  .brand img {
    width: 224px;
  }

  .brand {
    height: 80px;
  }

  .brand img {
    height: 80px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .quick-facts,
  .feature-grid,
  .detail-grid,
  .audience-grid,
  .topics-grid,
  .info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quick-facts {
    display: grid;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 26px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .contact-card-primary,
  .contact-side-card {
    padding: 26px;
  }

  .contact-side-card .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .request-form {
    padding: 24px;
  }

  .sent-card {
    padding: 28px;
  }

  .sent-card h1 {
    font-size: 34px;
  }

  .form-actions .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}
