body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
}

.hero-badge {
    display: inline-block;
    background: #ffe5d0;
    color: #ff7a00;
    padding: 0.5em 1.2em;
    border-radius: 2em;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0.5em 0;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--primary-color);
}

.hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.bnt {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8em 2em;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.bnt:hover {
    background: #102146;
}

.bnt-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8em 2em;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5em;
    transition: background 0.2s, color 0.2s;
}

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

:root {
    
    --primary-color: #2563eb;         /* Azul principal */
    --primary-dark: #ffffff;          /* Roxo escuro */
    --accent-color: #e30613;          /* Vermelho */
    --text-dark: #222222;             /* Preto */
    --text-light: #737373;
    --extra-light: #e5e5e5;
    --white: #ffffff;
    --max-width: 1200px;
}

/* Exemplo de uso das variáveis */
body {
    background: var(--white);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza todo o conteúdo */
    gap: 1.5rem;
    background: var(--primary-dark);
    padding: 1rem 1.5rem;
    position: relative;
    border-bottom: 1px solid #e5e5e5; /* Linha fina abaixo da navbar */
    transition: box-shadow 0.3s, background 0.3s;
}

.navbar:hover {
    box-shadow: 0 4px 24px rgba(29, 41, 53, 0.12);
   
}

.logo {
    margin-right: 2rem;
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.logo img {
    height: 40px;
}

.logo span {
    color: var(--primary-color);
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 4px;
    background: #ff7a00;
    border-radius: 2px;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links li a {
    color: #334c81;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative; /* Necessário para o ::after */
    overflow: hidden;
}

.nav-links li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
    border-radius: 2px;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
    width: 100%;
}

.client-btn {
    background: #0e2a58;
    color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 0.6em 1.5em;
    font-weight: 600;
    margin-top: .5rem;
    cursor: pointer;
    margin-left: 2rem;
}

.whatsapp-btn {
    position: fixed; /* Alterado de absolute para fixed */
    right: 2rem;
    bottom: 2rem;    /* Adicionado para fixar no rodapé */
    top: auto;       /* Remove o top */
    transform: none; /* Remove o translateY */
    background: #ffffff;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
}

.close-menu {
    display: none;
    position: fixed;
    top: 32px;
    right: 32px;
    font-size: 2.5rem;
    color: #ff7a00;
    z-index: 1002;
    cursor: pointer;
    font-weight: bold;
}

.planos-empresariais {
    background: #cdd6e4a6;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}

.planos-empresariais h2 {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
}

.planos-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.plano-card {
    background: #3b82f6;
    border-radius: 24px;
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
z    margin-bottom: 2rem;
}

.plano-top {
    width: 100%;
    padding: 1.5rem 0 0.5rem 0;
    color: #b6e13a;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.plano-label {
    display: block;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: -0.5rem;
}

.plano-info {
    background: #fff;
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.2rem 1rem;
    width: 100%;
    min-height: 90px;
    box-sizing: border-box;
}

.plano-mid {
    width: 100%;
    background: #3b82f6;
    color: #fff;
    padding: 1rem 0 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.plano-logo {
    height: 28px;
    margin-bottom: 0.2rem;
}

.plano-apenas {
    font-size: 1rem;
    font-weight: 600;
}

.plano-preco {
    background: #2657a5;
    color: #ffffff;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.2rem;    
}

.plano-preco-moeda {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.plano-preco-valor {
    font-size: 2.5rem;
    font-weight: 700;
}

.plano-preco-centavos {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.plano-nota {
    background: #3b82f6;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.7rem 1rem 0.5rem 1rem;
    width: 100%;
    text-align: left;
    min-height: 55px;
    box-sizing: border-box;
}

.plano-btn {
    background: #000131;
    color: #d7dbee;
    border: none;
    border-radius: 20px;
    padding: 0.7em 2.5em;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem 0;
    cursor: pointer;
    transition: background 0.2s;
}

.plano-btn:hover {
    background: #000131;
}

/* 1. Sombra e transições suaves nos cards e botões */
.plano-card, .bnt, .bnt-outline, .plano-btn {
    box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.plano-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
}

/* 2. Espaçamento e arredondamento */
.section__container, .planos-empresariais {
    border-radius: 18px;
    padding: 4rem 1.5rem;
}

.plano-card {
    border-radius: 28px;
    margin-bottom: 2rem;
}

/* 3. Responsividade extra para telas pequenas */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section__header {
        font-size: 1.5rem;
    }
    .planos-cards {
        gap: 1rem;
    }
    .plano-card {
        width: 100%;
        max-width: 98vw;
        min-width: unset;
    }
    .navbar {
        flex-direction: column;
        padding: 1rem 0.5rem;
    }
    .logo {
        font-size: 1.3rem;
    }
}

/* 4. Efeito de hover nos botões */
.bnt:hover, .plano-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18);
}

/* 5. Fonte maior em mobile */
@media (max-width: 480px) {
    body, .plano-info, .plano-label, .plano-apenas, .plano-preco, .plano-nota {
        font-size: 1rem;
    }
}

/* Esconde o menu normal e mostra o hamburguer no mobile */
@media (max-width: 900px) {
    .nav-links,
    .client-btn,
    .close-menu {
        display: none !important;
    }
    .navbar {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 1rem;
        position: relative;
    }
    .logo {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

/* Garante que o menu hamburguer não aparece no desktop */
.menu-toggle {
    display: none;
}

/* Depois dos cards de planos */
.qualidade-comprovada {
    background: #2657a5;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem 6rem 1rem;
}

.qualidade-comprovada h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.qualidade-metricas {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qualidade-metricas > div {
    flex: 1;
    border-right: 1px solid #fff7;
    padding: 0 1rem;
}

.qualidade-metricas > div:last-child {
    border-right: none;
}

.qc-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.qc-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Responsivo */
@media (max-width: 900px) {
    .qualidade-metricas {
        flex-direction: column;
        gap: 1.5rem;
    }
    .qualidade-metricas > div {
        border-right: none;
        border-bottom: 1px solid #fff7;
        padding: 1rem 0;
    }
    .qualidade-metricas > div:last-child {
        border-bottom: none;
    }
}

.cta-final {
    background: #07446a;
    color: #fff;
    padding: 4rem 1rem 3rem 1rem;
}

.cta-final-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-final-texto {
    flex: 1 1 350px;
    min-width: 300px;
}

.cta-final-texto h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    background: #25d366;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1em 2.5em;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    transition: background 0.2s, transform 0.2s;
}

.cta-whatsapp-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px) scale(1.03);
}

.cta-final-img {
    flex: 1 1 350px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-final-img img {
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

/* Responsivo */
@media (max-width: 900px) {
    .cta-final-content {
        flex-direction: column;
        gap: 2rem;
    }
    .cta-final-img img {
        max-width: 100%;
    }
}

/* Adicionado: Estilos para o botão de mute */
#mute-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
}

#mute-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

#mute-btn i {
    font-size: 1.5rem;
}

/* Esconde o botão de mute em telas maiores */
@media (min-width: 901px) {
    #mute-btn {
        display: none;
    }
}

   .faq-container {
      max-width: 800px;
      width: 90%;
      margin: auto;
      padding: 20px;
    }

    .faq-title {
      text-align: center;
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 25px;
      
      color: #2657a5; /* Azul */
      line-height: 1.4;
    }

    details {
      background: #f9faff;
      border-radius: 12px;
      margin-bottom: 12px;
      padding: 18px 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    details[open] {
      background: #f0f3ff;
    }

    summary {
      font-size: 16px;
      font-weight: 600;
      list-style: none;
      position: relative;
      padding-right: 25px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    /* Ícone de + e - */
    summary::after {
      content: "+";
      position: absolute;
      right: 0;
      top: 0;
      font-size: 20px;
      color: #2657a5; /* Azul */
      font-weight: bold;
    }

    details[open] summary::after {
      content: "-";
    }

    .faq-content {
      margin-top: 10px;
      font-size: 15px;
      line-height: 1.6;
      color: #333;
    }

    /* Responsividade */
    @media (max-width: 600px) {
      .faq-title {
        font-size: 20px;
      }

      summary {
        font-size: 15px;
      }

      .faq-content {
        font-size: 14px;
      }
    }
   
    footer {
      background: #2657a5;
      color: #fff;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
    }

    .footer-container {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      text-align: center;
    }

    .footer-column h4 {
      margin-bottom: 15px;
      font-size: 16px;
      font-weight: bold;
      border-bottom: 2px solid #fbbf24;
      display: inline-block;
      padding-bottom: 5px;
    }

    .footer-column p, 
    .footer-column a {
      font-size: 14px;
      color: #ddd;
      margin: 6px 0;
      text-decoration: none;
      transition: color 0.3s;
      display: block;
    }

    .footer-column a:hover {
      color: #fbbf24;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 10px;
    }

    .social-icons a {
      color: #fff;
      font-size: 20px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #fbbf24;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 13px;
      color: #bbb;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
    }

    /* Responsividade */
    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }