/* ========================================
   01 RESET
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.light-theme {
  font-family: var(--font-main);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   02 TOKENS
======================================== */
:root {
  --color-bg-main: #FFFFFF;
  --color-bg-light-gray: #F4F4F4;
  --color-red: #EE2922;
  --color-red-dark: #C6211C;
  --color-yellow: #FFC700;
  --color-yellow-hover: #EAB600;
  --color-blue: #0073D1;
  --color-text-main: #333333;
  --color-text-muted: #666666;
  --color-text-white: #FFFFFF;
  --transition-smooth: 0.3s ease;
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  /* ── TOKEN GLOBAL DE BOTÕES (altere aqui para mudar TODOS) ── */
  --btn-radius: 50px;
  /* Pílula. Mude para 8px se quiser quadrado */
  --btn-padding: 14px 28px;
  --btn-font-size: 1.05rem;
  --btn-weight: 900;
  --drawer-width: 85%;
  --transition-speed: 0.4s;
}

/* ========================================
   03 LAYOUT
======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-alt {
  background: #FAFAFA;
}

.section-white {
  background: #FFFFFF;
}

.section-padding {
  padding: 60px 0;
}

.h2-section {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 10px;
}

.section-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-red);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 7px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(238, 41, 34, 0.3);
}

.section-notice {
  font-size: 0.88rem;
  color: #999;
  margin-top: 8px;
  text-align: center;
}

.check-mark::before {
  content: "✓";
}

.icon-dropdown {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-speed);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.icon-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
  stroke: #999;
}

.h1-discreet {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.h2-impact {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hidden {
  display: none !important;
}

.spinner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(238, 41, 34, 0.15);
  border-left-color: var(--color-red);
  border-radius: 50%;
  animation: spinPremium 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite, spinnerGlow 2s ease-in-out infinite alternate;
}

.spinner-box span {
  animation: textPulse 1.5s ease-in-out infinite alternate;
}

@keyframes spinPremium {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinnerGlow {
  0% { box-shadow: 0 0 0 rgba(238, 41, 34, 0); }
  100% { box-shadow: 0 0 15px rgba(238, 41, 34, 0.4); }
}

@keyframes textPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-8px); }
}

.success-voucher {
  background: #F0FFF4;
  border: 2px dashed #00A34A;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 0.5s ease-out;
}

.success-voucher h3 {
  color: #00A34A;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.promo-code-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.promo-code {
  display: inline-block;
  background: #FFF;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 900;
  color: var(--color-text-main);
  border: 2px solid #EEE;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.sticky-cta-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
  visibility: hidden;
}

.sticky-cta-mobile.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.celular-section {
  background: linear-gradient(170deg, #fff 0%, #F9F9F9 100%);
}

.celular-footnote {
  font-size: 0.78rem;
  color: #AAA;
  margin-top: 30px;
}

.celular-badge {
  background: var(--color-red);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 10px 20px;
  border-radius: 14px 14px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.celular-titulo {
  font-size: 2.1rem;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 6px;
}

.celular-subtitulo {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 22px;
}

.celular-features {
  list-style: none;
  margin-bottom: 20px;
  padding-top: 0;
  flex: 1;
}

.celular-features li {
  font-size: 0.9rem;
  color: #555;
  padding: 6px 0;
  line-height: 1.5;
  font-weight: 500;
}

.celular-features li:first-child {
  font-weight: 800;
  color: #222;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.celular-apps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  margin-bottom: 16px;
  min-height: 60px;
}

.app-slot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: #FFF;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
  border: none;
}

.app-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  border-radius: 50%;
}

.apps-label {
  font-size: 0.75rem;
  color: #AAA;
  width: 100%;
  margin-top: 4px;
  text-align: center;
}

.celular-price-wrap {
  padding: 0 0 6px;
}

.celular-price-label {
  font-size: 0.8rem;
  color: #888;
}

.celular-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}

.celular-price .currency {
  font-size: 1rem;
  font-weight: 700;
}

.celular-price .value {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: #000;
}

.celular-price .cents {
  font-size: 1.1rem;
  font-weight: 700;
}

.celular-price .period {
  font-size: 0.85rem;
  color: #888;
  margin-left: 4px;
}

.tv-section {
  background: #F5F5F5;
}

.tv-notice {
  margin-top: 30px;
  background: #FFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  font-size: 0.95rem;
}

.tv-streamings-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 8px;
}

.tv-streamings-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 18px;
}

.tv-streamings-list li {
  font-size: 0.9rem;
  color: #444;
  padding: 2px 0;
}

.tv-streamings-list li strong {
  color: #000;
}

.tv-canais-label {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 8px;
  font-weight: 600;
}

.tv-canais-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.canal-slot {
  height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.3px;
}

.canal-slot img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.tv-divider {
  height: 1px;
  background: #F0F0F0;
  margin: 0 22px;
}

.tv-price-wrap {
  padding: 18px 22px 0;
}

.tv-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-red);
  line-height: 1;
}

.tv-price sup {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
}

.tv-price span {
  font-size: 1rem;
  font-weight: 600;
}

.tv-price-note {
  font-size: 0.78rem;
  color: #999;
  margin-top: 6px;
  line-height: 1.4;
}

.tv-link-detalhe {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #0066CC;
  text-decoration: underline;
}

.badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
}

.info-logo-image:hover {
  transform: scale(1.02);
}

.tv-notice a {
  font-weight: 700;
}

.hub-info-section {
  padding: 100px 0 60px;
  background: #FFF;
  border-top: 1px solid #F0F0F0;
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  background: #EE2922;
  color: #FFF;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(238, 41, 34, 0.25);
}

.hub-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hub-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 45px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hub-info-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  text-align: left;
  border-top: 1px solid #F0F0F0;
  padding-top: 60px;
  margin-top: 20px;
}

.hub-info-item h2 {
  font-size: 1.6rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.hub-info-item p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

.hub-info-item p a {
  color: #EE2922;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.hub-info-item p a:hover {
  border-bottom-color: #EE2922;
}

.institucional-section {
  padding: 80px 0 100px;
}

.institucional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.institucional-item {
  background: #FFF;
  padding: 45px 35px;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border: 1px solid #F2F2F2;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.institucional-item:hover {
  transform: translateY(-10px);
  border-color: rgba(238, 41, 34, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.institucional-item h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.institucional-item p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.institucional-item a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(238, 41, 34, 0.2);
}

.institucional-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(238, 41, 34, 0.05);
  color: #EE2922;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.value-prop-icon {
  width: 60px;
  height: 60px;
  background: #FFF5F5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.value-prop-icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.value-prop-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.value-prop-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.value-prop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-prop-list li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.value-prop-list li:last-child {
  margin-bottom: 0;
}



.intro-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 35px;
}

.intro-text p {
  margin-bottom: 15px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 41, 34, 0.4);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.intro-text a:hover {
  color: #EE2922;
  border-bottom-color: #EE2922;
}

.link-tel:hover {
  text-decoration: underline;
}

.link-red-bold:hover {
  text-decoration: underline;
}

.pulse-text {
  animation: pulseText 1s infinite alternate;
  opacity: 0.7;
}

.multitela-section,
.multitela-section.section-alt {
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #16213E 100%);
  position: relative;
  overflow: hidden;
}

.multitela-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(238, 41, 34, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.multitela-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
}

.multitela-text .section-kicker {
  margin-bottom: 16px;
}

.multitela-title {
  font-size: 4rem;
  font-weight: 900;
  color: #FFF;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.multitela-title span {
  color: var(--color-red);
}

.multitela-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

.multitela-desc strong {
  color: #FFF;
}

.multitela-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-yellow);
  line-height: 1;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-weight: 600;
}

.multitela-devices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.device-tv {
  grid-column: span 2;
}

.como-assinar-wrap {
  color: #FFF;
}

.como-assinar-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 8px;
}

.como-assinar-title span {
  color: var(--color-red);
}

.como-assinar-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--color-red);
  color: #FFF;
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(238, 41, 34, 0.5);
}

.step-icon {
  margin-bottom: 14px;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-yellow);
}

.step-connector {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.2);
  padding: 0 8px;
  flex-shrink: 0;
}

/* ========================================
   04 HEADER
======================================== */
.header-top-blue {
  background-color: var(--color-blue);
  color: #FFF;
  padding: 6px 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.header-claro {
  background-color: #FFF;
  border-bottom: 1px solid #EAEAEA;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  padding: 0;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a:hover {
  color: var(--color-red);
}

.icon-phone-red {
  width: 22px;
  height: 22px;
  stroke: var(--color-red-dark);
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: none;
  letter-spacing: -0.5px;
}

.header-phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 199, 0, 0.4);
}

