html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9fb;
  color: #1d1d1f;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Notification bar */
.notification-bar {
  background: #6a4be7;
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 16px 20px;
}

.navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #333;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: #333;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-outline {
  padding: 8px 16px;
  border: 1px solid #333;
  border-radius: 6px;
  font-weight: 600;
}

.lang {
  font-size: 0.9rem;
}

/* Hero section */
.hero {
  background: #f1f0fe;
  padding: 60px 20px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.highlight {
  color: #6a4be7;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.checklist {
  list-style: none;
  margin-bottom: 16px;
}

.checklist li {
  margin-bottom: 5px;
}

.price-info {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.btn-primary {
  background: #6a4be7;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.countdown {
  background: #e4e0f8;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: bold;
  color: #6a4be7;
}

.reembolso {
  font-size: 0.85rem;
  color: #555;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  text-align: center;
  padding: 20px;
}

.hero-image img {
  max-width: 100%;
  width: 120%;
  height: auto;
  transform: scale(1.2); /* ou 1.2, 1.3, etc, conforme desejar */
}

.badge-extra {
  background: #6a4be7;
  color: white;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-weight: bold;
}

.trust {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #333;
}

.trust img {
  display: block;
  margin: 0 auto 8px;
  width: 150px;
  height: auto;
}

/* Features */
.features {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.features h2 {
    text-align: center;
}

/* Estilo geral para a lista de recursos */
.pricing-features {
    list-style: none; 
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.pricing-features li::before {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    font-weight: bold;
    width: 20px;
    text-align: center;
}

.pricing-features li.included::before {
    content: '✓';
    color: #16a34a;
}

.pricing-features li.excluded::before {
    content: '—';
    color: #9ca3af;
}

/*provas sociais */
.social-proof {
    background-color: #f9f9fb; /* Cor de fundo correta */
    padding: 80px 0;
}

.social-proof .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.social-proof h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 40px;
}

/* Novo container para o carrossel, para esconder o overflow */
.carousel-container {
    overflow: hidden; /* Essencial para o efeito de slide funcionar */
    width: 100%;
    margin: 0 auto;
}

/* Wrapper que se moverá */
.testimonials-wrapper {
    display: flex;
    gap: 20px; /* Espaço entre os cards */
    transition: transform 0.5s ease-in-out; /* Animação suave do slide */
}

.testimonial {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    /* Cada card ocupará 1/3 do espaço, considerando o gap */
    flex: 0 0 calc(33.333% - 14px); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.user-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.user-info p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.rating {
    color: #6a4be7; /* Cor roxa da Hostinger para as estrelas */
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    flex-grow: 1; /* Faz o texto crescer para alinhar os cards */
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-button {
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-button:hover {
    background-color: #e5e5e5;
}

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f7;
}

/* Ajuste de responsividade para mostrar menos cards em telas menores */
@media (max-width: 992px) {
    .testimonial {
        /* Mostra 2 cards por vez */
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .testimonial {
        /* Mostra 1 card por vez */
        flex-basis: 100%;
    }
}

/* FAQ */
.faq {
  padding: 60px 20px;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  text-align: left;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background: #f1f0fe;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .feature-cards,
  .pricing-grid {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }
}


/*css da parte de preço */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f9fafb;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background-color: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  width: 320px;
  max-width: 100%;
}

.card.popular {
    border-color: #8B5CF6;
    border-width: 2px;
}

.card.recommended {
    border-color: #3B82F6;
    border-width: 2px;
}

.card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8B5CF6;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7em;
}

.card.recommended .badge {
    background-color: #3B82F6;
}

.card h3 {
    font-size: 1.8em;
    margin-top: 10px;
    margin-bottom: 5px;
}

.card .subtitle {
    color: #666;
    margin-bottom: 20px;
}

.card .price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.card .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.card .discount-badge {
    background-color: #e0e0e0;
    color: #555;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.7em;
}

.card .current-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.card .currency {
    font-size: 1em;
    margin-right: 5px;
}

.card .amount {
    font-size: 2.5em;
    font-weight: bold;
}

.card .period {
    font-size: 0.9em;
    color: #666;
}

.card .small-text {
    font-size: 0.75em;
    color: #999;
    margin-bottom: 10px;
}

.card .free-months {
    color: #8B5CF6;
    font-weight: bold;
    margin-bottom: 20px;
}

.card .btn-primary {
    width: 100%;
    margin-bottom: 20px;
}

.card .features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}

.card .features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.card .features li img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.card .all-features {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.payment-info {
    margin-top: 40px;
    text-align: center;
    color: #666;
}

.payment-info p {
    margin-bottom: 5px;
}

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

.payment-icons img {
    height: 25px;
}

/*css de formas de pagamento pra baixo */

.payment-info {
    margin-top: 40px;
    text-align: center;
    color: #666;
}

.payment-info p {
    margin-bottom: 5px;
}

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

.payment-icons img {
    height: 25px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9fafb;
    padding: 50px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header .avatar {
    width: 50px;
    height: 50px;
    background-color: #f3e8ff;
    color: #8B5CF6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
}

.testimonial-header h4 {
    margin: 0;
    font-size: 1.1em;
}

.testimonial-header p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

.testimonial-card .stars {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-card .stars img {
    width: 20px;
    height: 20px;
    margin: 0 2px;
}

/* Success Story Section */
.success-story-section {
    padding: 80px 20px;
    background-color: #fff; /* Fundo branco para um visual limpo */
}

.success-story-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 60px;
}

.story-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.story-image-col {
    flex: 1;
}

.story-image-col img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.story-text-col {
    flex: 1;
    text-align: left;
}

/* --- ADIÇÃO IMPORTANTE AQUI --- */
.story-text-bg {
    background-color: #f1f0fe; /* Cor de fundo roxa clara */
    padding: 40px;             /* Espaçamento interno */
    border-radius: 16px;       /* Bordas arredondadas */
}
/* ----------------------------- */

.story-text-col h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.3;
}

.story-text-col p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.7;
    margin-bottom: 32px;
}

.story-text-col .btn-primary {
    display: inline-block;
    background: #6a4be7;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.story-text-col .btn-primary:hover {
    background-color: #5839d1;
}


/* Deixa o layout responsivo em telas menores */
@media (max-width: 992px) {
    .story-content-wrapper {
        flex-direction: column; 
        text-align: center;
    }
    
    .story-text-col {
        text-align: center;
    }

    .story-text-bg {
        padding: 30px; /* Ajusta o padding em telas menores */
    }
}

/* ====================================================== */
/* CSS para a seção "Tenha tudo isso sem pagar mais."    */
/* ====================================================== */

.extra-features-section {
    padding: 60px 20px;
    background-color: #f9f9fb; /* Cor de fundo clara */
    text-align: center;
}

.extra-features-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.extra-features-section .section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.extra-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Três colunas */
    gap: 30px; /* Espaçamento entre os itens */
    margin-top: 20px;
}

.extra-features-grid .feature-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.extra-features-grid .feature-item .icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #f3e8ff; /* Roxo claro para os ícones */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.extra-features-grid .feature-item .icon-wrapper img {
    width: 24px;
    height: 24px;
}

.extra-features-grid .feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.extra-features-grid .feature-item p {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsividade para telas menores */
@media (max-width: 992px) {
    .extra-features-grid {
        grid-template-columns: repeat(2, 1fr); /* Duas colunas em telas médias */
    }
}

@media (max-width: 768px) {
    .extra-features-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
    }
}

/* Dashboard Preview Section */
.dashboard-preview-section {
     background-color: #8B5CF6; /* Cor de fundo roxa escura */
     color: white;
     padding: 80px 20px; /* Aumenta o padding vertical */
 }
 
 .dashboard-preview-layout {
     align-items: center; /* Garante o alinhamento vertical no centro */
 }
 
 .dashboard-preview-section .story-image-col {
     flex: 1; /* Ocupa metade do espaço */
 }
 
 .dashboard-preview-section .story-image-col img {
     width: 100%;
     max-width: 500px; /* Limita a largura máxima da imagem se necessário */
     height: auto;
     border-radius: 16px; /* Opcional: se quiser bordas arredondadas na imagem */
     display: block;
 }
 
 .dashboard-preview-section .story-text-col {
     flex: 1; /* Ocupa a outra metade do espaço */
     text-align: left;
     padding: 40px; /* Adiciona um pouco de padding interno */
 }
 
 .dashboard-preview-section .badge {
     background-color: #a78bfa; /* Roxo mais claro para o badge */
     color: #5b21b6; /* Roxo mais escuro para o texto do badge */
     padding: 8px 16px;
     border-radius: 20px;
     font-size: 0.9em;
     font-weight: 600;
     margin-bottom: 20px;
     display: inline-block; /* Para o margin-bottom funcionar */
 }
 
 .dashboard-preview-section h2 {
     font-size: 2.5em;
     font-weight: 700;
     margin-bottom: 20px;
     line-height: 1.2;
 }
 
 .dashboard-preview-section p {
     font-size: 16px;
     line-height: 1.7;
     color: #f3e8ff; /* Um tom de branco mais suave */
     margin-bottom: 16px;
 }
 
 /* Responsividade */
 @media (max-width: 992px) {
     .dashboard-preview-layout {
         flex-direction: column;
         text-align: center;
     }
     .dashboard-preview-section .story-text-col {
         text-align: center;
         padding: 30px;
     }
     .dashboard-preview-section .story-image-col {
         margin-bottom: 30px;
     }
 }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.stat-box h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.stat-box .stat-value {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-box .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5em;
    border: 4px solid;
}

.stat-box .circle.green {
    border-color: #10B981;
}

.stat-box .circle.purple {
    border-color: #8B5CF6;
}

.stat-box .disk-info div {
    font-size: 0.9em;
    color: #666;
}

/* FAQ Section */
/* ====================================================== */
/* SUBSTITUA TODO O CSS DA SEÇÃO FAQ POR ESTE        */
/* ====================================================== */

.faq-section {
    padding: 80px 20px;
    background-color: #fff; /* Fundo branco */
}

.faq-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.faq-section .section-subtitle {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 40px;
}

.faq-items {
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.faq-item:last-child {
    border-bottom: none; /* Remove a borda do último item */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-right: 20px;
}

.faq-arrow {
    font-size: 16px;
    font-weight: bold;
    color: #6a4be7; /* Roxo da Hostinger */
    transition: transform 0.3s ease; /* Animação da seta */
}

.faq-answer {
    max-height: 0; /* A resposta começa escondida */
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out; /* Animação de abrir/fechar */
}

.faq-answer p {
    color: #333;
    line-height: 1.7;
    padding-right: 30px; /* Para não ficar colado na borda */
}

/* --- ESTADO ATIVO (QUANDO A RESPOSTA ESTÁ VISÍVEL) --- */

.faq-item.active .faq-answer {
    max-height: 200px; /* Altura máxima para a resposta aparecer. Ajuste se precisar de mais espaço. */
    margin-top: 16px; /* Espaço entre a pergunta e a resposta */
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg); /* Gira a seta para cima */
}

/* Final CTA Section */
.final-cta-section {
    background-color: #8B5CF6;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.final-cta-section h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta-section p {
    margin-bottom: 30px;
}

.final-cta-section .btn-white {
    font-size: 1.2em;
    padding: 15px 30px;
}

/* Footer */
/* ====================================================== */
/* SUBSTITUA TODO O CSS DO FOOTER POR ESTE CÓDIGO      */
/* ====================================================== */

.footer {
    background-color: #f1f0fe; /* Tom de roxo bem claro */
    color: #1d1d1f; /* Texto escuro para contraste */
    padding: 60px 20px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-grid h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid li {
    margin-bottom: 12px;
}

.footer-grid a {
    font-size: 14px;
    color: #6e6e73;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: #6a4be7;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 40px;
    display: flex;
    justify-content: space-between; /* Alinha os itens nas extremidades */
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar a linha em telas pequenas */
    gap: 20px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 3px;  /* <-- DIMINUÍMOS O ESPAÇO de 12px para 8px */
    flex-wrap: wrap;
}

.payment-methods img {
    height: 40px; /* <-- AUMENTAMOS O TAMANHO de 24px para 28px */
    background-color: white;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.payment-more {
    font-size: 14px;
    font-weight: 600;
    color: #6a4be7;
}

.copyright-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.copyright-info .logo {
    /* O estilo do logo já deve existir, mas garantimos aqui */
    font-weight: 700;
    font-size: 1.4rem;
    color: #333;
}

.copyright-info p {
    font-size: 14px;
    color: #6e6e73;
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column; /* Empilha os elementos */
        gap: 30px;
    }
    .payment-methods, .copyright-info {
        justify-content: center; /* Centraliza os itens */
    }
}
