:root {
  --background: #f7fbf8;
  --surface: #ffffff;
  --surface-soft: #eef8f0;
  --surface-glass: rgba(255, 255, 255, 0.8);
  --foreground: #0e1911;
  --muted: #5f6b63;
  --line: rgba(17, 61, 29, 0.13);
  --green: #b0b6b1;
  --green-strong: #c1cec4;
  --green-bright: #bbbdbb;
  --green-soft: #cfcfcf;
  --deep: #07130a;
  --deep-soft: #0f2a17;
  --cyan: #56c56a;
  --violet: #56c56a;
  --danger: #d92d20;
  --warning: #ffb648;
  --shadow-sm: 0 12px 30px rgba(17, 68, 31, 0.08);
  --shadow-md: 0 28px 70px rgba(9, 44, 19, 0.15);
  --shadow-green: 0 22px 54px rgba(44, 70, 50, 0.26);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
}

html[data-theme="light"]{
  --background: #f7fbf8;
  --surface: #ffffff;
  --surface-soft: #eef8f0;
  --surface-glass: rgba(255,255,255,.82);
  --foreground: #0e1911;
  --muted: #5f6b63;
  --line: rgba(17,61,29,.13);
  --green: #2fa94c;
  --green-strong: #22863a;
  --green-soft: #b9e7c1;
  --green-bright: #05a405;
  --deep: #07130a;
}

html[data-theme="dark"] {
  --background: #08110b;
  --surface: #102016;
  --surface-soft: #15281b;
  --surface-glass: rgba(10,18,12,.82);
  --foreground: #f5f7f6;
  --muted: #b3beb5;
  --line: rgba(255,255,255,.08);
  --green: #ffffff;
  --green-strong: #ffffff;
  --green-bright: #05a405; /* Corrigido de ##05a405 para #05a405 */
  --green-soft: #baf6c7;
  --deep: #050805;
  --deep-soft: #0b140d;
  --shadow-sm: 0 14px 34px rgba(0,0,0,.35);
  --shadow-md: 0 28px 70px rgba(0,0,0,.5);
}

[data-contrast="high"] {
  --background: #000;
  --surface: #000;
  --surface-soft: #111;
  --foreground: #fff;
  --muted: #eee;
  --line: #fff;
  --green: #05a405;
  --green-strong: #05a405;
}

[data-text-scale="large"] {
  font-size: 112.5%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--green) var(--background);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

img,
svg {
  display: block;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #fff;
  color: #07130a;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  /*padding-block: clamp(5rem, 9vw, 8.5rem);*/  
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.3rem, 5vw, 4rem);
}

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

