.elementor-5997 .elementor-element.elementor-element-1708f62{width:100%;max-width:100%;}/* Start custom CSS for section, class: .elementor-element-2f08c2f */@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  :root {
    --sky: #46B8DA;
    --teal: #1C6671;
    --teal-deep: #0E3C45;
    --yellow: #ECC400;
    --green: #5BB85D;
    --white: #FFFFFF;

    --bg: #07191D;
    --bg-soft: #0E2429;
    --surface: #112C32;
    --surface-2: #16363D;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.14);

    --text: #F2FAFB;
    --body: #BFD9DD;
    --muted: #84A6AB;
    --subtle: #5C7E87;

    --radius: 14px;
  }

  body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  section { position: relative; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

  h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; font-weight: 900; letter-spacing: -0.01em; }

  /* ───────── Skip to content / focus ───────── */
  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--sky);
    outline-offset: 3px;
  }

  /* ───────── NAV ───────── */
  header.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(7,25,29,0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1180px; margin: 0 auto; padding: 16px 28px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .nav-logo img { height: 34px; }
  .nav-links { display: flex; gap: 28px; align-items: center; }
  .nav-links a {
    font-size: 14px; font-weight: 700; color: var(--body);
    transition: color .15s;
  }
  .nav-links a:hover { color: var(--sky); }
  .nav-ctas { display: flex; gap: 10px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px;
    padding: 12px 22px; border-radius: 10px; border: none; cursor: pointer;
    transition: transform .15s, opacity .15s, box-shadow .15s;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--sky); color: var(--teal-deep); }
  .btn-primary:hover { box-shadow: 0 8px 24px rgba(70,184,218,0.35); }
  .btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
  .btn-ghost:hover { border-color: var(--sky); color: var(--sky); }
  .btn-sm { padding: 9px 16px; font-size: 12.5px; }
  .btn-block { width: 100%; }

  @media (max-width: 860px) {
    .nav-links { display: none; }
  }

  /* ───────── HERO ───────── */
  .hero {
    padding: 90px 0 100px;
    background:
      radial-gradient(640px 420px at 14% -10%, rgba(70,184,218,0.18), transparent 60%),
      radial-gradient(560px 380px at 100% 10%, rgba(91,184,93,0.10), transparent 60%);
    overflow: hidden;
  }
  .hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sky); background: rgba(70,184,218,0.10);
    border: 1px solid rgba(70,184,218,0.25);
    padding: 7px 16px; border-radius: 30px; margin-bottom: 28px;
  }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

  .hero h1 {
    font-size: clamp(34px, 5.4vw, 60px);
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
  }
  .hero h1 .accent { color: var(--sky); }
  .hero h1 .accent2 { color: var(--yellow); }
  .hero p.lead {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--body);
    max-width: 640px;
    margin: 0 auto 38px;
  }
  .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
  .btn-lg { padding: 16px 30px; font-size: 15.5px; }

  /* stat strip */
  .stat-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--border); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    max-width: 920px; margin: 0 auto;
  }
  .stat-cell { background: var(--surface); padding: 24px 18px; text-align: center; }
  .stat-num { font-family: 'Nunito', sans-serif; font-size: 30px; font-weight: 900; color: var(--sky); margin-bottom: 4px; }
  .stat-cap { font-size: 12px; color: var(--muted); line-height: 1.4; }
  @media (max-width: 760px) {
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
  }

  /* ───────── PILARES (3 NF / automação / sem custo) ───────── */
  .pillars {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
  }
  .section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
  .section-head .eyebrow { background: rgba(91,184,93,0.10); border-color: rgba(91,184,93,0.25); color: var(--green); }
  .section-head h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--white); margin-bottom: 14px; }
  .section-head p { color: var(--body); font-size: 15.5px; }

  .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .pillar-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 32px 28px;
    transition: border-color .2s, transform .2s;
  }
  .pillar-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
  .pillar-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
  }
  .pillar-card:nth-child(1) .pillar-icon { background: rgba(70,184,218,0.14); }
  .pillar-card:nth-child(2) .pillar-icon { background: rgba(236,196,0,0.14); }
  .pillar-card:nth-child(3) .pillar-icon { background: rgba(91,184,93,0.14); }
  .pillar-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
  .pillar-card p { font-size: 14px; color: var(--body); }
  @media (max-width: 860px) { .pillar-grid { grid-template-columns: 1fr; } }

  /* ───────── PUBLICO DUAL (Anunciantes / Emissoras) ───────── */
  .audience { padding: 90px 0; }
  .audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .audience-card {
    border-radius: 20px; padding: 40px 36px; position: relative; overflow: hidden;
    border: 1px solid var(--border);
  }
  .audience-card.advertiser { background: linear-gradient(160deg, var(--surface-2), var(--surface)); }
  .audience-card.station { background: linear-gradient(160deg, #1A2F1C, var(--surface)); }
  .audience-tag {
    display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
    padding: 5px 13px; border-radius: 20px; margin-bottom: 20px;
  }
  .advertiser .audience-tag { background: rgba(70,184,218,0.18); color: var(--sky); }
  .station .audience-tag { background: rgba(91,184,93,0.18); color: var(--green); }
  .audience-card h3 { font-size: 24px; color: var(--white); margin-bottom: 14px; line-height: 1.25; }
  .audience-card > p { font-size: 14.5px; color: var(--body); margin-bottom: 24px; }
  .audience-list { list-style: none; margin-bottom: 28px; }
  .audience-list li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 14px; color: var(--body); margin-bottom: 12px;
  }
  .audience-list li::before { content: '✓'; color: var(--sky); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
  .station .audience-list li::before { color: var(--green); }

  @media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

  /* ───────── COMO FUNCIONA ───────── */
  .how { padding: 90px 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .how-card {
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 26px 22px; position: relative;
  }
  .how-num {
    font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 900; color: var(--sky);
    border: 1.5px solid rgba(70,184,218,0.35); border-radius: 50%;
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
  }
  .how-card h4 { font-size: 15.5px; color: var(--white); margin-bottom: 8px; }
  .how-card p { font-size: 13px; color: var(--muted); }
  @media (max-width: 860px) { .how-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .how-grid { grid-template-columns: 1fr; } }

  /* ───────── DADOS / RÁDIO FUNCIONA ───────── */
  .data-section { padding: 90px 0; }
  .data-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
  .data-copy h2 { font-size: clamp(26px, 3.2vw, 36px); color: var(--white); margin-bottom: 18px; }
  .data-copy p { color: var(--body); font-size: 15px; margin-bottom: 16px; }
  .data-copy .source-note { font-size: 12px; color: var(--subtle); font-style: italic; margin-top: 24px; }

  .data-stats { display: grid; gap: 14px; }
  .data-stat {
    display: flex; gap: 18px; align-items: center;
    background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
    padding: 20px 22px;
  }
  .data-stat .num { font-family: 'Nunito', sans-serif; font-size: 30px; font-weight: 900; color: var(--yellow); min-width: 86px; }
  .data-stat .lbl { font-size: 13.5px; color: var(--body); }
  @media (max-width: 860px) { .data-grid { grid-template-columns: 1fr; } }

  /* ───────── SEGMENTOS ───────── */
  .segments { padding: 90px 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .seg-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; margin: 0 auto; }
  .seg-chip {
    font-size: 13.5px; font-weight: 700; color: var(--body);
    background: var(--surface); border: 1px solid var(--border); border-radius: 30px;
    padding: 11px 20px;
  }

  /* ───────── FAQ ───────── */
  .faq { padding: 90px 0; }
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 22px 4px; font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800; color: var(--white);
  }
  .faq-q .plus { font-size: 20px; color: var(--sky); transition: transform .2s; flex-shrink: 0; }
  .faq-item.open .faq-q .plus { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .faq-a p { font-size: 14.5px; color: var(--body); padding: 0 4px 22px; max-width: 680px; }

  /* ───────── CTA FINAL / FORM ───────── */
  .cta-final {
    padding: 90px 0;
    background: linear-gradient(160deg, var(--teal-deep), var(--bg));
    border-top: 1px solid var(--border);
  }
  .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
  .cta-copy h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--white); margin-bottom: 16px; }
  .cta-copy p { color: var(--body); font-size: 15px; margin-bottom: 26px; }
  .cta-copy .whatsapp-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 800; color: var(--green);
  }

  .form-card {
    background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 30px;
  }
  .form-card h3 { font-size: 17px; color: var(--white); margin-bottom: 6px; }
  .form-card .sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
  .field { margin-bottom: 14px; }
  .field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--body); margin-bottom: 6px; }
  .field input, .field select {
    width: 100%; background: var(--bg-soft); border: 1px solid var(--border-strong);
    border-radius: 8px; padding: 11px 14px; font-size: 14px; color: var(--text);
    font-family: 'Nunito Sans', sans-serif;
  }
  .field input::placeholder { color: var(--subtle); }

  /* ───────── FOOTER ───────── */
  footer { padding: 56px 0 32px; border-top: 1px solid var(--border); }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
  .footer-grid img { height: 30px; margin-bottom: 14px; }
  .footer-grid p { font-size: 13px; color: var(--muted); max-width: 280px; }
  .footer-col h5 { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); margin-bottom: 14px; }
  .footer-col a, .footer-col span {
    display: block; font-size: 13.5px; color: var(--body); margin-bottom: 10px;
  }
  .footer-col a:hover { color: var(--sky); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    padding-top: 24px; border-top: 1px solid var(--border);
    font-size: 12px; color: var(--subtle);
  }
  .footer-bottom a { color: var(--subtle); }
  .footer-bottom a:hover { color: var(--sky); }
  @media (max-width: 860px) { .footer-grid, .cta-grid { grid-template-columns: 1fr; } }

  /* ───────── WHATSAPP FLOAT ───────── */
  .wa-float {
    position: fixed; bottom: 26px; right: 26px; z-index: 200;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(91,184,93,0.4);
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-6px); } }

  /* ───────── reveal on scroll ───────── */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .wa-float { animation: none; }
    .eyebrow .dot { animation: none; }
  }/* End custom CSS */