/* public/css/site.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.08);
    --secondary: #0f172a;
    --accent: #10b981;
    --accent-light: rgba(16, 185, 129, 0.1);
    --light-bg: #f8fafc;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    --hover-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.12), 0 1px 3px rgba(0, 0, 0, 0.02);
    --border-color: #e2e8f0;
}

body.site-body {
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    color: var(--secondary);
    overflow-x: hidden;
    background-color: var(--light-bg);
    line-height: 1.6;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Navbar Customization */
.navbar-custom {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(9, 13, 22, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-weight: 800;
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero h1 span {
    color: #60a5fa;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-cta {
    background-color: var(--primary);
    color: white;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    background-color: var(--primary-dark);
    color: white;
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.mockup-img {
    border-radius: 20px;
    border: 6px solid #334155;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
}

.mockup-img:hover {
    transform: scale(1.02);
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.trust-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.1em;
}

/* Testimonial Cards */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    height: 100%;
    border: 1px solid #f1f5f9;
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
}

/* Pain & Comparison Section */
.pain-section {
    padding: 90px 0;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background-color: #f8fafc;
    padding: 20px 24px;
    font-weight: 700;
    color: var(--secondary);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Features Grid */
.features-section {
    background: white;
    padding: 90px 0;
}

.feature-box {
    padding: 2.5rem 2rem;
    border-radius: 18px;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: #e2e8f0;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: white;
}

/* Pricing Section */
.pricing-card {
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.pricing-card.destaque {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.15);
}

/* FAQ Customizations */
.faq-section {
    background-color: #f8fafc;
    padding: 90px 0;
}

.accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--secondary);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    padding: 90px 0;
    color: white;
}

/* Footer Customizations */
.site-footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 70px 0 30px;
    font-size: 0.925rem;
    border-top: 1px solid #1e293b;
}

.site-footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #ffffff;
}

/* Float WhatsApp button */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 991px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    .mockup-img {
        max-width: 320px;
        margin: 0 auto;
    }
}

@supports (content-visibility: auto) {
    .pain-section,
    .features-section,
    .faq-section,
    .bottom-cta,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 720px;
    }
    .site-footer {
        contain-intrinsic-size: 1px 320px;
    }
}
