/* REDNET — Design System & Layout
   Mobile-first · SEO-friendly · No framework bloat */

:root {
  --red-primary: #cc0000;
  --red-dark: #990000;
  --gold-primary: #ffd700;
  --gold-dark: #e6b800;
  --black: #050505;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #333333;
  --gray-500: #666666;
  --gray-300: #cccccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --green-whatsapp: #25d366;

  --gradient-brand: linear-gradient(135deg, var(--red-primary) 0%, var(--gold-primary) 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);

  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --container: min(1200px, 100% - 2rem);
  --header-h: 96px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red-dark);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

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

.btn--red {
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
}

.btn--red:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn--gold {
  background: var(--gold-primary);
  color: var(--black);
  border-color: var(--gold-primary);
}

.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--black);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.btn--outline-gold:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-primary);
}

.btn--outline-red {
  background: transparent;
  color: var(--red-primary);
  border-color: var(--red-primary);
}

.btn--outline-red:hover {
  background: rgba(204, 0, 0, 0.08);
  color: var(--red-dark);
}

.btn--whatsapp {
  background: var(--green-whatsapp);
  color: var(--white);
  border-color: var(--green-whatsapp);
}

.btn--whatsapp:hover {
  background: #1da851;
  color: var(--white);
}

.btn--block {
  width: 100%;
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--red-primary);
  color: var(--white);
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.97);
  box-shadow: var(--shadow);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
}

.site-header__logo img {
  height: 68px;
  width: auto;
  transition: all var(--transition);
  filter: drop-shadow(0 0 10px rgba(255, 149, 0, 0.35));
}

.site-header__logo img:hover {
  filter: drop-shadow(0 0 16px rgba(255, 149, 0, 0.65));
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .site-header__logo img {
    height: 78px;
  }
}

@media (min-width: 1024px) {
  .site-header__logo img {
    height: 90px;
  }
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--gold-primary);
}

.site-nav__link.is-active {
  border-bottom: 2px solid var(--red-primary);
  border-radius: 0;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn--client-area {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 800;
  background: var(--gold-primary);
  color: var(--black);
  border-color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: pulse-client 2s infinite ease-in-out;
  white-space: nowrap;
}

.btn--client-area:hover {
  background: var(--gold-dark);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
  transform: translateY(-2px) scale(1.05);
}

@keyframes pulse-client {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 0 36px rgba(255, 215, 0, 0.85); }
}

/* CTAs grandes no Hero */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero__ctas .btn--client-area {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius);
  gap: 0.75rem;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.6), 0 4px 16px rgba(0,0,0,0.3);
}

.hero__ctas .btn--client-area:hover {
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 6px 20px rgba(0,0,0,0.4);
}

.btn--speedtest {
  padding: 1.125rem 2rem;
  font-size: 1.0625rem;
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
  border-radius: var(--radius);
  box-shadow: 0 0 20px rgba(204, 0, 0, 0.45);
}

.btn--speedtest:hover {
  background: var(--red-dark);
  color: var(--white);
  box-shadow: 0 0 32px rgba(204, 0, 0, 0.65);
}

@media (max-width: 767px) {
  :root {
    --header-h: 112px;
  }

  .site-header__logo img {
    height: 104px;
    max-width: 52vw;
  }

  .site-header__actions {
    display: none;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn--client-area,
  .hero__ctas .btn--speedtest {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    justify-content: center;
  }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
  margin-inline: auto;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 999;
  background: var(--black);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__link {
  display: block;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__link:hover {
  color: var(--gold-primary);
}

.mobile-nav .btn {
  margin-top: 1.5rem;
}

@media (max-width: 1023px) {
  .site-header__actions .btn--client-area {
    padding: 0.625rem 1.125rem;
    font-size: 0.8125rem;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: block;
  }

  .mobile-nav {
    display: none;
  }

  .site-header__actions .btn--client-area {
    padding: 0.875rem 2.25rem;
    font-size: 1.0625rem;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(204, 0, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes pulse-glow {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.08) translate(-2%, 2%);
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 3rem 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(204, 0, 0, 0.2);
  border: 1px solid rgba(204, 0, 0, 0.4);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 0 2rem;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  max-width: 100px;
}

.hero__feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-primary);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
}

.hero__feature span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 40%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero__features {
    gap: 2rem;
  }
}

/* ========== PLANS ========== */
.plans {
  padding: 5rem 0;
  background: var(--gray-100);
}

.plans__header {
  text-align: center;
  margin-bottom: 3rem;
}

.plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.plan-card--featured {
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
  position: relative;
  overflow: visible;
  margin-top: 1.5rem;
}

.plan-card--featured:hover {
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.45);
}

.plan-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold-primary);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
  animation: badge-glow 2s infinite ease-in-out;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5); }
  50% { box-shadow: 0 4px 24px rgba(255, 215, 0, 0.9); }
}