.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
  border-radius: 4px;
  padding: 10px 0;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  background-color: #f1f1f1;
  color: var(--color-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background-color: var(--color-red);
  transition: var(--transition-speed);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: var(--drawer-width);
  max-width: 400px;
  height: 100%;
  background: #FFF;
  z-index: 1000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-content {
  flex: 1;
  padding: 15px 0;
}

.drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-item {
  border-bottom: 1px solid #F5F5F5;
}

.drawer-link,
.drawer-accordion-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}

.drawer-link:active,
.drawer-accordion-btn:active {
  background: #F0F0F0;
}

.drawer-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #FAFAFA;
}

.drawer-accordion-content.active {
  max-height: 500px;
}

.drawer-sublink {
  display: block;
  padding: 14px 25px 14px 45px;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #EEE;
}

.drawer-sublink:last-child {
  border-bottom: none;
}

.drawer-item.active .icon-chevron {
  transform: rotate(180deg);
}

.tv-card-header {
  padding: 22px 22px 0;
}

.ultra-header {
  border-bottom: 1px solid #F0F0F0;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-align: left;
}

.footer-inst-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  padding: 20px 30px;
  border-radius: 0;
  border: none;
  width: 100%;
  max-width: 420px;
}

.footer-inst-phone svg {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-inst-phone:hover svg {
  color: #ffffff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
}

.footer-inst-phone span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-inst-phone strong {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 4px 0;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.06),
                    0 0 18px rgba(255, 255, 255, 0.04),
                    0 0 22px rgba(226, 40, 32, 0.06);
}

