:root {
  --surface: #ffffff;
  --ink: #17181c;
  --ink-soft: #5f626b;
  --yellow: #ffd400;
  --orange: #ff7300;
  --red: #ff2020;
  --gradient: linear-gradient(
    135deg,
    var(--yellow) 0%,
    var(--orange) 52%,
    var(--red) 100%
  );
  --shadow: 0 28px 70px rgba(22, 24, 29, 0.12);
  --shadow-sm: 0 16px 38px rgba(22, 24, 29, 0.08);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(24, 25, 29, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.scrolled {
  background: rgba(24, 25, 29, 0.97);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
}
.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  width: 215px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  max-height: 82px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  align-items: center;
}
.main-nav a {
  color: #f4f4f5;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gradient);
  transition: right 0.2s ease;
}
.main-nav a:hover {
  color: #fff;
}
.main-nav a:hover::after {
  right: 0;
}
.header-cta {
  margin-left: 6px;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 10px;
  transition: 0.25s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #17181c;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(255, 90, 0, 0.26);
}
.btn-primary:hover {
  box-shadow: 0 16px 36px rgba(255, 90, 0, 0.36);
}
.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
}
.btn-outline {
  color: var(--ink);
  border-color: #d5d6db;
  background: transparent;
}
.btn-outline:hover {
  border-color: #b8bac1;
  background: #f4f4f5;
}
.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.btn-lg {
  min-height: 56px;
  padding-inline: 30px;
}
.btn-full {
  width: 100%;
  margin-top: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  padding: 175px 0 118px;
  background:
    linear-gradient(90deg, rgba(15, 15, 18, 0.88) 0%, rgba(15, 15, 18, 0.72) 35%, rgba(15, 15, 18, 0.28) 65%, rgba(15, 15, 18, 0.10) 100%),
    url('../assets/banner.png') center right / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.22));
}
.hero::after {
  content: none;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(rgba(255,255,255,.18) .6px, transparent .6px);
  background-size: 13px 13px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 85%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-copy {
  max-width: 650px;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow span {
  display: none;
}
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 22px 0 24px;
  max-width: 760px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 650px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.73);
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.82);
}
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 115, 0, 0.13);
  border: 1px solid rgba(255, 115, 0, 0.3);
}
.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: #ff9b2f;
}
.hero-trust strong,
.hero-trust span {
  display: block;
}
.hero-trust strong {
  font-size: 13px;
  color: #fff;
}
.hero-trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.54);
  margin-top: 2px;
}

/* Benefits */
.quick-benefits {
  position: relative;
  z-index: 4;
  margin-top: -55px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.quick-card {
  min-height: 170px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 30px;
  background: #fff;
  border: 1px solid #efeff1;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}
.quick-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #202227;

  color: #ff7a15; /* laranja */
  font: 800 18px/1 "Outfit";
}
.quick-icon svg {
  width: 27px;
  height: 27px;
  fill: #ff7b16;
}
.quick-card h3 {
  font: 700 19px/1.25 "Outfit";
  margin: 3px 0 8px;
}
.quick-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Generic headings */
.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}
.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}
.section-heading.centered .section-kicker {
  justify-content: center;
}
.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}
.section-heading.light p {
  color: rgba(255, 255, 255, 0.62);
}
.section-kicker {
  color: #ff7918;
  margin-bottom: 13px;
}
.section h2,
.coverage h2,
.cta-band h2 {
  font: 800 clamp(38px, 4vw, 58px)/1.07 "Outfit";
  letter-spacing: -0.035em;
  margin: 0;
}
.section-heading p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 18px 0 0;
}

/* About */
.about {
  padding-top: 130px;
}
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 92px;
  align-items: center;
}
.about-visual {
  min-height: 540px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(16, 17, 20, .94) 0%,
      rgba(16, 17, 20, .82) 38%,
      rgba(16, 17, 20, .32) 68%,
      rgba(16, 17, 20, .08) 100%
    ),
    url('../assets/tecnico.webp');

  background-size: cover;
  background-position: 100% center;
  background-repeat: no-repeat;

  box-shadow: var(--shadow);
}
.years-panel {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 66px;
  color: #fff;
}
.years-small {
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
}
.years-panel strong {
  font: 800 170px/0.82 "Outfit";
  letter-spacing: -0.08em;
  margin-top: 30px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.years-label {
  font: 700 38px/1 "Outfit";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.88);
}
.years-panel p {
  margin: 28px 0 0;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}
