/* ============================================
   CONNECT TELECOM — UPGRADE CSS
   Melhorias sutis de UI/UX mantendo identidade
   ============================================ */

/* --- VARIÁVEIS DE DESIGN --- */
:root {
  --orange: #ff7a00;
  --orange-dark: #e06500;
  --orange-light: #ff9533;
  --orange-glow: rgba(255, 122, 0, 0.18);
  --black: #000;
  --white: #fff;
  --text-body: #444;
  --text-muted: #777;
  --border: #e8e8e8;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 56px rgba(255,122,0,0.13);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* --- TIPOGRAFIA APRIMORADA --- */
body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.5px;
}

p {
  line-height: 1.75;
  color: #555;
}

/* --- SELEÇÃO DE TEXTO --- */
::selection {
  background: var(--orange);
  color: #fff;
}

/* --- SCROLLBAR CUSTOMIZADA --- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

/* ============================
   TOPBAR — Barra superior
   ============================ */
.page_topline {
  background: linear-gradient(90deg, #ff7a00 0%, #e06500 100%) !important;
  box-shadow: 0 2px 12px rgba(255,122,0,0.25);
}

.page_topline a,
.page_topline .small-text {
  letter-spacing: 0.01em;
  font-weight: 400;
}

.page_topline i {
  opacity: 0.9;
}

/* ============================
   HEADER / NAV
   ============================ */
.page_header {
  backdrop-filter: blur(0px);
  transition: box-shadow var(--transition), background var(--transition);
}

.page_header.affix {
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.96) !important;
  box-shadow: 0 2px 32px rgba(0,0,0,0.22);
}

/* Logo hover suave */
a.logo {
  transition: opacity var(--transition);
}
a.logo:hover {
  opacity: 0.88;
}
a.logo img {
  transition: transform var(--transition);
}
a.logo:hover img {
  transform: scale(1.03);
}

/* Nav links */
@media (min-width: 1200px) {
  .sf-menu > li > a {
    font-weight: 400;
    letter-spacing: 0.03em;
    position: relative;
    transition: color var(--transition);
  }

  .sf-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
    border-radius: 2px;
  }

  .sf-menu > li > a:hover::after,
  .sf-menu > li.active > a::after {
    transform: scaleX(1);
  }

  /* Dropdown aprimorado */
  .sf-menu li > ul {
    border-top: 3px solid var(--orange);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    padding: 12px 0 16px;
    animation: dropIn 0.18s ease;
  }

  @keyframes dropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .sf-menu li > ul li {
    padding: 2px 24px;
  }

  .sf-menu ul a {
    font-size: 15px;
    padding: 8px 0;
    transition: color var(--transition), padding-left var(--transition);
  }

  .sf-menu ul a:hover {
    color: var(--orange) !important;
    padding-left: 6px;
  }
}

/* Botões topo */
.top-includes img {
  transition: transform var(--transition), filter var(--transition);
}
.top-includes img:hover {
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.05);
}

/* ============================
   HERO SLIDER
   ============================ */
.page_slider .flexslider {
  position: relative;
}

/* Overlay mais refinado */
.page_slider .s-overlay.ds:before {
  background: none !important;
  opacity: 0 !important;
}

/* Texto do hero */
.page_slider h2.thin {
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  line-height: 1.1 !important;
}

.page_slider .intro_layer p {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  font-size: 1.05em;
  opacity: 0.95;
  color: #fff !important;
  line-height: 1.6;
}

/* Botões do hero */
.page_slider .btn.btn-maincolor {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(255,122,0,0.45);
  transition: all var(--transition) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px !important;
  padding: 14px 32px !important;
}
.page_slider .btn.btn-maincolor:hover {
  background: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,122,0,0.5);
}

.page_slider .btn.btn-outline-darkgrey {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(4px);
  transition: all var(--transition) !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px !important;
  padding: 14px 32px !important;
}
.page_slider .btn.btn-outline-darkgrey:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.9) !important;
  transform: translateY(-2px);
}