.footer-inst-phone p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 12px 0;
}

.mobile-drawer-header {
  background-color: #FFF;
  border-bottom: 1px solid #EAEAEA;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-cta {
  display: block;
  background-color: #EE2922;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  width: 100%;
  margin-top: 20px;
}

/* ========================================
   05 HERO
======================================== */
.hero-section-fiber {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  min-height: 420px;
  color: #fff;
  text-align: center;
}

.hero-section-fiber > div:first-child {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  background: #1a0000;
}

.hero-section-fiber::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-section-fiber .container {
  position: relative;
  z-index: 2;
}

.cep-form-container {
  contain: layout;
  min-height: 140px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 30px;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: var(--color-text-main);
}

.cep-input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.cep-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid #EAEAEA;
  border-radius: 8px;
  font-size: 1.2rem;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition-smooth);
}

.cep-input:focus {
  border-color: var(--color-red);
}

.cep-input.input-error {
  border-color: var(--color-red);
  background-color: #FFF0F0;
}

.cep-error-msg {
  color: var(--color-red);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
  display: block;
}

/* ========================================
   06 CARDS
======================================== */
.lazy-render,
.ultravelocidade-section,
.combo-section,
.celular-section,
.tv-section,
.fone-section,
.info-text-section,
.multitela-section,
.hub-info-section,
.institucional-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.cards-grid,
.combo-cards-grid,
.celular-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.combo-card {
  background: #FFF;
  border: 2px solid var(--color-red);
  border-radius: 16px;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.combo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(238, 41, 34, 0.15);
}

.combo-card-destaque {
  border-width: 3px;
  box-shadow: 0 5px 20px rgba(238, 41, 34, 0.2);
  transform: translateY(-5px);
}

.combo-card-destaque:hover {
  transform: translateY(-10px);
}

.combo-card-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: var(--color-red);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.combo-badge-popular {
  background: var(--color-yellow);
  color: #000;
}

.combo-product-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
}

.combo-product-row:last-of-type {
  border-bottom: none;
}

