/* ==========================================================================
   STYLE SYSTEM & RESET - LANDING PAGE MI OS
   ========================================================================== */

:root {
    --bg-main: #030712;
    --bg-card: rgba(17, 24, 39, 0.6);
    --bg-card-hover: rgba(31, 41, 55, 0.85);
    
    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.15);
    --secondary: #8b5cf6; /* Violet */
    --accent: #ec4899; /* Pink */
    
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-color: rgba(255, 255, 255, 0.07);
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glassmorphism utility */
.glassmorphism {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-main);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   FLOATING HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(10, 15, 30, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-icon i {
    width: 18px;
    height: 18px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text .highlight {
    background: linear-gradient(135deg, #a78bfa, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--text-main);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(0,0,0,0) 100%);
    top: -100px;
    right: -100px;
    z-index: -1;
    filter: blur(80px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge i {
    width: 14px;
    height: 14px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #a78bfa, #818cf8, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-main);
}

.stat-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 28px;
    background: var(--border-color);
}

.hero-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-frame {
    padding: 12px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition-smooth);
    animation: floatImage 6s ease-in-out infinite;
}

.mockup-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.mockup-frame img {
    max-width: 100%;
    height: auto;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 16px;
    background: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
    margin: -12px -12px 0 -12px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dots .dot.red { background: #ef4444; }
.mockup-dots .dot.yellow { background: #f59e0b; }
.mockup-dots .dot.green { background: #10b981; }

.mockup-address {
    flex-grow: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 3px 12px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes floatImage {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-15px); }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #fff;
}

.feature-icon i {
    width: 22px;
    height: 22px;
}

.bg-indigo { background: linear-gradient(135deg, #818cf8, #4f46e5); }
.bg-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.bg-pink { background: linear-gradient(135deg, #f472b6, #db2777); }
.bg-amber { background: linear-gradient(135deg, #fbbf24, #d97706); }
.bg-cyan { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.bg-emerald { background: linear-gradient(135deg, #34d399, #059669); }

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.pricing-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
    bottom: -100px;
    left: -100px;
    z-index: -1;
    filter: blur(80px);
}

/* Billing Toggle styles */
.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 50px;
}

.toggle-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.toggle-label.active {
    color: var(--text-main);
}

.discount-badge {
    background: #10b981;
    color: #fff;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 4px;
}

.toggle-btn {
    width: 44px;
    height: 24px;
    background: #374151;
    border: none;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-slider {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: var(--transition-smooth);
}

.toggle-btn.active {
    background: var(--primary);
}

.toggle-btn.active .toggle-slider {
    left: 23px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    flex: 1;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.popular {
    border: 2px solid var(--primary);
    background: rgba(17, 24, 39, 0.85);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popular-badge i {
    width: 10px;
    height: 10px;
}

.price-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.price-value {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price-value .currency {
    font-size: 20px;
    font-weight: 700;
    margin-right: 4px;
}

.price-value .amount {
    font-family: var(--font-display);
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.price-value .period {
    font-size: 14px;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-features li {
    font-size: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.check-icon {
    color: #10b981;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.x-icon {
    color: #ef4444;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.faq-accordion {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    background: rgba(255,255,255,0.02);
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 24px;
}

.faq-content p {
    padding-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Accordion Open State */
.faq-item.active {
    border-color: rgba(99, 102, 241, 0.2);
    background: rgba(17, 24, 39, 0.85);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    padding: 60px 0 100px 0;
}

.cta-container {
    padding: 60px;
    border-radius: var(--border-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.08));
    z-index: -1;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
}

.cta-action {
    flex-shrink: 0;
}

.cta-action .btn {
    padding: 16px 32px;
    font-size: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
    background: #020617;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-area {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-contact p {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact p i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-left {
    transform: translateX(-60px);
}

.reveal.reveal-right {
    transform: translateX(60px);
}

.reveal.reveal-scale {
    transform: scale(0.9);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   ANIMATED BACKGROUND (HERO)
   ========================================================================== */

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.08) 40%, rgba(236, 72, 153, 0.04) 60%, rgba(0,0,0,0) 100%);
    top: -200px;
    right: -200px;
    z-index: -1;
    filter: blur(80px);
    animation: bgPulse 8s ease-in-out infinite alternate;
}

.hero-bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, rgba(139, 92, 246, 0.06) 40%, rgba(0,0,0,0) 100%);
    bottom: -100px;
    left: -150px;
    z-index: -1;
    filter: blur(80px);
    animation: bgPulse 10s ease-in-out infinite alternate-reverse;
}

.hero-bg-glow-3 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: 40%;
    left: 30%;
    z-index: -1;
    filter: blur(60px);
    animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
    50% { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
    100% { transform: scale(1) translate(-10px, 10px); opacity: 0.8; }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition-smooth);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    width: 28px;
    height: 28px;
    color: #fff;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    transform: translateX(10px);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(60px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   ENHANCED CTA BANNER
   ========================================================================== */

.cta-container {
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.06), transparent, rgba(139, 92, 246, 0.06), transparent);
    animation: ctaRotate 10s linear infinite;
    z-index: -1;
}

@keyframes ctaRotate {
    100% { transform: rotate(360deg); }
}

.cta-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.85);
    z-index: -1;
    border-radius: inherit;
}

/* ==========================================================================
   ENHANCED FEATURE CARDS (Glow effect)
   ========================================================================== */

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   ENHANCED HERO MOCKUP GLOW
   ========================================================================== */

.mockup-frame {
    position: relative;
}

.mockup-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: calc(var(--border-radius-lg) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(8px);
}

.mockup-frame:hover::after {
    opacity: 0.4;
}

/* ==========================================================================
   BADGE GLOW ANIMATION
   ========================================================================== */

.badge {
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(99, 102, 241, 0.15); }
}

/* ==========================================================================
   STAT ITEMS ENHANCED
   ========================================================================== */

.stat-item strong {
    transition: var(--transition-smooth);
}

.stat-item:hover strong {
    color: var(--primary);
}

/* ==========================================================================
   PRICING CARD POPULAR PULSE
   ========================================================================== */

.price-card.popular {
    animation: popularPulse 4s ease-in-out infinite;
}

@keyframes popularPulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15); }
    50% { box-shadow: 0 15px 50px rgba(99, 102, 241, 0.25); }
}

/* ==========================================================================
   RESPONSIVIDADE (CELULAR E TABLET)
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        max-width: 600px;
    }

    .hero-stats {
        justify-content: center;
        width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    /* Ajustes de Espaçamento Globais no Mobile */
    .container {
        padding: 0 16px;
    }

    .site-header {
        top: 10px;
        padding: 0 10px;
    }

    .header-container {
        padding: 8px 16px;
        border-radius: 30px;
    }

    .nav-menu {
        display: none; /* Oculta menu de texto na navbar do celular */
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 120px 0 60px 0;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        background: rgba(255, 255, 255, 0.02);
        padding: 20px;
        border-radius: var(--border-radius-md);
        border: 1px solid var(--border-color);
    }

    .stat-divider {
        display: none;
    }

    /* Remover rotação 3D do mockup no mobile para melhor leitura */
    .mockup-frame {
        transform: none !important;
        animation: floatImageMobile 5s ease-in-out infinite !important;
        margin-top: 20px;
    }

    @keyframes floatImageMobile {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    /* Funcionalidades */
    .features-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    /* Planos */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .price-card {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    /* FAQ */
    .faq-section {
        padding: 60px 0;
    }

    .faq-trigger {
        padding: 16px 20px;
        font-size: 15px;
    }

    .faq-content p {
        padding: 0 20px 16px 20px;
        font-size: 13px;
    }

    /* Banner CTA */
    .cta-container {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cta-action {
        width: 100%;
    }

    .cta-action .btn {
        width: 100%;
        padding: 14px;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 60px 0 30px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo-area {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* WhatsApp Float Mobile */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float .tooltip {
        display: none;
    }
}
