@charset "UTF-8";

/* ==========================================================================
   1. VARIÁVEIS & SETUP
   ========================================================================== */
:root {
  --blue-primary: #12285e;
  --blue-dark: #091535;
  --blue-card: #1c367a;
  --orange-primary: #ed7903;
  --orange-gradient: linear-gradient(135deg, #f39c12, #d35400);
  --blue-gradient: linear-gradient(135deg, #1c367a, #12285e);
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #2c3e50;
  --success: #25d366;
  --cyan: #00c6ff;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 20px rgba(237, 121, 3, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--light-gray);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==========================================================================
   2. HEADER
   ========================================================================== */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: padding 0.3s ease;
}
header img { height: 65px; transition: transform 0.3s ease; }
header img:hover { transform: scale(1.05); }

/* ==========================================================================
   3. HERO SECTION (BRANCO & INTERATIVO)
   ========================================================================== */
.hero-white {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 5% 100px;
  background-color: var(--white);
}

/* Fundo Interativo (Partículas de Fibra) */
.interactive-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.data-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--cyan);
  animation: floatDot 10s infinite linear;
}
.data-dot.d1 { top: 20%; left: -10%; animation-duration: 8s; }
.data-dot.d2 { top: 60%; left: -10%; animation-duration: 12s; background: var(--orange-primary); box-shadow: 0 0 15px var(--orange-primary); }
.data-dot.d3 { top: 80%; right: -10%; animation-duration: 15s; animation-direction: reverse; }
.data-dot.d4 { top: 30%; right: -10%; animation-duration: 9s; animation-direction: reverse; }
@keyframes floatDot {
  from { transform: translateX(0); }
  to { transform: translateX(110vw); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-primary);
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--blue-primary);
}
.hero-desc {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  max-width: 650px;
  margin: 0 auto 40px;
}

/* Efeito de Texto Fibra Óptica */
.fiber-text {
  background: linear-gradient(90deg, var(--blue-primary) 0%, var(--cyan) 25%, var(--orange-primary) 50%, var(--cyan) 75%, var(--blue-primary) 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineFiber 3s linear infinite;
  display: inline-block;
}
@keyframes shineFiber {
  to { background-position: 200% center; }
}

/* Nó piscante simulando conexão de fibra */
.fiber-node {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: var(--orange-primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--orange-primary);
  animation: pulseNode 1.5s infinite;
  margin-left: 10px;
  vertical-align: baseline;
}
@keyframes pulseNode {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Botão do Banner Branco */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(18,40,94,0.3);
}
.btn-primary svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  transition: var(--transition);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--orange-gradient);
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(237, 121, 3, 0.4);
}
.btn-primary:hover svg { transform: scale(1.1); }
.btn-primary:hover::before { opacity: 1; }


/* ==========================================================================
   3.5 DIVISÃO PARALLAX (FAMÍLIA)
   ========================================================================== */