.combo-icon-product {
  width: 22px;
  height: 22px;
  color: var(--color-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.combo-product-name {
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.combo-product-sub {
  font-size: 0.8rem;
  color: #888;
  margin-top: 3px;
  line-height: 1.3;
}

.combo-internet-tag {
  background: #FFF5F5;
  color: var(--color-red);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 12px;
}

.combo-price-area {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F0F0F0;
}

.combo-price-from {
  display: block;
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 500;
}

.combo-price-value {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.combo-price-value strong {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  letter-spacing: -2px;
}

.combo-price-value sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.combo-price-value span {
  font-size: 0.9rem;
  color: #666;
  margin-left: 3px;
}

.celular-card {
  background: #FFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 18px;
  overflow: visible;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.celular-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.celular-card-destaque {
  border: 2.5px solid var(--color-red);
  box-shadow: 0 10px 34px rgba(238, 41, 34, 0.17);
  transform: translateY(-6px);
}

.celular-card-destaque:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(238, 41, 34, 0.2);
}

.celular-card-body {
  padding: 30px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.celular-card-footer {
  padding: 16px 22px 22px;
}

.tv-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  gap: 28px;
  justify-content: center;
  margin-bottom: 30px;
}

.tv-card {
  background: #FFF;
  border: 1.5px solid #E0E0E0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.tv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
}

.tv-card-destaque {
  border: 2px solid var(--color-red);
  box-shadow: 0 8px 30px rgba(238, 41, 34, 0.14);
}

.tv-card-destaque:hover {
  box-shadow: 0 20px 50px rgba(238, 41, 34, 0.22);
}

.tv-card-kicker {
  font-size: 0.8rem;
  color: #888;
  font-weight: 600;
  margin-bottom: 4px;
}

.tv-card-titulo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-red);
  margin-bottom: 4px;
  line-height: 1;
}

.tv-card-subtitulo {
  font-size: 0.82rem;
  color: #AAA;
  margin-bottom: 18px;
}

.tv-card-footer {
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.tv-card-body {
  padding: 0 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ultra-grid {
  margin-top: 40px;
  align-items: stretch;
}

.plan-card-ultra {
  background: #FFF;
  border: 1px solid #E8E8E8;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: transform var(--transition-smooth);
  position: relative;
}

.plan-card-ultra:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.plan-card-ultra.highlight {
  border: 2.5px solid var(--color-red);
  transform: scale(1.04);
  z-index: 10;
  box-shadow: 0 18px 46px rgba(238, 41, 34, 0.18);
}

.plan-card-ultra.highlight:hover {
  transform: scale(1.06);
}

.ultra-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 5px;
}

.ultra-sub {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.ultra-price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-bottom: 25px;
  line-height: 1;
}

.ultra-price .currency {
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  margin-right: 2px;
  margin-bottom: 5px;
}

.ultra-price .value {
  font-size: 3.5rem;
  font-weight: 900;
  color: #000;
  letter-spacing: -2px;
}

.ultra-price .cents {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 5px;
}

.ultra-price .period {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  margin-left: 5px;
  margin-bottom: 5px;
}

.ultra-price.text-red .currency,
.ultra-price.text-red .value,
.ultra-price.text-red .cents {
  color: var(--color-red);
}

.features-ultra {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.features-ultra li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #444;
  font-weight: 600;
}



.hub-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.hub-card {
  background: #F8F8F8;
  border: 1px solid #EDEDED;
  padding: 24px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
}

.hub-card:hover {
  transform: translateY(-8px);
  background: #FFF;
  border-color: #EE2922;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.hub-card-icon {
  width: 36px;
  height: 36px;
  color: #EE2922;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-card-text {
  font-size: 15px;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
}

.value-prop-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #EAEAEA;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.value-prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(238, 41, 34, 0.08);
  border-color: rgba(238, 41, 34, 0.2);
}

.device-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}

.device-card:hover {
  background: rgba(238, 41, 34, 0.12);
  border-color: rgba(238, 41, 34, 0.4);
  transform: translateY(-4px);
}

.device-card svg {
  width: 44px;
  height: 44px;
  color: var(--color-red);
}

.device-card span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFF;
  text-align: center;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 24px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.step-card:hover {
  background: rgba(238, 41, 34, 0.1);
  transform: translateY(-6px);
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.step-card p strong {
  color: #FFF;
}

.fone-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}

.fone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.fone-card-destaque:hover {
  box-shadow: 0 16px 40px rgba(238, 41, 34, 0.22);
}

/* ========================================
   07 FAQ
======================================== */
.faq-section {
  background: #F7F7F7;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #FFF;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  border-color: #D0D0D0;
}

.faq-item[open] {
  border-color: var(--color-red);
  box-shadow: 0 6px 24px rgba(238, 41, 34, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: background 0.2s;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: #FAFAFA;
}

.faq-item[open] .faq-question {
  color: var(--color-red);
  background: #FFF8F8;
}

.faq-icon {
  flex-shrink: 0;
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  color: #999;
}

.faq-item[open] .faq-icon svg {
  transform: rotate(180deg);
  color: var(--color-red);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  /* NÃ£o usamos max-height animado pois details Ã© nativo â€” usamos padding */
}

.faq-item[open] .faq-answer {
  padding: 0 24px 22px;
  max-height: none;
}

.faq-answer strong {
  color: #222;
}









/* ========================================
   08 FOOTER
======================================== */
.footer-premium {
  background: linear-gradient(180deg, #c40f16 0%, #a80d13 45%, #8e0b10 100%);
  color: #fff;
  font-family: var(--font-primary, sans-serif);
  border-top: none;
}

.footer-commercial {
  background: rgba(0, 0, 0, 0.18);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-commercial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-commercial-item {
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-commercial-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-commercial-item p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-commercial-item strong {
  font-size: 1.15rem;
  font-weight: 700;
  display: block;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.footer-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #FFD700 0%, #FFC700 100%);
  color: #111;
  padding: 8px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 220px;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 199, 0, 0.3);
  background: linear-gradient(180deg, #FFE033 0%, #FFD700 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 30px;
}

.footer-inst {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 30px;
  margin-bottom: 40px;
  gap: 30px;
  box-shadow: none;
}

.footer-inst-logo img {
  width: 178px;
  height: auto;
}

.footer-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

.footer-col {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col:last-child {
  border-bottom: none;
}

.footer-col-title {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #ffffff;
  padding: 22px 0;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  margin: 0;
  line-height: 1.4;
}

.footer-col-title svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col-title.active svg {
  transform: rotate(180deg);
  color: #ffffff;
}





.footer-list {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  line-height: 1.5;
  position: relative;
  padding-bottom: 2px;
}

.footer-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-list a:hover::after {
  width: 100%;
}











.footer-sub-content .footer-list li {
  margin-bottom: 10px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.footer-legal-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.footer-legal-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-phrase {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   09 UTILITIES
======================================== */
.text-center {
  text-align: center;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.w-100 {
  width: 100%;
  display: block;
  text-align: center;
}

.text-red {
  color: var(--color-red);
}

.text-muted {
  color: var(--color-text-muted);
}

.btn-cta-yellow {
  background-color: var(--color-yellow);
  color: #000;
  border: none;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-weight);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.btn-cta-yellow:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.45);
}

.btn-giant {
  font-size: 1.3rem;
  padding: 18px 40px;
}

.btn-outline-red {
  border: 2px solid var(--color-red);
  color: var(--color-red);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-outline-red:hover {
  background-color: var(--color-red);
  color: #FFF;
}

.btn-outline-white:hover {
  background-color: #FFF;
  color: var(--color-red);
}

.btn-consultar {
  background: var(--color-yellow);
  border: none;
  border-radius: var(--btn-radius);
  padding: 0 35px;
  font-size: 1.1rem;
  font-weight: var(--btn-weight);
  color: #000;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-consultar:hover {
  background: var(--color-yellow-hover);
  transform: translateY(-2px);
}

.btn-copy-voucher {
  background: var(--color-red);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--btn-radius);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-copy-voucher:hover {
  background: var(--color-red-dark);
  transform: translateY(-1px);
}

.btn-copy-voucher.copied {
  background: #00A34A;
}

.btn-golden-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--color-yellow);
  color: #000;
  text-align: center;
  padding: 18px;
  border-radius: var(--btn-radius);
  font-size: 1.2rem;
  font-weight: var(--btn-weight);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 199, 0, 0.4);
  transition: var(--transition-smooth);
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.5px;
}

.btn-golden-full:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 199, 0, 0.6);
}

.btn-eu-quero {
  display: block;
  width: 100%;
  margin-top: 20px;
  background: var(--color-yellow);
  color: #000;
  font-weight: var(--btn-weight);
  font-size: 1rem;
  padding: 16px;
  border-radius: var(--btn-radius);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.35);
}

.btn-eu-quero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255, 199, 0, 0.55);
}