.fiber-lines {
  display: none;
}
.section-copy h2 {
  max-width: 680px;
}
.section-copy > p {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 24px 0 0;
}
.mission-box {
  margin-top: 34px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 22px;
  background: #f7f7f8;
  border-radius: 20px;
  border: 1px solid #ededf0;
}
.mission-symbol {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient);
  font-size: 20px;
  font-weight: 800;
}
.mission-box strong,
.mission-box span {
  display: block;
}
.mission-box strong {
  font: 700 16px "Outfit";
}
.mission-box span {
  color: var(--ink-soft);
  font-size: 13px;
  margin-top: 3px;
}

/* Awards */

.awards {
  position: relative;
  overflow: hidden;
  background: #1c1e23;
  color: #fff;
}

/* brilho bem discreto no fundo */

.awards::before {
  content: "";
  position: absolute;

  width: 540px;
  height: 540px;

  right: -170px;
  top: -210px;

  border-radius: 50%;

  background: var(--gradient);

  filter: blur(150px);
  opacity: .10;
}

/* cards */

.awards-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 18px;
}

.award-card {
  min-height: 285px;

  padding: 30px 28px;

  border-radius: 24px;

  background: rgba(255,255,255,.045);

  border: 1px solid rgba(255,255,255,.10);

  transition:
    border-color .25s ease,
    background .25s ease;
}

.award-card:hover {
  background: rgba(255,255,255,.055);

  border-color: rgba(255,122,21,.30);
}

/* círculo dos ícones */

.award-icon {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  margin-bottom: 28px;

  border-radius: 50%;

  background: #292c31;

  border: 1px solid rgba(255,255,255,.07);
}

/* ícones */

.award-icon svg {
  width: 34px;
  height: 34px;

  fill: none;

  stroke: #ff7a15;

  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* títulos */

.award-card h3 {
  margin: 0 0 12px;

  color: #fff;

  font-family: "Outfit", sans-serif;

  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

/* textos */

.award-card p {
  margin: 0;

  max-width: 270px;

  color: rgba(255,255,255,.60);

  font-size: 14px;
  line-height: 1.7;
}

/* Plans */
.plans {
  background: #f8f8f9;
}
.plans-grid {
  max-width: 940px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 38px;
  background: #fff;
  border: 1px solid #e7e7ea;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}
.plan-featured {
  border-color: rgba(255, 115, 0, 0.28);
  position: relative;
  overflow: hidden;
}
.plan-featured::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gradient);
  right: -85px;
  top: -85px;
  opacity: 0.16;
}
.plan-label {
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1f1f3;
  color: #555861;
}
.plan-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #202227;
  margin: 28px 0 24px;
}
.plan-icon-wrap svg {
  width: 29px;
  height: 29px;
  fill: #ff7a15;
}
.plan-card h3 {
  font: 700 26px/1.2 "Outfit";
  margin: 0 0 12px;
}
.plan-card > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.plan-card ul {
  list-style: none;
  margin: 26px 0 34px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.plan-card li {
  position: relative;
  padding-left: 27px;
  color: #4e5159;
  font-size: 13px;
}
.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
  background: #fff1e6;
  color: #ff6e0c;
}

/* Coverage */
.coverage {
  padding: 100px 0;
  background: #fff;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.coverage-copy p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 15px;
  margin: 22px 0 0;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  font-weight: 800;
  font-size: 14px;
}
.text-link span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translateX(4px);
}
.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.coverage-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: #f8f8f9;
  border: 1px solid #ededf0;
}
.coverage-item:last-child {
  grid-column: 1 / -1;
}
.coverage-pin {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff6b08;
  background: #fff;
  box-shadow: 0 5px 18px rgba(20, 20, 20, 0.06);
  font-size: 9px;
}
.coverage-item strong,
.coverage-item small {
  display: block;
}
.coverage-item strong {
  font: 700 16px "Outfit";
}
.coverage-item small {
  color: #878991;
  font-size: 11px;
  margin-top: 2px;
}

/* CTA */
.cta-band {
  padding: 72px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}
.cta-band::before {
  width: 270px;
  height: 270px;
  left: -100px;
  bottom: -150px;
}
.cta-band::after {
  width: 380px;
  height: 380px;
  right: -170px;
  top: -230px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}
.cta-kicker {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: rgba(20, 20, 20, 0.63);
}
.cta-band h2 {
  font-size: clamp(31px, 3vw, 44px);
  max-width: 760px;
}

/* FAQ */
.faq-list {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid #e8e8eb;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(20, 20, 22, 0.035);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 25px;
  cursor: pointer;
  font: 700 16px/1.35 "Outfit";
  color: var(--ink);
}
.faq-plus {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f1f3;
  font: 700 20px/1 Inter;
  transition:
    transform 0.25s,
    background 0.25s;
}
.faq-item.active .faq-plus {
  transform: rotate(45deg);
  background: #ffede0;
  color: #ff6500;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 25px 24px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: #18191d;
  color: #fff;
  padding: 74px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.8fr;
  gap: 60px;
  padding-bottom: 58px;
}
.footer-brand img {
  width: 220px;
  max-height: 150px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}
