/* ============================================
   LM CONECTA TELECOM - ESTILOS GLOBAIS
   ============================================ */

:root {
  --primary: #C41E3A;
  --primary-dark: #8B1538;
  --foreground: #2A2A2A;
  --background: #FFFFFF;
  --secondary: #F5F5F5;
  --border: #E5E5E5;
  --text-light: #666666;
  --text-muted: #999999;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

/* ============================================
   TIPOGRAFIA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ============================================
   CONTAINER E LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

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

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 0.5rem 0;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.partnership-badge {
  display: none;
  position: absolute;
  left: 50%;
  top: 0.5rem;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--secondary);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  line-height: 1;
}

.partnership-badge::before {
  content: '';
  display: block;
  width: 4.2rem;
  height: 1.05rem;
  background-image: url("../images/streamings/logo/clarologo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}

@media (min-width: 1280px) {
  .partnership-badge {
    display: inline-flex;
  }
}

nav {
  display: none;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  nav {
    display: flex;
  }
}

nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a[aria-current="page"] {
  color: var(--primary);
}

nav a[aria-current="page"]::after {
  width: 100%;
}

.cta-button {
  display: none;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .cta-button {
    display: flex;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  font-size: 1.5rem;
}

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

.mobile-menu {
  background-color: var(--secondary);
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav a {
  padding: 0.75rem;
  color: var(--foreground);
  border-radius: var(--radius);
}

.mobile-nav a[aria-current="page"] {
  background-color: rgba(196, 30, 58, 0.08);
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   BOTÕES
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--foreground) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    height: 700px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.8) 0%, rgba(139, 21, 56, 0.6) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 48rem;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

.hero .price {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: white;
  font-size: 2rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.services-grid {
  gap: 2rem;
}

.service-card {
  text-align: center;
}

.service-logo {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

.card-image {
  width: 100%;
  height: 200px;
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.card-description {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.card-price-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.card-benefits {
  list-style: none;
  margin-bottom: 1.5rem;
}

.card-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.card-benefits li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.card-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   POR QUE ESCOLHER
   ============================================ */

.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, #7f1026 0%, #c41e3a 48%, #1b1e28 100%);
  color: white;
}

.why-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.22;
  pointer-events: none;
}

.why-glow-left {
  left: -120px;
  top: -100px;
  background: #ff9aad;
}

.why-glow-right {
  right: -120px;
  bottom: -120px;
  background: #ffd0d8;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.why-header h2 {
  color: white;
}

.section-header.why-header p {
  color: rgba(255, 255, 255, 0.82);
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.why-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(14px);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background-color 0.32s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.16), transparent 32%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    0 26px 58px rgba(17, 17, 17, 0.24),
    0 0 32px rgba(255, 185, 198, 0.16);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 220, 226, 0.86)),
    white;
  color: var(--primary);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 28px rgba(56, 8, 20, 0.18);
}

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

.why-card h3 {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

.why-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.why-cta {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin-top: 2rem;
  text-align: center;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.why-actions .btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.why-disclaimer {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

@media (max-width: 520px) {
  .why-card {
    padding: 1.15rem;
  }

  .why-actions {
    width: 100%;
  }

  .why-actions .btn {
    width: 100%;
  }
}

/* ============================================
   PÁGINA DE PLANOS
   ============================================ */

.plans-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #7f1026 0%, #c41e3a 45%, #1b1e28 100%);
  color: white;
  padding: 3.5rem 0;
}

.plans-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .plans-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  }
}

.plans-hero-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.28;
}

.plans-hero-glow-left {
  left: -80px;
  top: -40px;
  background: #ff8aa0;
}

.plans-hero-glow-right {
  right: -100px;
  bottom: -80px;
  background: #ffcad3;
}

.plans-hero-copy h1 {
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  color: white;
  margin-bottom: 0.85rem;
}

.plans-hero-copy p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 0;
}

.plans-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.35rem 0;
}