/* Dots do slider */
.flex-control-paging li a {
  transition: all 0.2s ease !important;
}
.flex-control-paging li a.flex-active {
  box-shadow: 0 0 0 3px rgba(255,122,0,0.4);
}

/* ============================
   SEÇÕES — VISUAL GERAL
   ============================ */
section {
  position: relative;
}

/* Heading principal nas seções */
.special-heading.sub-title {
  color: var(--orange) !important;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

/* ============================
   SEÇÃO DE PLANOS
   ============================ */
/* Cards de planos */
.col-lg-4 a > img,
.col-md-6 a > img {
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: var(--shadow-soft);
}

.col-lg-4 a:hover > img,
.col-md-6 a:hover > img {
  transform: translateY(-6px) scale(1.012) !important;
  box-shadow: var(--shadow-hover) !important;
}

/* ============================
   SEÇÃO GAMER / PARALLAX
   ============================ */
.about-section {
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-section > .container {
  position: relative;
  z-index: 2;
}

.about-section img {
  filter: drop-shadow(0 0 24px rgba(255,122,0,0.35));
}

/* ============================
   SEÇÃO CENTRAL DO ASSINANTE
   ============================ */
.img-wrap {
  position: relative;
}
.img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.img-wrap:hover img {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}

/* Botões de ação da seção */
section .btn.btn-maincolor {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,122,0,0.3);
}
section .btn.btn-maincolor:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,122,0,0.4);
}

/* ============================
   SEÇÃO DE VANTAGENS
   ============================ */
.ds.s-py-xl-150 {
  position: relative;
}

/* Ícones de vantagens */
.col-md-2.col-lg-2.text-center .media-body {
  transition: transform var(--transition);
}
.col-md-2.col-lg-2.text-center:hover .media-body {
  transform: translateY(-5px);
}

.col-md-2.col-lg-2.text-center img {
  transition: filter var(--transition), transform var(--transition);
}
.col-md-2.col-lg-2.text-center:hover img {
  filter: brightness(1.15) drop-shadow(0 4px 12px rgba(255,122,0,0.5));
  transform: scale(1.08);
}

.col-md-2.col-lg-2.text-center h6 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 10px;
  font-size: 15px;
}

/* ============================
   FAQ / ACCORDION
   ============================ */
[role="tablist"] .card-header a {
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
}

[role="tablist"] .card-header a:not(.collapsed) {
  background: #fff8f3;
  border-left: 3px solid var(--orange);
}

[role="tablist"] .card-header a:before {
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(255,122,0,0.3);
}

[role="tablist"] .card {
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  border-color: var(--border) !important;
  transition: box-shadow var(--transition);
}
[role="tablist"] .card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

[role="tablist"] .card + .card {
  margin-top: 8px;
  border-top: 1px solid var(--border) !important;
}

.card-body {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  padding: 12px 20px 16px 4.32em !important;
}

/* ============================
   BOTÃO WHATSAPP FLUTUANTE
   ============================ */
div[style*="position:fixed"] img {
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}
div[style*="position:fixed"]:hover img {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 8px 24px rgba(37,211,102,0.45));
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: linear-gradient(135deg, #ff7a00 0%, #e06000 60%, #cc5500 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Padrão geométrico sutil no footer */
.footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  pointer-events: none;
}

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

/* Títulos do footer */
.footer-section h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95) !important;
  border-bottom-color: rgba(255,255,255,0.25) !important;
  padding-bottom: 10px !important;
}

/* Texto do footer */
.footer-section p {
  color: rgba(255,255,255,0.88) !important;
  font-size: 14.5px;
  line-height: 1.7;
}

/* Horários */
.schedule {
  background: rgba(0,0,0,0.12) !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,0.12);
}
.schedule h4 {
  color: rgba(255,255,255,0.95) !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
}

/* Social links do footer */
.social-links-footer a {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px !important;
  font-weight: 500;
  font-size: 14.5px;
  transition: all var(--transition) !important;
}
.social-links-footer a:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.3);
}