.btn-celular {
  display: block;
  width: 100%;
  background: var(--color-yellow);
  color: #000;
  font-weight: var(--btn-weight);
  font-size: var(--btn-font-size);
  padding: 14px;
  border-radius: var(--btn-radius);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-celular:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.5);
}

.btn-tv {
  display: block;
  width: 100%;
  background: var(--color-yellow);
  color: #000;
  font-weight: var(--btn-weight);
  font-size: var(--btn-font-size);
  padding: 14px;
  border-radius: var(--btn-radius);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-tv:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.5);
}

/* ========================================
   10 MEDIA QUERIES
======================================== */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
    padding: 0 40px;
  }
}

@media (min-width: 992px) {
  .sticky-cta-mobile {
    display: none !important;
  }
  
  .footer-commercial {
    padding: 10px 0;
  }
  
  .footer-commercial-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: left;
  }
  
  .footer-commercial-item {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 20px;
  }
  
  .footer-commercial-item:last-child {
    border-right: none;
    text-align: center;
    padding-right: 0;
  }
  
  .footer-commercial-item:first-child {
    padding-left: 0;
  }
  
  .footer-cta-btn {
    width: auto;
  }
  
  .footer-inst {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 40px 50px;
    margin-bottom: 60px;
  }
  
  .footer-inst-logo img {
    margin-bottom: 0;
  }
  
  .footer-inst-phone {
    flex-direction: row;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    max-width: none;
    gap: 25px;
  }
  
  .footer-inst-phone .phone-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .footer-inst-phone p {
    margin: 0;
  }
  
  .footer-inst-phone svg {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
  }
  
  .footer-inst-phone:hover svg {
    color: #ffffff;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
  }
  
  .footer-col {
    border-bottom: none;
  }
  
  .footer-col-title {
    pointer-events: none;
    padding: 0 0 30px 0;
    cursor: default;
    color: #fff;
    display: block;
  }
  
  .footer-col-title svg {
    display: none;
  }
  
  
  
  
  
  
  
  .intro-text {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .header-claro .container {
    padding: 0 10px;
  }
  
  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 5px;
  }
  
  .menu-toggle span {
    width: 26px;
  }
  
  .header-container {
    gap: 8px;
  }
  
  .header-action {
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
  }
  
  .header-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-yellow) !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
    height: 44px !important;
    padding: 0 18px !important;
    transition: all 0.3s ease;
  }
  
  .header-phone-btn svg {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px;
  }
  
  .header-phone-btn .cta-text-pill {
    font-size: 15px !important;
    font-weight: 800;
    color: #000;
    white-space: nowrap;
  }
  
  .header-logo {
    height: auto;
    width: 110px;
  }
  
  /* Hero mobile */
  
  .hero-section-fiber {
    padding: 45px 0 65px;
    min-height: 380px;
  }
  
  .hero-section-fiber::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%);
  }
  
  .h2-impact {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  /* CEP Form mobile */
  
  .cep-form-container {
    padding: 20px 15px;
    margin: 0 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
  }
  
  .cep-input-group {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .cep-input {
    flex: 1;
    min-width: 0;
    padding: 14px 12px;
    font-size: 1rem;
  }
  
  .btn-consultar {
    padding: 0 15px;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 100px;
  }
  
  /* Trust Bar mobile */
  
  
  
  
  
  
  
  /* Rating Bar mobile */
  
  
  
  
  
  
  
  
  
  
  
  .hub-info-section {
    padding: 60px 0;
  }
  
  .hub-title {
    font-size: 2.2rem;
  }
  
  .hub-info-content {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 40px;
  }
  
  .institucional-section {
    padding: 60px 0;
  }
  
  .institucional-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .institucional-item {
    padding: 35px 25px;
  }
  
  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-prop-card {
    padding: 25px 20px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  
  .value-prop-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .value-prop-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 359px) {
  .header-logo {
    width: 95px;
  }
  
  .header-action {
    gap: 8px;
  }
  
  .header-phone-btn {
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
  }
  
  .header-phone-btn svg {
    margin-right: 0;
  }
  
  .header-phone-btn .cta-text-pill {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hub-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hub-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hub-card {
    padding: 18px;
  }
  
  .hub-title {
    font-size: 1.85rem;
  }
  
  .hub-badge {
    font-size: 10px;
    padding: 7px 15px;
  }
  
  .value-prop-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .value-prop-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .multitela-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .multitela-title {
    font-size: 2.8rem;
  }
  
  .device-tv {
    grid-column: span 1;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step-connector {
    transform: rotate(90deg);
  }
  
  .como-assinar-title {
    font-size: 1.9rem;
  }
  
  .hidden-mobile {
    display: none;
  }
  
  .cards-grid,
  .ultra-grid,
  .combo-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 30px;
  }
  
  .combo-card-destaque {
    transform: none;
  }
  
  .celular-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .celular-card-destaque {
    transform: none;
  }
  
  .tv-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  
  .tv-card-destaque {
    box-shadow: 0 5px 20px rgba(238, 41, 34, 0.12);
  }
  
  .plan-card-ultra.highlight {
    transform: none !important;
  }
  
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  /* 1. STICKY CTA MOBILE */
  
  .sticky-cta-mobile {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: #EE2922 !important;
  }
  
  .sticky-cta-mobile a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #FFF !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    padding: 16px !important;
    gap: 10px !important;
    box-shadow: 0 -5px 15px rgba(238, 41, 34, 0.3) !important;
  }
  
  /* 2. SOBRE A CLARO NET (SLIDER LATERAL CSS-ONLY) */
  
  .value-props-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 20px !important;
    gap: 15px !important;
    grid-template-columns: none !important;
    /* Estilo premium de app */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
  }
  
  .value-props-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }
  
  .value-prop-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
  }
  
  /* 3. CARDS DO NET FONE E BOTÕES */
  
  .fone-cards-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .fone-section .plan-card-ultra {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
  
  .btn-cta-yellow {
    padding: 16px 20px !important;
    font-size: 1.1rem !important;
  }
}

