:root {
  --red: #f20d16;
  --red-dark: #c9000a;
  --red-deep: #8d070e;
  --black: #0b0b0d;
  --black-soft: #17171a;
  --gray-900: #202024;
  --gray-700: #5d5d65;
  --gray-500: #86868d;
  --gray-300: #d9d9dd;
  --gray-200: #e7e7ea;
  --gray-100: #f6f6f7;
  --white: #ffffff;
  --container: 1200px;
  --radius: 12px;
  --shadow: 0 12px 34px rgba(11, 11, 13, 0.08);
  --shadow-red: 0 18px 42px rgba(242, 13, 22, 0.15);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--gray-900);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

p {
  color: var(--gray-700);
}

section {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(100% - 64px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(242, 13, 22, 0.35);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 8px 22px rgba(242, 13, 22, 0.22);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 11px 25px rgba(242, 13, 22, 0.3);
}

.button-large {
  min-height: 52px;
  padding-inline: 25px;
}

.button-full {
  width: 100%;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.button-outline-light:hover {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.section-light {
  background: var(--gray-100);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--black);
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #ff5960;
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 11, 13, 0.08);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 152px;
  max-height: 58px;
  object-fit: contain;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
  margin-left: auto;
}

.main-navigation a {
  position: relative;
  padding: 29px 0 25px;
  color: var(--gray-900);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 43px;
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
}

/* Hero */

.hero {
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 38%, rgba(242, 13, 22, 0.24), transparent 28%),
    linear-gradient(115deg, #080809 0%, #111113 56%, #31070a 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  z-index: -2;
  width: 570px;
  height: 570px;
  content: "";
  border: 1px solid rgba(242, 13, 22, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(242, 13, 22, 0.04),
    0 0 0 78px rgba(242, 13, 22, 0.035);
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(242, 13, 22, 0.35);
  border-radius: 50%;
  pointer-events: none;
}

.hero-decoration-one {
  top: -90px;
  left: -105px;
  width: 270px;
  height: 270px;
}

.hero-decoration-two {
  bottom: 65px;
  left: 43%;
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow:
    32px -60px 0 rgba(242, 13, 22, 0.6),
    -45px 65px 0 rgba(242, 13, 22, 0.35);
}

.hero-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 46px;
  padding-block: 74px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.eyebrow-icon {
  width: 21px;
  color: #ff3038;
}

.eyebrow-icon svg,
.speed-badge-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 5.7vw, 5.15rem);
  font-weight: 800;
}

.hero h1 strong {
  display: block;
  color: var(--red);
  font-weight: 800;
}

.hero-description {
  max-width: 590px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.81);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 25px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-highlights span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 470px;
}

.hero-media::before {
  position: absolute;
  top: 4%;
  right: 0;
  bottom: 4%;
  left: 5%;
  content: "";
  background: linear-gradient(135deg, rgba(242, 13, 22, 0.8), transparent 70%);
  border-radius: 45% 12px 12px 45%;
  filter: blur(20px);
  opacity: 0.35;
}

.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  border-radius: 34% 12px 12px 34%;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 11, 13, 0.65), transparent 28%);
  border-radius: 34% 12px 12px 34%;
  pointer-events: none;
}

.speed-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  color: var(--white);
  background: rgba(11, 11, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.speed-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 500;
}

.speed-badge-icon {
  width: 30px;
  color: var(--red);
}

/* Benefits */

.benefits {
  padding: 34px 0 58px;
}

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

.benefit-card {
  min-height: 210px;
  padding: 27px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(11, 11, 13, 0.055);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(11, 11, 13, 0.045);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.line-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 17px;
  place-items: center;
  color: var(--red);
  background: rgba(242, 13, 22, 0.07);
  border-radius: 50%;
}

.line-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3 {
  margin-bottom: 9px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.89rem;
}

/* Plans */

.plans {
  padding: 76px 0 72px;
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.plan-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(11, 11, 13, 0.055);
}

.plan-card-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 31px;
}

.plan-name {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 800;
}