/* Contatos do footer */
.contact-item {
  font-size: 14px;
  line-height: 1.6;
}
.contact-item i {
  opacity: 0.9;
}
.contact-item a:hover {
  text-decoration: none !important;
  opacity: 0.85;
}

/* Linha divisória do footer */
.footer-bottom {
  border-color: rgba(255,255,255,0.18) !important;
}
.footer-bottom p {
  font-size: 13px !important;
  color: rgba(255,255,255,0.75) !important;
  letter-spacing: 0.01em;
}

/* ============================
   PÁGINA INICIAL — SELEÇÃO DE CIDADE
   ============================ */

/* Background da home */
body[style*="ff7a00"] {
  background: linear-gradient(160deg, #ff7a00 0%, #cc5500 40%, #000 100%) !important;
  min-height: 100vh;
}

/* Logo da home */
.special-heading.text-center img {
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}
.special-heading.text-center img:hover {
  transform: scale(1.03) !important;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4)) !important;
  box-shadow: none !important;
}

/* Título da home */
h4 p[style*="color:#fff"],
h4 > [align="center"] {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Cards das cidades */
.col-lg-2.col-md-6 {
  transition: transform var(--transition);
}
.col-lg-2.col-md-6:hover {
  transform: translateY(-6px);
}

/* Selo Registro.br */
a[href*="top.nic.br"] img {
  transition: transform var(--transition), filter var(--transition) !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
a[href*="top.nic.br"] img:hover {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3)) !important;
  box-shadow: none !important;
}

/* Texto CNPJ da home */
p[style*="color:#fff"] {
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Copyright home */
div[style*="border-top"] p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ============================
   PRELOADER
   ============================ */
.preloader {
  background: #fff;
  transition: opacity 0.4s ease;
}

/* ============================
   TO TOP BUTTON
   ============================ */
#toTop {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 20px rgba(255,122,0,0.4);
  transition: all var(--transition);
}
#toTop:hover {
  box-shadow: 0 8px 28px rgba(255,122,0,0.55);
  transform: translateY(-3px);
}

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

@media (max-width: 1199px) {

  /* Painel do menu: fundo escuro elegante em vez de laranja puro */
  .sf-menu {
    background-color: #111 !important;
    border-top-color: #000 !important;
    padding: 16px 0 24px 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Overlay de fundo ao abrir */
  .mobile-active .top-nav {
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(4px);
    z-index: 1002 !important;
  }

  /* Links de primeiro nível — visíveis e legíveis */
  .top-nav .sf-menu > li > a {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 13px 24px !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: block;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
  }

  .top-nav .sf-menu > li > a:hover,
  .top-nav .sf-menu > li.active > a {
    color: var(--orange) !important;
    background: rgba(255,122,0,0.08) !important;
    padding-left: 30px !important;
  }

  /* Ícone de seta dos submenus */
  .sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler:after {
    color: rgba(255,255,255,0.6) !important;
  }
  .sfHover > .sf-with-ul + .sf-menu-item-mobile-toggler:after {
    color: var(--orange) !important;
  }

  /* Toggler do submenu */
  .sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background var(--transition);
  }
  .sf-arrows .sf-with-ul + .sf-menu-item-mobile-toggler:hover {
    background: rgba(255,122,0,0.2);
  }

  /* Submenu (ul dentro do menu mobile) */
  .sf-menu ul {
    background: rgba(0,0,0,0.3) !important;
    border-left: 3px solid var(--orange) !important;
    margin-left: 12px !important;
    border-radius: 0 0 4px 4px;
  }

  .top-nav .sf-menu ul a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
    display: block;
    transition: color var(--transition), background var(--transition);
  }

  .top-nav .sf-menu ul a:hover {
    color: var(--orange) !important;
    background: rgba(255,122,0,0.08) !important;
  }

  /* Bullet dos subitens */
  .sf-menu ul li a:before {
    background-color: var(--orange) !important;
  }

  /* Botão X (fechar) — destaque laranja */
  .toggle_menu.mobile-active {
    background-color: var(--orange) !important;
    box-shadow: -4px 0 20px rgba(0,0,0,0.4);
  }

  /* ── Menu fechado: escondido pela esquerda ── */
  .sf-menu {
    left: -100% !important;
    right: auto !important;
    width: 82% !important;
    max-width: 300px !important;
    top: 0 !important;
    bottom: 0 !important;
    position: fixed !important;
    z-index: 2000 !important;
    opacity: 1 !important;
    transition: left 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  }

  /* ── Menu aberto: desliza da esquerda ── */
  .mobile-active .sf-menu {
    left: 0 !important;
    right: auto !important;
    opacity: 1 !important;
    box-shadow: 8px 0 40px rgba(0,0,0,0.65);
  }

  /* ── Overlay escuro cobrindo o restante da página ── */
  .mobile-active .top-nav {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1998 !important;
    background: transparent !important;
  }

  .mobile-active .top-nav::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
    z-index: 1999;
  }
}