@media (max-width: 992px) {
  .h2-impact {
    font-size: 2.2rem;
  }
  
  .cards-grid,
  .ultra-grid,
  .plan-card-ultra.highlight {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
  }
}

@media (max-width: 640px) {
  .fone-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}


/* ========================================
   STABILIZATION PATCHES
======================================== */

/* FOOTER ACCORDION RESTORE */
.footer-col-title {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    padding: 22px 0;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1.4;
}

/* CHECKMARKS CARDS RESTORE */
.features-ultra li::before,


/* HEADER ALIGNMENT RESTORE */
.header-phone-btn {
    display: flex;
    align-items: center;
}
.header-phone-btn svg {
    flex-shrink: 0;
    position: relative;
    top: -1px;
}


/* ========================================
   QA VISUAL PATCHES
======================================== */

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 2;
  contain: layout;
  min-height: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #FFF;
  font-weight: 800;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  white-space: nowrap;
  width: 200px;
  justify-content: center;
  margin: 0;
}
.trust-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-red);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.tabs-container {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 5px;
  justify-content: center;
}
.tabs-container::-webkit-scrollbar {
  display: none;
}
.tab-btn {
  background-color: #f5f5f7;
  border: 1px solid #e5e5e7;
  border-radius: 30px;
  color: #1d1d1f;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.tab-btn:hover {
  background-color: #e5e5e7;
}
.tab-btn.active {
  background-color: var(--color-red) !important;
  border-color: var(--color-red) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(225, 0, 0, 0.2);
}
.tab-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}





.footer-sub-acc-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 0;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.25s ease, padding-left 0.25s ease;
  letter-spacing: 0.5px;
}
.footer-sub-acc-btn:hover {
  color: #ffffff;
  padding-left: 3px;
}
.footer-sub-acc-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
.footer-sub-acc-btn:hover svg {
  opacity: 0.9;
}
.footer-sub-content {
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.06);
  margin-left: 4px;
  margin-top: 8px;
  margin-bottom: 15px;
}
.footer-col-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-col-content.active {
  max-height: 1500px;
}

@media (max-width: 991px) {
  .trust-bar {
    margin-top: 25px !important;
    gap: 10px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trust-item {
    font-size: 0.72rem !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 12px 10px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    color: #333 !important;
    font-weight: 700 !important;
    text-shadow: none !important;
    width: auto !important;
    margin: 0 !important;
  }
  .trust-item svg {
    width: 16px !important;
    height: 16px !important;
    filter: none !important;
  }
  .tabs-container {
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    justify-content: flex-start !important;
  }
}
@media (min-width: 992px) {
  .trust-bar {
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 50px !important;
    gap: 40px !important;
  }
  .trust-item {
    margin: 0 15px !important;
    width: auto !important;
  }
  
  
  
  
  .footer-sub-content {
    padding-left: 0 !important;
    border-left: none !important;
  }
}

/* CHECKMARKS CARDS RESTORE */
.features-ultra li::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #00A34A;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
    margin-right: 8px;
}


/* ========================================
   HERO DESKTOP REFINEMENTS (Moved from Inline)
======================================== */
@media (min-width: 992px) {
  .container-hero-home {
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .cep-form-container {
    min-height: 140px;
    position: relative;
    margin: 0 auto !important;
  }
}


/* ========================================
   RATING SOCIAL BAR (RESTORE BASELINE)
======================================== */
.rating-social-bar {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 12px 0;
  width: 100%;
}

.rating-social-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.rating-social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
}

.rating-divider {
  width: 1px;
  height: 18px;
  background-color: #d1d1d1;
}

.rating-stars {
  color: #FFC700;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.rating-score {
  font-weight: 600;
}

@media (max-width: 991px) {
  .rating-social-inner {
    flex-direction: column;
    gap: 8px;
  }
  .rating-divider {
    display: none;
  }
  .rating-social-item {
    font-size: 0.9rem;
  }
}


/* ========================================
   RESTORE FOOTER DROPDOWN (CIDADES E REGIOES)
======================================== */
/* Base Mobile (Accordion Funcional) */
.footer-region-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 5px;
}

.footer-region-details > summary.footer-sub-acc-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
  background: transparent;
  border: none;
}

.footer-region-details > summary.footer-sub-acc-btn::-webkit-details-marker {
  display: none;
}

.footer-region-details > summary.footer-sub-acc-btn svg {
  display: block !important;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

/* Estado Aberto (Mobile) */
.footer-region-details[open] > summary.footer-sub-acc-btn {
  color: #ffffff !important;
}

.footer-region-details[open] > summary.footer-sub-acc-btn svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* O Segredo do Layout Dinamico: nao forcar max-height no details nativo,
   deixar o DOM expandir naturalmente. */
.footer-region-details .footer-sub-content {
  padding-left: 12px !important;
  border-left: 2px solid rgba(255, 255, 255, 0.06) !important;
  margin-left: 4px;
  margin-top: 5px;
  margin-bottom: 15px;
  display: none; /* Native details doesn't need this, but to be safe against overrides */
}

.footer-region-details[open] .footer-sub-content {
  display: block !important;
}

.footer-region-details .footer-list li {
  margin-bottom: 10px;
}

/* ========================================
   DESKTOP (Lista Estatica Aberta)
======================================== */



/* ========================================
   RESTORE FOOTER COLUMNS (DESKTOP)
======================================== */
@media (min-width: 992px) {
  /* On desktop, footer columns are always fully open */
  .footer-col-content {
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
  }
}

/* ========================================
   RESTORE FOOTER REGIONS DROPDOWN (MOBILE & DESKTOP)
======================================== */
.footer-region-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 5px;
}

.footer-region-details > summary.footer-sub-acc-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
  background: transparent;
  border: none;
}

.footer-region-details > summary.footer-sub-acc-btn::-webkit-details-marker {
  display: none;
}

.footer-region-details > summary.footer-sub-acc-btn svg {
  display: block !important;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.footer-region-details[open] > summary.footer-sub-acc-btn {
  color: #ffffff !important;
}

.footer-region-details[open] > summary.footer-sub-acc-btn svg {
  transform: rotate(180deg);
  opacity: 1;
}

.footer-region-details .footer-sub-content {
  padding-left: 12px !important;
  border-left: 2px solid rgba(255, 255, 255, 0.06) !important;
  margin-left: 4px;
  margin-top: 5px;
  margin-bottom: 15px;
}


/* ========================================
   DEFENSIVE CSS FOR FOOTER REGION OVERLAP
======================================== */
.footer-region-details {
  display: block !important;
  position: relative !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  float: none !important;
  clear: both !important;
}

.footer-region-details[open] {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.footer-region-details .footer-sub-content {
  position: relative !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  float: none !important;
}

.footer-region-details[open] .footer-sub-content {
  display: block !important;
}

/* ========================================
   AI MICROBLOCKS (AI READY V1.1)
======================================== */
.ai-microblocks-container { max-width: 760px; margin: 0 auto; color: #444; }
.ai-microblock-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--color-red);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 24px;
}
.ai-microblock-card:last-child {
  margin-bottom: 0;
}
.ai-microblocks-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 12px; color: var(--color-red); }
.ai-microblocks-text { font-size: 1.05rem; line-height: 1.6; margin: 0; }

/* ========================================
   UX ENTERPRISE V1 - PÁGINAS INTERNAS
======================================== */
.internas-historico {
  padding: 80px 0;
  background-color: #f9fafb;
}

/* Refino de espaçamentos verticais - UX Polish V1 */
.geo-v2-section { padding-top: 60px; padding-bottom: 60px; }
.ai-microblocks-container { margin-bottom: 60px; }
.faq-container { margin-bottom: 60px; }

/* ========================================
   DESIGN SYSTEM - PÁGINAS FILHAS (UX V2)
======================================== */
.internas-flow-section {
  background-color: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #f5f5f5;
}

.internas-article-wrapper {
  max-width: 760px;
  margin: 0 auto;
  color: #333333;
}

.internas-article-wrapper h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-red);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.internas-article-wrapper p, .internas-article-wrapper ul {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.internas-article-wrapper li {
  margin-bottom: 12px;
}

/* ========================================
   UX V3: REFINO PREMIUM DE CARDS E FLUXO
======================================== */
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  border: 1px solid #e5e7eb;

  flex: 1;

.internas-banner-break {
  background-color: #0b1120;
  padding: 60px 0;
  text-align: center;
}

.internas-banner-break img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.internas-divider {
  border: 0;
  height: 1px;
  background: #e2e8f0;
  margin: 40px auto;
  max-width: 600px;
}

.internas-technical-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--color-red);
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
}