.plan-card__header {
  padding: 1.25rem;
  text-align: center;
  background: var(--red-primary);
  color: var(--white);
}

.plan-card__header--gold {
  background: var(--gradient-brand);
  color: var(--black);
  border-radius: calc(var(--radius-lg) - 3px) calc(var(--radius-lg) - 3px) 0 0;
}

.plan-card__speed {
  font-size: 1.375rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.02em;
}

.plan-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-card__price {
  text-align: center;
  margin-bottom: 1.25rem;
}

.plan-card__amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--black);
}

.plan-card__period {
  font-size: 0.875rem;
  color: var(--red-primary);
  font-weight: 600;
}

.plan-card__features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-100);
}

.plan-card__features li:last-child {
  border-bottom: none;
}

.plan-card__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--red-primary);
}

.plan-card--featured .plan-card__check {
  color: var(--gold-dark);
}

.plan-card__fee {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

.section-speedtest-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--radius);
}

.section-speedtest-cta strong,
.section-speedtest-cta span {
  display: block;
}

.section-speedtest-cta strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
}

.section-speedtest-cta span {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.section-speedtest-cta--light {
  background: var(--white);
  border: 1px solid rgba(204, 0, 0, 0.14);
  box-shadow: var(--shadow);
}

.section-speedtest-cta--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.24);
}

.section-speedtest-cta--dark strong {
  color: var(--white);
}

.section-speedtest-cta--dark span {
  color: rgba(255, 255, 255, 0.68);
}

@media (min-width: 640px) {
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-speedtest-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .plans__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .plan-card--featured {
    transform: scale(1.03);
  }

  .plan-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
  }
}

/* ========== BENEFITS BAR ========== */
.benefits {
  padding: 3rem 0;
  background: var(--white);
  border-block: 1px solid var(--gray-100);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.25rem;
}

.benefit__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.25rem;
}

.benefit__text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .benefit {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ========== TRUST ========== */
.trust {
  padding: 4rem 0;
  background: var(--white);
}

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.trust__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.trust__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.trust__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.1);
  color: var(--red-primary);
  margin-bottom: 1rem;
}

.trust__icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.trust__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0.75rem 0 0.5rem;
}

.trust__item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.trust__rating {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.trust__stars {
  color: var(--gold-primary);
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.trust__cta {
  text-align: center;
  margin-top: 3rem;
}

.trust__cta h3 {
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== SERVICES ========== */
.services {
  padding: 5rem 0;
  background: var(--black);
  color: var(--white);
}

.services .section-title {
  color: var(--white);
}

.services .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin: 0 0 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== COMPARE (Qual a melhor internet) ========== */
.compare {
  padding: 5rem 0;
  background: var(--white);
}

.compare__header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Tabela comparativa */
.compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.compare__table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--white);
}

.compare__table thead {
  background: var(--red-primary);
  color: var(--white);
}

.compare__table th {
  padding: 0.875rem 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

.compare__table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
  color: var(--gray-700);
  line-height: 1.4;
}

.compare__table tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.compare__type strong {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compare__stars {
  color: var(--gold-primary);
  font-size: 1.125rem;
  letter-spacing: 1px;
}

.compare__stars--off {
  color: var(--gray-300);
}

.compare__cost {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-primary);
}

/* Subtítulo "Resumindo na prática" */
.compare__subtitle {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Cards Resumo */
.compare__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.compare__card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.compare__card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.compare__card--highlight {
  border-color: var(--red-primary);
  background: rgba(204, 0, 0, 0.03);
}

.compare__card-icon {
  margin-bottom: 1rem;
}

.compare__card h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--red-primary);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.compare__card p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.compare__card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-300);
}

.compare__card-footer strong {
  display: block;
  font-size: 0.875rem;
  color: var(--red-primary);
  margin-bottom: 0.5rem;
}

.compare__card-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare__card-footer li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.compare__card-footer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-primary);
  font-weight: 700;
}

/* Bottom cards */
.compare__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.compare__bottom-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.compare__bottom-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.compare__bottom-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.compare__bottom-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare__bottom-card li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.375rem 0;
  line-height: 1.5;
}

.compare__bottom-card li strong {
  color: var(--gold-primary);
}