/* ============================
   RESPONSIVO — AJUSTES MOBILE
   ============================ */
@media (max-width: 768px) {
  .page_slider h2.thin {
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  .footer::before,
  .footer::after {
    display: none;
  }

  .col-lg-2.col-md-6:hover {
    transform: translateY(-3px);
  }
}

@media (max-width: 575px) {
  .social-links-footer {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
  .social-links-footer a {
    justify-content: center;
    flex: 1;
    min-width: 120px;
  }
}

/* ============================
   MICRO-INTERAÇÕES GERAIS
   ============================ */

/* Links gerais */
a:not(.btn):not(.logo) {
  transition: color var(--transition), opacity var(--transition);
}

/* Imagens com hover sutil (sobrescrevendo o box-shadow inline do site) */
img:hover {
  box-shadow: none !important; /* Desativa o efeito genérico inline */
}

/* Hover personalizado para imagens clicáveis */
a > img {
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

a:not([href="#"]):not([href="javascript:;"]) > img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
}

/* ============================================================
   UPGRADE V2 — EFEITOS MODERNOS POR SEÇÃO
   ============================================================ */

/* ============================================================
   1. ANIMAÇÕES GLOBAIS (keyframes reutilizáveis)
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,122,0,0); }
  50%       { box-shadow: 0 0 0 10px rgba(255,122,0,0.15); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes scanLine {
  0%   { top: 0; }
  100% { top: 100%; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes borderPulse {
  0%, 100% { border-color: rgba(255,122,0,0.3); }
  50%       { border-color: rgba(255,122,0,0.9); }
}

/* ============================================================
   2. TOPBAR — linha laranja com brilho deslizante
   ============================================================ */
.page_topline {
  position: relative;
  overflow: hidden;
}
.page_topline::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 50%,
    transparent 100%
  );
  animation: shimmer 4s infinite linear;
  pointer-events: none;
}

/* ============================================================
   3. HEADER — vidro fosco no scroll + logo com halo
   ============================================================ */
