:root {
  --verde-principal: #0b7b3e;
  --verde-claro: #1fa463;
  --verde-escuro: #0a5f30;

  --vermelho-preco: #d80000;

  --preto-texto: #000000;
  --cinza-texto: #333333;
  --branco: #ffffff;
}
.section-title,
.section-title-white {
  color: var(--preto-texto);
}
.section-title-white {
  color: var(--branco);
}
.green-box,
.benefits,
.save-time,
.bonus .section-title {
  background: var(--verde-principal);
  color: var(--branco);
}
.text-green,
.testimonials-subtitle {
  color: var(--verde-claro);
}
.plan-price,
.new-price {
  color: var(--vermelho-preco);
  font-weight: 800;
}
.top-alert {
  background: var(--vermelho-preco);
  color: var(--branco);
}
button,
.btn,
.cta-button {
  background: var(--verde-principal);
  color: var(--branco);
}

button:hover,
.btn:hover {
  background: var(--verde-escuro);
}



/* IMAGENS - TAMANHOS RESPONSIVOS */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 420px;
}

.content-preview img {
    max-width: 700px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.product-showcase img {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.bonus-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.plan-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}.product-showcase {
    text-align: center;
    margin-top: 40px;
    padding: 40px 20px;
    background: #0b7b3e;
    border-radius: 15px;
}

.product-showcase img {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ALERTA TOPO VERMELHO */
.top-alert {
    background: #d32f2f;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.top-alert p {
    margin: 0;
}

/* HERO SECTION */
.hero {
    background: #fff;
    padding: 40px 20px 60px;
    text-align: center;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
}

.hero-icon svg {
    width: 200px;
    height: 200px;
    margin: 40px auto;
    display: block;
}

.hero-brand {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 15px 0 15px; /* aproxima da frase de cima e da de baixo */
}


}
.hero-image {
    width: 100%;
    max-width: 580px;   /* aumenta a imagem no desktop */
    height: auto;
    display: block;
}

.brand-title {
    background: #0b7b3e;
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    padding: 20px 40px;
    display: inline-block;
    margin-bottom: 15px;
}

.brand-subtitle {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin: 15px 0 25px;
}

.brand-badge {
    background: #0b7b3e;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 50px;
    margin: 25px 0 15px;
}

.brand-cta {
    font-size: 1.3rem;
    font-weight: 900;
    color: #000;
    margin-top: 15px;
}

.hero-description {
    margin: 40px 0;
}

.hero-description p {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: #0b7b3e;
    color: #fff;
}

.btn-primary:hover {
    background: #096330;
    transform: translateY(-2px);
}

.btn-success {
    background: #0b7b3e;
    color: #fff;
    width: calc(100% - 60px);
    margin: 20px 30px 30px;
    padding: 18px 30px;
    display: block;
    text-align: center;
}

.btn-success:hover {
    background: #096330;
    transform: scale(1.02);
}

.btn-success.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.price-highlight {
    margin: 40px 0;
}

.old-price {
    font-size: 1.1rem;
    color: #666;
    text-decoration: line-through;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #d32f2f;
    margin-top: 10px;
}

/* RETÂNGULO VERDE */
.green-box {
    background: #0b7b3e;
    color: #fff;
    padding: 30px 40px;
    border-radius: 15px;
    margin: 30px auto;
    max-width: 900px;
}

.green-box .section-title {
    color: #fff;
    margin-bottom: 0;
}

/* BENEFITS SECTION */
.benefits {
    background: #0b7b3e;
    padding: 80px 20px;
    color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 80px;
    height: 80px;
}

.benefit-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FOR WHO SECTION */
.for-who {
    background: #2c2c2c;
    padding: 80px 20px;
    color: #fff;
}

.section-title-left {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.for-who-list {
    max-width: 900px;
}

.for-who-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.checkmark {
    background: #0b7b3e;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.for-who-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background: #fff;
    padding: 80px 20px;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #0b7b3e;
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonials-proof {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonial-card img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* WHAT YOU GET SECTION */
.what-you-get {
    background: #f5f5f5;
    padding: 80px 20px;
}

.content-preview {
    text-align: center;
    margin-bottom: 40px;
}

.content-preview img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 20px;
    color: #333;
}

/* SAVE TIME SECTION */
.save-time {
    background: #fff;
    padding: 80px 20px;
}

.save-box {
    background: #0b7b3e;
    color: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.save-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.save-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.product-images {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 0 20px;
}

.product-images img {
    width: 300px;
    height: auto;
    max-height: none;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid #fff;
    flex-shrink: 0;
}

/* BONUS SECTION */
.bonus {
    background: #f5f5f5;
    padding: 80px 20px;
}

.bonus-images {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 20px;
}

.bonus-images img {
    width: 320px;
    height: auto;
    max-height: none;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* PRICING SECTION */
.pricing {
    background: #000;
    padding: 80px 20px;
    color: #fff;
}

.section-title-white {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 400px;
    max-width: 500px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 5px solid #ffd700;
    transform: scale(1);
}

.pricing-header {
    background: #2c2c2c;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-name.gold {
    color: #ffd700;
}

.plan-subtitle {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.plan-payment {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 4rem;
    font-weight: 900;
    color: #d32f2f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.plan-price.gold {
    color: #ffd700;
}

.plan-image {
    padding: 20px;
    text-align: center;
    background: #fff;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

.plan-features {
    list-style: none;
    padding: 30px;
    background: #fff;
    color: #000;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.5;
    align-items: flex-start;
    font-weight: 600;
    color: #000;
}

.check {
    color: #0b7b3e;
    font-size: 1.4rem;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.check.diamond {
    color: transparent;
    text-shadow: 0 0 0 #4fc3f7;
    font-size: 1.3rem;
}

.plan-total {
    padding: 30px;
    background: #f5f5f5;
    text-align: center;
}

.plan-today {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

.plan-final-price {
    font-size: 4rem;
    font-weight: 900;
    color: #d32f2f;
    margin: 10px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.plan-final-price.gold {
    color: #ffd700;
}

.plan-cta-box {
    padding: 30px;
    background: #f5f5f5;
    text-align: center;
    color: #000;
}

.plan-cta-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
}

.plan-cta-highlight {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000;
}

.pricing-card .btn {
    margin: 0 30px 30px 30px !important;
    padding: 18px 30px;
    font-size: 1.05rem;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
    display: block;
    width: calc(100% - 60px);
}

/* FAQ SECTION */
.faq {
    background: #fff;
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background: #f5f5f5;
    transition: background 0.3s;
}

.faq-item summary:hover {
    background: #e8e8e8;
}

.faq-item[open] summary {
    background: #0b7b3e;
    color: #fff;
}

.faq-content {
    padding: 20px;
    background: #fff;
}

.faq-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .top-alert {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .hero-title {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-image {
        max-width: 300px !important;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .new-price {
        font-size: 2.2rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .content-preview img {
        max-width: 100%;
    }
    
    .product-showcase {
        padding: 20px 10px;
    }
    
    .product-showcase img {
        max-width: 100%;
    }
    
    .bonus-images {
        gap: 15px;
    }
    
    .bonus-images img {
        max-width: 100%;
    }
}
html { scroll-behavior: smooth; }

/* evita o título ficar escondido atrás do alerta sticky */
#acesso-imediato { scroll-margin-top: 90px; }
/* TÍTULOS DO PLANO PROFISSIONAL EM BRANCO */
.plan-name.gold,
.plan-subtitle {
    color: #ffffff !important;
}

/* PREÇOS SEMPRE EM VERMELHO */
.plan-price,
.plan-price.gold,
.plan-final-price,
.plan-final-price.gold {
    color: #d32f2f !important;
}
/* REMOVE FUNDO VERDE DO PRODUCT SHOWCASE */
.product-showcase {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}
/* CENTRALIZAR HERO / IMAGEM NO DESKTOP */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* AJUSTES SOMENTE PARA DESKTOP */
@media (min-width: 1024px) {

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .hero-image {
        max-width: 640px;
    }

    .brand-title {
        font-size: 3.6rem;
        padding: 24px 48px;
    }

    .brand-subtitle {
        font-size: 3.6rem;
    }

    .brand-badge {
        font-size: 1.7rem;
        padding: 18px 44px;
    }

    .hero-description p {
        font-size: 1.4rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .btn-primary {
        font-size: 1.25rem;
        padding: 22px 60px;
    }

    .new-price {
        font-size: 4.2rem;
    }
}
/* MELHORAR LEGIBILIDADE DO ALERTA NO DESKTOP */
@media (min-width: 1024px) {
    .top-alert {
        font-family: 'Inter', Arial, Helvetica, sans-serif;
        font-size: 2.05rem;
        letter-spacing: 0.3px;
        line-height: 1.4;
    }
}
/* APROXIMAR A FRASE "E TEM MAIS..." DA IMAGEM ACIMA */
.save-time .product-showcase {
    margin-bottom: 0px; /* diminui o espaço abaixo da imagem */
}

.bonus .section-title {
    margin-top: 0; /* remove o espaço extra acima do texto */
}
/* COLAR "E TEM MAIS..." LOGO ABAIXO DA IMAGEM */
.save-time { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.save-time .container { padding-bottom: 0 !important; margin-bottom: 0 !important; }
.save-time .product-showcase { margin-bottom: 10px !important; padding-bottom: 0 !important; }

.bonus { padding-top: 0 !important; margin-top: 0 !important; }
.bonus .container { padding-top: 0 !important; margin-top: 0 !important; }
.bonus .section-title { margin-top: 0 !important; }

/* RETÂNGULO VERDE "E TEM MAIS..." – DESKTOP */
.bonus .section-title {
    background: #0b7b3e;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    max-width: 760px;
    margin: 16px auto 0;
    text-align: center;
    line-height: 1.3;
    font-size: 1.25rem;
    font-weight: 600;
}

/* RETÂNGULO VERDE "E TEM MAIS..." – MOBILE (FORÇADO) */
@media (max-width: 768px) {
    .bonus .section-title {
        background: #0b7b3e !important;
        color: #ffffff !important;

        padding: 10px 14px !important;   /* mais baixo */
        border-radius: 8px !important;

        max-width: calc(100% - 32px) !important;
        margin: 12px auto 0 !important;

        font-size: 1.05rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }
}
/* ===============================
   PRICING – IGUAL AO PRINT CORRETO
   =============================== */

/* GARANTE CARD TODO BRANCO */
.pricing-card,
.pricing-card .pricing-header {
    background: #ffffff !important;
}

/* NÃO DEIXA O HEADER ESCURECER */
.pricing-header {
    background: transparent !important;
    text-align: center;
    padding-top: 20px;
}

/* ===============================
   PÍLULA DO PLANO BÁSICO (CINZA)
   =============================== */
.pricing-card:not(.featured) .plan-name {
    background: #4a4a4a;
    color: #ffffff;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* ===============================
   PÍLULA DO PLANO PROFISSIONAL (DOURADO)
   =============================== */
.pricing-card.featured .plan-name {
    background: #d4af37;
    color: #000000;
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* TEXTO "MELHOR NEGÓCIO" PRETO */
.pricing-card.featured .plan-payment,
.pricing-card.featured .plan-subtitle {
    color: #000000;
    font-weight: 700;
}

/* ===============================
   PREÇOS VERMELHOS
   =============================== */
.plan-price {
    color: #d90000 !important;
    font-weight: 900;
}

/* ===============================
   BORDA VERDE TRACEJADA – PROFISSIONAL
   =============================== */
.pricing-card.featured {
    border: 3px dashed #0b7b3e;
    border-radius: 16px;
}

/* IMAGEM CENTRALIZADA */
.plan-image img {
    display: block;
    margin: 0 auto;
}
/* ===== TEXTO CORRETO E BEM POSICIONADO ===== */

/* Header compacto */
.pricing-card .pricing-header{
  padding-top: 10px !important;
  padding-bottom: 6px !important;
  text-align: center;
}

/* PAGAMENTO ÚNICO (BÁSICO) */
.pricing-card .plan-payment{
  font-size: 0.8rem;
  font-weight: 700;
  margin: 4px 0 4px !important;
  color: #000000;
}

/* MELHOR NEGÓCIO (PROFISSIONAL) */
.pricing-card .plan-subtitle{
  font-size: 0.8rem;
  font-weight: 700;
  margin: 4px 0 4px !important;
  color: #000000;
}

/* Preço mais colado ao texto */
.pricing-card .plan-price{
  margin: 6px 0 6px !important;
}

/* Imagem mais próxima do preço */
.pricing-card .plan-image{
  margin-top: 6px !important;
}
/* ===== TEXTO CORRETO E BEM POSICIONADO ===== */

/* Header compacto */
.pricing-card .pricing-header{
  padding-top: 10px !important;
  padding-bottom: 6px !important;
  text-align: center;
}

/* PAGAMENTO ÚNICO (BÁSICO) */
.pricing-card .plan-payment{
  font-size: 0.8rem;
  font-weight: 700;
  margin: 4px 0 4px !important;
  color: #000000;
}

/* MELHOR NEGÓCIO (PROFISSIONAL) */
.pricing-card .plan-subtitle{
  font-size: 0.8rem;
  font-weight: 700;
  margin: 4px 0 4px !important;
  color: #000000;
}

/* Preço mais colado ao texto */
.pricing-card .plan-price{
  margin: 6px 0 6px !important;
}

/* Imagem mais próxima do preço */
.pricing-card .plan-image{
  margin-top: 6px !important;
}
/* ===== CORREÇÃO DE COR DO TEXTO (PRETO) ===== */

/* PAGAMENTO ÚNICO – PLANO BÁSICO */
.pricing-card .plan-payment {
    color: #000000 !important;
}

/* (MELHOR NEGÓCIO) – PLANO PROFISSIONAL */
.pricing-card .plan-subtitle {
    color: #000000 !important;
}
.pricing-card .plan-payment,
.pricing-card .plan-subtitle {
    color: #000000 !important;
    font-weight: 700;
}
/* TEXTO PRINCIPAL – NEGRITO */
.hero-title {
    font-weight: 700; /* negrito */
}

/* TEXTO SECUNDÁRIO – VERDE, SEM NEGRITO */
.hero-subtitle {
    font-weight: 400;        /* sem negrito */
    color: #0b7b3e;          /* verde da identidade */
}
/* AJUSTE FINO DO PREÇO NO MOBILE (UMA LINHA, SEM QUEBRAR LAYOUT) */
@media (max-width: 768px) {
    .price-highlight .new-price {
        white-space: nowrap;      /* força 1 linha */
        font-size: 1.4rem;        /* reduz só o necessário */
        line-height: 1.2;
        text-align: center;
    }
}
/* APROXIMAR PREÇO DO BLOCO VERDE NO MOBILE */
@media (max-width: 768px) {

    /* diminui espaço abaixo do preço */
    .price-highlight {
        margin-bottom: 12px !important;
        padding-bottom: 0 !important;
    }

    /* diminui espaço acima da faixa verde */
    .green-section,
    .green-box,
    .section-green {
        margin-top: 0 !important;
        padding-top: 16px !important;
    }
}
/* AJUSTAR ESPAÇO ENTRE PREÇO E FAIXA VERDE (MOBILE) */
@media (max-width: 768px) {

    /* diminui espaço abaixo do preço */
    .price-highlight {
        margin-bottom: 10px !important;
        padding-bottom: 0 !important;
    }

   /* COLAR AO MÁXIMO PREÇO + FAIXA VERDE (MOBILE) */
@media (max-width: 768px) {

    /* bloco do preço */
    .price-highlight {
        margin-bottom: 4px !important;
        padding-bottom: 0 !important;
    }

    /* faixa verde */
    .benefits {
        margin-top: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 18px !important;
    }

    /* título dentro da faixa verde */
    .benefits .section-title {
        margin-top: 0 !important;
        margin-bottom: 6px !important;
        line-height: 1.25;
    }

    /* subtítulo */
    .benefits .section-subtitle {
        margin-top: 0 !important;
        line-height: 1.3;
    }
}
/* AJUSTAR TÍTULO "ACESSO IMEDIATO" NO MOBILE */
@media (max-width: 768px) {
    #acesso-imediato {
        font-size: 1.25rem;     /* reduz bastante */
        line-height: 1.2;       /* compacta as linhas */
        max-width: 320px;       /* força no máx. 2 linhas */
        margin: 0 auto 12px;    /* centraliza e dá respiro */
        text-align: center;
    }
}
/* SUBIR MAIS O TÍTULO "ACESSO IMEDIATO" NO MOBILE */
@media (max-width: 768px) {
    #acesso-imediato {
        margin-bottom: 55px;
    }
}
/* AUMENTAR TEXTO "PAGAMENTO ÚNICO" E "MELHOR NEGÓCIO" */
.pricing-card .plan-payment,
.pricing-card .plan-subtitle {
    font-size: 0.95rem;   /* maior e legível no mobile */
    font-weight: 800;
}
.pricing-card.featured {
    border: 3px dashed #0b7b3e;
}
/* BORDA PONTILHADA NO PLANO BÁSICO */
.pricing-card:not(.featured) {
    border: 2px dashed #cccccc;   /* cinza claro, elegante */
    border-radius: 16px;
}

/* MANTER BORDA VERDE NO PROFISSIONAL */
.pricing-card.featured {
    border: 3px dashed #0b7b3e;
    border-radius: 16px;
}
/* FRASE "IDEAL PARA QUEM..." — 3 LINHAS NO MOBILE */
@media (max-width: 768px) {
    .benefits .section-title {
        color: #000000;           /* preto */
        font-size: 1.14rem;       /* tamanho confortável */
        line-height: 1.25;        /* compacta as linhas */
        
        display: -webkit-box;
        -webkit-line-clamp: 3;    /* máximo 3 linhas */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
        margin-bottom: 6px;
    }
}

/* AJUSTE DA SEÇÃO BENEFITS NO MOBILE */
@media (max-width: 768px) {

    /* TÍTULO PRINCIPAL */
    .benefits .section-title {
        color: #000000;
        font-size: 1.35rem;        /* maior que antes */
        line-height: 1.3;
        text-align: center;

        /* permitir até 4 linhas */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;

        margin-bottom: 12px;       /* base para o espaçamento */
    }

    /* SUBTÍTULO */
    .benefits .section-subtitle {
        color: #ffffff;
        font-size: 1.05rem;        /* menor que o título */
        line-height: 1.35;
        text-align: center;

        margin-top: 6px;           /* separa um pouco do título */
    }
}

/* ===============================
   PROVAS SOCIAIS – SCROLL LATERAL SEM LIMITE
   =============================== */
@media (max-width: 768px) {

  .testimonials-grid {
    display: flex !important;
    flex-wrap: nowrap !important;      /* 🔑 NÃO QUEBRA LINHA */
    gap: 14px;
    overflow-x: auto !important;
    overflow-y: hidden;
    padding: 12px 16px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 80% !important;           /* largura fixa p/ rolar */
    max-width: 80% !important;
    scroll-snap-align: start;
  }

  .testimonial-card img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
  }

/* dica visual – arraste (ACIMA do carrossel) */
@media (max-width: 768px) {
  .testimonials-grid::before {
    content: "⟵ arraste para o lado ⟶";
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 6px;
    opacity: 0.9;
  }

  /* remove o antigo */
  .testimonials-grid::after {
    display: none;
  }
}
/* TEXTO "ARRASTE PARA O LADO" ACIMA DO CARROSSEL */
@media (max-width: 768px) {
  .testimonials-grid {
    position: relative;
  }

  .testimonials-grid::before {
    content: "⟵ arraste para o lado ⟶";
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 8px;
    opacity: 0.9;
  }
}
/* BOLINHAS INDICADORAS */
@media (max-width: 768px) {
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
  }

  .testimonial-dots span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
  }

  .testimonial-dots span.active {
    background: #0b7b3e; /* verde da identidade */
  }
}
/* FADE LATERAL DO CARROSSEL */
@media (max-width: 768px) {
  .testimonials-wrapper {
    position: relative;
  }

  .testimonials-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, #fff, transparent);
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .testimonial-card img {
    max-height: 380px;
    object-fit: contain;
    image-rendering: auto;
  }
}
/* TEXTO "ARRASTE PARA O LADO" */
@media (max-width: 768px) {
  .drag-hint {
    text-align: center;
    font-size: 0.95rem;
    color: #777;
    margin: 6px 0 10px;
    opacity: 0.9;
  }
}

/* WRAPPER PARA FADE */
@media (max-width: 768px) {
  .testimonials-wrapper {
    position: relative;
  }

  .testimonials-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to left, #ffffff, transparent);
    pointer-events: none;
  }
}

/* AJUSTE SEÇÃO ECONOMIZE – IGUAL AO MODELO ANTIGO */

.save-time .section-title {
  margin-bottom: 8px; /* aproxima do texto abaixo */
}

.save-time .section-subtitle {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600; /* mais forte, como no modelo */
  color: #0b7b3e;
}

/* CAIXA VERDE PRINCIPAL */
.save-time .product-showcase {
  background: #0b7b3e; /* verde original */
  padding: 14px 16px;  /* caixa mais compacta */
  border-radius: 10px;
  margin-top: 6px;     /* bem próxima do título */
  text-align: center;
}

/* TEXTO DENTRO DA CAIXA VERDE */
.save-time .product-showcase p,
.save-time .product-showcase span {
  color: #ffffff;
  font-weight: 700;   /* negrito como no print */
  line-height: 1.3;
}

/* IMAGEM DENTRO DA CAIXA */
.save-time .product-showcase img {
  margin-top: 10px;
  border-radius: 8px;
}

/* MOBILE – ainda mais compacto */
@media (max-width: 768px) {
  .save-time .section-title {
    margin-bottom: 6px;
  }

  .save-time .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .save-time .product-showcase {
    padding: 12px;
    margin-top: 4px;
  }
}
.save-time {
  margin-top: 20px;   /* diminui o espaço vindo de cima */
  padding-top: 10px;  /* aproxima ainda mais */
}
.save-time .section-title {
  margin-top: 0;
}
@media (max-width: 768px) {
  .save-time {
    margin-top: 12px;
    padding-top: 6px;
  }
}
/* ===============================
   PROVAS SOCIAIS – SCROLL LATERAL EM TODAS AS TELAS
   =============================== */

/* wrapper (se existir) */
.testimonials-wrapper {
  position: relative;
}

/* grid vira carrossel em TODAS as resoluções */
.testimonials-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 18px;

  overflow-x: auto !important;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  padding: 16px 16px 28px;
  width: 100%;
}

/* esconder scrollbar */
.testimonials-grid::-webkit-scrollbar {
  display: none;
}
.testimonials-grid {
  scrollbar-width: none;
}

/* cada card = 1 “página” */
.testimonial-card {
  flex: 0 0 340px;          /* largura ideal desktop */
  max-width: 340px;
  scroll-snap-align: start;
}

/* imagem ajustada */
.testimonial-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: contain;
  display: block;
}

/* MOBILE – ocupa mais largura */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 32px);
    max-width: calc(100% - 32px);
  }
}
/* =========================================
   FORÇAR PROVAS SOCIAIS EM CARROSSEL NO DESKTOP
   ========================================= */

@media (min-width: 769px) {

  .testimonials .testimonials-grid {
    display: flex !important;        /* mata o grid */
    flex-wrap: nowrap !important;
    gap: 20px;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    width: 100%;
    max-width: 100%;

    padding: 20px 20px 30px;

    scroll-snap-type: x mandatory;
  }

  .testimonials .testimonial-card {
    flex: 0 0 320px !important;      /* largura fixa */
    max-width: 320px !important;
    scroll-snap-align: start;
  }

  .testimonials .testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: contain;
  }

  /* esconder scrollbar */
  .testimonials .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonials .testimonials-grid {
    scrollbar-width: none;
  }
}

/* GARANTIA EXTRA: nenhum pai pode cortar o scroll */
.testimonials,
.testimonials .container {
  overflow: visible !important;
}
/* feedback visual de arraste */
.testimonials-grid {
  cursor: grab;
}

.testimonials-grid.dragging {
  cursor: grabbing;
}
/* TOP ALERT: menor no DESKTOP */
@media (min-width: 769px) {
  .top-alert {
    padding: 8px 12px;      /* reduz altura */
    line-height: 1.2;
  }

  .top-alert p {
    font-size: 16px;        /* menor e legível */
    margin: 0;
  }
}
/* ===============================
   AJUSTE BARRA VERMELHA (TOP ALERT)
   =============================== */

/* GERAL – reduz altura */
.top-alert {
  padding: 6px 12px;     /* altura menor */
  line-height: 1.2;
}

/* TEXTO */
.top-alert p {
  font-size: 15px;
  margin: 0;
  text-align: center;
}

/* DESKTOP – NÃO COBRIR CONTEÚDO */
@media (min-width:400px) {
  .top-alert {
    position: relative !important; /* tira o fixed no desktop */
    z-index: 10;
  }
}

/* MOBILE – pode continuar fixa, mas menor */
@media (max-width: 768px) {
  .top-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  body {
    padding-top: 44px; /* espaço exato da barra */
  }
}
/* ===============================
   TOP ALERT — COMPORTAMENTO ORIGINAL
   =============================== */

/* MOBILE: mantém como estava */
@media (max-width: 768px) {
  .top-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 10px 14px;
    line-height: 1.3;
  }

  .top-alert p {
    font-size: 15px;
    margin: 0;
    text-align: center;
  }

  /* mantém espaço para a arte branca */
  body {
    padding-top: 70px; /* ajuste conforme sua arte branca */
  }
}

/* DESKTOP: barra fixa, mas FINA */
@media (min-width: 769px) {
  .top-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 6px 10px;   /* deixa fina */
    line-height: 1.15;
  }

  .top-alert p {
    font-size: 14px;
    margin: 0;
    text-align: center;
  }

  /* empurra o site só o necessário */
  body {
    padding-top: 42px;
  }
}
/* TOP ALERT — FORÇAR FIXA (NÃO SUMIR) */
.top-alert{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;

  background: #d80000 !important;
  color: #fff !important;
}

/* MOBILE (mantém maior) */
@media (max-width: 768px){
  .top-alert{
    padding: 10px 14px !important;
    line-height: 1.3 !important;
  }
  .top-alert p{
    font-size: 15px !important;
    margin: 0 !important;
    text-align: center !important;
  }
  body{ padding-top: 70px !important; } /* ajuste se precisar */
}

/* DESKTOP (fica fina) */
@media (min-width: 769px){
  .top-alert{
    padding: 6px 10px !important;
    line-height: 1.15 !important;
  }
  .top-alert p{
    font-size: 14px !important;
    margin: 0 !important;
    text-align: center !important;
  }
  body{ padding-top: 42px !important; }
}
/* ===============================
   TOP ALERT — DESKTOP FINO (NÃO MEXE NO MOBILE)
   =============================== */

@media (min-width: 1024px) {

  .top-alert {
    padding: 4px 10px !important;   /* 🔴 AQUI define a altura */
    height: auto !important;
    line-height: 1.1 !important;
  }

  .top-alert p {
    font-size: 13px !important;     /* 🔴 texto menor no desktop */
    margin: 0 !important;
    padding: 0 !important;
  }
}
@media (min-width: 1024px) {
  .top-alert {
    min-height: unset !important;
    max-height: unset !important;
  }
}
/* ===============================
   CONTINUIDADE VISUAL (FUNDO BRANCO + MENOS ESPAÇO)
   =============================== */

/* 1) Fundo branco em tudo */
html, body {
  background: #ffffff !important;
}

/* se alguma section estiver com fundo diferente, força branco */
section {
  background: #ffffff;
}

/* 2) Padronizar e reduzir espaçamento entre blocos */
.save-time,
.bonus,
.benefits {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin: 0 !important;
}

/* 3) Cortar "buracos" entre textos dentro das seções */
.save-time .section-title,
.bonus .section-title,
.benefits .section-title {
  margin: 0 0 10px !important;   /* menos espaço embaixo do título */
}

.save-time .section-subtitle,
.benefits .section-subtitle,
.testimonials-subtitle,
.testimonials-proof {
  margin: 0 0 10px !important;   /* aproxima os parágrafos */
}

/* 4) Diminuir espaço acima/abaixo da imagem do produto */
.product-showcase {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

/* 5) No mobile, ainda mais “colado” pra parecer uma coisa só */
@media (max-width: 768px) {
  .save-time,
  .bonus,
  .benefits {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }

  .save-time .section-title,
  .bonus .section-title,
  .benefits .section-title {
    margin-bottom: 8px !important;
  }
}

/* FUNDO BRANCO SÓ PARA O BLOCO DO TEXTO (Monte sua linha...) */
.section-title,
.section-description{
  background: transparent !important;
}

/* Se o cinza estiver vindo da seção pai, força branco nela */
.section-title{
  padding-top: 0;
}
/* PLANO B: qualquer seção que tenha section-description vira branca */
section:has(.section-description){
  background: #fff !important;
}
/* FUNDO BRANCO NA ÁREA DO BÔNUS (em volta da caixa verde) */
.bonus{
  background: #fff !important;
}

/* centralizar a caixa verde */
.bonus .container{
  display: flex;
  justify-content: center;
  background: transparent !important;
}

/* a caixa verde em si */
.bonus .section-title{
  background: #0b7b3e !important;
  color: #fff !important;
  text-align: center !important;

  width: 100%;
  max-width: 720px;      /* controla o tamanho */
  padding: 16px 18px;    /* controla altura da caixa */
  border-radius: 14px;
  margin: 18px auto 0 !important;
  line-height: 1.35;
}

/* mobile: menor e mais bonita */
@media (max-width: 768px){
  .bonus .section-title{
    max-width: 92%;
    font-size: 1.05rem;
    padding: 14px 14px;
    margin-top: 14px !important;
  }
}
/* DIMINUI ESPAÇO ABAIXO DO CARROSSEL DE DEPOIMENTOS */
.testimonials {
  padding-bottom: 20px !important;
}

.testimonials-grid {
  margin-bottom: 10px !important;
}
/* =========================================
   COMPACTAR ESPAÇOS SEM QUEBRAR ESTILOS
   (não mexe no fundo das sections)
   ========================================= */

/* 1) Remover “buracos” entre seções (margens padrão) */
.section-title,
.section-title-white,
.section-subtitle,
.section-description,
.testimonials-subtitle,
.testimonials-proof {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

/* 2) Reduzir espaço específico após a seção de depoimentos */
.testimonials {
  padding-bottom: 12px !important;
  margin-bottom: 0 !important;
}

/* 3) Reduzir espaço abaixo do carrossel/grid de depoimentos */
.testimonials-grid {
  margin-bottom: 6px !important;
  padding-bottom: 0 !important;
}

/* 4) Se você tem bolinhas/indicadores: aproximar do carrossel */
.testimonials-indicators,
.testimonials-dots,
.carousel-dots,
.dots,
.indicators {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

/* 5) A seção seguinte (onde começa o mockup / “Monte sua linha…”) costuma ter padding-top alto.
      Sem saber o nome exato da section, fazemos um ajuste seguro usando o elemento que existe nela. */
.plan-image,
.product-showcase {
  margin-top: 8px !important;
}

/* 6) MOBILE: compactar um pouco mais sem afetar desktop */
@media (max-width: 768px) {
  .section-title,
  .section-title-white {
    margin-bottom: 8px !important;
  }

  .section-subtitle,
  .section-description,
  .testimonials-subtitle,
  .testimonials-proof {
    margin-bottom: 8px !important;
  }

  .testimonials {
    padding-bottom: 8px !important;
  }
}