.plans-hero-actions .btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.plans-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.plans-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.plans-hero-stats {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .plans-hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.plans-stat {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.plans-stat strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.plans-stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.offer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

@media (min-width: 720px) {
  .offer-benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.offer-benefit {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 48px;
  padding: 0.5rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.offer-benefit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
}

.offer-benefit strong {
  color: white;
  font-size: 0.74rem;
  line-height: 1.15;
}

.plans-hero-spotlight {
  display: flex;
  justify-content: center;
}

.home-offers-spotlight {
  align-items: center;
}

.home-offers-carousel-wrap {
  width: min(100%, 390px);
  min-width: 0;
}

.home-offers-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.home-offers-controls .carousel-btn {
  width: 38px;
  height: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.home-offers-controls .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.home-offers-carousel {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.home-offers-carousel .home-offer-card {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.home-offers-carousel .home-offer-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.home-offer-card.fade-in {
  animation: none;
}

.plans-hero.fade-in {
  animation: none;
}

.home-offer-card .plan-badge {
  padding: 0.3rem 0.6rem;
  font-size: 0.66rem;
}

.home-offer-card .plans-spotlight-top {
  margin-bottom: 0.85rem;
}

.home-offer-card h2 {
  color: white;
  font-size: 1.16rem;
  line-height: 1.18;
  margin-bottom: 0.55rem;
}

.home-spotlight-description {
  min-height: 3.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.42;
  margin-bottom: 0.8rem;
}

.home-spotlight-label {
  display: block;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.home-offer-card .plans-spotlight-price {
  font-size: 2rem;
  margin-top: 0.25rem;
  margin-bottom: 0.85rem;
}

.home-offer-card .plans-spotlight-list {
  margin-bottom: 0.95rem;
}

.home-offer-card .plans-spotlight-list li {
  font-size: 0.78rem;
}

.home-spotlight-note {
  margin-bottom: 0.95rem;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  line-height: 1.4;
}

.home-offer-card .btn {
  padding: 0.78rem 1rem;
  font-size: 0.86rem;
}

.home-spotlight-disclaimer {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
}

.home-offers-dots {
  display: flex;
  justify-content: center;
  gap: 0.42rem;
  margin-top: 0.8rem;
}

.home-offers-dot {
  width: 22px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.home-offers-dot.is-active {
  width: 34px;
  background: white;
}

@media (prefers-reduced-motion: reduce) {
  .home-offer-card {
    transition: none;
  }
}

.plans-spotlight-card {
  width: 100%;
  padding: 1.25rem;
  border-radius: 20px;
  color: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(14px);
}

.plans-spotlight-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.plans-spotlight-card h2 {
  color: white;
  font-size: 1.22rem;
  margin-bottom: 0.65rem;
}

.plans-spotlight-price {
  color: white;
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.plans-spotlight-price span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.plans-spotlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
  list-style: none;
  margin-bottom: 1rem;
}

.plans-spotlight-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  line-height: 1.25;
}

.plans-spotlight-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd4dc;
}

.spotlight-streamings {
  margin-bottom: 1rem;
}

.spotlight-streamings-title {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spotlight-streaming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.spotlight-streaming-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.35rem 0.45rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(10, 12, 18, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.logo-netflix {
  background: rgba(229, 9, 20, 0.12);
}

.logo-globoplay {
  background: rgba(255, 124, 54, 0.12);
}

.logo-max {
  background: rgba(75, 119, 255, 0.14);
}

.logo-disney {
  background: rgba(70, 140, 255, 0.14);
}

.logo-prime {
  background: rgba(0, 168, 225, 0.14);
}

.logo-apple {
  background: rgba(255, 255, 255, 0.11);
}

.spotlight-streaming-logo span {
  display: block;
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.logo-netflix span {
  color: #ff3342;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.logo-globoplay span {
  color: #ffdf6d;
}

.logo-max span {
  color: #9fc2ff;
}

.logo-disney span {
  color: #d7ecff;
}

.logo-prime span {
  color: #7ddcff;
}

.logo-apple span {
  color: #ffffff;
}

.plans-toolbar-section {
  background: linear-gradient(180deg, #fff 0%, #faf4f5 100%);
}

.plans-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .plans-toolbar {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    align-items: center;
  }
}

.plans-filters {
  margin-bottom: 0;
}

.plans-search input {
  background: white;
  border: 1px solid rgba(196, 30, 58, 0.12);
  box-shadow: var(--shadow-sm);
}

.plans-summary {
  min-height: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.plans-summary strong {
  color: var(--foreground);
}

.plans-carousel-controls {
  display: none;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(196, 30, 58, 0.16);
  border-radius: 999px;
  background: white;
  color: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.plans-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(196, 30, 58, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 245, 246, 0.98)),
    white;
  box-shadow: 0 18px 34px rgba(139, 21, 56, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 30, 58, 0.22);
  box-shadow: 0 26px 50px rgba(139, 21, 56, 0.14);
}

.plan-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.plan-icon,
.regional-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.14), rgba(139, 21, 56, 0.18));
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
}

.plan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
}

.plan-badge-hot {
  background: #fff5f7;
  color: var(--primary-dark);
  border-color: rgba(139, 21, 56, 0.22);
}

.plan-badge-bonus {
  background: #fff1cc;
  color: #5f3b00;
  border-color: rgba(95, 59, 0, 0.18);
}

.plan-badge-neutral {
  background: #f2f2f2;
  color: var(--foreground);
  border-color: rgba(42, 42, 42, 0.14);
}

.plan-upgrade {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.06);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.plan-card-title {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.plan-card-description {
  min-height: 3.6rem;
}

.plan-price-block {
  padding: 1rem 0;
  border-top: 1px solid rgba(196, 30, 58, 0.08);
  border-bottom: 1px solid rgba(196, 30, 58, 0.08);
  margin-bottom: 1rem;
}

.card-price span,
.regional-price span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.premium-benefits {
  margin-bottom: 1.25rem;
  flex: 1;
}

.premium-benefits li {
  align-items: flex-start;
}

.premium-benefits li::before {
  content: '✓';
}

.plan-economy,
.regional-savings {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08), rgba(255, 255, 255, 0.6));
  color: var(--foreground);
  font-size: 0.88rem;
}

.multi-argument-section {
  background: linear-gradient(180deg, #fff5f7 0%, #ffffff 100%);
}

.multi-argument-card {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #1d2029 0%, #2b0d15 100%);
  color: white;
  box-shadow: 0 30px 60px rgba(29, 32, 41, 0.18);
}

@media (min-width: 960px) {
  .multi-argument-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb5c1;
}

.business-info-section {
  background-color: var(--secondary);
}

.business-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.business-info-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.business-info-card-wide {
  grid-column: 1 / -1;
}

.business-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.business-info-card p,
.business-info-card li {
  color: var(--text-light);
}

.business-info-card p:last-child,
.business-info-card ul {
  margin-bottom: 0;
}

.business-info-card ul {
  padding-left: 1.1rem;
}

.business-info-card a {
  font-weight: 700;
}

.multi-argument-card h2,
.cta-band h2 {
  color: white;
}

.multi-argument-card p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.multi-argument-points {
  display: grid;
  gap: 1rem;
}

.multi-point {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.multi-point strong {
  display: block;
  margin-bottom: 0.35rem;
}

.multi-point span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.regional-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.regional-grid {
  display: grid;
  gap: 1.5rem;
}

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

.regional-card {
  padding: 1.5rem;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(42, 42, 42, 0.08);
  box-shadow: 0 12px 28px rgba(42, 42, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.regional-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.regional-observation {
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--warning);
  background: rgba(245, 158, 11, 0.12);
  border-radius: 0 14px 14px 0;
  color: #8b5a00;
  font-size: 0.88rem;
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-band-content {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .cta-band-content {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* ============================================
   EMPRESARIAL
   ============================================ */

.business-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #7f1026 0%, #c41e3a 45%, #1b1e28 100%);
  color: white;
  padding: 3.5rem 0;
}

.business-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.business-hero-grid > * {
  min-width: 0;
}

@media (min-width: 1024px) {
  .business-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  }
}

.business-hero-copy h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.35rem);
  margin-bottom: 0.85rem;
}

.business-hero-copy p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 0;
}

.business-hero-actions,
.business-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.business-hero-actions {
  margin: 1.35rem 0;
}

.business-hero-actions .btn-lg,
.business-cta-actions .btn-lg {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
}

.business-hero-offers {
  min-width: 0;
}

.business-proof-grid {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .business-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.business-proof-item {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.business-proof-item strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.business-proof-item span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.business-hero-offers-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.business-hero-offers-top > span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.business-hero-offer-controls {
  display: flex;
  gap: 0.45rem;
}

.business-hero-offer-controls .carousel-btn {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: white;
  box-shadow: none;
}

.business-hero-offers-carousel {
  position: relative;
  min-height: 318px;
  overflow: hidden;
}

.business-hero-offer-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px) scale(0.98);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.business-hero-offer-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.business-hero-offer-card strong {
  display: block;
  min-height: 0;
  color: white;
  font-size: 1.12rem;
  line-height: 1.18;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.business-hero-offer-price {
  margin-bottom: 0.85rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.business-hero-offer-price small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.business-hero-offer-price b {
  display: block;
  color: white;
  font-size: 2rem;
  line-height: 1.1;
  margin-top: 0.25rem;
}

.business-hero-offer-price b span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
}

.business-hero-offer-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  list-style: none;
  margin-bottom: 1rem;
}

.business-hero-offer-card li {
  position: relative;
  padding-left: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  line-height: 1.35;
}

.business-hero-offer-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffd4dc;
}

.business-hero-offer-card .btn {
  margin-top: auto;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.business-hero-offers-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.business-hero-offers-dot {
  width: 22px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.business-hero-offers-dot.is-active {
  width: 34px;
  background: white;
}

@media (prefers-reduced-motion: reduce) {
  .business-hero-offer-card {
    transition: none;
  }
}

.business-hero-card {
  width: 100%;
  min-width: 0;
  padding: 1.25rem;
  border-radius: 20px;
  color: white;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.24);
  backdrop-filter: blur(14px);
}

.business-hero-carousel-card {
  align-self: center;
}

.business-hero-card h2 {
  color: white;
  font-size: 1.35rem;
  margin: 1rem 0 0.65rem;
}

.business-hero-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.business-hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
  margin-top: 1rem;
}

.business-hero-list li {
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.business-section {
  background: white;
}

.business-section-muted {
  background: linear-gradient(180deg, #fff 0%, #faf4f5 100%);
}

.business-plan-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .business-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .business-plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.business-plan-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(196, 30, 58, 0.16);
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 40px rgba(196, 30, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.business-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 30, 58, 0.28);
  box-shadow: 0 22px 48px rgba(196, 30, 58, 0.12);
}

.business-plan-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  min-height: auto;
  padding: 0 0 0.9rem;
  background: transparent;
  color: var(--foreground);
}

.business-plan-header::before {
  content: '🚀';
  order: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.14), rgba(139, 21, 56, 0.18));
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
}

.business-section-fiber .business-plan-header::before {
  content: '';
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(139, 21, 56, 0.18)),
    url("../images/business/fibra-optica.svg") center / 44px 44px no-repeat;
  font-size: 0;
}

.business-section-muted .business-plan-header::before {
  content: '';
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(139, 21, 56, 0.18)),
    url("../images/business/ip-dinamico-devices.svg") center / 44px 44px no-repeat;
  font-size: 0;
}

.business-section-ip-fixed .business-plan-header::before {
  content: '';
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(139, 21, 56, 0.18)),
    url("../images/business/ip-fixo-lock.svg") center / 44px 44px no-repeat;
  font-size: 0;
}