.page_header {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.page_header.affix {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Halo laranja pulsante no logo ao hover */
a.logo {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 4px;
}
a.logo:hover {
  animation: pulseGlow 1.5s ease infinite;
}

/* ============================================================
   4. SLIDER — overlay em gradiente + barra de progresso
   ============================================================ */

/* Overlay do slider removido a pedido */
.page_slider .flexslider li.slide-3::before {
  display: none !important;
}

/* Linha decorativa laranja na lateral esquerda do hero */
.page_slider .intro_layers_wrapper {
  border-left: 4px solid var(--orange);
  padding-left: 28px;
  position: relative;
}
.page_slider .intro_layers_wrapper::before {
  content: '';
  position: absolute;
  left: -4px; top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

/* Título do hero: peso forte + pequena sombra laranja */
.page_slider h2.thin {
  font-size: clamp(32px, 5vw, 64px) !important;
  font-weight: 300 !important;
  letter-spacing: -1px;
  line-height: 1.1 !important;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5), 0 0 60px rgba(255,122,0,0.15) !important;
}
.page_slider h2.thin .bold {
  font-weight: 800 !important;
  background: linear-gradient(90deg, #ff9533, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Parágrafo do hero */
.page_slider .intro_layer p {
  font-size: 17px !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em;
  max-width: 520px;
}

/* Botões do hero — pill shape */
.page_slider .btn {
  border-radius: 50px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  padding: 14px 36px !important;
  text-transform: uppercase !important;
}

/* ============================================================
   5. SEÇÃO DE PLANOS — cards flutuantes com borda laranja no hover
   ============================================================ */
.ls.s-pt-xl-150 .container {
  position: relative;
}

/* Título da seção com linha decorativa */
.ls .special-heading.text-center h2,
h2.special-heading.text-center {
  position: relative;
  display: inline-block;
}
h2.special-heading.text-center::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* Cards dos planos */
.ls .col-lg-4,
.ls .col-md-6 {
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.ls .col-lg-4:hover,
.ls .col-md-6:hover {
  transform: translateY(-10px) scale(1.01);
}

.ls .col-lg-4 a,
.ls .col-md-6 a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ls .col-lg-4 a:hover,
.ls .col-md-6 a:hover {
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(255,122,0,0.2), 0 0 0 4px rgba(255,122,0,0.06);
}

/* Brilho interno ao hover no card */
.ls .col-lg-4 a::before,
.ls .col-md-6 a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,122,0,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 14px;
  pointer-events: none;
}
.ls .col-lg-4 a:hover::before,
.ls .col-md-6 a:hover::before {
  opacity: 1;
}

.ls .col-lg-4 img,
.ls .col-md-6 img {
  display: block;
  width: 100%;
  border-radius: 14px;
  transition: transform 0.4s ease !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10) !important;
}
.ls .col-lg-4 a:hover img,
.ls .col-md-6 a:hover img {
  transform: scale(1.03) !important;
}

/* ============================================================
   6. SEÇÃO GAMER (parallax) — scanline + glow laranja na imagem
   ============================================================ */
.about-section {
  position: relative;
  overflow: hidden;
}

/* Scanline animado sutil */
.about-section::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,122,0,0.4), transparent);
  animation: scanLine 6s linear infinite;
  pointer-events: none;
  z-index: 3;
}

/* Imagem fps.png flutua levemente */
.about-section .item-content img {
  animation: floatUpDown 4s ease-in-out infinite;
  filter:
    drop-shadow(0 0 40px rgba(255,122,0,0.5))
    drop-shadow(0 0 80px rgba(255,122,0,0.2)) !important;
}

/* ============================================================
   7. SEÇÃO CENTRAL DO ASSINANTE — lista com ícones, imagem flutuante
   ============================================================ */

/* Imagem do app flutua */
section .img-wrap img {
  animation: floatUpDown 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18));
  transition: filter 0.4s ease !important;
}
section .img-wrap:hover img {
  filter: drop-shadow(0 32px 50px rgba(255,122,0,0.25)) !important;
}

/* Título da seção com efeito underline laranja */
section .special-heading.color-darkgrey.sub-title {
  position: relative;
  padding-bottom: 6px;
}
section .special-heading.color-darkgrey.sub-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.4s ease;
}
section:hover .special-heading.color-darkgrey.sub-title::after {
  width: 80px;
}

/* Listas de features com bullet laranja estilizado */
section p[align="justify"] {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a4a4a;
}

/* Botões da seção — pill + ícone alinhado */
section .btn.btn-maincolor {
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  padding: 12px 28px !important;
  text-transform: uppercase !important;
  position: relative;
  overflow: hidden;
}
section .btn.btn-maincolor::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
section .btn.btn-maincolor:hover::after {
  transform: translateX(100%);
}

/* ============================================================
   8. SEÇÃO VANTAGENS — ícones com círculo + glow animado
   ============================================================ */
.ds.s-py-xl-150,
.ds[style*="fundo_vantagens"] {
  position: relative;
}

