@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
    --bg-color: #ffffff;
    --main-color: #001837;
    --secondary-color: #0071ff;
    --dark-bg-color: #001837;
    --support-color: rgba(0, 113, 255, 0.1);
    --text-color: #333;
    --light-text-color: #fff;
    --header-text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list a {
    color: var(--header-text-color);
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
    font-weight: 600;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 80px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 58%;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-bg-color);
}

/* Removida a regra antiga:
.hero-section h1 .gradient-text {
    background: linear-gradient(to right, #0071ff, #001837);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}
*/

.hero-section p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 113, 255, 0.2);
}

/* === Counters Section === */
.counters-section {
    padding: 8px 0;
    background-color: #f8fbff;
}

.counters-container {
    display: flex;
    gap: 40px;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.counter-item {
    flex: 1 1 200px;
    margin: 20px;
}

.counter-value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.counter-value::after {
    content: '+';
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 4px;
}

.counter-label {
    margin-top: 10px;
    font-size: 16px;
    color: var(--text-color);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section (Accordion) */
.benefits-section-new {
    padding: 80px 0;
}

.benefits-container-new {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-content-new {
    flex: 1;
}

.benefits-image-new {
    flex: 1;
}

.benefits-image-new img {
    width: 100%;
    border-radius: 12px;
}

.badge {
    display: inline-block;
    background-color: var(--support-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.benefits-content-new h2 {
    font-size: 36px;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 30px;
}

/* Accordion Styles */
.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--secondary-color);
}

.accordion-header i {
    transition: transform 0.3s;
    font-size: 14px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    color: var(--secondary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
    padding: 0 0 20px 0;
    line-height: 1.6;
}

/* More Benefits Section (3 Cards) */
.more-benefits-section {
    padding: 80px 0;
    background-color: #f8fbff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.benefit-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 113, 255, 0.1);
}

.benefit-card img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-card h3 {
    color: var(--main-color);
    font-size: 20px;
    margin: 20px 20px 10px;
}

.benefit-card p {
    flex-grow: 1;
    margin: 0 20px 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}
.faq-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.faq-intro {
    flex: 1;
}
.faq-intro h2 {
    font-size: 36px;
    color: var(--main-color);
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 15px;
}
.faq-intro p {
    margin-bottom: 25px;
    line-height: 1.6;
}
.contact-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}
.contact-link:hover {
    text-decoration: underline;
}
.faq-accordion {
    flex: 2;
}

.icon-wrapper i {
    color: var(--secondary-color);
    font-size: 24px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: #f8fbff;
}

.pricing-section .section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #0071ff, #001837);
    color: var(--light-text-color);
    transform: none !important;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffcc00;
    color: var(--dark-bg-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: inherit;
}

.price {
    font-size: 40px;
    font-weight: 800;
    color: inherit;
    margin-bottom: 10px;
}

.plan-description {
    color: inherit;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: inherit;
}

.plan-features i {
    color: var(--secondary-color);
}

.pricing-card.popular .plan-features i {
    color: #ffcc00;
}

.final-cta-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    overflow: hidden;
    position: relative;
}

.final-cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.final-cta-mascot {
    flex: 1;
    max-width: 300px;
    position: relative;
    z-index: 1;
}
.final-cta-mascot img {
    width: 100%;
}

.final-cta-content {
    flex: 2;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 600px;
    margin-bottom: 30px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button-dark {
    background-color: var(--dark-bg-color);
    color: var(--light-text-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button-dark:hover {
    background-color: #002c61;
}

.cta-button-outlined {
    background-color: transparent;
    color: var(--light-text-color);
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--light-text-color);
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-outlined:hover {
    background-color: var(--light-text-color);
    color: var(--secondary-color);
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
    border: 1px solid transparent;
}

.cta-button:hover {
    background-color: #0058cc;
}

.pricing-card .cta-button {
    width: 100%;
}

.pricing-card.popular .cta-button {
    background-color: #ffcc00;
    color: var(--dark-bg-color);
}

.pricing-card.popular .cta-button:hover {
    background-color: #ffd633;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--main-color);
    font-weight: 700;
}

.footer {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.social-icons a {
    color: var(--text-color);
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.botao-wpp {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 1000;
}

.botao-wpp img {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

.botao-wpp:hover img {
    transform: scale(1.1);
}

/* === RESPONSIVO === */
@media (max-width: 992px) {
    .faq-container,
    .onboarding-container,
    .final-cta-container {
        flex-direction: column;
        text-align: center;
    }
    .faq-accordion {
        width: 100%;
    }
    .hero-section h1 {
        font-size: 32px;
    }
    .onboarding-content h2 {
        font-size: 30px;
    }
    .final-cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    .hero-container,
    .benefits-container-new {
        flex-direction: column;
    }
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    .hero-section h1 {
        font-size: 28px;
    }
    .hero-section p {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
    }
    .benefits-content-new {
        order: 2;
        text-align: center;
    }
    .benefits-image-new {
        order: 1;
        margin-bottom: 40px;
    }
    .benefits-content-new h2 {
        font-size: 24px;
    }
    .accordion-header {
        font-size: 16px;
    }
    .benefit-card h3 {
        font-size: 18px;
    }
    .benefit-card p {
        font-size: 14px;
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .faq-intro h2 {
        font-size: 24px;
    }
    .faq-intro p {
        font-size: 14px;
    }
    .onboarding-content h2 {
        font-size: 24px;
    }
    .onboarding-content p {
        font-size: 14px;
    }
    .onboarding-content ul li {
        font-size: 16px;
    }
    .pricing-section .section-subtitle {
        font-size: 16px;
    }
    .plan-title {
        font-size: 20px;
    }
    .price {
        font-size: 32px;
    }
    .plan-description {
        font-size: 14px;
    }
    .plan-features li {
        font-size: 14px;
    }
    .final-cta-content h2 {
        font-size: 24px;
    }
    .final-cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-button-dark,
    .cta-button-outlined,
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 90%;
        text-align: center;
    }
    .whatsapp-fab,
    .botao-wpp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-fab img,
    .botao-wpp img {
        width: 30px;
    }
    .footer p {
        font-size: 12px;
    }
    .social-icons a {
        font-size: 16px;
    }
}

/* =========================================
   Gradient Text Multi‑linha (novo)
   ========================================= */
.gradient-text {
  display: inline-block;    /* permite que o background-clip funcione em várias linhas */
  background: linear-gradient(
    to right,
    #00316F 0%,   /* escuro */
    #0054BE 50%,  /* intermédio */
    #006DF6 100%  /* claro */
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* === Gradient Text Multi‑linha === */
.gradient-text {
  display: inline-block;
  background: linear-gradient(
    to right,
    #00316F 0%,
    #0054BE 50%,
    #006DF6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === Hero Image Tilt 3D === */
.hero-image {
  perspective: 1000px;
}
.hero-image img {
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}
.hero-image:hover img {
  transform:
    rotateY(8deg)
    rotateX(4deg)
    translateY(-10px)
    scale(1.02);
}

/* === Benefit Cards: Tripla Ampliação no Hover === */
.benefit-card {
  transition: transform 0.3s ease-out,
              box-shadow 0.3s ease-out;
  position: relative;
  z-index: 1;
}
.benefit-card:hover {
  transform: translateY(-10px) scale(1.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

/* === Pricing Cards: Tripla Ampliação no Hover === */
.pricing-card {
  transition: transform 0.3s ease-out,
              box-shadow 0.3s ease-out;
}
.pricing-card.popular {
  transform: none !important;
}
.pricing-card:hover {
  transform: translateY(-10px) scale(1.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
/* === Typewriter Multi‑linha + Cursor do Tamanho da Fonte === */
.typewriter {
  /* inline para quebrar linhas normalmente */
  display: inline;
  white-space: normal; /* garante wrap automático */
}

/* pisca o cursor */
@keyframes blink-caret {
  0%,100% { opacity: 0; }
  50%      { opacity: 1; }
}

/* só enquanto estiver digitando */
.typewriter.typing::after {
  content: '';
  display: inline-block;
  width: 0.1em;               /* largura fina */
  height: 1em;                /* mesma altura da fonte */
  background-color: var(--dark-bg-color);
  margin-left: 0.05em;        /* pequeno espaçamento */
  vertical-align: text-bottom;/* alinha base do cursor ao texto */
  animation: blink-caret 0.75s step-end infinite;
}
/* === Tilt 3D na imagem de benefícios === */
.benefits-image-new {
  perspective: 1000px;
}

.benefits-image-new img {
  transition: transform 0.3s ease-out;
}

.benefits-image-new:hover img {
  transform: rotateY(8deg) rotateX(4deg) translateY(-10px) scale(1.02);
}