.business-plan-header::after {
  content: 'Upgrade de valor → mais conversão';
  order: 2;
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.06);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.business-plan-header span {
  order: 1;
  display: inline-flex;
  margin-bottom: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff5f7;
  color: var(--primary-dark);
  border: 1px solid rgba(139, 21, 56, 0.22);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.business-plan-header h3 {
  order: 3;
  width: 100%;
  color: var(--foreground);
  font-size: 1.22rem;
  line-height: 1.15;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.business-plan-header h3::after {
  content: 'Solução empresarial para rotina conectada, operação estável e atendimento consultivo.';
  display: block;
  margin-top: 0.65rem;
  color: var(--text-light);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
}

.business-plan-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
}

.business-price-grid {
  display: grid;
  gap: 0;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #f4dfe3;
  border-bottom: 1px solid #f4dfe3;
}

.business-price-item {
  display: grid;
  gap: 0.3rem;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.business-price-primary {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.business-price-item span {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
}

.business-price-item strong {
  color: var(--primary);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.business-price-primary span {
  color: var(--primary-dark);
}

.business-price-item-wide {
  min-height: auto;
  align-content: start;
}

.business-speed-list {
  list-style: none;
  margin: 0 0 1rem;
  padding-top: 0;
  border-top: 0;
}

.business-speed-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.business-speed-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
}

.business-speed-list::after {
  content: 'Comparativo de economia: combine serviços e fortaleça o fechamento.';
  display: block;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fff1f4;
  color: var(--foreground);
  font-size: 0.82rem;
  line-height: 1.35;
}

.business-plan-body .btn {
  margin-top: auto;
}

.business-plan-body .card-disclaimer {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
}

.business-observation {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(196, 30, 58, 0.14);
  border-radius: 14px;
  background: #fff7f8;
  color: var(--foreground);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 560px) {
  .business-hero-copy,
  .business-hero-card {
    max-width: 360px;
  }

  .business-hero-copy h1 {
    font-size: 1.8rem;
  }

  .business-hero-copy h1,
  .business-hero-copy p,
  .business-hero-card h2,
  .business-hero-card p {
    overflow-wrap: anywhere;
  }

  .business-hero-actions .btn,
  .business-cta-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .business-hero-list {
    grid-template-columns: 1fr;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  z-index: 50;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  color: white;
  transform: scale(1.08);
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.34);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(196, 30, 58, 0.2);
  border-radius: 20px;
  background: white;
}

/* ============================================
   GRADE DE CANAIS
   ============================================ */

.channel-category-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.channel-category-card {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.channel-category-card:hover,
.channel-category-card.active {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.22);
}

.channel-category-card strong,
.channel-category-card span {
  display: block;
}

.channel-category-card strong {
  color: var(--foreground);
  margin-bottom: 0.35rem;
}

.channel-category-card span:last-child {
  color: var(--text-light);
  font-size: 0.9rem;
}

.channel-category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--secondary);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.channel-grid {
  display: grid;
  gap: 1rem;
}

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

@media (min-width: 960px) {
  .channel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .channel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.channel-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 30, 58, 0.18);
}

.channel-item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--secondary);
  font-size: 1.1rem;
}

.channel-item-name {
  font-weight: 600;
  color: var(--foreground);
}

.channel-streaming-card {
  flex-direction: column;
  gap: 0.75rem;
  height: 140px;
  background: white;
  border: 1px solid var(--border);
}

.channel-streaming-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.12), rgba(139, 21, 56, 0.16));
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.channel-streaming-name {
  font-weight: 600;
  color: var(--foreground);
}

.channel-info-card {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.channel-search-box {
  max-width: 720px;
  margin: 0 auto 1rem;
}

.channels-hero .btn {
  max-width: 100%;
}

.channel-control-section {
  padding: 4rem 0 3rem;
}

.channel-control-section .section-header {
  margin-bottom: 1.75rem;
}

.channel-guide-section {
  padding: 2.5rem 0 4rem;
}

.channels-filter-bar {
  justify-content: center;
  margin-bottom: 0;
}

.channels-filter-bar .filter-btn {
  gap: 0.45rem;
}

.channels-filter-bar .filter-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.08);
  color: currentColor;
  font-size: 0.75rem;
  font-weight: 800;
}

.channel-accordion-list {
  display: grid;
  gap: 0.85rem;
}

.channel-accordion {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 0;
}

.channel-accordion-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  min-height: 64px;
  padding: 0 1rem;
  border: 0;
  background: white;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
}