/* Overlay mais rico */
.ds[style*="fundo_vantagens"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,122,0,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.ds[style*="fundo_vantagens"] > * {
  position: relative;
  z-index: 2;
}

/* Título vantagens */
.ds[style*="fundo_vantagens"] h2.special-heading {
  font-size: clamp(24px, 3.5vw, 42px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Cada item de vantagem com círculo de fundo e borda animada */
.col-md-2.col-lg-2.text-center {
  position: relative;
  padding: 20px 8px 24px !important;
}
.col-md-2.col-lg-2.text-center .media-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Círculo laranja por trás do ícone */
.col-md-2.col-lg-2.text-center .media-body::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(255,122,0,0.25);
  background: rgba(255,122,0,0.06);
  transition: all 0.4s ease;
  animation: borderPulse 3s ease infinite;
  z-index: 0;
}
.col-md-2.col-lg-2.text-center:hover .media-body::before {
  width: 96px;
  height: 96px;
  background: rgba(255,122,0,0.15);
  border-color: rgba(255,122,0,0.7);
  box-shadow: 0 0 30px rgba(255,122,0,0.3);
}

.col-md-2.col-lg-2.text-center img {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease !important;
}
.col-md-2.col-lg-2.text-center:hover img {
  transform: scale(1.18) translateY(-4px) !important;
  filter: brightness(1.2) drop-shadow(0 8px 20px rgba(255,122,0,0.6)) !important;
}

.col-md-2.col-lg-2.text-center h6 {
  position: relative;
  z-index: 1;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
  margin-top: 14px !important;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.col-md-2.col-lg-2.text-center:hover h6 {
  opacity: 1;
  text-shadow: 0 0 12px rgba(255,180,0,0.5);
}

/* ============================================================
   9. SEÇÃO FAQ — accordion moderno com linha laranja
   ============================================================ */

/* Imagem woman flutua sutilmente */
section .img-wrap img[src*="woman"] {
  animation: floatUpDown 6s ease-in-out infinite 1s;
}

/* FAQ accordion */
#accordion01 {
  border-radius: var(--radius);
  overflow: hidden;
}

#accordion01 > div {
  border: 1px solid #ebebeb;
  border-radius: 10px !important;
  margin-bottom: 8px !important;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  background: #fff;
}
#accordion01 > div:hover {
  border-color: rgba(255,122,0,0.35);
  box-shadow: 0 6px 24px rgba(255,122,0,0.08);
}

/* Botão do accordion */
#accordion01 h6 a {
  display: block;
  padding: 16px 52px 16px 20px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #222 !important;
  text-decoration: none !important;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease;
  border-radius: 10px;
}
#accordion01 h6 a:hover {
  color: var(--orange) !important;
  background: #fff8f2;
}
#accordion01 h6 a:not(.collapsed) {
  color: var(--orange) !important;
  background: linear-gradient(90deg, #fff5ee, #fff) !important;
  border-left: 3px solid var(--orange) !important;
  padding-left: 17px !important;
}

/* Seta do accordion */
#accordion01 h6 a::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  transition: transform 0.3s ease, content 0.3s ease;
  line-height: 1;
}
#accordion01 h6 a:not(.collapsed)::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

/* Esconder o ::before original do tema */
#accordion01 h6 a::before {
  display: none !important;
}

/* Corpo do accordion */
#accordion01 .card-body {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #555 !important;
  padding: 4px 20px 20px 20px !important;
  border-top: 1px solid #f5e8de;
  background: #fffaf7;
}
#accordion01 .card-body a {
  color: var(--orange) !important;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================================
   10. WHATSAPP FLUTUANTE — badge animado + pulso
   ============================================================ */
div[style*="position:fixed"][style*="bottom:100px"] {
  transition: transform 0.3s ease !important;
}
div[style*="position:fixed"][style*="bottom:100px"]:hover {
  transform: scale(1.08) !important;
}
div[style*="position:fixed"][style*="bottom:100px"] img {
  filter: drop-shadow(0 6px 20px rgba(37,211,102,0.4)) !important;
  animation: pulseGlow 2.5s ease infinite;
  border-radius: 50%;
}