/* ========================================
   UX V4: CLARO BRAND IDENTITY (CARDS)
======================================== */
.claro-benefit-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease;
}

.claro-benefit-card:hover {
  border-color: var(--color-red);
}

.claro-icon-wrapper {
  background-color: #fff0f0; /* Fundo suave vermelho claro */
  color: var(--color-red);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.claro-benefit-content {
  flex: 1;
}

.claro-benefit-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #333333;
}

.claro-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.claro-benefit-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.5;
}

.claro-benefit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00A34A; /* Verde corporativo de check */
  font-size: 1.1rem;
}

/* ==========================================================================
   DS-20: HUB ESTADOS (RECONSTRUÇÃO CONTROLADA)
   ========================================================================== */
.hub-estados-section {
  padding: 60px 0;
  background: #fafafa;
}
.hub-estados-header {
  margin-bottom: 32px;
}
.hub-estados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.hub-estado-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.hub-estado-icon {
  color: #EE2922;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub-estado-card:hover {
  border-color: #EE2922;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.hub-estado-title {
  font-size: 15px;
  font-weight: 800;
  color: #333;
  display: block;
  margin-bottom: 4px;
}
.hub-estado-subtitle {
  font-size: 11px;
  color: #666;
  display: block;
}
.hub-cidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.hub-cidade-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  transition: all 0.3s ease;
  min-height: 60px;
}
.hub-cidade-icon {
  color: #EE2922;
  display: flex;
  align-items: center;
}
.hub-cidade-card:hover {
  border-color: #EE2922;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: translateY(-2px);
  color: #EE2922;
}
\n
/* ==========================================================================
   DS-22: HUB REGIÃO PAI (RECONSTRUÇÃO CONTROLADA)
   ========================================================================== */
.hub-regiao-section {
  position: relative;
}
.hub-regiao-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  max-width: 380px;
  margin: 0 auto;
}
.hub-regiao-card:hover {
  border-color: #EE2922;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.hub-regiao-icon {
  width: 56px;
  height: 56px;
  background: #FFF0F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EE2922;
  margin-bottom: 16px;
}
.hub-regiao-title {
  font-size: 18px;
  font-weight: 800;
  color: #333;
  margin-bottom: 16px;
}
.hub-regiao-cta {
  font-size: 11px;
  font-weight: 800;
  color: #EE2922;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
  
/* ======================================== */  
/* CV-18 SOBRE A CLARO (CORINGA)          */  
/* ======================================== */  
.cv18-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.cv18-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cv18-text-col {
  display: flex;
  flex-direction: column;
}

.cv18-h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #EE2922;
  margin-bottom: 24px;
}

.cv18-p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cv18-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.cv18-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4b5563;
}

.cv18-bullet {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #EE2922;
  margin-top: 2px;
}

.cv18-cta {
  font-size: 1.05rem;
  font-weight: 900;
  color: #EE2922;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cv18-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.cv18-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cv18-img-wrapper {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
}

.cv18-img {
  max-width: 100%;
  height: auto;
}

.cv18-chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.cv18-chip {
  background: #FAFAFA;
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cv18-chip-icon {
  width: 20px;
  height: 20px;
  color: #EE2922;
  flex-shrink: 0;
}

.cv18-chip-text {
  font-size: 10px;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 991px) {
  .cv18-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================================================
   CV-07 INDIVIDUAL (Design System V4.1)
   Exclusivo para conversão e foco em um único produto
   ===================================================== */
.cv07-individual {
  max-width: 480px;
  margin: 0 auto;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
  border-radius: 12px;
  background: var(--bg-card);
  border: 2px solid var(--claro-red);
}

.cv07-individual:hover {
  transform: scale(1.06);
}

/* --- CV-08 INDIVIDUAL --- */
.cv08-individual-wrapper { padding: 20px 0; }
.cv08-individual { margin: 0 auto !important; max-width: 450px; box-shadow: 0 12px 32px rgba(0,0,0,0.12); transform: scale(1.02); border: 2px solid #EE2922; }
.cv08-individual .tv-card-header .tv-card-titulo { font-size: 2rem; }
.cv08-individual .btn-tv { font-size: 1.1rem; padding: 16px; }

.value-prop-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #00A34A;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

/* =====================================================
   CV-47: GEO Block Oficial Claro (CEP Red)
   ===================================================== */
.cv47-geo-block { background: #EE2922; color: #fff; position: relative; overflow: hidden; }
.cv47-container { max-width: 800px; position: relative; z-index: 2; }
.cv47-headline .section-kicker { background: rgba(255,255,255,0.2); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.cv47-headline .h2-section { color: #fff; }
.cv47-headline .text-highlight { color: #FFD700; }
.cv47-headline .section-subtitle { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.cv47-form-wrapper { background: #fff; border-radius: 8px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); margin: 0 auto; max-width: 500px; color: #333; }
.cv47-form-wrapper .cep-form-container { background: transparent; padding: 0; border: none; }