.parallax-divider {
  position: relative;
  min-height: 500px;
  /* Imagem de família feliz navegando na internet */
  background-image: url('https://images.pexels.com/photos/4259140/pexels-photo-4259140.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  /* Degradê que sai do azul CMOTA e termina no Laranja, ligando com os Planos */
  background: linear-gradient(180deg, rgba(9, 21, 53, 0.85) 0%, rgba(18, 40, 94, 0.6) 50%, rgba(237, 121, 3, 0.95) 100%);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 5%;
}
.parallax-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.parallax-content p {
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* Divisor Circular Fiel à Imagem, agora descendo do Parallax */
.arrow-divider-wrap {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.arrow-divider {
  width: 50px;
  height: 50px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.arrow-divider:hover { transform: translateY(5px); }
.arrow-divider svg { width: 20px; height: 20px; fill: #fff; }


/* ==========================================================================
   4. PLANOS
   ========================================================================== */
.plans-section {
  background: var(--orange-primary);
  padding: 60px 5% 120px;
  position: relative;
  z-index: 4;
}
.section-header { text-align: center; margin-bottom: 70px; color: var(--white); }
.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.plans-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Categorias */
.category-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.category-title {
  text-align: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.cards-container { display: flex; flex-direction: column; gap: 30px; }

/* Cards 3D */
.plan-card {
  background: var(--blue-gradient);
  border-radius: var(--radius-md);
  padding: 35px 25px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.plan-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  transition: 0.7s;
}
.plan-card:hover::after { left: 200%; }

.plan-name { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; margin-bottom: 10px; transform: translateZ(20px); }
.plan-speed { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 10px; transform: translateZ(40px); color: var(--cyan); text-shadow: 0 5px 15px rgba(0, 198, 255, 0.4); }
.plan-speed span { font-size: 1.2rem; font-weight: 600; color: var(--white); }
.plan-price { font-size: 2.5rem; font-weight: 800; margin-bottom: 30px; transform: translateZ(30px); }
.plan-price sup { font-size: 1.2rem; font-weight: 600; top: -1em; }
.plan-price sub { font-size: 1.2rem; font-weight: 600; }
.plan-features { text-align: left; margin-bottom: 35px; display: flex; flex-direction: column; gap: 15px; transform: translateZ(20px); }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.plan-features svg { width: 18px; height: 18px; fill: #25d366; }

.btn-card {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--white);
  color: var(--blue-card);
  font-weight: 800;
  border-radius: 50px;
  text-transform: uppercase;
  transition: var(--transition);
  transform: translateZ(30px);
}
.btn-card:hover { background: var(--orange-primary); color: var(--white); box-shadow: var(--shadow-glow); }

/* ==========================================================================
   5. ULTRA + WATCH
   ========================================================================== */
.watch-section {
  max-width: 1200px;
  margin: 80px auto 0;
  position: relative;
}
.watch-badge-title {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.font-script {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  color: var(--white);
  transform: rotate(-3deg);
  display: inline-block;
  line-height: 1; 
  text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  position: relative;
  z-index: 3;
  margin-bottom: -15px; 
}
.watch-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-primary);
  text-transform: uppercase;
  background: var(--white);
  padding: 12px 35px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: var(--shadow-lg);
  margin-top: 0; 
  position: relative;
  z-index: 2;
}

.watch-container {
  background: var(--blue-gradient);
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.watch-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.watch-row:hover { background: rgba(255,255,255,0.03); border-radius: var(--radius-sm); padding-left: 15px; padding-right: 15px; }
.watch-row:last-child { border-bottom: none; }
.w-speed { font-size: 1.5rem; font-weight: 900; color: var(--white); }
.w-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.streaming-pill { background: rgba(255,255,255,0.1); color: var(--white); padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; }
.streaming-pill.paramount { background: #0064ff; border-color: #0064ff; }
.streaming-pill.premiere { background: #006600; border-color: #006600; }
.streaming-pill.telecine { background: #e3001b; border-color: #e3001b; }
.streaming-pill.max { background: #0000ff; border-color: #0000ff; }
.plus-icon { color: var(--orange-primary); font-weight: 900; font-size: 1.2rem; }
.w-price { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.btn-watch { background: var(--orange-gradient); color: var(--white); padding: 12px 30px; border-radius: 50px; font-weight: 800; text-transform: uppercase; transition: var(--transition); box-shadow: 0 4px 15px rgba(237, 121, 3, 0.4); }
.btn-watch:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 25px rgba(237, 121, 3, 0.6); }

/* ==========================================================================
   6. SOBRE
   ========================================================================== */
.about-section { background: var(--white); padding: 120px 5%; }
.about-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-size: 2.5rem; font-weight: 900; color: var(--blue-primary); margin-bottom: 30px; }
.about-text p { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 20px; line-height: 1.8; }
.about-text strong { color: var(--orange-primary); }
.about-img-wrapper { position: relative; }
.about-img-wrapper::before { content: ''; position: absolute; top: -20px; left: -20px; width: 100%; height: 100%; border: 3px solid var(--orange-primary); border-radius: var(--radius-md); z-index: 0; }
.about-img-wrapper img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); position: relative; z-index: 1; transition: var(--transition); }
.about-img-wrapper:hover img { transform: translate(10px, 10px); }

/* ==========================================================================
   7. CONTATO E FOOTER
   ========================================================================== */
.contact-footer { background: var(--blue-dark); color: var(--white); }
.contact-wrapper { max-width: 1200px; margin: 0 auto; padding: 80px 5%; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.contact-info h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; color: var(--white); }
.contact-info p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; }
.contact-links { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.05); padding: 20px; border-radius: var(--radius-sm); transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.contact-item:hover { background: rgba(255,255,255,0.1); transform: translateX(10px); border-color: var(--orange-primary); }
.icon-box { width: 50px; height: 50px; background: var(--orange-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.icon-box svg { width: 24px; height: 24px; fill: var(--white); }
.contact-text span { display: block; font-size: 0.9rem; opacity: 0.7; }
.contact-text strong { font-size: 1.3rem; font-weight: 700; }
.map-wrapper { border-radius: var(--radius-md); overflow: hidden; height: 400px; box-shadow: var(--shadow-lg); border: 4px solid rgba(255,255,255,0.05); }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }
.footer-bottom { background: #06112a; padding: 25px 5%; text-align: center; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { font-size: 0.9rem; color: #718096; }

/* ==========================================================================
   8. WHATSAPP FLUTUANTE
   ========================================================================== */
.float-whatsapp { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background-color: var(--success); color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 15px rgba(0,0,0,0.2); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.float-whatsapp svg { width: 35px; height: 35px; fill: var(--white); z-index: 2; }
.float-whatsapp::before, .float-whatsapp::after { content: ''; position: absolute; border: 2px solid var(--success); left: -10px; right: -10px; top: -10px; bottom: -10px; border-radius: 50%; animation: pulse-wa 2s linear infinite; opacity: 0; z-index: 1; }
.float-whatsapp::after { animation-delay: 1s; }
.float-whatsapp:hover { transform: scale(1.1); background-color: #20b858; }
@keyframes pulse-wa { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.3); opacity: 0; } }

/* ==========================================================================
   9. RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1024px) {
  .watch-row { grid-template-columns: 1fr; text-align: center; gap: 15px; }
  .w-badges { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-img-wrapper::before { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 2.2rem; }
  .watch-container { padding: 30px 20px; }
  .font-script { font-size: 3rem; }
  .watch-title { font-size: 1.5rem; }
  .footer-bottom { justify-content: center; }
}