/* ============================================================
   11. FOOTER — gradiente aprimorado + grid
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #ff7a00 0%, #e05500 45%, #b83d00 100%) !important;
}

/* Linha separadora com gradiente */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2) !important;
  margin-top: 40px;
  padding-top: 24px;
}

/* Links sociais com animação */
.social-links-footer a {
  position: relative;
  overflow: hidden;
}
.social-links-footer a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.social-links-footer a:hover::before {
  transform: translateX(0);
}

/* Contatos com hover sublinhado */
.contact-item a {
  position: relative;
}
.contact-item a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: width 0.3s ease;
}
.contact-item a:hover::after {
  width: 100%;
}

/* ============================================================
   12. SCROLL REVEAL — animação ao entrar na viewport
       (funciona via Intersection Observer no main.js do tema)
   ============================================================ */

/* Classes de entrada — aplicadas pelo tema via data-animation */
[data-animation]:not(.animated) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animation].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   13. AJUSTES MOBILE (complementar ao menu fix anterior)
   ============================================================ */
@media (max-width: 768px) {
  /* Hero menor em mobile */
  .page_slider .intro_layers_wrapper {
    border-left: 3px solid var(--orange);
    padding-left: 16px;
  }
  .page_slider h2.thin {
    font-size: clamp(26px, 8vw, 42px) !important;
  }

  /* Vantagens: 2 por linha */
  .col-md-2.col-lg-2.text-center {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    margin-bottom: 24px;
  }

  /* Seção app/woman: imagem sem float em mobile */
  section .img-wrap img {
    animation: none;
  }
}

@media (max-width: 480px) {
  .col-md-2.col-lg-2.text-center {
    flex: 0 0 50%;
    max-width: 50%;
  }

  section .btn.btn-maincolor {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
}

/* ============================================================
   PLANOS DE INTERNET — CSS CARDS (substitui imagens p3/p4/p5)
   Fiel ao design original: laranja, branco, preto
   ============================================================ */

/* Grid dos 3 cards */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  padding: 16px 0 32px;
}

/* ── Card base ── */
.plano-card {
  display: block;
  text-decoration: none !important;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.plano-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(255,122,0,0.28);
  text-decoration: none !important;
}

/* ── Card destaque (700 MEGA) — maior e elevado ── */
.plano-destaque {
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(255,122,0,0.30),
              0 0 0 3px #ff7a00;
  z-index: 2;
}
.plano-destaque:hover {
  transform: translateY(-12px) scale(1.06);
}

