/* ========================================
   BOT ENEM - LANDING PAGE CSS
   Página de vendas otimizada para conversão
   ======================================== */

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
}

.section-light {
    background-color: #f8f9fa;
}

.section-gradient {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    overflow: hidden;
    padding: 60px 20px;
}

.hero-bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    background: white;
    filter: blur(60px);
}

.blob-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
}

.blob-2 {
    bottom: 80px;
    right: 40px;
    width: 160px;
    height: 160px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fbbf24;
    color: #78350f;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 32px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #7c3aed;
    padding: 12px 24px;
    border-radius: 12px;
    margin-top: 8px;
}

.hero-description {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.95);
    max-width: 650px;
    margin: 0 auto 32px;
    font-weight: 500;
}

.cta-container {
    margin: 32px 0;
}

.hero-footer-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    margin-top: 16px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #10b981;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    background-color: #059669;
    transform: scale(1.05);
}

.btn-hero {
    font-size: 1.15rem;
    padding: 20px 40px;
}

.btn-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-cta:hover {
    opacity: 0.95;
    transform: scale(1.05);
}

.btn-large {
    width: 100%;
    font-size: 1.25rem;
    padding: 24px;
    margin-top: 32px;
}

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.badge-primary {
    background-color: #7c3aed;
    color: white;
}

.badge-accent {
    background-color: #fbbf24;
    color: #78350f;
}

/* ICONS */
.icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.icon-sparkle {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

/* GRIDS */
.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

/* FEATURE CARDS */
.feature-card {
    padding: 32px;
    text-align: center;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* STEP CARDS */
.step-card {
    position: relative;
    padding: 24px;
    text-align: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: #7c3aed;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.step-description {
    color: #6b7280;
    line-height: 1.5;
}

/* BENEFITS */
.benefits-grid {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.benefit-item p {
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

/* AUDIENCE CARDS */
.audience-grid {
    max-width: 800px;
    margin: 0 auto;
}

.audience-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.audience-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.audience-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audience-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.audience-card p {
    color: #1a1a1a;
    font-weight: 600;
    margin: 0;
}

/* TESTIMONIALS */
.testimonial-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* PRICING CARD */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 1.75rem;
    color: #6b7280;
    text-decoration: line-through;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    color: #7c3aed;
}

.price-subtitle {
    text-align: center;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 32px;
}

.features-list {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item p {
    color: #1a1a1a;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.check-icon-green {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.guarantee-text {
    text-align: center;
    color: #1a1a1a;
    font-size: 0.9rem;
    margin-top: 24px;
}

.secure-text {
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

/* FAQ */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #7c3aed;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 8px 0;
    color: rgba(255,255,255,0.8);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    font-family: inherit;
}

.floating-cta.visible {
    opacity: 1;
    visibility: visible;
}

.floating-cta:hover {
    transform: translateX(-50%) scale(1.05);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .section {
        padding: 60px 20px;
    }
}
