/* Chatbot WhatsApp Landing Page - Estilos Específicos */
/* Este arquivo contém apenas estilos para chatbot-whatsapp.html */

/* Variáveis específicas do chatbot */
.chatbot-page {
    --whatsapp-color: #25d366;
    --whatsapp-dark: #128c7e;
    --gradient-whatsapp: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Hero Section Específico do Chatbot */
.chatbot-hero {
    background: var(--gradient-hero);
    color: white;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.chatbot-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.chatbot-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.chatbot-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.chatbot-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .chatbot-hero-title {
        font-size: 3.5rem;
    }
}

.chatbot-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.chatbot-hero .hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.chatbot-hero .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-hero .benefit-icon {
    font-size: 1.2rem;
}

.chatbot-hero .hero-cta {
    margin-bottom: 3rem;
}

/* Botões WhatsApp específicos */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-whatsapp);
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.btn-whatsapp.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

.btn-whatsapp.mega {
    padding: 2rem 4rem;
    font-size: 1.4rem;
    animation: chatbot-pulse 2s infinite;
}

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-whatsapp);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.btn-whatsapp .btn-subtext {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.chatbot-hero .hero-guarantee {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.chatbot-hero .hero-image {
    margin-top: 3rem;
}

.chatbot-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* Seção de Urgência */
.urgency-section {
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: white;
    padding: 2rem 0;
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4rem;
    min-width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.urgency-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.urgency-timer .timer-icon {
    font-size: 2rem;
    animation: chatbot-bounce 1s infinite;
}

.urgency-timer .timer-text {
    font-size: 1.1rem;
}

.urgency-timer .highlight-number {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 800;
    font-size: 1.2rem;
}

.urgency-stats {
    display: flex;
    gap: 4rem;
    flex-wrap: nowrap;
    align-items: center;
}

.urgency-stats .stat-item {
    text-align: center;
}

.urgency-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.urgency-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Seção de Problemas */
.problems-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problems-section .problem-item {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.problems-section .problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problems-section .problem-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.problems-section .problem-item p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.problems-section .problem-impact {
    background: #fee2e2;
    color: #dc2626;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Seção de Solução */
.solution-section {
    padding: 4rem 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.solution-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-features {
    margin: 2rem 0;
}

.solution-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.solution-features .feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.solution-features .feature-content h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.solution-features .feature-content p {
    color: #718096;
    margin: 0;
}

.solution-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Seção de Benefícios */
.benefits-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefits-section .benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #e2e8f0;
}

.benefits-section .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.benefits-section .benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefits-section .benefit-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.benefits-section .benefit-card p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.benefits-section .benefit-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #ecfdf5;
    color: #059669;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Como Funciona */
.how-it-works-section {
    padding: 4rem 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }
    
    .steps-container .step-arrow {
        transform: rotate(90deg);
    }
}

.steps-container .step-item {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.steps-container .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.steps-container .step-content h3 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.steps-container .step-content p {
    color: #718096;
    font-size: 0.9rem;
}

.steps-container .step-arrow {
    font-size: 2rem;
    color: #a0aec0;
    font-weight: bold;
}

/* Prova Social */
.social-proof-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-proof-section .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.social-proof-section .testimonial-content {
    margin-bottom: 1.5rem;
}

.social-proof-section .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-proof-section .testimonial-content p {
    color: #2d3748;
    font-style: italic;
    line-height: 1.6;
}

.social-proof-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-proof-section .author-info strong {
    display: block;
    color: #2d3748;
}

.social-proof-section .author-info span {
    color: #718096;
    font-size: 0.9rem;
}

/* Preços */
.pricing-section {
    padding: 4rem 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-section .pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.pricing-section .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

.pricing-section .pricing-card.featured {
    border-color: #25d366;
    transform: scale(1.05);
}

.pricing-section .plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-whatsapp);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-section .plan-header h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.pricing-section .plan-price {
    margin-bottom: 2rem;
}

.pricing-section .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.pricing-section .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2d3748;
}

.pricing-section .period {
    color: #718096;
}

.pricing-section .plan-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-section .feature {
    padding: 0.5rem 0;
    color: #2d3748;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-guarantee {
    margin-top: 1rem;
    color: #718096;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    background: #f7fafc;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-section .faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-section .faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease-in-out;
}

.faq-section .faq-question:hover {
    background: #f7fafc;
}

.faq-section .faq-question h3 {
    margin: 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.faq-section .faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #718096;
    transition: transform 0.3s ease-in-out;
}

.faq-section .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0;
}

.faq-section .faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #718096;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.3s ease-out 0.1s;
}

.faq-section .faq-item.active .faq-answer p {
    opacity: 1;
}

/* CTA Final */
.final-cta-section {
    background: var(--gradient-hero);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.final-cta-benefits .final-benefit {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-cta-urgency {
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Animações específicas do chatbot */
@keyframes chatbot-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes chatbot-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Headers de seção */
.chatbot-page .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chatbot-page .section-title {
    color: #2d3748;
    margin-bottom: 1rem;
}

.chatbot-page .section-subtitle {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade específica */
@media (max-width: 1200px) {
    .urgency-content {
        gap: 3rem;
    }
    
    .urgency-stats {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .urgency-content {
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }
    
    .urgency-timer {
        white-space: normal;
    }
    
    .urgency-stats {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .urgency-content {
        flex-direction: column;
        text-align: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .urgency-timer {
        white-space: normal;
        justify-content: center;
    }
    
    .urgency-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .chatbot-hero .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .btn-whatsapp.mega {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
}

/* Ícone WhatsApp animado */
.whatsapp-icon {
    animation: chatbot-bounce 2s infinite;
}

/* Otimizações de performance */
.chatbot-hero .hero-image img,
.solution-image img {
    will-change: transform;
}

/* Acessibilidade */
.btn-whatsapp:focus,
.faq-section .faq-question:focus {
    outline: 2px solid #25d366;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .chatbot-hero,
    .urgency-section,
    .final-cta-section {
        background: white !important;
        color: black !important;
    }
}



/* ========================================
   ESTILOS PARA BOTÕES "TESTAR GRÁTIS" 
   ======================================== */

/* Container para o botão dentro do card de preço */
.plan-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

/* Estilo base do botão "Testar Grátis" */
.btn-test-free {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no hover */
.btn-test-free::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-test-free:hover::before {
    left: 100%;
}

/* Efeitos de hover */
.btn-test-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

/* Estilo especial para o plano em destaque (featured) */
.btn-test-free.featured {
    background: var(--gradient-whatsapp);
    animation: test-pulse 2s infinite;
}

.btn-test-free.featured:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Ícone do botão */
.btn-test-free .test-icon {
    font-size: 1.1rem;
    animation: test-bounce 2s infinite;
}

/* Animações específicas para os botões de teste */
@keyframes test-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes test-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Estados de foco para acessibilidade */
.btn-test-free:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .btn-test-free {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .plan-cta {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
}

/* Ajustes para o card em destaque */
.pricing-card.featured .plan-cta {
    border-top-color: rgba(37, 211, 102, 0.2);
}

/* Efeito de loading/carregamento (opcional) */
.btn-test-free.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-test-free.loading .test-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Melhorias de performance */
.btn-test-free {
    will-change: transform;
}

/* Estilo para impressão */
@media print {
    .btn-test-free {
        background: #667eea !important;
        color: white !important;
        box-shadow: none !important;
    }
}