.plan-card h3 {
  margin-bottom: 9px;
  color: var(--black);
  font-size: 3.15rem;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.plan-card h3 span {
  margin-left: 2px;
  font-size: 0.54em;
}

.plan-intro {
  min-height: 48px;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.plan-price {
  display: flex;
  min-height: 78px;
  align-items: flex-end;
  margin-bottom: 19px;
  padding-bottom: 18px;
  color: var(--black);
  border-bottom: 1px solid var(--gray-200);
}

.plan-price .currency {
  align-self: center;
  margin-right: 7px;
  font-size: 0.95rem;
  font-weight: 800;
}

.plan-price strong {
  color: var(--red);
  font-size: 3.55rem;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.plan-price .period {
  margin: 0 0 4px 4px;
  font-size: 0.9rem;
  font-weight: 700;
}

.plan-features {
  display: grid;
  gap: 10px;
  margin: 0 0 25px;
  padding: 0;
  color: var(--gray-700);
  font-size: 0.89rem;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-features span {
  color: var(--red);
  font-weight: 900;
}

.button-plan {
  width: 100%;
  margin-top: auto;
  color: var(--red);
  background: var(--white);
  border-color: var(--red);
}

.button-plan:hover {
  color: var(--white);
  background: var(--red);
}

.plan-card-featured {
  border: 2px solid var(--red);
  box-shadow: var(--shadow-red);
}

.recommended-label {
  padding: 12px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-card-featured .plan-card-content {
  padding-top: 25px;
}

.plans-note {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--gray-500);
  font-size: 0.8rem;
  text-align: center;
}

/* Audiences */

.audiences {
  padding: 70px 0;
}

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

.photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 11, 13, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
}

.photo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.photo-card:hover .photo-card-media img {
  transform: scale(1.025);
}

.photo-card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 25px 27px 28px;
}

.card-number {
  color: rgba(242, 13, 22, 0.18);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.photo-card h3 {
  margin-bottom: 9px;
  font-size: 1.45rem;
}

.photo-card p {
  margin-bottom: 13px;
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 800;
}

/* Why choose */

.why-choose {
  isolation: isolate;
  padding: 70px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 30%, rgba(242, 13, 22, 0.12), transparent 28%),
    var(--black);
}

.waves-decoration {
  position: absolute;
  right: -4%;
  bottom: -14%;
  z-index: -1;
  width: 72%;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.7;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.45fr;
  align-items: center;
  gap: 60px;
}

.why-heading h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
}

.why-heading h2 strong {
  display: block;
  color: var(--red);
}

.why-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

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

.why-feature {
  position: relative;
}

.why-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  border-radius: 50%;
  box-shadow: 0 9px 22px rgba(242, 13, 22, 0.27);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-feature h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1rem;
}

.why-feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.86rem;
}

/* Coverage */

.coverage {
  padding: 68px 0;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.coverage-content h2 {
  max-width: 530px;
  margin-bottom: 17px;
  color: var(--black);
}

.coverage-content > p {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: 1.02rem;
}

.coverage-list {
  display: grid;
  gap: 9px;
  margin: 0 0 27px;
  padding: 0;
  color: var(--gray-700);
  list-style: none;
}

.coverage-list li {
  display: flex;
  gap: 9px;
}

.coverage-list span {
  color: var(--red);
  font-weight: 900;
}

.coverage-media {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.coverage-halo {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  background: rgba(242, 13, 22, 0.07);
  border: 1px solid rgba(242, 13, 22, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(242, 13, 22, 0.025),
    0 0 0 70px rgba(242, 13, 22, 0.018);
}

.coverage-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 570px);
  object-fit: contain;
}

/* Use cases */

.use-cases {
  padding: 70px 0;
  background: var(--white);
}

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

.use-case-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 9px 30px rgba(11, 11, 13, 0.055);
}

.use-case-card > img {
  width: 100%;
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
}

.use-case-content {
  position: relative;
  padding: 25px 27px 27px;
}

.use-case-content::after {
  position: absolute;
  bottom: 0;
  left: 27px;
  width: 54px;
  height: 3px;
  content: "";
  background: var(--red);
}

.use-case-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-card h3 {
  max-width: 450px;
  margin-bottom: 9px;
  font-size: 1.28rem;
}

.use-case-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* FAQ */

.faq {
  padding: 68px 0 74px;
}

.faq-container {
  max-width: 970px;
}

.accordion {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(11, 11, 13, 0.045);
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--gray-200);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 65px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 22px;
  color: var(--black);
  background: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:hover {
  color: var(--red);
}

.accordion-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] {
  color: var(--red);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  padding: 0 58px 19px 22px;
}

.accordion-panel p {
  margin: 0;
  font-size: 0.9rem;
}

/* Final CTA */

.final-cta {
  isolation: isolate;
  padding: 46px 0;
  color: var(--white);
  background: linear-gradient(112deg, var(--red-dark), var(--red) 55%, #ff222a);
}

.final-cta::before {
  position: absolute;
  top: -170px;
  right: -100px;
  z-index: -1;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.035),
    0 0 0 78px rgba(255, 255, 255, 0.025);
}