.compare__example {
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid rgba(204, 0, 0, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 0.5rem;
}

.compare__example strong {
  display: block;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  text-transform: uppercase;
}

.compare__example p {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
}

/* CTA Rodapé */
.compare__cta {
  text-align: center;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 2px solid var(--red-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.compare__cta p {
  font-size: 1rem;
  color: var(--gray-700);
  margin: 0 0 0.5rem;
}

.compare__slogan {
  font-size: 1.25rem !important;
  font-weight: 800;
  color: var(--red-primary) !important;
  margin-bottom: 0.5rem !important;
}

@media (min-width: 768px) {
  .compare__cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .compare__bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .compare__table-wrap {
    margin-inline: -1rem;
    border-radius: 0;
  }
}

/* ========== BUSINESS ========== */
.business {
  padding: 5rem 0;
  background: var(--gradient-hero);
  color: var(--white);
}

.business__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.business__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.business__content h2 span {
  color: var(--red-primary);
}

.business__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.business__pillar {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  text-align: center;
}

.business__pillar strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.business__pillar span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.business__bundle {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--gold-primary);
}

.business__bundle h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.business__bundle-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red-primary);
  margin-bottom: 1rem;
}

.business__bundle ul {
  margin-bottom: 1.5rem;
}

.business__bundle li {
  padding: 0.375rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .business__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== ABOUT ========== */
.about {
  padding: 5rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.about__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.about__logo-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  flex: 1 1 140px;
  max-width: 200px;
}

.about__logo-card--dark {
  background: var(--black);
}

.about__logo-card--light {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
}

.about__logo-card img {
  margin: 0 auto 0.75rem;
  max-height: 80px;
  width: auto;
}

.about__logo-card p {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.about__logo-card--dark p {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== COVERAGE ========== */
.coverage {
  padding: 5rem 0;
  background: var(--gray-100);
  text-align: center;
}

.coverage__map {
  max-width: 500px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--red-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

.coverage__map:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(204, 0, 0, 0.25);
}

.coverage__map img {
  width: 100%;
}

.coverage__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.coverage__hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* ========== SPEED TEST BANNER ========== */
.speedtest-banner {
  padding: 3rem 0;
  background: var(--gradient-hero);
}

.speedtest-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.speedtest-banner__text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
}

.speedtest-banner__icon {
  font-size: 3rem;
  color: var(--gold-primary);
  animation: pulse-gauge 2s infinite ease-in-out;
}

@keyframes pulse-gauge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.speedtest-banner__text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}

.speedtest-banner__text p {
  font-size: 0.9375rem;
  margin: 0.25rem 0 0;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .speedtest-banner__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .coverage__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .coverage__hint {
    flex-basis: 100%;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 5rem 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial {
  padding: 2rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--red-primary);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.testimonial__stars {
  color: var(--gold-primary);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-style: italic;
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  font-size: 2.5rem;
  color: var(--red-primary);
}

.testimonial__author cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--black);
  display: block;
}

.testimonial__author span {
  font-size: 0.75rem;
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== CONTACT ========== */
.contact {
  padding: 5rem 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.contact .section-title {
  color: var(--white);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  transition: color var(--transition), transform var(--transition);
}

.contact__link:hover {
  color: var(--white);
  transform: translateX(4px);
}

.contact__icon {
  font-size: 1.5rem;
  width: 1.75rem;
  text-align: center;
}

.contact__icon--whatsapp { color: var(--green-whatsapp); }
.contact__icon--instagram { color: #E4405F; }

.contact__bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem auto 0;
  padding: 0.75rem 2.5rem;
  border: 2px solid #ff9500;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 0 20px rgba(255, 149, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact__bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 149, 0, 0.6);
}

.contact__bar .contact__link {
  font-size: 1.125rem;
  color: var(--gold-primary) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.contact__bar .contact__link:hover {
  color: var(--white) !important;
}

.contact__bar svg {
  color: var(--gold-primary);
  fill: currentColor;
}

.contact__separator {
  font-size: 1.25rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .contact__bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 380px;
    margin-inline: auto;
  }
  .contact__separator {
    display: none;
  }
}

/* Mascot styles in corporate section */
.business__mascot-wrapper {
  flex-shrink: 0;
}

.business__mascot-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business__mascot-img:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

@media (max-width: 576px) {
  .business__mascot-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .contact__channels {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer__brand img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.site-footer__brand p {
  font-size: 0.875rem;
  margin: 0;
  max-width: 280px;
}

.site-footer h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  margin: 0 0 1rem;
}

.site-footer__links a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.125rem;
  transition: background var(--transition);
}

.site-footer__social a:hover {
  background: var(--red-primary);
  color: var(--white);
}

.site-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ========== STICKY WHATSAPP (mobile) ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-whatsapp);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  font-size: 1.75rem;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

@media (min-width: 1024px) {
  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
  }
}