.channel-accordion-header:hover {
  background: #fff7f8;
}

.channel-accordion-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.channel-accordion-count {
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.channel-accordion-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--foreground);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.channel-accordion-header:hover .channel-accordion-chevron {
  background: rgba(196, 30, 58, 0.08);
}

.channel-accordion:not(.is-open) .channel-accordion-chevron {
  transform: rotate(-90deg);
}

.channel-accordion-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: #f4f4f4;
}

.channel-accordion.is-open .channel-accordion-panel {
  display: block;
}

.channel-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #eeeeee;
}

@media (min-width: 760px) {
  .channel-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .channel-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.channel-logo-card {
  display: grid;
  grid-template-rows: 44px auto;
  align-items: center;
  justify-items: center;
  min-height: 92px;
  padding: 0.85rem 0.75rem;
  background: white;
  text-align: center;
}

.channel-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 150px);
  min-height: 38px;
  color: var(--channel-logo-color, var(--foreground));
}

.channel-logo-mark span {
  display: block;
  max-width: 100%;
  color: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: none;
}

.channel-logo-name {
  align-self: start;
  max-width: 100%;
  color: #344054;
  font-size: 0.83rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .channels-hero .btn {
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 1rem;
    white-space: normal;
    text-align: center;
  }

  .channel-accordion-header {
    gap: 0.55rem;
    padding: 0 0.8rem;
  }

  .channel-accordion-count {
    font-size: 0.76rem;
  }
}

/* ============================================
   STREAMINGS TV BOX
   ============================================ */

.streaming-logo-card {
  flex-direction: column;
  gap: 0;
  height: 150px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.streaming-logo-card:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.03);
}