/* ── Inner wrapper ── */
.plano-inner {
  background: linear-gradient(160deg, #ff8800 0%, #ff6a00 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Header: número grande de MEGA ── */
.plano-header {
  background: linear-gradient(135deg, #ff9200 0%, #e55c00 100%);
  padding: 22px 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* brilho diagonal no header */
.plano-header::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 60%;
  height: 160%;
  background: rgba(255,255,255,0.12);
  transform: rotate(20deg);
  pointer-events: none;
}

.plano-speed {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.plano-speed-label {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: -4px;
  opacity: 0.95;
}

/* ── Body: features ── */
.plano-body {
  padding: 16px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Feature pill (velocidade, canais) */
.plano-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 6px 14px 6px 10px;
  flex-wrap: nowrap;
}

.plano-feature-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.03em;
  min-width: 52px;
  flex-shrink: 0;
}

.plano-feature-val {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.plano-tv {
  font-size: 9px;
  font-weight: 700;
  background: rgba(0,0,0,0.25);
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 3px;
}

.plano-feature-extra {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-left: auto;
  text-align: right;
  flex-shrink: 0;
}
.plano-feature-extra b {
  font-size: 14px;
  color: #fff;
}

/* FishTV badge */
.plano-fishtv {
  background: rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 7px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Connect Flix badge */
.plano-connectflix {
  background: rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.plano-connectflix b {
  font-size: 13px;
  display: block;
}

/* ── Preço ── */
.plano-preco {
  background: #1a0a00;
  margin: 12px 0 0;
  padding: 14px 16px 10px;
  text-align: center;
}

.plano-rs {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.plano-rs span {
  font-size: clamp(32px, 4.5vw, 52px);
}

.plano-venc {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── Footer: instalação grátis ── */
.plano-footer {
  background: linear-gradient(90deg, #e05500, #ff7a00);
  padding: 10px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.5;
  border-top: 2px solid rgba(255,255,255,0.15);
}
.plano-footer b {
  font-weight: 900;
}

/* ── Shimmer no hover ── */
.plano-card::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 10;
}
.plano-card:hover::before {
  left: 130%;
}

/* ── Responsivo ── */
@media (max-width: 991px) {
  .planos-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .plano-destaque {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    transform: scale(1.02);
  }
  .plano-destaque:hover {
    transform: translateY(-10px) scale(1.04);
  }
}

@media (max-width: 575px) {
  .planos-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
    gap: 16px;
  }
  .plano-destaque {
    grid-column: auto;
    max-width: 100%;
    transform: none;
  }
  .plano-destaque:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

/* ============================================================
   SLIDER — overlay escuro removido (main.css sobrescrito)
   ============================================================ */
.page_slider .s-overlay.ds:before,
.page_slider .s-overlay:before,
.page_slider li.slide-3:before {
  background: none !important;
  opacity: 0 !important;
  display: none !important;
}

/* Garantir que textos do hero continuem legíveis sem overlay */
.page_slider .intro_layers_wrapper {
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.page_slider h2.thin,
.page_slider h2.thin .bold {
  text-shadow: 0 2px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4) !important;
  -webkit-text-fill-color: #fff !important; /* sobrescreve o gradiente dourado no hero */
  background: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
}
.page_slider h2.thin .bold {
  color: #ff9533 !important;
  -webkit-text-fill-color: #ff9533 !important;
}
.page_slider .intro_layer p {
  text-shadow: 0 1px 8px rgba(0,0,0,0.7) !important;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP — PILL
   ============================================================ */
.wa-pill-btn {
  position: fixed;
  bottom: 90px;   /* acima do #toTop (15px + 60px + 15px de margem) */
  right: 15px;
  z-index: 99999;
}

.wa-pill-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  border-radius: 50px;
  padding: 11px 20px 11px 14px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
}
.wa-pill-link:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  text-decoration: none !important;
}

.wa-pill-link svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wa-pill-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.wa-pill-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.wa-pill-main {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Mobile: esconde o texto, mostra só o ícone */
@media (max-width: 480px) {
  .wa-pill-link {
    padding: 14px;
    border-radius: 50%;
  }
  .wa-pill-text {
    display: none;
  }
  .wa-pill-link svg {
    width: 30px;
    height: 30px;
  }
}

/* ============================================================
   VANTAGENS — padding reduzido
   ============================================================ */

/* A section em si */
section.ds.s-py-xl-150.s-py-lg-130.s-pt-md-90.s-pb-md-60.s-pt-60.s-pb-30[style*="fundo_vantagens"],
section.ds[style*="fundo_vantagens"] {
  padding-top:    40px !important;
  padding-bottom: 40px !important;
}

/* O container filho que o tema também aplica padding */
section.ds.s-py-xl-150.s-py-lg-130.s-pt-md-90.s-pb-md-60.s-pt-60.s-pb-30 > [class*='container'],
section.ds[style*="fundo_vantagens"] > [class*='container'] {
  padding-top:    0 !important;
  padding-bottom: 0 !important;
}

/* ============================================================
   VANTAGENS — corrige altura do canvas do particles.js
   O particles injeta um canvas que empurra o conteúdo para baixo
   ============================================================ */
section[style*="fundo_vantagens"] #features,
.with-particles .particles-js {
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}
section[style*="fundo_vantagens"] canvas {
  display: none !important;
}