.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-col h3 {
  font: 700 15px "Outfit";
  margin: 0 0 8px;
}
.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #ff8a26;
}
.footer-col strong {
  color: #fff;
  font-size: 15px;
}
.whatsapp-float {
  position: fixed;
  z-index: 900;

  right: 24px;
  bottom: 24px;

  width: auto;
  height: 42px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  gap: 0;

  border-radius: 10px;

  background: #25d366;
  color: #fff;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;

  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.22);
  transition: 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  margin: 0;
  fill: #fff;
}

.whatsapp-float span {
  white-space: nowrap;
}

/* Animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-bottom {
  min-height: 78px;
  padding: 20px 85px 20px 0;

  border-top: 1px solid rgba(255,255,255,.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,.72);
  transition: color .2s ease;
}

.footer-bottom a:hover {
  color: #ff7a15;
}

.developer-credit {
  color: rgba(255,255,255,.48);
  white-space: nowrap;
}

.developer-credit a {
  color: #fff;
  font-weight: 700;
}

.developer-credit a:hover {
  color: #ff7a15;
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }
  .main-nav a {
    font-size: 13px;
  }
  .hero-grid {
    gap: 40px;
  }
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quick-card:last-child {
    grid-column: 1 / -1;
  }
  .split-grid {
    gap: 56px;
  }
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-top .footer-col:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 78px;
  }
  .container {
    width: min(calc(100% - 30px), var(--container));
  }
  .section {
    padding: 82px 0;
  }
  .nav-wrap {
    height: 78px;
  }
  .brand {
    width: 137px;
  }
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    padding: 24px 20px 34px;
    background: #18191d;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    font-size: 16px;
    padding: 13px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .main-nav a::after {
    display: none;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero {
    min-height: auto;
    padding: 138px 0 105px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .hero-copy {
    max-width: 740px;
  }
  .quick-benefits {
    margin-top: -45px;
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-card:last-child {
    grid-column: auto;
  }
  .split-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    min-height: 460px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
  .plan-card {
    min-height: 0;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-top .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }
  .hero {
    padding-top: 122px;
    padding-bottom: 90px;
  }
  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-trust {
    align-items: flex-start;
  }
  .quick-card {
    padding: 23px;
    min-height: 0;
  }
  .quick-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .section h2,
  .coverage h2 {
    font-size: 38px;
  }
  .about {
    padding-top: 96px;
  }
  .about-visual {
    min-height: 410px;
    border-radius: 26px;
  }
  .years-panel {
    padding: 40px;
  }
  .years-panel strong {
    font-size: 132px;
  }
  .years-label {
    font-size: 31px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .award-card {
    min-height: 235px;
  }
  .plans-grid {
    gap: 16px;
  }
  .plan-card {
    padding: 28px 23px;
  }
  .coverage-list {
    grid-template-columns: 1fr;
  }
  .coverage-item:last-child {
    grid-column: auto;
  }
  .cta-band {
    padding: 58px 0;
  }
  .cta-band h2 {
    font-size: 34px;
  }
  .cta-inner .btn {
    width: 100%;
  }
  .faq-question {
    padding: 19px 18px;
    font-size: 15px;
  }
  .faq-answer p {
    padding: 0 18px 20px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: fit-content;
    height: 44px;
    padding: 0 15px;
    font-size: 12px;
    border-radius: 11px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Cookies */
.fundoCookie {
  background: #18191d;
  padding: 14px 20px;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
}

.cookieSurpresa {
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.textoCookie {
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: 12px;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

.textoCookie a {
  color: #ff8a26;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.botaoCookie {
  background: linear-gradient(
    135deg,
    #ffd400 0%,
    #ff7300 52%,
    #ff2020 100%
  );

  border: 0;
  border-radius: 8px;

  color: #17181c;

  padding: 10px 18px;

  cursor: pointer;

  font-size: 11px;
  font-weight: 800;
  font-family: "Inter", Arial, sans-serif;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.botaoCookie:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 115, 0, 0.25);
}

@media (max-width: 767px) {
  .fundoCookie {
    padding: 14px;
  }

  .cookieSurpresa {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .textoCookie {
    font-size: 12px;
    text-align: center;
  }

  .botaoCookie {
    width: 100%;
    margin-left: 0;
    min-height: 42px;
  }
}