.streaming-brand {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.streaming-brand-image {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  width: 118px;
  height: 118px;
}

.streaming-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.streaming-logo-card:hover .streaming-logo-image {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

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

.streaming-highlight h3 {
  margin-bottom: 2rem;
}

.streaming-benefits-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .streaming-benefits-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.streaming-benefit {
  padding: 1.25rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.streaming-benefit-icon {
  font-size: 2rem;
  margin-bottom: 0.65rem;
}

.streaming-benefit p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.hero-streaming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-streaming-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.hero-streaming-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(0, 0, 0, 0.12);
}

.hero-streaming-item img {
  width: 100%;
  height: 100%;
  max-width: 82px;
  max-height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.18));
}

.tv-spotlight-list {
  margin-top: 0;
}

/* ============================================
   SEÇÕES
   ============================================ */

section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .business-info-grid {
    grid-template-columns: 1fr;
  }
}

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

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: var(--foreground);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-partnership {
  margin-bottom: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FORMULÁRIOS
   ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   FILTROS E BUSCA
   ============================================ */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--border);
  background-color: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--foreground);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.search-box {
  position: relative;
  margin-bottom: 2rem;
}

.search-box input {
  padding-left: 2.5rem;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */

.testimonial {
  background-color: var(--secondary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.testimonial-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.testimonial-rating {
  color: #FCD34D;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   FAQ
   ============================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.3s ease;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

/* ============================================
   STREAMING LOGOS
   ============================================ */

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

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

.streaming-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.streaming-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  filter: brightness(1.1);
}

.streaming-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .plans-hero {
    padding: 2.75rem 0;
  }

  .plans-hero-grid {
    gap: 1.25rem;
  }

  .plans-spotlight-card {
    padding: 1rem;
  }

  .plans-spotlight-price {
    font-size: 2.05rem;
  }

  .spotlight-streaming-logo span {
    font-size: 0.68rem;
  }

  .plans-carousel-controls {
    display: flex;
  }

  .plans-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .plans-grid::-webkit-scrollbar {
    height: 8px;
  }

  .plans-grid::-webkit-scrollbar-thumb {
    background: rgba(196, 30, 58, 0.24);
    border-radius: 999px;
  }

  .plan-card {
    min-width: 88%;
    scroll-snap-align: start;
  }

  .home-offer-card {
    width: 100%;
    min-width: 0;
    scroll-snap-align: unset;
  }
}

@media (max-width: 520px) {
  .plans-hero {
    padding: 2.25rem 0;
  }

  .plans-hero-copy h1 {
    font-size: 1.68rem;
    line-height: 1.25;
    max-width: 21rem;
  }

  .plans-hero-copy p {
    max-width: 21rem;
  }

  .plans-hero-actions,
  .plans-hero-stats,
  .offer-benefits-grid,
  .home-offers-carousel-wrap {
    max-width: 21rem;
  }

  .plans-hero-actions .btn-lg {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.85rem 0.9rem;
    font-size: 0.92rem;
  }

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

  .plans-hero-spotlight {
    justify-content: flex-start;
  }

  .home-offers-carousel-wrap {
    width: 100%;
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

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

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.6s ease-out;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.hidden {
  display: none;
}

.visible {
  display: block;
}

.w-full {
  width: 100%;
}

.max-w-lg {
  max-width: 32rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.whatsapp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 18, 0.6);
  backdrop-filter: blur(4px);
}

.whatsapp-modal-dialog {
  position: relative;
  width: min(92vw, 520px);
  margin: 8vh auto 0;
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fbf5f6 100%);
  border: 1px solid rgba(196, 30, 58, 0.12);
  box-shadow: 0 24px 60px rgba(30, 18, 22, 0.22);
}

.whatsapp-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(196, 30, 58, 0.08);
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.whatsapp-modal-content h3 {
  margin-bottom: 0.75rem;
}

.whatsapp-modal-content p {
  margin-bottom: 1.5rem;
}

.whatsapp-consultant-list {
  display: grid;
  gap: 1rem;
}

.whatsapp-consultant-card {
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(196, 30, 58, 0.12);
  background: white;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.whatsapp-consultant-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.25);
  box-shadow: var(--shadow-md);
}

.whatsapp-consultant-card strong,
.whatsapp-consultant-card span {
  display: block;
}

.whatsapp-consultant-card strong {
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.whatsapp-consultant-card span {
  color: var(--text-light);
  font-size: 0.95rem;
}