.final-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.final-cta-kicker {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
}

.final-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.button-white {
  color: var(--red-dark);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(76, 0, 4, 0.18);
}

.button-white:hover {
  color: var(--red);
  background: #fff5f5;
}

.button-white svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer */

.site-footer {
  padding: 52px 0 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 115%, rgba(242, 13, 22, 0.18), transparent 30%),
    var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 37px;
}

.footer-brand img {
  width: 175px;
  max-height: 65px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 240px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.site-footer h2 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: -0.015em;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-navigation h2 {
  margin-bottom: 7px;
}

.footer-navigation a,
.footer-whatsapp {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.85rem;
}

.footer-navigation a:hover,
.footer-whatsapp:hover {
  color: var(--white);
}

.footer-audience p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-phone span {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

/* Floating WhatsApp */

.whatsapp-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #1faa59;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition), background var(--transition);
}

.whatsapp-floating:hover {
  background: #188a49;
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-floating svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive */

@media (max-width: 1050px) {
  .header-inner {
    gap: 18px;
  }

  .main-navigation {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .why-heading {
    max-width: 630px;
  }

  .why-heading h2 strong {
    display: inline;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-contact {
    grid-column: 3;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 136px;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    padding: 0;
    color: var(--black);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .menu-lines {
    display: grid;
    width: 25px;
    gap: 5px;
  }

  .menu-lines span {
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 70px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    overflow-y: auto;
    padding: 12px 20px 20px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 15px 30px rgba(11, 11, 13, 0.12);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation a {
    padding: 14px 3px;
    border-bottom: 1px solid var(--gray-200);
  }

  .main-navigation a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 34px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(2.75rem, 9vw, 4.4rem);
  }

  .hero-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-media > img,
  .hero-media::after {
    border-radius: 13px;
  }

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

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .plan-card-content {
    padding: 29px;
  }

  .plan-intro {
    min-height: 0;
  }

  .audience-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .why-features {
    gap: 20px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .coverage-media {
    min-height: 300px;
  }

  .final-cta-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }

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

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

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

  .site-header {
    position: relative;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .hero-description {
    margin-bottom: 23px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-highlights {
    display: grid;
    gap: 10px;
    margin-top: 21px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media > img {
    position: relative;
    object-position: 57% center;
  }

  .hero-media::after {
    display: none;
  }

  .speed-badge {
    right: 10px;
    bottom: 10px;
    padding: 9px 11px;
  }

  .benefits {
    padding: 26px 0 44px;
  }

  .benefits-grid {
    gap: 10px;
  }

  .benefit-card {
    min-height: 184px;
    padding: 20px 12px;
  }

  .line-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 13px;
  }

  .line-icon svg {
    width: 31px;
    height: 31px;
  }

  .benefit-card h3 {
    font-size: 0.9rem;
  }

  .benefit-card p {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .plans {
    padding: 48px 0;
  }

  .plans-grid {
    gap: 15px;
  }

  .plan-card-content {
    padding: 25px 22px;
  }

  .plan-card h3 {
    font-size: 2.75rem;
  }

  .plan-price strong {
    font-size: 3.15rem;
  }

  .audiences,
  .use-cases,
  .faq {
    padding: 44px 0;
  }

  .photo-card-media,
  .use-case-card > img {
    aspect-ratio: 16 / 9;
  }

  .photo-card-content {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 21px 20px 24px;
  }

  .card-number {
    font-size: 1.35rem;
  }

  .why-choose {
    padding: 44px 0;
  }

  .why-grid {
    gap: 30px;
  }

  .why-heading h2 strong {
    display: block;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-feature {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
  }

  .why-icon {
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .why-icon svg {
    width: 28px;
    height: 28px;
  }

  .waves-decoration {
    right: -25%;
    width: 130%;
    opacity: 0.4;
  }

  .coverage {
    padding: 44px 0;
  }

  .coverage-media {
    min-height: 220px;
  }

  .coverage-content .button {
    width: 100%;
  }

  .use-case-content {
    padding: 21px 20px 24px;
  }

  .use-case-content::after {
    left: 20px;
  }

  .accordion-trigger {
    min-height: 61px;
    padding: 15px 16px;
    font-size: 0.88rem;
  }

  .accordion-panel {
    padding: 0 45px 17px 16px;
  }

  .final-cta {
    padding: 38px 0;
    text-align: center;
  }

  .final-cta-content {
    align-items: stretch;
    gap: 25px;
  }

  .final-cta-actions {
    flex-direction: column;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 165px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-floating {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-floating svg {
    width: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}



/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}