.section-heading h2,
.services-copy h2,
.business-layout h2,
.about-layout h2 {
  margin-top: 0.65rem;
  font-size: clamp(2.35rem, 5vw, 4.7rem); /* Substituído Gotham() por clamp() */
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p,
.services-copy > p,
.business-layout > div > p,
.about-layout > div > p {
  max-width: 650px;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem); /* Substituído Gotham() por clamp() */
  line-height: 1.75;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

/* ... demais classes do seu código mantidas com correções pontuais ... */

.section-kicker--light {
  color: var(--green-soft);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 820;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-lg {
  min-height: 54px;
  padding-inline: 1.35rem;
}

.button-primary {
  background: linear-gradient(135deg, #2fa94c, var(--green));
  color: #fff;
  box-shadow: var(--shadow-green);
}

.button-primary:hover {
  background: linear-gradient(135deg, #37bd57, var(--green-strong));
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .button-dark{
    background:#fff;
    color:#08110b;
}

html[data-theme="dark"] .button-light{
    background:#102016;
    color:#fff;
    border:1px solid var(--line);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--foreground);
}


html[data-theme="dark"] .site-header{
    background:rgba(8,17,11,.82);
    border-bottom:1px solid var(--line);
}

html[data-theme="dark"] .brand-wordmark{
    color:#fff;
}

.announcement {
  background: var(--deep);
  color: #d7e8da;
  font-size: 0.76rem;
  font-weight: 700;
}

.announcement-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.announcement-inner svg {
  width: 14px;
  height: 14px;
  color: var(--green-soft);
}

.navigation-bar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--deep);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-wordmark b {
  color: var(--green);
  font: inherit;
}

.brand-wordmark--light {
  color: #fff;
}

.brand-wordmark--light b {
  color: #000;
}

.brand-wordmark--large {
  font-size: Gotham(3.2rem, 8vw, 5.5rem);
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.2rem);
  font-size: 0.91rem;
  font-weight: 750;
}

.desktop-navigation a {
  position: relative;
  padding-block: 0.7rem;
  color: var(--foreground);
  transition: color .2s ease;
}

.desktop-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  border-radius: 9px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-navigation a:hover {
  color: var(--green);
}

.desktop-navigation a:hover::after {
  transform: scaleX(1);
}

html[data-theme="light"] .desktop-navigation a {
  color: #0e1911;
}

html[data-theme="dark"] .desktop-navigation a {
  color: #ffffff;
}

html[data-theme="dark"] .desktop-navigation a:hover {
  color: var(--green);
}

.brand-wordmark {
  color: var(--deep);
}

.brand-wordmark {
  color: var(--foreground);
}

.navigation-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-whatsapp {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.0rem;
  padding-inline: 1rem;
  border-radius: 999px;
  background: #05a405;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(38, 143, 63, 0.22);
}

.header-whatsapp svg,
.round-button svg {
  width: 18px;
  height: 18px;
}

.round-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #08b108;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.round-button:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.mobile-navigation {
  width: min(calc(100% - 2rem), 520px);
  margin: 0.6rem auto 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.mobile-navigation[hidden] {
  display: none;
}

.mobile-navigation a {
  display: block;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
}

.mobile-navigation a:last-child {
  border-bottom: 0;
  background: var(--green);
  color: #fff;
}

.accessibility-panel {
  position: fixed;
  z-index: 1400;
  top: 118px;
  right: max(1rem, calc((100vw - var(--shell)) / 2));
  width: min(330px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  color: var(--foreground);
}

.accessibility-panel[hidden] {
  display: none !important;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.panel-heading > div {
  display: grid;
  gap: 0.2rem;
}

.panel-heading span,
.accessibility-panel p {
  color: var(--muted);
  font-size: 0.75rem;
}

.panel-heading strong {
  color: var(--foreground);
}

.panel-heading button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--foreground);
  cursor: pointer;
}

.accessibility-panel > button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--foreground);
  cursor: pointer;
  font-weight: 750;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.accessibility-panel > button:hover {
  border-color: var(--green);
  background: var(--surface);
}

.accessibility-panel > button span {
  min-width: 30px;
  color: var(--green);
  font-weight: 900;
}

.accessibility-panel p {
  margin-top: 0.9rem;
  line-height: 1.5;
}

.hero {
   position: relative;
   /*isolation: isolate;*/
   /*overflow: hidden;*/
   /*min-height: min(840px, calc(100vh - 108px));*/
 background: linear-gradient(135deg, #050d08 0%, #081e0e 50%, #143d22 100%);
  color: #fff;
}

.network-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.34;
  background-image: #081e0e;
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 72% 48%, #000, transparent 68%);
}

.network-grid::before,
.network-grid::after {
  position: absolute;
  border: 1px solid rgba(65, 255, 106, 0.22);
  border-radius: 50%;
  content: "";
}

.network-grid::before {
  width: 510px;
  height: 510px;
  top: 15%;
  right: 7%;
}

.network-grid::after {
  width: 680px;
  height: 680px;
  top: 5%;
  right: 0;
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb--one {
  width: 410px;
  height: 410px;
  right: -120px;
  bottom: -160px;
  background: #081e0e;
  filter: blur(55px);
}

.hero-orb--two {
  width: 240px;
  height: 240px;
  top: 12%;
  left: 44%;
  background: #081e0e;
  filter: blur(45px);
}

.hero-layout {
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
   /*padding-block: 2rem;*/
}

.hero-copy {
  max-width: 650px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  color: var(--green-soft);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 7px rgba(65, 255, 106, 0.1), 0 0 24px var(--green-bright);
  animation: pulse-dot 2.2s infinite;
}

.hero h1 {
  max-width: 1000px;
  font-size: clamp(4rem, 6.5rem, 6rem);
  font-weight: 900;
  letter-spacing: -0.080em;
  line-height: 0.90;
}

.hero h1 span {
  display: block;
  margin-top: 0.14em;
  background: linear-gradient(100deg, #ffffff 0%, #05a405 100%);
  background-clip: text;
  -webkit-background-clip: text; 
  color: transparent;
}

.hero-lead {
  max-width: 590px;
  margin-top: 1.6rem;
  color: #c5d7c8;
  font-size: Gotham(1.05rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  margin-top: 2rem;
  color: #adc2b0;
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-proof svg {
  width: 15px;
  height: 15px;
  color: var(--green-soft);
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.hero-visual--video {
  isolation: isolate;
}

.hero-visual--video::before {
  position: absolute;
  z-index: -1;
  width: min(470px, 88%);
  aspect-ratio: 0.84;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 255, 106, 0.26) 0%, rgba(38, 143, 63, 0.12) 48%, transparent 72%);
  filter: blur(24px);
  content: "";
}

.hero-video-frame {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 784 / 1168;
  /*display: grid;*/
  place-items: center;
  overflow: hidden;
  border-radius: 42% 42% 34% 34% / 26% 26% 20% 20%;
  background:  transparent;
  filter: #203a16;
  /*-webkit-mask-image: radial-gradient(ellipse 67% 58% at 50% 49%, #000 48%, rgba(0, 0, 0, 0.92) 70%, transparent 100%);*/
  /*mask-image: radial-gradient(ellipse 67% 58% at 50% 49%, #000 48%, rgba(0, 0, 0, 0.92) 70%, transparent 100%);*/
}

.hero-robot-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.speed-core {
  position: relative;
  width: min(340px, 70vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #0d140d;
  border-radius: 50%;
  background: #0d140d;
 box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.speed-core::before {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.speed-orbit {
  position: absolute;
  border: 1px dashed rgba(143, 239, 119, 0.32);
  border-radius: 50%;
  animation: rotate-orbit 20s linear infinite;
}

.speed-orbit::before {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 15%;
  left: 10%;
  border-radius: 50%;
  background: #0d140d;
  box-shadow: 0 0 16px var(--green-bright);
  content: "";
}

.speed-orbit--one {
  inset: -12%;
}

.speed-orbit--two {
  inset: -25%;
  border-style: solid;
  border-color: rgba(0, 212, 255, 0.14);
  animation-direction: reverse;
  animation-duration: 28s;
}

.speed-value {
  position: relative;
  display: grid;
  justify-items: center;
  line-height: 0.8;
}

.speed-value span {
  color: var(--green-soft);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.speed-value strong {
 font-size: clamp(2rem,5vw,4rem);
  font-weight: 900;
  letter-spacing: -0.1em;
}

.speed-value b {
  margin-top: 0.1rem;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card {
  position: absolute;
  min-width: 188px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #0d140d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  animation: float-card 5s ease-in-out infinite;
}

.signal-card > svg {
  width: 20px;
  color: var(--green-soft);
}

.signal-card span {
  display: grid;
  gap: 0.18rem;
  color: #a9bdac;
  font-size: 0.73rem;
}

.signal-card b {
  color: #fff;
  font-size: 0.88rem;
}

.signal-card--home {
  top: 12%;
  left: -4%;
}

.signal-card--company {
  right: -2%;
  bottom: 16%;
  animation-delay: -1.4s;
}

.signal-card--support {
  bottom: 2%;
  left: 10%;
  animation-delay: -2.7s;
}

.scroll-cue {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #9bb0a0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 18px;
  height: 27px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 99px;
}

.scroll-cue span::after {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 2px;
  height: 6px;
  border-radius: 9px;
  background: #0d140d;
  content: "";
  transform: translateX(-50%);
  animation: scroll-dot 1.8s infinite;
}

.app-section {
  padding-block: 1.4rem;
  border-top: 0px solid #1c3a24;
  background: #0d140d;
  color: #fff;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.app-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-icon-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 239, 119, 0.22);
  border-radius: 15px;
  background:#0d140d;
  color: var(--green-soft);
}

.app-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.app-copy h2 {
  margin-top: 0.25rem;
  font-size: Gotham(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
}

.app-copy p {
  margin-top: 0.3rem;
  color: #a8bbac;
  font-size: 0.9rem;
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.store-button {
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid #38513d;
  border-radius: 13px;
  background: #020503;
  opacity: 0.74;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.store-button:hover,
.store-button.is-priority {
  border-color: var(--green-soft);
  opacity: 1;
  transform: translateY(-2px);
}

.store-button svg {
  width: 20px;
}

.store-button span {
  display: grid;
}

.store-button small {
  color: #9eb0a1;
  font-size: 0.63rem;
}

.store-button strong {
  font-size: 0.93rem;
}

.plans-section {
  overflow: hidden;
}

.plans-section::before {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -300px;
  left: -300px;
  border-radius: 50%;
  background: #0d140d;
  filter: blur(70px);
  content: "";
}

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

.plan-card {
  position: relative;
  min-height: auto !important;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem !important; /* Padding ainda menor e mais compacto */
  gap: 0.75rem !important; /* Controla o espaço entre os elementos internos se usar flex */
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #0d140d;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

/* Reduz o espaçamento de títulos, preços e textos dentro da caixa */
.plan-card h3,
.plan-card .plan-title,
.plan-card .plan-price,
.plan-card .plan-speed,
.plan-card ul,
.plan-card p {
  margin-bottom: 0.5rem !important;
  margin-top: 0 !important;
}

/* Compacta a lista de benefícios/itens do plano */
.plan-card ul li {
  margin-bottom: 0.35rem !important;
  font-size: 0.92rem !important;
}

/* Remove o degradê antigo e padroniza os botões dos planos com um estilo moderno e sólido */
.plan-card .button,
.plan-card-actions .button {
  background: var(--plan-accent, var(--green)) !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  transition: transform 180ms ease, opacity 180ms ease !important;
}

/* Reduz respiros internos apenas no card de 600 megas para o botão subir */
.plan-card--cyan {
  padding-bottom: 1.2rem !important;
}

/* Puxa o botão de 600 megas bem mais para cima */
.plan-card--cyan .button-primary,
.plan-card--cyan .plan-card-actions {
  margin-top: -5px !important;
  position: relative !important;
  z-index: 2 !important;
}


/* Controla o alinhamento interno para eles não descerem */
.plan-card--lime,
.plan-card--violet {
  justify-content: flex-start !important;
}
/* Reduz o espaço livre no final do card de 600 megas para ele não descer */
.plan-card--cyan {
  justify-content: flex-start !important;
}

/* Efeito ao passar o mouse por cima do botão */
.plan-card .button:hover,
.plan-card-actions .button:hover {
  transform: translateY(-2px) !important;
  opacity: 0.9 !important;
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: #0d140d;
  content: "";
}

.plan-card::after {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -70px;
  border-radius: 50%;
  background: #0d140d;
  filter: blur(30px);
  content: "";
}

.plan-card:hover {
  border-color: color-mix(in srgb, var(--plan-accent, var(--green)) 42%, transparent);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

/* Definição correta das variáveis de accent para cada plano */
.plan-card--lime {
  --plan-accent: #56c56a;
}

.plan-card--cyan {
  --plan-accent: #56c56a;
}

.plan-card--violet {
  --plan-accent: #56c56a;
}

/* Aplicação das cores nos textos de velocidade */
.plan-card--lime .plan-speed strong,
.plan-card--lime .plan-speed span {
  color: var(--plan-accent) !important;
}

.plan-card--cyan .plan-speed strong,
.plan-card--cyan .plan-speed span {
  color: var(--plan-accent) !important;
}

.plan-card--violet .plan-speed strong,
.plan-card--violet .plan-speed span {
  color: var(--plan-accent) !important;
}

/* Correção e padronização da animação de hover, elevação e transição para todos os planos */
.plan-card,
.plan-card--lime,
.plan-card--cyan,
.plan-card--violet,
.plan-card--featured {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease !important;
}

/* Animação de hover e elevação para o plano Lime (ex: 300 megas) */
.plan-card--lime:hover {
  border-color: #56c56a !important;
  box-shadow: 0 32px 80px rgba(86, 197, 106, 0.22) !important;
  transform: translateY(-7px) !important;
}

/* Animação de hover e elevação para o plano Cyan (600 megas / destacado) */
.plan-card--cyan:hover,
.plan-card--featured:hover {
  border-color: #56c56a !important;
  box-shadow: 0 32px 80px rgba(0, 212, 255, 0.25) !important;
  transform: translateY(-7px) !important;
}

/* Animação de hover e elevação para o plano Violet (ex: 800 megas) */
.plan-card--violet:hover {
  border-color: #56c56a !important;
  box-shadow: 0 32px 80px rgba(139, 92, 246, 0.22) !important;
  transform: translateY(-7px) !important;
}

/* Adiciona a borda colorida no topo de cada card de plano usando sua respectiva cor de destaque */
.plan-card {
  border-top: 5px solid var(--plan-accent, var(--green)) !important;
}

.plan-card--lime {
  border-top-color: #56c56a !important;
}

.plan-card--cyan {
  border-top-color: #56c56a !important;
}

.plan-card--violet {
  border-top-color: #56c56a !important;
}

.plan-card--cyan:hover,
.plan-card--featured:hover {
  border-color: #56c56a !important;
  box-shadow: 0 32px 80px rgba(0, 212, 255, 0.25) !important;
  transform: translateY(-7px) !important;
}

/* Força total para igualar a classe button-primary em todos os cards de planos usando a cor de cada um */
.plan-card--lime .button.button-primary {
  background: #56c56a !important;
  background-image: none !important;
  box-shadow: 0 12px 30px rgba(86, 197, 106, 0.3) !important;
}

.plan-card--cyan .button.button-primary {
  background: #56c56a !important;
  background-image: none !important;
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.3) !important;
}

.plan-card--violet .button.button-primary {
  background: #56c56a!important;
  background-image: none !important;
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.3) !important;
}

/* Força bruta usando ID ou hierarquia direta do documento para ignorar qualquer outra regra existente */
body html body .plan-card--lime a.button.button-primary {
  background: #56c56a !important;
  background-image: none !important;
  border-color: #56c56a !important;
  color: #ffffff !important;
}

body html body .plan-card--cyan a.button.button-primary {
  background:#56c56a!important;
  border-color: #56c56a !important;
  color: #ffffff !important;
}

body html body .plan-card--violet a.button.button-primary {
  background: #56c56a !important;
  background-image: none !important;
  border-color: #56c56a !important;
  color: #ffffff !important;
}

/* Força a cor sólida correspondente no botão de cada card de plano */
.plan-card--lime .button-primary {
  background-color: #56c56a !important;
  background-image: none !important;
  border-color: #56c56a !important;
  color: #ffffff !important;
}

.plan-card--cyan .button-primary {
  background-color: #56c56a!important;
  background-image: none !important;
  border-color: #56c56a !important;
  color: #ffffff !important;
}

.plan-card--violet .button-primary {
  background-color: #56c56a !important;
  background-image: none !important;
  border-color: #56c56a !important;
  color: #ffffff !important;
}

/* Formato e tamanho unificados para todos os botões dos planos */
.plan-card .button-primary {
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.55rem !important;
  padding: 0.72rem 1.35rem !important;
  border-radius: 999px !important;
  font-weight: 820 !important;
  line-height: 1.1 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
  transition: transform 180ms ease, opacity 180ms ease !important;
}

.plan-card .button-primary:hover {
  transform: translateY(-2px) !important;
  opacity: 0.92 !important;
}

.plan-badge {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--cyan);
  color: #fff;
  font-size: 0.90rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-badgecorp {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #56c56a;
  color: #fff;
  font-size: 0.90rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plan-topline {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.90rem;
  font-weight: 750;
}

.plan-topline svg {
  width: 19px;
  color: #56c56a;
}

.plan-speed {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.75rem !important;
}

.plan-speed strong {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.07em !important;
  line-height: 0.9 !important;
}

.plan-speed span {
  font-size: 3.2rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.07em !important;
  line-height: 0.9 !important;
}

/* Modo escuro */
html[data-theme="dark"] .plan-speed strong {
  color: #ffffff !important;
}

.plan-card > p {
  min-height: 84px;
  margin-top: 1.25rem;
  color: var(--muted);
  line-height: 1.65;
}

.plan-price {
  position: relative;
  margin: 1.25rem 0;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, #56c56a 24%, var(--line));
  border-radius: 18px;
  background: linear-gradient(135deg, color-mix(in srgb, v#56c56a 12%, var(--surface)), var(--surface-soft));
}

.plan-price > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.plan-price > strong {
  display: flex;
  align-items: flex-start;
  color: var(--foreground) !important;
  font-size: 3.8rem !important;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

html[data-theme="dark"] .plan-price > strong,
html[data-theme="dark"] .plan-speed strong {
  color: #ffffff !important;
}

.plan-price sup {
  margin-top: 0.42rem;
  margin-right: 0.25rem;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.plan-price > strong small {
  align-self: flex-end;
  margin: 0 0 0.3rem 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.plan-price-reference {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.plan-price-reference b {
  color: var(--foreground);
}

.plan-price em {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
}

.plan-card ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 1.35rem;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.plan-card li svg {
  width: 16px;
  color: var(--green);
}

.plan-card-actions {
  display: grid;
  gap: 0.72rem;
  margin-top: auto;
}

.plan-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--green);
  font-size: 0.83rem;
  font-weight: 800;
}

.plan-whatsapp-link svg {
  width: 16px;
}

.commercial-note {
  max-width: 820px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.coverage-section {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(145deg, #061108, #0b2010 58%, #102d18);
  color: #fff;
}

.coverage-light {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  top: -250px;
  right: -150px;
  border-radius: 50%;
  background: rgba(65, 255, 106, 0.12);
  filter: blur(90px);
}

.coverage-heading p {
  color: #afc3b3;
}

.coverage-widget {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(143, 239, 119, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

.map-column {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 23px;
  background: #07130a;
}

.coverage-map {
  width: 100%;
  min-height: 620px;
}

.map-loading {
  position: absolute;
  z-index: 500;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.8rem;
  background: radial-gradient(circle at 50% 45%, #183c21, #07130a 70%);
  color: #d8e8db;
  font-size: 0.82rem;
}

.map-loading span {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--green-bright);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.map-chip,
.map-legend {
  position: absolute;
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 15, 8, 0.78);
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.map-chip {
  top: 1rem;
  left: 1rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.map-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
}

.map-legend {
  right: 1rem;
  bottom: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0.7rem;
  font-size: 0.67rem;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}


.legend-line {
  width: 20px;
  height: 3px;
  border-radius: 9px;
  background: var(--green-bright);
}

.legend-dark {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.8);
}

.search-column {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.search-eyebrow {
  display: inline-flex;
  padding: 0.36rem 0.6rem;
  border: 1px solid rgba(143, 239, 119, 0.22);
  border-radius: 999px;
  background: rgba(143, 239, 119, 0.09);
  color: var(--green-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-column h3 {
  margin-top: 1rem;
  font-size: Gotham(1.85rem, 3.5vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.search-column > p {
  margin-top: 0.9rem;
  color: #b3c4b6;
  font-size: 0.9rem;
  line-height: 1.65;
}

.address-search {
  position: relative;
  margin-top: 1.5rem;
}

.address-search label {
  display: block;
  margin-bottom: 0.5rem;
  color: #dbe7dd;
  font-size: 0.76rem;
  font-weight: 800;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap > svg {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  width: 18px;
  color: var(--green-soft);
}

.search-input-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 3.5rem 0.8rem 2.9rem;
  border: 1px solid rgba(143, 239, 119, 0.24);
  border-radius: 15px;
  outline: 0;
  background: rgba(4, 15, 7, 0.68);
  color: #fff;
}

.search-input-wrap input::placeholder {
  color: #728778;
}

.search-input-wrap input:focus {
  border-color: var(--green-soft);
  box-shadow: 0 0 0 4px rgba(65, 255, 106, 0.09);
}

.search-input-wrap button {
  position: absolute;
  right: 6px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.search-input-wrap button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.search-input-wrap button svg {
  width: 18px;
}

.search-help,
.provider-note {
  margin-top: 0.45rem !important;
  color: #829486 !important;
  font-size: 0.68rem !important;
}

.search-suggestions {
  position: absolute;
  z-index: 900;
  top: 84px;
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid #34533a;
  border-radius: 14px;
  background: #0b1e10;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestions button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.82rem;
  border: 0;
  border-bottom: 1px solid #213b27;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.search-suggestions button:hover {
  background: #122e19;
}

.search-suggestions button:last-child {
  border-bottom: 0;
}

.search-suggestions svg {
  width: 16px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--green-soft);
}

.search-status {
  min-height: 22px;
  margin-top: 0.65rem;
  color: #b6c7b9;
  font-size: 0.77rem;
}

.search-status.error {
  color: #ffaaa3;
}

.search-status.loading::before {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 0.45rem;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-top-color: var(--green-soft);
  border-radius: 50%;
  vertical-align: -2px;
  content: "";
  animation: spin 850ms linear infinite;
}

.coverage-result-card {
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(143, 239, 119, 0.28);
  border-left: 4px solid var(--green-bright);
  border-radius: 15px;
  background: rgba(143, 239, 119, 0.08);
}

.coverage-result-card[hidden] {
  display: none;
}

.coverage-result-card.is-excluded {
  border-color: rgba(255, 107, 107, 0.34);
  border-left-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
}

.coverage-result-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.coverage-result-card p {
  color: #b8cabd;
  font-size: 0.77rem;
  line-height: 1.55;
}

.coverage-result-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 850;
}

.coverage-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  margin-top: 1.3rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 182, 72, 0.2);
  border-radius: 14px;
  background: rgba(255, 182, 72, 0.06);
}

.coverage-alert svg {
  width: 18px;
  margin-top: 0.1rem;
  color: var(--warning);
}

.coverage-alert p {
  color: #aebfb2;
  font-size: 0.72rem;
  line-height: 1.55;
}

.coverage-alert strong {
  color: #f6f9f7;
}

.leaflet-control-zoom a {
  background: rgba(5, 15, 8, 0.88) !important;
  color: #fff !important;
  border-color: #34543a !important;
}

.leaflet-control-attribution {
  background: rgba(5, 15, 8, 0.78) !important;
  color: #c8d6cb !important;
  font-size: 8px !important;
}

.leaflet-control-attribution a {
  color: var(--green-soft) !important;
}

.jmnet-marker {
  width: 24px !important;
  height: 24px !important;
  display: grid !important;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transform: rotate(-45deg);
}

.jmnet-marker::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.benefits-section {
  background: var(--surface-soft);
}

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

.benefit-wide {
  grid-column: span 2;
}

.benefit-card {
  position: relative;
  min-height: 225px;
  height: 100%;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--green);
}

.benefit-icon svg {
  width: 23px;
}

.benefit-card h3 {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.benefit-line {
  position: absolute;
  right: 1.45rem;
  bottom: 1.2rem;
  left: 1.45rem;
  height: 2px;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.25;
}

.services-section {
  background: var(--deep);
  color: #fff;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.30fr 0.30fr;
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.services-copy {
  position: sticky;
  top: 150px;
}

.services-copy > p {
  color: #afc0b2;
}

.hours-stack {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hours-stack > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid #27472f;
  border-radius: 14px;
  background: #0b1e10;
}

.hours-stack svg {
  width: 20px;
  color: var(--green-soft);
}

.hours-stack span {
  display: grid;
  gap: 0.15rem;
}

.hours-stack small {
  color: #8fa292;
  font-size: 0.68rem;
}

.hours-stack strong {
  font-size: 0.87rem;
}

.services-grid {
  display: grid;
  gap: 0.75rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem;
  border: 1px solid #27472f;
  border-radius: 17px;
  background: #0b1e10;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: var(--green-soft);
  background: #102a16;
  transform: translateX(5px);
}

.service-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(143, 239, 119, 0.1);
  color: var(--green-soft);
}

.service-icon svg {
  width: 21px;
}

.service-card > span:nth-child(2) {
  display: grid;
  gap: 0.3rem;
}

.service-card small {
  color: #8fa292;
  font-size: 0.76rem;
}

.service-card > svg {
  width: 18px;
  color: #5c7060;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card:hover > svg {
  color: var(--green-soft);
  transform: translateX(3px);
}

.speed-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--background), var(--surface-soft));
}

.speed-section::before {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -220px;
  border-radius: 50%;
  background: rgba(65, 255, 106, 0.12);
  filter: blur(80px);
  content: "";
  pointer-events: none;
}

.speed-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 245px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(125deg, var(--surface) 0%, var(--surface) 62%, color-mix(in srgb, var(--green) 10%, var(--surface-soft)) 100%);
  box-shadow: var(--shadow-md);
}

.speed-card::after {
  position: absolute;
  z-index: 0;
  width: 250px;
  height: 250px;
  top: -150px;
  right: -90px;
  border-radius: 50%;
  background: rgba(65, 255, 106, 0.11);
  filter: blur(35px);
  content: "";
  pointer-events: none;
}

.speed-video-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 250px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--green) 35%, var(--line));
  border-radius: 25px;
  background: var(--deep) url("media/atendente-jmnet-speed-poster.jpg") center 24% / cover no-repeat;
  box-shadow: 0 20px 46px rgba(7, 19, 10, 0.25);
}

.speed-video-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(3, 13, 6, 0.76) 100%),
    linear-gradient(135deg, rgba(65, 255, 106, 0.08), transparent 48%);
  content: "";
  pointer-events: none;
}

.speed-assistant-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
}

.speed-video-status {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 17, 8, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.speed-video-status svg {
  width: 16px;
  height: 16px;
  color: var(--green-soft);
}

.speed-card-copy {
  position: relative;
  z-index: 1;
}

.speed-card h2 {
  margin-top: 0.45rem;
  font-size: Gotham(1.8rem, 3.8vw, 3rem);
  letter-spacing: -0.045em;
}

.speed-card p {
  max-width: 650px;
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.65;
}

.speed-card small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.speed-test-button {
  position: relative;
  z-index: 1;
  justify-self: end;
  white-space: nowrap;
}

.business-section {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #061108, #102d18);
  color: #fff;
}

.business-grid-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(143, 239, 119, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(143, 239, 119, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.business-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.business-layout > div > p {
  color: #b0c2b3;
}

.business-checks {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 2rem;
  list-style: none;
}

.business-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #d7e5da;
  font-size: 0.9rem;
}

.business-checks svg {
  width: 17px;
  color: var(--green-soft);
}

.business-journey {
  position: relative;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  overflow: hidden;
  border: 1px solid #31573a;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.journey-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: rgba(65, 255, 106, 0.14);
  filter: blur(40px);
}

.journey-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.journey-heading > svg {
  width: 24px;
  color: var(--green-soft);
}

.journey-heading span {
  display: grid;
  gap: 0.15rem;
}

.journey-heading small {
  color: #93a997;
}

.journey-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid #2a4932;
}

.journey-step b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  font-size: 0.78rem;
}

.journey-step span {
  color: #d5e2d7;
  font-size: 0.88rem;
}

.journey-step svg {
  width: 17px;
  color: #647c69;
}

.about-section {
  background: var(--background);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.about-visual {
  min-height: 470px;
  position: relative;
}

.about-logo-panel {
  min-height: 400px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1.2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 35%, rgba(143, 239, 119, 0.2), transparent 33%), linear-gradient(145deg, #0e2c16, #061108);
  box-shadow: var(--shadow-md);
}

.about-logo-panel .about-location {
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-stat {
  position: absolute;
  display: grid;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.about-stat strong {
  color: var(--green);
  font-size: 1.4rem;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.68rem;
}

.about-stat--year {
  right: -20px;
  bottom: 28px;
}

.about-stat--support {
  top: 30px;
  left: -25px;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.2rem 0.55rem;
}

.about-stat--support svg {
  width: 22px;
  color: var(--green);
}

.about-stat--support span {
  grid-column: 1 / -1;
}

.about-layout blockquote {
  margin: 1.7rem 0 0;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
  background: var(--surface-soft);
  color: var(--green-strong);
  font-size: Gotham(1.25rem, 2.6vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.025em;
}

[data-theme="dark"] .plan-card {
  color: #ffffff;
}

[data-theme="dark"] .plan-speed strong,
[data-theme="dark"] .plan-price-reference b {
  color: #ffffff;
}

[data-theme="dark"] .plan-topline,
[data-theme="dark"] .plan-card > p,
[data-theme="dark"] .plan-card li,
[data-theme="dark"] .plan-price > span,
[data-theme="dark"] .plan-price-reference,
[data-theme="dark"] .plan-price em,
[data-theme="dark"] .plan-price > strong small {
  color: #cbd5e1;
}

.footer {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  background: #040b05;
  color: #dbe6dd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand .brand-wordmark {
  margin-bottom: 1rem;
}

.footer-brand > strong {
  display: block;
  color: var(--green-soft);
  font-size: 1.05rem;
}

.footer h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a,
.footer p,
.footer button {
  display: block;
  margin: 0.55rem 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #91a395;
  font-size: 0.79rem;
  line-height: 1.6;
  text-align: left;
}

.footer a:hover,
.footer button:hover {
  color: var(--green-soft);
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem !important;
}

.social-link svg {
  width: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-block: 1.4rem;
  border-top: 1px solid #1d3021;
  color: #728276;
  font-size: 0.7rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 1100;
  right: 1rem;
  bottom: 1rem;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.30rem 0.30rem 0.30rem 0.30rem;
  border-radius: 999px;
  background: #1f963f;
  color: #fff;
  box-shadow: 0 18px 45px rgba(26, 118, 48, 0.36);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #197d35;
  box-shadow: 0 22px 52px rgba(26, 118, 48, 0.46);
  transform: translateY(-3px);
}

.floating-mascot {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #07130a;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.18);
}

.floating-mascot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.6fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy h2 {
  margin-top: 0.35rem;
  font-size: 1.3rem;
}

.cookie-copy p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.cookie-copy a {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.cookie-options {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.cookie-options[hidden] {
  display: none;
}

.cookie-options legend {
  padding-inline: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.cookie-actions {
  display: grid;
  gap: 0.5rem;
  min-width: 190px;
}

.cookie-actions .button {
  min-height: 40px;
  font-size: 0.72rem;
}

.cookie-banner .button-secondary {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--foreground);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  padding: 2rem 0 5rem;
  background: var(--background);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-header a:last-child {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 800;
}

.legal-article {
  max-width: 840px;
  margin: 4rem auto 0;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.legal-article .document-chip {
  display: inline-flex;
  padding: 0.36rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-article h1 {
  margin-top: 0.8rem;
  font-size: Gotham(2.5rem, 7vw, 5rem);
  letter-spacing: -0.06em;
}

.legal-article > p {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-article section {
  margin-top: 2.1rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.legal-article h2 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-article section p,
.legal-article li {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-article ul {
  padding-left: 1.2rem;
}

.legal-warning {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 182, 72, 0.3);
  border-radius: 14px;
  background: rgba(255, 182, 72, 0.08);
  color: #8a590f;
  font-size: 0.8rem;
  font-weight: 800;
}

[data-theme="dark"] .legal-warning {
  color: #ffd28f;
}

.legal-footer {
  max-width: 840px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem auto 0;
  color: var(--muted);
  font-size: 0.72rem;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 7px rgba(65, 255, 106, 0.09), 0 0 18px var(--green-bright); }
  50% { box-shadow: 0 0 0 12px rgba(65, 255, 106, 0.02), 0 0 28px var(--green-bright); }
}

@keyframes rotate-orbit {
  to { transform: rotate(360deg); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1040px) {
  .desktop-navigation {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-layout,
  .business-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding-block: 5rem 6.5rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 660px;
    width: 100%;
    margin-inline: auto;
  }

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

  .plan-card > p {
    min-height: auto;
  }

  .coverage-widget {
    grid-template-columns: 1fr;
  }

  .map-column,
  .coverage-map {
    min-height: 520px;
  }

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

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

  .services-copy {
    position: static;
  }

  .speed-card {
    grid-template-columns: minmax(180px, 225px) minmax(0, 1fr);
  }

  .speed-test-button {
    grid-column: 2;
    justify-self: start;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }

  .announcement-hours {
    display: none !important;
  }

  .announcement-inner {
    justify-content: center;
  }

  .navigation-bar {
    min-height: 66px;
  }

  .brand .brand-wordmark {
    font-size: 1.75rem;
  }

  .header-whatsapp {
    display: none;
  }

  .accessibility-panel {
    top: 106px;
    right: 0.625rem;
  }

  .hero-layout {
    padding-block: 4.2rem 6.5rem;
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    min-height: 410px;
  }

  .hero-video-frame {
    width: min(320px, 88vw);
  }

  .speed-core {
    width: min(260px, 67vw);
  }

  .speed-value strong {
    font-size: 7rem;
  }

  .signal-card {
    min-width: 150px;
    padding: 0.7rem;
  }

  .signal-card--home {
    left: 0;
  }

  .signal-card--company {
    right: 0;
  }

  .signal-card--support {
    left: 4%;
  }

  .scroll-cue {
    display: none;
  }

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

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .store-button {
    min-width: 0;
  }

  .section-heading h2,
  .services-copy h2,
  .business-layout h2,
  .about-layout h2 {
    font-size: Gotham(2.2rem, 11vw, 3.5rem);
  }

  .plan-speed strong {
    font-size: 5.3rem;
  }

  .map-column,
  .coverage-map {
    min-height: 430px;
  }

  .search-column {
    padding: 1.1rem 0.35rem 0.35rem;
  }

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

  .benefit-wide {
    grid-column: auto;
  }

  .speed-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0.85rem;
  }

  .speed-video-frame {
    width: min(100%, 390px);
    min-height: 0;
    max-height: 460px;
    margin-inline: auto;
  }

  .speed-card-copy {
    padding-inline: 0.4rem;
  }

  .speed-test-button {
    width: calc(100% - 0.8rem);
    grid-column: auto;
    justify-self: center;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-logo-panel {
    min-height: 365px;
  }

  .about-stat--year {
    right: 10px;
  }

  .about-stat--support {
    left: 10px;
  }

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

  .footer-bottom,
  .legal-footer {
    display: grid;
  }

  .floating-whatsapp > span:last-child {
    display: none;
  }

  .floating-whatsapp {
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0.3rem;
  }

  .floating-mascot {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .cookie-banner {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    max-height: calc(100vh - 1rem);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .cookie-actions {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navigation-actions {
    gap: 0.25rem;
  }

  .round-button {
    width: 39px;
    height: 39px;
  }

  .brand .brand-wordmark {
    font-size: 1.55rem;
  }

  .store-buttons {
    grid-template-columns: 1fr;
  }

  .plan-card {
    border-radius: 24px;
  }

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

  .coverage-widget {
    padding: 0.6rem;
    border-radius: 24px;
  }

  .map-column,
  .coverage-map {
    min-height: 360px;
  }

  .map-legend {
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .map-chip {
    top: 0.5rem;
    left: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .speed-assistant-video {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Logos oficiais da JMNET para temas claro e escuro */
.brand-logo-set {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: none;
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
}

/* Tema claro: mostra a logo preta */
html[data-theme="light"] .brand-logo-light {
  display: block;
}

html[data-theme="light"] .brand-logo-dark {
  display: none;
}

/* Tema escuro: mostra a logo branca */
html[data-theme="dark"] .brand-logo-light {
  display: none;
}

html[data-theme="dark"] .brand-logo-dark {
  display: block;
}

/* Compatibilidade quando o atributo data-theme ainda não foi definido */
html:not([data-theme]) .brand-logo-light {
  display: block;
}

html:not([data-theme]) .brand-logo-dark {
  display: none;
}

/* Link de endereço na faixa superior */
.announcement-address {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}

.announcement-address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.announcement-address:hover {
  text-decoration: underline;
}

/* Endereço em Itabuna, porém fora do polígono fornecido no KML */
.coverage-result-card.is-review {
  border-color: rgba(255, 182, 72, 0.38);
  border-left-color: var(--warning);
  background: rgba(255, 182, 72, 0.08);
}

/* Slide contínuo de canais — implementação do arquivo slide.txt */
/* Alterar cor do fundo do slide dos canais */
.tv-channel-strip {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  /*padding-bottom: clamp(3.1rem, 6vw, 5rem);*/
  background:
    radial-gradient(circle at 12% 50%, rgba(65, 255, 106, 0.15), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(0, 212, 255, 0.11), transparent 25%),
    linear-gradient(135deg, #ffffff, #feffff 60%, #ffffff);
  color: #fff;
}

.tv-channel-strip::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    radial-gradient(circle, rgba(143, 239, 119, 0.32) 1px, transparent 1px),
    linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.05), transparent 65%);
  background-size: 28px 28px, 100% 100%;
  content: "";
  pointer-events: none;
}

.tv-channel-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.58fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.tv-channel-heading h2 {
  max-width: 780px;
  margin-top: 0.70rem;
  font-size: Gotham(2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.tv-channel-heading p {
  color: #ffff;
  line-height: 1.7;
}

.tv-marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
   /*padding-block: 0.55rem;*/
   /*-webkit-mask-image: linear-gradient(90deg, transparent, #fffdfd 100%, #fffdfd 100%, transparent);*/
   /*mask-image: linear-gradient(90deg, transparent, #fffdfd 100%, #fffdfd 100%, transparent);*/
}

.tv-marquee-track {
  width: max-content;
  display: flex;
  animation: tv-marquee 30s linear infinite;
  will-change: transform;
}

.tv-marquee:hover .tv-marquee-track,
.tv-marquee:focus-within .tv-marquee-track {
  animation-play-state: paused;
}

.tv-marquee{
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:thin;
}

.tv-marquee::-webkit-scrollbar{
    height:6px;
}

.tv-marquee::-webkit-scrollbar-thumb{
    background:#56c56a;
    border-radius:10px;
}

.tv-marquee::-webkit-scrollbar-track{
    background:rgba(0,0,0,.1);
}

.tv-channel-list{
    display:flex;
    gap:20px;
    width:max-content;
}

.tv-channel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tv-channel-item img {
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.tv-channel-item:hover {
  border-color: rgba(143, 239, 119, 0.45);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.tv-channel-item figcaption {
  padding: 0.65rem 0.3rem 0.15rem;
  color: #a8baac;
  font-size: 0.72rem;
  text-align: center;
}

.tv-channel-item{
    background:rgba(255,255,255,0.08);
    border-radius:18px;
    padding:20px;
    min-width:160px;
    text-align:center;
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    border:1px solid rgba(86,197,106,.25);
    backdrop-filter:blur(10px);
}

.tv-channel-item:hover{
    transform:translateY(-8px) scale(1.04);
    box-shadow:
        0 15px 35px rgba(86,197,106,.25),
        0 0 20px rgba(86,197,106,.25);
    border-color:#05a405;
}

.tv-channel-item img{
    width:100px;
    height:60px;
    object-fit:contain;
    transition:transform .3s ease;
}

.tv-channel-item:hover img{
    transform:scale(1.12);
}

.tv-channel-item figcaption{
    margin-top:12px;
    font-size:14px;
    opacity:.85;
}

@keyframes tv-marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .tv-channel-heading { align-items: start; }
  .tv-channel-item { width: 200px; flex-basis: 200px; }
  .tv-channel-item img { height: 78px; }
}

@media (max-width: 720px) {
  .tv-channel-heading { grid-template-columns: 1fr; gap: 1rem; }
  .tv-channel-item { width: 170px; flex-basis: 170px; }
  .tv-channel-item img { height: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  .tv-marquee-track { animation: none !important; }
  .tv-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

html[data-theme="dark"] .plan-card,
html[data-theme="dark"] .benefit-card,
html[data-theme="dark"] .cookie-banner,
html[data-theme="dark"] .legal-article,
html[data-theme="dark"] .accessibility-panel{
    background:var(--surface);
    color:var(--foreground);
}

html[data-theme="dark"] .plan-card p,
html[data-theme="dark"] .benefit-card p,
html[data-theme="dark"] .cookie-banner p{
    color:var(--muted);
}

/* Cores personalizadas para cada plano (número e palavra juntos) */
html[data-theme="light"] .plan-card--lime .plan-speed strong,
html[data-theme="light"] .plan-card--lime .plan-speed span,
html[data-theme="dark"] .plan-card--lime .plan-speed strong,
html[data-theme="dark"] .plan-card--lime .plan-speed span {
  color: #56c56a !important;
}

html[data-theme="light"] .plan-card--cyan .plan-speed strong,
html[data-theme="light"] .plan-card--cyan .plan-speed span,
html[data-theme="dark"] .plan-card--cyan .plan-speed strong,
html[data-theme="dark"] .plan-card--cyan .plan-speed span {
  color: #56c56a !important;
}

html[data-theme="light"] .plan-card--violet .plan-speed strong,
html[data-theme="light"] .plan-card--violet .plan-speed span,
html[data-theme="dark"] .plan-card--violet .plan-speed strong,
html[data-theme="dark"] .plan-card--violet .plan-speed span {
  color: #56c56a !important;
}











/* Configuração tipográfica idêntica ao padrão visual corporativo */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Garante que todos os títulos e textos sigam o mesmo padrão limpo e sem falhas */
h1, h2, h3, h4, h5, h6, .brand-wordmark {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
letter-spacing: normal;
}

/* Estilo unificado para os botões redondos, com suporte completo ao Dark Mode */
.round-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border: 1px solid var(--green) !important;
  border-radius: 50% !important;
  background: var(--surface) !important;
  color: var(--foreground) !important;
  cursor: pointer !important;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease !important;
}

.round-button svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}

.round-button:hover {
  border-color: var(--green) !important;
  color: var(--green) !important;
  transform: translateY(-2px) !important;
}

/* Ajustes específicos para o menu hambúrguer e modo escuro */
.round-button.menu-toggle {
  background: var(--surface) !important;
  color: var(--foreground) !important;
}

/* Força a borda verde fixa também no modo escuro */
.dark .round-button,
[data-theme="dark"] .round-button,
body.dark-mode .round-button {
  background: var(--surface) !important;
  border-color: var(--green) !important;
  color: var(--foreground) !important;
}

.dark .round-button:hover,
[data-theme="dark"] .round-button:hover,
body.dark-mode .round-button:hover {
  border-color: var(--green) !important;
  color: var(--green) !important;
}

/* Garante o fundo correto para os cards dos planos no tema claro */
html[data-theme="light"] .plan-card {
  background: var(--surface) !important;
  border-color: var(--line) !important;
}

/* Garante que os textos e preços dentro do card fiquem legíveis no tema claro */
html[data-theme="light"] .plan-card h3,
html[data-theme="light"] .plan-card .plan-speed strong,
html[data-theme="light"] .plan-card .plan-price > strong {
  color: var(--foreground) !important;
}

html[data-theme="light"] .plan-card > p,
html[data-theme="light"] .plan-card li,
html[data-theme="light"] .plan-card .plan-topline,
html[data-theme="light"] .plan-card .plan-price > span {
  color: var(--muted) !important;
}

/* Remove o efeito/sombreado do canto superior direito dos cards no tema claro */
html[data-theme="light"] .plan-card::after {
  display: none !important;
}

/* Corrige a linha colorida no topo de cada card para usar a cor correta em vez de preto no tema claro */
html[data-theme="light"] .plan-card {
  border-top-color: var(--plan-accent, var(--green)) !important;
}

html[data-theme="light"] .plan-card--lime {
  border-top-color: #56c56a !important;
}

html[data-theme="light"] .plan-card--cyan {
  border-top-color: #56c56a !important;
}

html[data-theme="light"] .plan-card--violet {
  border-top-color: #56c56a !important;
}

/* Remove qualquer traço, linha ou sombra preta no topo/canto dos cards no tema claro */
html[data-theme="light"] .plan-card::before {
  background: var(--plan-accent, var(--green)) !important;
  height: 5px !important;
}

/* Garante que a borda superior use a cor correta do plano e não preto */
html[data-theme="light"] .plan-card {
  border-top: 5px solid var(--plan-accent, var(--green)) !important;
}

html[data-theme="light"] .plan-card--lime {
  border-top-color: #56c56a !important;
  --plan-accent: #56c56a;
}

html[data-theme="light"] .plan-card--cyan {
  border-top-color: #56c56a !important;
  --plan-accent: #56c56a;
}

html[data-theme="light"] .plan-card--violet {
  border-top-color: #56c56a !important;
  --plan-accent: #56c56a;
}

/* Força a cor correta no número dos megas dos planos no tema claro */
html[data-theme="light"] .plan-card--lime .plan-speed strong,
html[data-theme="light"] .plan-card--lime .plan-speed span {
  color: #56c56a !important;
}

html[data-theme="light"] .plan-card--cyan .plan-speed strong,
html[data-theme="light"] .plan-card--cyan .plan-speed span {
  color: #56c56a !important;
}

html[data-theme="light"] .plan-card--violet .plan-speed strong,
html[data-theme="light"] .plan-card--violet .plan-speed span {
  color: #56c56a !important;
}

/* Remove os círculos com efeito blur escuro que criam o sombreado nas pontas da seção de planos no tema claro */
html[data-theme="light"] .plans-section::before {
  display: none !important;
}

/* Caso haja algum outro elemento ou pseudo-elemento gerando sombra nas laterais da seção */
html[data-theme="light"] .plans-section {
  box-shadow: none !important;
}

/* Remove qualquer pseudo-elemento esquerdo ou direito (como o ::after) que crie sombras na seção de planos no tema claro */
html[data-theme="light"] .plans-section::after {
  display: none !important;
}

/* Garante que a seção fique totalmente limpa nas laterais */
html[data-theme="light"] .plans-section {
  position: relative !important;
  overflow: hidden !important;
  background: var(--background) !important;
}

/* Força o gradiente na seção hero e limpa qualquer fundo interno conflitante */
.hero {
  background: linear-gradient(135deg, #050805 0%, #081e0e 55%, #0e2a17 100%) !important;
}

html[data-theme="light"] .hero {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8f2 55%, #dcefe0 100%) !important;
}

/* Remove fundos sólidos que possam estar cobrindo o gradiente nas camadas internas */
.hero .network-grid {
  background-image: none !important;
  background-color: transparent !important;
}

/* Ajuste definitivo para o texto principal do Hero no tema claro */
html[data-theme="light"] .hero h1 {
  color: #0e1911 !important;
  background: none !important;
}

html[data-theme="light"] .hero h1 span {
  background: linear-gradient(100deg, #0e1911 0%, #2fa94c 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

html[data-theme="light"] .hero-lead {
  color: #435248 !important;
}

html[data-theme="light"] .hero-proof {
  color: #435248 !important;
}

/* Força um fundo escuro moderno na seção de canais de TV */
.channels-section,
.tv-channels-section,
[class*="channel"] {
  background: #08110b !important;
  color: #f5f7f6 !important;
}

/* Garante que os textos descritivos e títulos internos fiquem legíveis no modo escuro */
.channels-section h2,
.channels-section p,
.tv-channels-section h2,
.tv-channels-section p {
  color: #f5f7f6 !important;
}

.channels-section .section-heading p,
.tv-channels-section .section-heading p {
  color: #b3beb5 !important;
}

/* Seção de canais adaptável ao tema */
.channels-section,
.tv-channels-section,
[class*="channel"] {
  background: var(--surface) !important;
  color: var(--foreground) !important;
}

/* Modo Claro: Fundo claro e textos escuros */
html[data-theme="light"] .channels-section,
html[data-theme="light"] .tv-channels-section,
html[data-theme="light"] [class*="channel"] {
  background: var(--background) !important;
  color: var(--foreground) !important;
}

html[data-theme="light"] .channels-section .section-heading p,
html[data-theme="light"] .tv-channels-section .section-heading p {
  color: var(--muted) !important;
}

/* Modo Escuro: Fundo escuro e textos claros */
html[data-theme="dark"] .channels-section,
html[data-theme="dark"] .tv-channels-section,
html[data-theme="dark"] [class*="channel"] {
  background: #08110b !important;
  color: #f5f7f6 !important;
}



/* Aplica o efeito neon brilhante no tema escuro */
html[data-theme="dark"].header-whatsapp,
html[data-theme="dark"].round-button {
  animation: pulse-whatsapp-glow 2s infinite ease-in-out !important;
}

/* Pausa no hover */
html[data-theme="dark"].header-whatsapp:hover,
html[data-theme="dark"].round-button:hover {
  animation-play-state: paused !important;
}

/* Altera a cor dos traços e destaques do menu para o tom #05a405 no tema escuro */
html[data-theme="dark"] header a::after,
html[data-theme="dark"] .navbar a::after,
html[data-theme="dark"] .nav-link::after,
html[data-theme="dark"] header a:hover,
html[data-theme="dark"] .navbar a:hover,
html[data-theme="dark"] .nav-link:hover {
  border-color: #05a405 !important;
  background-color: #05a405 !important;
  color: #05a405 !important;
}

html[data-theme="dark"] header a,
html[data-theme="dark"] .navbar a,
html[data-theme="dark"] .nav-link {
  text-decoration-color: #05a405 !important;
}

/* Remove o fundo em forma de quadrado/caixa verde ao passar o mouse no menu no tema escuro */
html[data-theme="dark"] header a:hover,
html[data-theme="dark"] .navbar a:hover,
html[data-theme="dark"] .nav-link:hover {
  background-color: transparent !important;
  background-image: none !important;
}

/* Garante que apenas o texto e o traço fiquem com a cor #05a405 */
html[data-theme="dark"] header a:hover,
html[data-theme="dark"] .navbar a:hover,
html[data-theme="dark"] .nav-link:hover {
  color: #05a405 !important;
}

/* Altera a cor do texto e do traço/destaque para #05a405 no tema claro ao passar o mouse ou quando estiver ativo */
html[data-theme="light"] header a:hover,
html[data-theme="light"] .navbar a:hover,
html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] header a.active,
html[data-theme="light"] .navbar a.active,
html[data-theme="light"] .nav-link.active {
  color: #05a405 !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Garante que o traço ou indicador abaixo da palavra também use o verde #05a405 no tema claro */
html[data-theme="light"] header a::after,
html[data-theme="light"] .navbar a::after,
html[data-theme="light"] .nav-link::after {
  background-color: #05a405 !important;
  border-color: #05a405 !important;
}

/* Balão de prévia do WhatsApp no canto inferior direito */
.whatsapp-float-preview,
.support-preview-balloon {
  position: fixed;
  bottom: 95px; /* Altura para ficar logo acima do botão flutuante */
  right: 25px;
  background: var(--surface, #ffffff);
  color: var(--foreground, #111827);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  max-width: 240px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fadeInPreview 0.5s ease-in-out;
  border: 1px solid rgba(5, 164, 5, 0.3);
}

/* Seta apontando para baixo (direção do botão) */
.whatsapp-float-preview::after,
.support-preview-balloon::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: var(--surface, #ffffff);
  transform: rotate(45deg);
  border-right: 1px solid rgba(5, 164, 5, 0.3);
  border-bottom: 1px solid rgba(5, 164, 5, 0.3);
}

/* Estilo do título/nome no balão */
.whatsapp-preview-title {
  font-weight: 700;
  font-size: 13px;
  color: #05a405;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Estilo do texto da mensagem */
.whatsapp-preview-text {
  font-size: 13px;
  line-height: 1.3;
}

/* Ajustes automáticos para o Tema Escuro */
html[data-theme="dark"] .whatsapp-float-preview,
html[data-theme="dark"] .support-preview-balloon,
html[data-theme="dark"] .whatsapp-float-preview::after,
html[data-theme="dark"] .support-preview-balloon::after {
  background: #0d1b12 !important;
  color: #f5f7f6 !important;
  border-color: rgba(5, 164, 5, 0.5) !important;
}

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

/* Container principal do widget flutuante do WhatsApp */
.jmnet-whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  font-family: inherit;
}

/* O Botão flutuante principal */
.jmnet-wa-button {
  width: 60px;
  height: 60px;
  background-color: #05a405;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.jmnet-wa-button:hover {
  transform: scale(1.1);
}

.jmnet-wa-button svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
}

/* A Janela de Chat (Pop-up) que aparece ao passar o mouse */
/* Janela de Chat */
.jmnet-wa-chatbox {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: var(--surface, #ffffff);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;

  /* Fechada por padrão */
  display: none;

  flex-direction: column;
  animation: jmnetFadeIn 0.3s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Aberta quando clicar no robô */
.jmnet-wa-chatbox.active {
  display: flex;
}

/* No computador: também abre ao passar o mouse */
@media (min-width: 769px) {
  .jmnet-whatsapp-widget:hover .jmnet-wa-chatbox {
    display: flex;
  }
}

.jmnet-wa-button {
  width: 60px;
  height: 60px;
  background-color: #05a405;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;

  /* Remove o estilo padrão do botão */
  border: none;
  padding: 0;
  appearance: none;
}

/* Mostra a janela quando o mouse está em cima de todo o container */


/* Cabeçalho do Chat */
.jmnet-wa-header {
  background-color: #05a405;
  color: #ffffff;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.jmnet-wa-avatar {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.jmnet-wa-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.jmnet-wa-info span {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 4px;
}

.jmnet-wa-info span::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #2ecc71;
  border-radius: 50%;
  display: inline-block;
}

/* Corpo da Mensagem */
.jmnet-wa-body {
  padding: 15px;
  background: var(--background, #f4f6f8);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jmnet-wa-message {
  background: var(--surface, #ffffff);
  color: var(--foreground, #333333);
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  max-width: 85%;
}

.jmnet-wa-time {
  font-size: 10px;
  color: #888888;
  text-align: right;
  margin-top: 4px;
}

/* Rodapé / Botão de Iniciar Conversa */
.jmnet-wa-footer {
  padding: 12px;
  background: var(--surface, #ffffff);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.jmnet-wa-start-btn {
  display: block;
  width: 100%;
  background-color: #05a405;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s;
}

.jmnet-wa-start-btn:hover {
  background-color: #048a04;
}

/* Ajustes automáticos para o Tema Escuro */
html[data-theme="dark"] .jmnet-wa-chatbox {
  background: #0d1b12 !important;
  border: 1px solid rgba(5, 164, 5, 0.4);
}

html[data-theme="dark"] .jmnet-wa-body {
  background: #08110b !important;
}

html[data-theme="dark"] .jmnet-wa-message {
  background: #14281c !important;
  color: #f5f7f6 !important;
}

html[data-theme="dark"] .jmnet-wa-footer {
  background: #0d1b12 !important;
  border-top: 1px solid rgba(5, 164, 5, 0.2);
}

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

/* Força a ocultação de qualquer outro botão flutuante antigo do WhatsApp na tela */
body > a[href*="whatsapp.com"]:not(.jmnet-wa-button),
body > div > a[href*="whatsapp.com"]:not(.jmnet-wa-button),
.floating-whatsapp,
#whatsapp-chat,
.whatsapp-button {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Altera o fundo da seção de cobertura/mapa para uma cor personalizada no tema claro */
html[data-theme="light"] .coverage-section,
html[data-theme="light"] .coverage-widget {
  background-color: #ffffff  !important; /* Mude para a cor que preferir */
}

/* Altera o fundo das seções do Aplicativo e do Mapa no tema claro */
html[data-theme="light"] .app-section,
html[data-theme="light"] .coverage-section,
html[data-theme="light"] .coverage-widget {
  background-color: #ffffff !important; /* Mude para a cor que preferir */
}

/* Altera a cor dos textos na seção do mapa no tema claro */
html[data-theme="light"] .coverage-section,
html[data-theme="light"] .coverage-section h2,
html[data-theme="light"] .coverage-section p,
html[data-theme="light"] .coverage-section label,
html[data-theme="light"] .coverage-section span {
  color: #111827 !important; /* Mude para a cor que preferir (ex: #111827 para escuro ou outra cor) */
}

/* Ajusta o painel/caixa de pesquisa no tema claro */
html[data-theme="light"] .coverage-widget {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(17, 61, 29, 0.15) !important;
  box-shadow: var(--shadow-md) !important;
  color: var(--foreground) !important;
}

/* Ajusta os textos e elementos internos da caixa de pesquisa do mapa no claro */
html[data-theme="light"] .coverage-heading p,
html[data-theme="light"] .map-loading {
  color: var(--muted) !important;
}

/* Fundo do chip de status do mapa no claro */
html[data-theme="light"] .map-chip,
html[data-theme="light"] .map-legend {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--foreground) !important;
  border-color: var(--line) !important;
}

/* Garante fundo branco e cores corretas para o widget de cobertura no tema claro */
html[data-theme="light"] .coverage-section {
  background: var(--background) !important;
  color: var(--foreground) !important;
}

html[data-theme="light"] .coverage-widget {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow-md) !important;
}

/* Fundo da caixa/chip de pesquisa e legendas do mapa no tema claro */
html[data-theme="light"] .map-chip,
html[data-theme="light"] .map-legend {
  background: var(--surface) !important;
  color: var(--foreground) !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-sm) !important;
}

/* Se houver um input de pesquisa dentro dessa área */
html[data-theme="light"] .coverage-widget input,
html[data-theme="light"] .map-column input {
  background-color: var(--surface-soft) !important;
  color: var(--foreground) !important;
  border: 1px solid var(--line) !important;
}

html[data-theme="light"] .coverage-widget input::placeholder {
  color: var(--muted) !important;
}

/* Ajuste dos botões de aplicativos (App Store / Google Play) no tema claro */
html[data-theme="light"] .app-section {
  background: var(--surface-soft) !important;
  border-top-color: var(--line) !important;
  color: var(--foreground) !important;
}

html[data-theme="light"] .app-copy h2,
html[data-theme="light"] .app-copy p {
  color: var(--foreground) !important;
}

html[data-theme="light"] .app-icon-wrap {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  color: var(--green-strong) !important;
}

html[data-theme="light"] .store-button {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  color: var(--foreground) !important;
  opacity: 1 !important;
}

html[data-theme="light"] .store-button small {
  color: var(--muted) !important;
}

html[data-theme="light"] .store-button strong {
  color: var(--foreground) !important;
}

html[data-theme="light"] .store-button svg {
  fill: var(--foreground) !important;
  color: var(--foreground) !important;
}

/* Força o fundo claro em qualquer elemento escuro dentro da seção do aplicativo no tema claro */
html[data-theme="light"] .app-section,
html[data-theme="light"] .app-section *,
html[data-theme="light"] .app-layout,
html[data-theme="light"] .app-copy,
html[data-theme="light"] .app-icon-wrap,
html[data-theme="light"] .store-button {
  background-color: var(--surface) !important;
  color: var(--foreground) !important;
}

/* Se esses itens estiverem usando o fundo escuro padrão do código original (#0d140d ou #020503) */
html[data-theme="light"] .app-section [style*="background"],
html[data-theme="light"] .app-section div {
  background-color: var(--surface) !important;
  color: var(--foreground) !important;
  border-color: var(--line) !important;
}

/* Garante legibilidade dos textos de Boleto, PIX, Desbloqueio e Contrato */
html[data-theme="light"] .app-section span,
html[data-theme="light"] .app-section small,
html[data-theme="light"] .app-section strong,
html[data-theme="light"] .app-section p,
html[data-theme="light"] .app-section h2 {
  color: var(--foreground) !important;
}

html[data-theme="light"] .app-section small,
html[data-theme="light"] .store-button small {
  color: var(--muted) !important;
}

/* Oculta qualquer imagem ou elemento gráfico indesejado no fundo da seção do app no tema claro */
html[data-theme="light"] .app-section img,
html[data-theme="light"] .app-section svg.bg-logo,
html[data-theme="light"] .app-section .background-logo {
  display: none !important;
}


/* Define o tom de verde #05a405 para os textos no tema claro */
html[data-theme="light"] .app-copy small,
html[data-theme="light"] .app-copy span,
html[data-theme="light"] .app-copy .kicker {
  color: #05a405 !important; /* Cor para "Aplicativo oficial" */
}


/* Ajusta o fundo e a borda do quadradinho da logo no modo escuro para dar destaque */
html[data-theme="dark"] .app-icon-wrap {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

/* Deixa o texto "Aplicativo oficial" em verde no tema escuro */
html[data-theme="dark"] .app-copy small,
html[data-theme="dark"] .app-copy span,
html[data-theme="dark"] .app-copy .kicker {
  color: #05a405 !important;
}

/* Container do quadradinho da logo */
.app-icon-wrap {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  overflow: hidden;
}

/* Estilo padrão e tamanho da imagem dentro do quadradinho */
.app-icon-wrap img {
  width: 80% !important;
  height: 80% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Alternância de acordo com o tema claro e escuro */
html[data-theme="light"] .app-icon-wrap {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
}
html[data-theme="light"] .app-icon-wrap img.logo-dark {
  display: none !important;
}
html[data-theme="light"] .app-icon-wrap img.logo-light {
  display: block !important;
}

html[data-theme="dark"] .app-icon-wrap {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
}
html[data-theme="dark"] .app-icon-wrap img.logo-light {
  display: none !important;
}
html[data-theme="dark"] .app-icon-wrap img.logo-dark {
  display: block !important;
}

/* ========================================================
   CORREÇÃO DEFINITIVA DA LOGO NO QUADRADINHO (CLARO E ESCURO)
   ======================================================== */

/* 1. Estrutura base do quadradinho */
.app-icon-wrap {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 15px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  position: relative !important;
}

/* 2. Tamanho e proporção das imagens internas */
.app-icon-wrap img {
  width: 75% !important;
  height: 75% !important;
  object-fit: contain !important;
}

/* 3. MODO CLARO: Fundo claro, borda padrão e exibe APENAS a logo preta */
html[data-theme="light"] .app-icon-wrap {
  background-color: var(--surface) !important;
  border: 1px solid var(--line) !important;
}
html[data-theme="light"] .app-icon-wrap img.logo-dark {
  display: none !important;
}
html[data-theme="light"] .app-icon-wrap img.logo-light {
  display: block !important;
}

/* 4. MODO ESCURO: Fundo escuro, borda customizada e exibe APENAS a logo branca */
html[data-theme="dark"] .app-icon-wrap {
  background-color: #0d140d !important;
  border: 1px solid rgba(143, 239, 119, 0.22) !important;
}
html[data-theme="dark"] .app-icon-wrap img.logo-light {
  display: none !important;
}
html[data-theme="dark"] .app-icon-wrap img.logo-dark {
  display: block !important;
}

/* ========================================================
   AJUSTE DE CORES PARA OS BLOCOS DE ATENDIMENTO NO MODO CLARO
   ======================================================== */

html[data-theme="light"] .support-card,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .card-atendimento,
html[data-theme="light"] .feature-card {
  background-color: var(--surface) !important;
  border: 1px solid var(--line) !important;
  color: var(--foreground) !important;
}

/* Garante que os títulos dos cards fiquem escuros e legíveis no claro */
html[data-theme="light"] .support-card h3,
html[data-theme="light"] .contact-card h3,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .card-atendimento h3 {
  color: var(--foreground) !important;
}

/* Garante que os textos descritivos fiquem com a cor padrão suave */
html[data-theme="light"] .support-card p,
html[data-theme="light"] .contact-card p,
html[data-theme="light"] .service-card p,
html[data-theme="light"] .card-atendimento p {
  color: var(--muted) !important;
}

/* Garante que o fundo da seção fique limpo e claro */
html[data-theme="light"] .support-section,
html[data-theme="light"] .contact-section,
html[data-theme="light"] .atendimento-section,
html[data-theme="light"] .services-section {
  background-color: var(--background) !important;
}

/* Se esses cards estiverem dentro de um container com fundo escuro, forçamos o fundo claro também */
html[data-theme="light"] .support-grid,
html[data-theme="light"] .contact-grid,
html[data-theme="light"] .atendimento-grid {
  background-color: transparent !important;
}

/* Fundo geral e textos da área do rodapé / informações no modo claro */
html[data-theme="light"] footer,
html[data-theme="light"] .site-footer,
html[data-theme="light"] .footer-section,
html[data-theme="light"] .bottom-section {
  background-color: var(--surface-soft) !important;
  color: var(--foreground) !important;
  border-top: 1px solid var(--line) !important;
}

/* Textos descritivos e parágrafos do rodapé */
html[data-theme="light"] footer p,
html[data-theme="light"] .site-footer p,
html[data-theme="light"] footer span,
html[data-theme="light"] .site-footer span {
  color: var(--muted) !important;
}

/* Títulos das colunas do rodapé (Instagram, Navegação, Legal, etc.) */
html[data-theme="light"] footer h3,
html[data-theme="light"] footer h4,
html[data-theme="light"] .site-footer h3,
html[data-theme="light"] .site-footer h4 {
  color: var(--foreground) !important;
}

/* Links do rodapé */
html[data-theme="light"] footer a,
html[data-theme="light"] .site-footer a {
  color: var(--muted) !important;
  transition: color 180ms ease;
}

html[data-theme="light"] footer a:hover,
html[data-theme="light"] .site-footer a:hover {
  color: var(--green-bright) !important;
}

/* Força a cor verde #05a405 na frase de destaque do rodapé */
footer p:first-of-type,
.site-footer p:first-of-type,
footer .footer-copy p:first-child,
.site-footer .footer-copy p:first-child {
  color: #05a405 !important;
  font-weight: 700 !important;
}

/* Força bruta para o verde exato #05a405 na frase do rodapé */
html body footer p,
html body .site-footer p,
html body footer span,
html body .site-footer span {
  color: #05a405 !important;
}

/* Força bruta usando seletores de atributo para pegar os títulos do rodapé, independentemente da tag */
footer [class*="title"], 
footer [class*="heading"],
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
.site-footer [class*="title"], 
.site-footer [class*="heading"],
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6,
footer strong, footer b {
  color: #05a405 !important;
}

/* Reduz e iguala o tamanho do botão "Gerenciar cookies" aos demais links */
footer button[data-cookie-settings-trigger],
.site-footer button[data-cookie-settings-trigger],
div button[data-cookie-settings-trigger] {
  color: #666666 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
  text-align: left !important;
  
  /* Tamanho menor para bater com os links de rodapé */
  font-family: inherit !important;
  font-size: 0.80rem !important; 
  font-weight: 400 !important;
  line-height: 1.5 !important;
  display: block !important;
}

footer button[data-cookie-settings-trigger]:hover,
.site-footer button[data-cookie-settings-trigger]:hover,
div button[data-cookie-settings-trigger]:hover {
  color: #05a405 !important;
}

/* Remove o verde de todas as tags <b> e faz assumirem a cor padrão do texto */
b {
  color: inherit !important;
  font-weight: 700 !important;
}

.about-company-image{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:24px;
    display:block;
}

.about-stat--year strong,
.about-stat--support strong,
.about-stat--support i,
.about-section blockquote {
    color:#05a405 !important;
}

.about-section blockquote{
    border-left-color:#05a405 !important;
}

.about-stat--support svg,
.about-stat--support strong{
    color:#05a405 !important;
    stroke:#05a405 !important;
}

#coverage-search button[type="submit"]{
    background:#05a405 !important;
    color:#ffffff !important;
    border-color:#05a405 !important;
}

#coverage-search button[type="submit"] svg{
    color:#ffffff !important;
    stroke:#ffffff !important;
}

#accessibility-button,
#theme-button,
#menu-button{
    border-color:#05a405 !important;
}

#accessibility-button svg,
#theme-button svg,
#menu-button svg{
    color:#05a405 !important;
    stroke:#05a405 !important;
}

.header-whatsapp{
    animation: suportePulse 2s infinite;
}

@keyframes suportePulse{
    0%{
        box-shadow:0 0 0 0 rgba(5,164,5,.7);
    }

    70%{
        box-shadow:0 0 0 12px rgba(5,164,5,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(5,164,5,0);
    }
}

#accessibility-button,
#theme-button,
#menu-button{
    transition: transform .25s ease, box-shadow .25s ease !important;
}

#accessibility-button:hover,
#theme-button:hover,
#menu-button:hover{
    transform: translateY(-4px) scale(1.08) !important;
    box-shadow: 0 0 20px #05a405 !important;
}

#accessibility-button:hover svg,
#theme-button:hover svg,
#menu-button:hover svg{
    stroke:#05a405 !important;
    color:#05a405 !important;
}

.round-button:hover{
    transform: translateY(-3px) scale(1.08) !important;
    border-color:#39ff14 !important;
    box-shadow:0 0 25px rgba(57,255,20,.75) !important;
}

.round-button:hover svg{
    stroke:#39ff14 !important;
    color:#39ff14 !important;
}

.tv-channel-item img{
    width:100px;
    height:60px;
    object-fit:contain;
}

.tv-channel-heading{
    text-align:center;
    margin-bottom:30px;
}

.tv-channel-heading h2{
    font-size:32px;
    font-weight:800;
    margin-bottom:10px;
    color:var(--text-color);
}

.tv-channel-heading p{
    font-size:16px;
    opacity:.75;
    color:var(--text-color);
}

.tv-marquee{
  position:relative;
}

.tv-marquee-track{
  display:flex;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.tv-marquee-track::-webkit-scrollbar{
  display:none;
}

.tv-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:45px;
  height:45px;
  border-radius:50%;
  border:0;
  background:#56c56a;
  color:#000;
  font-size:25px;
  cursor:pointer;
}

.tv-arrow-left{
  left:10px;
}

.tv-arrow-right{
  right:10px;
}

.tv-channel-heading{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-bottom:35px;
}

.tv-channel-heading h2{
    display:block;
    width:100%;
    margin:0 0 8px;
    font-size:36px;
    font-weight:800;
}

.tv-channel-heading p{
    display:block;
    width:100%;
    margin:0;
    font-size:16px;
    opacity:.75;
}

.tv-channel-heading h2{
    color:var(--text-color);
}

.tv-channel-heading h2 span{
    color:#05a405;
}

.coverage-alert p {
  color: var(--text-color, #222);
}

.coverage-alert strong {
  color: inherit;
}

.coverage-alert p,
.coverage-alert strong {
  color: #1f2937;
}

/* modo escuro */
[data-theme="dark"] .coverage-alert p,
[data-theme="dark"] .coverage-alert strong {
  color: #ffffff;
}

.tv-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.tv-channel-track {
  display: flex;
  width: max-content;
  animation: canaisPassando 25s linear infinite;
}

.tv-channel-list {
  display: flex;
  gap: 25px;
  padding-right: 25px;
}

@keyframes canaisPassando {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.tv-channel-track {
  animation: canaisPassando 8s linear infinite !important;
}

html, body {
  overflow-x: hidden;
}

.tv-channel-strip {
  margin-top: -90px;
}

.tv-channel-strip {
  transform: translateY(-30px);
}

/* Controle de zoom do mapa */
.leaflet-control-zoom a {
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
  font-size: 15px !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;
}

.leaflet-control-zoom a:first-child {
  border-radius: 8px 8px 4px 4px !important;
}

.leaflet-control-zoom a:last-child {
  border-radius: 4px 4px 8px 8px !important;
}

/* Tema escuro */
body.dark .leaflet-control-zoom a,
body[data-theme="dark"] .leaflet-control-zoom a {
  background: #151515 !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,.15) !important;
}

.leaflet-control-zoom a {
 width: 28px;
}

/* Animação dos cards de atendimento */
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}


/* brilho passando */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.18),
    transparent
  );
  transition: .6s ease;
}


/* efeito ao passar mouse */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(5,164,5,.18);
  border-color: #05a405;
}


.service-card:hover::before {
  left: 130%;
}


/* animação do ícone */
.service-card .service-icon {
  transition: transform .35s ease;
}


.service-card:hover .service-icon {
  transform: scale(1.12) rotate(8deg);
}


/* seta andando */
.service-card svg:last-child {
  transition: transform .35s ease;
}


.service-card:hover svg:last-child {
  transform: translateX(6px);
}

/* Animação dos cards de benefícios */
.benefit-card {
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}


/* brilho passando no card */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
  );
  transition: .7s ease;
}


/* movimento ao passar mouse */
.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(5,164,5,.15);
  border-color: #05a405;
}


.benefit-card:hover::before {
  left: 130%;
}


/* ícone com animação */
.benefit-icon {
  transition: transform .35s ease, background .35s ease;
}


.benefit-card:hover .benefit-icon {
  transform: scale(1.12);
  background: rgba(5,164,5,.15);
}


/* linha verde crescendo */
.benefit-line {
  transition: width .4s ease;
}


.benefit-card:hover .benefit-line {
  width: 100%;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-whatsapp i,
.header-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================
   APENAS O RODAPÉ - VERDE ACINZENTADO
   ========================================== */

html body .footer {
    background: #141916 !important;
}

/* Textos normais do rodapé */
html body .footer p,
html body .footer a,
html body .footer button,
html body .footer span {
    color: #929d96 !important;
}

/* Títulos: NAVEGAÇÃO, ATENDIMENTO, LOCALIZAÇÃO, LEGAL */
html body .footer h2 {
    color: #d2d7d4 !important;
}

/* Texto "Internet Banda Larga..." */
html body .footer .footer-brand > strong {
    color: #aeb7b1 !important;
}

/* Logo JMNET */
html body .footer .brand-wordmark {
    color: #d2d7d4 !important;
}

html body .footer .brand-wordmark b {
    color: #8a968e !important;
}

/* Links em destaque */
html body .footer a:hover,
html body .footer button:hover {
    color: #b8c0bb !important;
}

/* Ícones do rodapé */
html body .footer svg {
    color: #929d96 !important;
}

/* Linha inferior */
html body .footer .footer-bottom {
    border-top-color: #303832 !important;
    color: #737e77 !important;
}

/* Copyright e CNPJ */
html body .footer .footer-bottom * {
    color: #737e77 !important;
}

/* SUBIR OS CARDS DOS PLANOS */
html body .plans-section .plans-grid .plan-card {
    position: relative !important;
    top: -1px !important;
}

.commercial-note {
    position: relative !important;
    top: -10px !important;
}

.benefit-icon {
  color: #05a405 !important;
}

.benefit-icon svg {
  color: #05a405 !important;
  stroke: #05a405 !important;
}

.benefit-line {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #00f700 15%,
    #a4f1a8 50%,
    #d2dad21f 100%
  );
}

/* Animação dos ícones das caixas */
.benefit-icon {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-5px) scale(1.08);
  filter: drop-shadow(0 0 8px rgba(5, 164, 5, 0.65));
}

.benefit-card:hover .benefit-icon svg {
  animation: benefitIconPulse 0.8s ease;
}

@keyframes benefitIconPulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.15) rotate(-4deg);
  }

  70% {
    transform: scale(1.05) rotate(3deg);
  }

  100% {
    transform: scale(1);
  }
}

/* ===== CORREÇÃO MOBILE ===== */

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
  }

  body {
    position: relative;
  }

  main,
  section,
  header,
  footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  /* Evita elementos grandes estourando a tela */
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Canais */
  .tv-channel-strip {
    width: 100%;
    max-width: 100%;
  }

  .tv-marquee {
    width: 100%;
    max-width: 100%;
  }

  /* Mapa */
  .map-column {
    width: 100%;
    max-width: 100%;
  }

  /* Benefícios */
  .benefits-bento {
    width: 100%;
    max-width: 100%;
  }

  .benefit-card {
    max-width: 100%;
  }
}

.mobile-navigation .support-link {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 700;
}

.mobile-navigation .support-link:hover {
    background-color: #1ebe5d !important;
    color: #ffffff !important;
}

/* Animação do botão Suporte JMNET */
a[href*="wa.me"] {
    animation: suportePulse 2s infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a[href*="wa.me"]:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.header-whatsapp {
  position: relative !important;
  z-index: 1 !important;
  overflow: visible !important;
  animation: suportePulse 2s ease-in-out infinite !important;
}

/* Halo verde */
.header-whatsapp {
  position: relative !important;
  z-index: 10 !important;
  animation: suportePulseGreen 2s infinite !important;
}

@keyframes suportePulseGreen {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(37, 211, 102, 0.80),
      0 0 0 0 rgba(37, 211, 102, 0.40);
  }

  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 0 6px rgba(37, 211, 102, 0.65),
      0 0 18px 4px rgba(37, 211, 102, 0.70);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 16px rgba(37, 211, 102, 0),
      0 0 30px 12px rgba(37, 211, 102, 0);
  }
}

/* Mantém o efeito no modo escuro */
.dark .header-whatsapp,
.dark-mode .header-whatsapp,
[data-theme="dark"] .header-whatsapp {
  animation: suportePulseGreen 2s infinite !important;
}

/* =========================================================
   SOBRE A JMNET — MISSÃO, VISÃO E VALORES
   ========================================================= */
.about-content > h2 {
  margin: .45rem 0 1rem;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.company-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.5rem;
}

.principle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--surface), var(--surface-soft));
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.principle-card:hover {
  transform: translateY(-2px);
  border-color: rgba(86, 197, 106, .42);
  box-shadow: var(--shadow-md);
}

.principle-card--values {
  grid-column: 1 / -1;
}

.principle-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 13px;
  background: rgba(86, 197, 106, .12);
  color: var(--green);
}

.principle-icon svg {
  width: 21px;
  height: 21px;
}

.principle-label {
  display: block;
  margin-bottom: 4px;
  color: var(--green-strong);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.principle-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.values-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: .76rem;
  font-weight: 650;
}

@media (max-width: 720px) {
  .about-content > h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1;
  }

  .company-principles {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 1.15rem;
  }

  .principle-card,
  .principle-card--values {
    grid-column: auto;
    padding: 15px;
    border-radius: 17px;
  }

  .principle-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  .principle-card p {
    font-size: .84rem;
  }

  .values-list {
    gap: 6px;
  }

  .values-list span {
    font-size: .72rem;
    padding: 6px 9px;
  }
}

/* Transforma todos os cards da página corporativa em Verde */
.plan-card--lime,
.plan-card--cyan,
.plan-card--violet {
  --plan-accent: #2fa94c !important;
  border-top-color: #2fa94c !important;
}

/* Força a cor verde nos textos de velocidade */
.plan-card--lime .plan-speed strong,
.plan-card--lime .plan-speed span,
.plan-card--cyan .plan-speed strong,
.plan-card--cyan .plan-speed span,
.plan-card--violet .plan-speed strong,
.plan-card--violet .plan-speed span {
  color: #2fa94c !important;
}

/* Efeito de hover e sombra verde para todos os cards corporativos */
.plan-card--lime:hover,
.plan-card--cyan:hover,
.plan-card--violet:hover {
  border-color: #2fa94c !important;
  box-shadow: 0 32px 80px rgba(47, 169, 76, 0.28) !important;
  transform: translateY(-7px) !important;
}

/* Padroniza todos os botões de contratação para verde sólido */
.plan-card .button-primary {
  background-color: #2fa94c !important;
  background-image: none !important;
  border-color: #2fa94c !important;
  color: #ffffff !important;
  box-shadow: 0 12px 30px rgba(47, 169, 76, 0.3) !important;
}

/* Efeito de hover no botão acionado pelo card corporativo */
.plan-card:hover .button-primary {
  background-color: #228b37 !important;
  border-color: #228b37 !important;
  box-shadow: 0 16px 36px rgba(47, 169, 76, 0.4) !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}


/* Força máxima para o botão corporativo assumir o verde fixo */
html body .plans-section .plan-card .button-primary {
  background-color: #24883b !important;
  border-color: #24883b !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: 0 12px 30px rgba(47, 169, 76, 0.3) !important;
}

/* Força máxima para o hover do botão corporativo */
html body .plans-section .plan-card .button-primary:hover {
  background-color: #1b682d !important;
  border-color: #1b682d !important;
  box-shadow: 0 16px 36px rgba(47, 169, 76, 0.4) !important;
  transform: translateY(-2px);
}

/* Efeito verde com brilho (glow) no modo escuro para os botões dos planos corporativos */
html[data-theme="dark"] .plan-card .button-primary,
html[data-theme="dark"] .plan-card-actions .button {
    background: #05a405 !important;
    color: #ffffff !important;
    border: 1px solid #22863a !important;
    box-shadow: 0 0 18px rgba(5, 164, 5, 0.45) !important;
    transition: all 0.25s ease-in-out !important;
}

/* Efeito ao passar o mouse (Hover) no modo escuro */
html[data-theme="dark"] .plan-card .button-primary:hover,
html[data-theme="dark"] .plan-card-actions .button:hover {
    background: #22863a !important;
    box-shadow: 0 0 25px rgba(5, 164, 5, 0.75) !important;
    transform: translateY(-2px) !important;
}

.plan-price {
    position: relative;
    margin: 1.25rem 0;
    padding: 1.15rem;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--green) 30%, var(--line));
    border-radius: 18px;
    
    /* Degradê verde para o modo claro */
    background: linear-gradient(135deg, color-mix(in srgb, var(--green) 18%, var(--surface)), var(--surface-soft)) !important;
}

/* Degradê verde customizado e mais imersivo para o modo escuro */
html[data-theme="dark"] .plan-price {
    background: linear-gradient(135deg, rgba(5, 164, 5, 0.22), rgba(16, 32, 22, 0.9)) !important;
    border-color: rgba(5, 164, 5, 0.4) !important;
}

/* ==========================================================
   EFEITO VERDE NOS BOTÕES E BRILHO AO REDOR DOS PLANOS
   (Mantém as cores de borda originais dos cards)
   ========================================================== */

/* 1. Botões "Contrate Já" (Força o verde e o brilho em ambos os temas) */
.plan-card .button-primary,
.plan-card-actions .button,
.plan-card--lime .button-primary,
.plan-card--cyan .button-primary,
.plan-card--violet .button-primary {
    background: #05a405 !important;
    background-image: none !important;
    border: 1px solid #05a405 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(5, 164, 5, 0.3) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

/* Efeito Hover do Botão */
.plan-card .button-primary:hover,
.plan-card-actions .button:hover {
    background: #048b04 !important;
    box-shadow: 0 0 22px rgba(5, 164, 5, 0.6) !important;
    transform: translateY(-2px) !important;
}

/* 2. Brilho (Glow) ao redor do card ao passar o mouse, mantendo a cor da borda original */
.plan-card:hover {
    box-shadow: 0 32px 80px rgba(5, 164, 5, 0.35) !important;
    transform: translateY(-7px) !important;
}

/* Modo escuro: garante o fundo e a suavidade da sombra sem alterar a cor da borda */
html[data-theme="dark"] .plan-card {
    background: #102016 !important;
}

html[data-theme="dark"] .plan-card:hover {
    box-shadow: 0 32px 80px rgba(5, 164, 5, 0.45) !important;
}

/* ==========================================================
   EFEITO VERDE EXCLUSIVO NOS BOTÕES "CONTRATE JÁ"
   ========================================================== */

/* Estado normal do botão */
.plan-card .button-primary,
.plan-card-actions .button,
.plan-card--lime .button-primary,
.plan-card--cyan .button-primary,
.plan-card--violet .button-primary {
    background: #05a405 !important;
    background-image: none !important;
    border: 1px solid #05a405 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(5, 164, 5, 0.35) !important;
    transition: all 0.25s ease-in-out !important;
}

/* Estado ao passar o mouse (Hover com brilho intenso) */
.plan-card .button-primary:hover,
.plan-card-actions .button:hover,
.plan-card--lime .button-primary:hover,
.plan-card--cyan .button-primary:hover,
.plan-card--violet .button-primary:hover {
    background: #048b04 !important;
    border-color: #048b04 !important;
    box-shadow: 0 0 25px rgba(5, 164, 5, 0.75) !important;
    transform: translateY(-2px) !important;
}

/* --- CAIXAS DE TEXTO (MODO CLARO E ESCURO) --- */
input[type="text"],
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1.5px solid var(--border-color, #d6d6d6);
    border-radius: 10px;
    background: var(--card-bg, #fff);
    color: var(--text-color, #333);
    font-size: 14px;
    font-family: Arial, sans-serif;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Modo escuro específico para o fundo e borda do input */
[data-theme="dark"] input[type="text"],
[data-theme="dark"] textarea {
    background: #182c1b !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Placeholder */
input[type="text"]::placeholder,
textarea::placeholder {
    color: #999;
}

[data-theme="dark"] input[type="text"]::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #a0a0a0 !important;
}

/* Quando clicar na caixa (Focus) */
input[type="text"]:focus,
textarea:focus {
    border-color: #56c56a !important;
    box-shadow: 0 0 0 3px rgba(86, 197, 106, 0.2) !important;
    background: var(--card-bg, #fff);
}

[data-theme="dark"] input[type="text"]:focus,
[data-theme="dark"] textarea:focus {
    background: #121f14 !important;
}

/* --- BOTÃO (MANTÉM O PADRÃO VERDE ELEGANTE EM AMBOS OS MODOS) --- */
button {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #56c56a, #2b9348);
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 3px 10px rgba(43, 147, 72, 0.3);
}

button:hover {
    background: linear-gradient(135deg, #6fdc82, #38b000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 176, 0, 0.4);
}

button:active {
    transform: translateY(0);
}

/* --- CAIXAS DE TEXTO (MODO CLARO E ESCURO) --- */
input[type="text"],
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1.5px solid var(--border-color, #d6d6d6);
    border-radius: 10px;
    background: var(--card-bg, #fff);
    color: var(--text-color, #333);
    font-size: 14px;
    font-family: Arial, sans-serif;
    outline: none;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Modo escuro específico para o fundo e borda do input */
[data-theme="dark"] input[type="text"],
[data-theme="dark"] textarea {
    background: #182c1b !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

/* Placeholder */
input[type="text"]::placeholder,
textarea::placeholder {
    color: #999;
}

[data-theme="dark"] input[type="text"]::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #a0a0a0 !important;
}

/* Quando clicar na caixa (Focus) */
input[type="text"]:focus,
textarea:focus {
    border-color: #56c56a !important;
    box-shadow: 0 0 0 3px rgba(86, 197, 106, 0.2) !important;
    background: var(--card-bg, #fff);
}

[data-theme="dark"] input[type="text"]:focus,
[data-theme="dark"] textarea:focus {
    background: #121f14 !important;
}

/* --- BOTÃO (MANTÉM O PADRÃO VERDE ELEGANTE EM AMBOS OS MODOS) --- */
button {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #56c56a, #2b9348);
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 3px 10px rgba(43, 147, 72, 0.3);
}

button:hover {
    background: linear-gradient(135deg, #6fdc82, #38b000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 176, 0, 0.4);
}

button:active {
    transform: translateY(0);
}

/* --- ORGANIZAÇÃO DOS CARDS: MISSÃO E VISÃO LADO A LADO, VALORES EMBAIXO --- */

/* Ajusta o container principal que guarda os três cards */
.company-principles {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important; /* Cria duas colunas */
  gap: 20px !important;
  align-items: stretch !important;
}

/* Remove os <br> antigos para não quebrarem o layout do grid */
.company-principles br {
  display: none !important;
}

/* O primeiro card (Missão) fica na coluna 1 */
.company-principles .principle-card:nth-child(1) {
  grid-column: 1 / 2 !important;
}

/* O segundo card (Visão) fica na coluna 2 (ficando lado a lado com a Missão) */
.company-principles .principle-card:nth-child(3) { /* Considerando o índice gerado pelo HTML */
  grid-column: 2 / 3 !important;
}

/* O terceiro card (Valores) ocupa as duas colunas inteiras embaixo */
.company-principles .principle-card.principle-card--values {
  grid-column: 1 / -1 !important; /* Ocupa de ponta a ponta na horizontal */
}

/* --- EFEITO DE HOVER MAIS LEVE E SUTIL --- */

/* Estado normal dos cards */
.principle-card,
.principle-card.principle-card--values,
.plan-card,
.business-card {
  border: 1.5px solid rgba(86, 197, 106, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease-in-out !important;
}

[data-theme="dark"] .principle-card,
[data-theme="dark"] .principle-card.principle-card--values,
[data-theme="dark"] .plan-card,
[data-theme="dark"] .business-card {
  border: 1.5px solid rgba(86, 197, 106, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Hover super leve e elegante (tanto claro quanto escuro) */
.principle-card:hover,
.principle-card.principle-card--values:hover,
.plan-card:hover,
.business-card:hover {
  transform: translateY(-3px) !important; /* Sobe bem pouquinho, de forma discreta */
  border-color: rgba(86, 197, 106, 0.3) !important; /* Borda verde bem suave */
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.05), 
    0 0 12px rgba(86, 197, 106, 0.1) !important; /* Brilho reduzido pela metade */
}

[data-theme="dark"] .principle-card:hover,
[data-theme="dark"] .principle-card.principle-card--values:hover,
[data-theme="dark"] .plan-card:hover,
[data-theme="dark"] .business-card:hover {
  border-color: rgba(86, 197, 106, 0.35) !important;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.3), 
    0 0 15px rgba(86, 197, 106, 0.12) !important;
}

/* --- APENAS OS SÍMBOLOS/ÍCONES COM O TOM VERDE DA JMNET --- */

/* Aplica o verde estritamente nos ícones e símbolos dos cards */
.principle-icon,
.principle-icon i,
.plan-topline i,
.plan-card ul li i,
.plan-card ul li [data-lucide] {
  color: #56c56a !important;
  stroke: #56c56a !important; /* Essencial para ícones em linha (SVG/Lucide) */
}

/* --- AJUSTE DE ESPAÇAMENTO DO TÍTULO PRINCIPAL DO HERO --- */

.hero-copy h1 {
  line-height: 1.0 !important;    /* Dá um respiro confortável entre as linhas */
  margin-bottom: 1.0rem !important; /* Afasta o título dos elementos abaixo dele */
}

/* Garante que o span da segunda linha tenha uma distância limpa */
.hero-copy h1 span {
  display: block !important;        /* Força a segunda linha a descer perfeitamente */
  margin-top: 0.25rem !important;   /* Espaço sutil entre "PLANO" e "É TE CONECTAR" */
}
