/* ==========================================
   CSS OTIMIZADO PARA LANDING PAGE B2C (PESSOA FÍSICA)
   ========================================== */
:root {
    --bg-main: #FFFFFF; --bg-alt: #F4F7FB; --bg-dark: #0A101D; 
    --text-main: #111827; --text-muted: #64748B;
    --accent-primary: #1f7f5c; --accent-hover: #145c42;
    --gradient-tech: linear-gradient(135deg, #1f7f5c, #2ed596); 
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(31, 127, 92, 0.15);
    --border-light: 1px solid rgba(0,0,0,0.08);
}

html, body { max-width: 100vw; overflow-x: hidden !important; scroll-behavior: smooth; }
body { -webkit-user-select: none; user-select: none; font-family: 'Inter', sans-serif; background: var(--bg-main); color: var(--text-main); width: 100%; position: relative; }
img { pointer-events: none; max-width: 100%; display: block;} 
* { margin: 0; padding: 0; box-sizing: border-box; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; } a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; } .section-padding { padding: 120px 0; }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); } .reveal.active { opacity: 1; transform: translateY(0); }
@keyframes fadeInUpLoad { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-in-load { animation: fadeInUpLoad 1s cubic-bezier(0.5, 0, 0, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; } .delay-2 { animation-delay: 0.3s; }

.text-gradient { background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; }
.badge { display: inline-block; padding: 8px 20px; background: rgba(31, 127, 92, 0.08); color: var(--accent-primary); border-radius: 50px; font-size: 13px; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(31, 127, 92, 0.2);}
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 32px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: 0.3s; font-family: 'Inter'; border: none; }
.btn-primary { background: var(--gradient-tech); color: #fff; box-shadow: 0 10px 20px rgba(31,127,92,0.3); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(31,127,92,0.5); }
.btn-outline { background: #fff; color: var(--text-main); border: var(--border-light); box-shadow: var(--shadow-soft); } .btn-outline:hover { color: var(--accent-primary); border-color: var(--accent-primary); }

header { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(10, 16, 29, 0.9); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 15px 0; transition: 0.3s; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.header-logo { font-size: 30px; font-weight: 800; font-family: 'Montserrat'; letter-spacing: -2px; color: #FFFFFF; text-transform: lowercase; transition: 0.3s;} .header-logo:hover { color: var(--accent-primary); }
.header-btn { background: transparent; color: #FFF; border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; font-size: 13px; border-radius: 6px; font-weight: 600; transition: 0.3s;} .header-btn:hover { background: var(--accent-primary); border-color: var(--accent-primary); color: #fff;}

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 16, 29, 0.85); backdrop-filter: blur(8px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.4s ease; padding: 20px;} .modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box { background: #FFFFFF; width: 100%; max-width: 450px; border-radius: 20px; padding: 40px; position: relative; transform: translateY(30px) scale(0.95); transition: 0.4s ease; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); } .modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.close-modal { position: absolute; top: 20px; right: 24px; font-size: 28px; color: var(--text-muted); cursor: pointer; transition: 0.3s; border: none; background: transparent; }
.modal-header { text-align: center; margin-bottom: 25px; } .modal-header h3 { font-size: 26px; letter-spacing: -1px; margin-bottom: 8px; }
.form-group { margin-bottom: 15px; text-align: left; } .form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-main); margin-bottom: 6px; text-transform: uppercase;}
.form-control { width: 100%; background: var(--bg-alt); border: 2px solid #E2E8F0; padding: 14px 16px; border-radius: 8px; font-family: 'Inter'; font-size: 14px; transition: 0.3s; outline: none;} .form-control:focus { border-color: var(--accent-primary); background: #fff;}
.success-box { display: none; text-align: center; padding: 20px 0; } .success-box i { font-size: 60px; color: var(--accent-primary); margin-bottom: 20px; }

.hero { position: relative; padding: 180px 0 120px; background: #fff; overflow: hidden; width: 100%;} .hero::before { content: ''; position: absolute; top: 10%; right: -10%; width: 600px; height: 600px; background: var(--accent-primary); filter: blur(150px); opacity: 0.1; border-radius: 50%; pointer-events: none;}
.hero-container { display: grid; grid-template-columns: 1fr 1.4fr; grid-template-areas: "titles image" "actions image"; gap: 20px 50px; align-items: center; position: relative; z-index: 1; }
.hero-titles { grid-area: titles; align-self: end; } .hero-actions { grid-area: actions; align-self: start; } .hero-image { grid-area: image; }
.hero h1 { font-size: 56px; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; color: var(--text-main); } .hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; max-width: 480px; } .hero-btns { display: flex; gap: 16px; }

@keyframes floatBrowser { 0% { transform: scale(1.15) translateY(0) rotateX(2deg) rotateY(-4deg); box-shadow: 0 15px 35px rgba(0,0,0,0.1); } 50% { transform: scale(1.15) translateY(-20px) rotateX(0deg) rotateY(0deg); box-shadow: 0 35px 65px rgba(31,127,92,0.2); } 100% { transform: scale(1.15) translateY(0) rotateX(2deg) rotateY(-4deg); box-shadow: 0 15px 35px rgba(0,0,0,0.1); } }
.browser-mockup { background: #FFFFFF; border-radius: 12px; overflow: hidden; border: var(--border-light); animation: floatBrowser 6s ease-in-out infinite; transform-style: preserve-3d; box-shadow: var(--shadow-hover); width: 100%; transform-origin: right center; max-width: 100%;}
.browser-header { background: #F8FAFC; padding: 12px 16px; display: flex; align-items: center; border-bottom: var(--border-light); } .mac-dots { display: flex; gap: 8px; } .mac-dot { width: 12px; height: 12px; border-radius: 50%; } .mac-dot.red { background: #FF5F56; } .mac-dot.yellow { background: #FFBD2E; } .mac-dot.green { background: #27C93F; }
.browser-url { flex-grow: 1; text-align: center; background: #FFFFFF; margin: 0 16px; border-radius: 6px; padding: 6px 0; font-size: 12px; color: #94A3B8; font-family: 'Inter', monospace; border: var(--border-light); font-weight: 500; }
.browser-body { position: relative; background: var(--bg-alt); aspect-ratio: 1600 / 762; display: flex; align-items: center; justify-content: center; overflow: hidden;} 
.browser-body img { width: 100%; height: 100%; display: block; object-fit: contain; } .img-placeholder { color: var(--text-muted); font-weight: 600; font-size: 14px; text-align: center; }

.metrics { background: var(--bg-dark); padding: 80px 0; position: relative; overflow: hidden; width: 100%;} .metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; position: relative; z-index: 1; width: 100%;} .metric-item i { font-size: 40px; background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px;} .metric-item h4 { font-size: 20px; color: #fff; margin-bottom: 12px; font-weight: 800;} .metric-item p { color: #9CA3AF; font-size: 14px; font-weight: 500; line-height: 1.6; max-width: 250px; margin: 0 auto;}

.solutions { background: var(--bg-alt); width: 100%; overflow: hidden;} .section-header { text-align: center; margin-bottom: 70px; max-width: 600px; margin-left: auto; margin-right: auto; } .section-header h2 { font-size: 42px; letter-spacing: -1.5px; margin-bottom: 16px; }
.grid-solutions { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; width: 100%;}
.card { border-radius: 20px; padding: 50px 40px; box-shadow: var(--shadow-soft); transition: 0.4s ease; display: flex; flex-direction: column; position: relative; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; background-color: var(--bg-dark); background-size: cover; background-position: center; color: #fff; z-index: 1; width: 100%; max-width: 100%;}
.card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(10,16,29,0.7) 0%, rgba(10,16,29,0.98) 100%); z-index: -1; transition: 0.4s;}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--accent-primary);} .card:hover::before { background: linear-gradient(to bottom, rgba(10,16,29,0.5) 0%, rgba(10,16,29,0.95) 100%); }
.card-icon { width: 60px; height: 60px; background: var(--gradient-tech); color: #fff; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 30px; box-shadow: 0 10px 20px rgba(31,127,92,0.3); } .card h3 { font-size: 24px; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; color: #fff;} .card p { color: #D1D5DB; font-size: 16px; margin-bottom: 30px; line-height: 1.7; flex-grow: 1; }

.testimonials { background: var(--bg-main); border-top: var(--border-light); width: 100%; overflow: hidden; } 
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; width: 100%; } 
.testimonial-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: var(--shadow-soft); border: var(--border-light); transition: 0.4s ease; display: flex; flex-direction: column; width: 100%; max-width: 100%; word-break: break-word;} 
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: rgba(31, 127, 92, 0.2); } .stars { color: #F59E0B; margin-bottom: 20px; font-size: 14px; letter-spacing: 2px;} .testimonial-text { font-size: 16px; color: var(--text-main); font-weight: 500; line-height: 1.6; margin-bottom: 30px; font-style: italic; } 
.testimonial-author { display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 20px; border-top: var(--border-light); width: 100%;} 
.author-avatar { width: 50px; min-width: 50px; height: 50px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); font-weight: 800; font-size: 18px; border: var(--border-light); } 
.author-info { flex-grow: 1; overflow: hidden; } .author-info h4 { font-size: 16px; font-weight: 800;} 

.faq-section { background: var(--bg-alt); padding: 120px 0; border-top: var(--border-light); width: 100%; overflow: hidden;} .faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; width: 100%;} .faq-item { background: #fff; border-radius: 12px; overflow: hidden; transition: 0.4s ease; border: var(--border-light); box-shadow: var(--shadow-soft); width: 100%;} .faq-question { width: 100%; text-align: left; padding: 24px 30px; background: transparent; border: none; font-size: 16px; font-weight: 700; color: var(--text-main); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; transition: 0.3s; } .faq-question:hover { color: var(--accent-primary); } .faq-icon { transition: transform 0.4s ease; color: var(--text-muted); font-size: 14px;} .faq-answer { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: var(--text-muted); font-size: 15px; line-height: 1.7; opacity: 0; }
.faq-item.active { border-color: rgba(31, 127, 92, 0.3); box-shadow: var(--shadow-hover); } .faq-item.active .faq-question { color: var(--accent-primary); padding-bottom: 10px;} .faq-item.active .faq-icon { transform: rotate(180deg); color: var(--accent-primary); } .faq-item.active .faq-answer { padding: 0 30px 24px 30px; max-height: 500px; opacity: 1; }

.cta { background: var(--bg-dark); padding: 120px 0; text-align: center; position: relative; overflow: hidden; width: 100%;} .cta-container { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; width: 100%;} .cta h2 { color: #fff; font-size: 48px; letter-spacing: -2px; margin-bottom: 24px; }
footer { background: #FFFFFF; padding: 80px 0 30px; border-top: var(--border-light); width: 100%; overflow: hidden;} 

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; grid-template-areas: "titles" "image" "actions"; text-align: center; } .hero-titles { justify-self: center; } .hero-actions { justify-self: center; margin-top: -20px; } .hero p { margin: 0 auto 40px; } .hero-btns { justify-content: center; } 
    .browser-mockup { transform: scale(1) !important; max-width: 600px; margin: 0 auto; animation: floatBrowserMobile 6s ease-in-out infinite !important; transform-origin: center;}
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 40px;} .testimonials-grid { grid-template-columns: 1fr; }
}
@keyframes floatBrowserMobile { 0% { transform: translateY(0); box-shadow: var(--shadow-soft); } 50% { transform: translateY(-15px); box-shadow: var(--shadow-hover); } 100% { transform: translateY(0); box-shadow: var(--shadow-soft); } }

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    header { background: rgba(10, 16, 29, 0.98); }
    .hero { padding: 120px 0 60px; } .hero h1 { font-size: 38px; margin-bottom: 16px; letter-spacing: -1.5px;} .hero p { font-size: 16px; margin-bottom: 30px;} 
    .hero-btns { flex-direction: column; } .hero-btns .btn { width: 100%; } 
    .browser-mockup { margin: 15px auto 25px;}
    .section-padding { padding: 80px 0; }
    .metrics-grid, .grid-solutions { grid-template-columns: 1fr !important; text-align: center; width: 100%;} 
    
    /* CARROSSEL MOBILE */
    .testimonials { width: 100%; overflow: hidden; padding-bottom: 50px; }
    .testimonials .container { padding-left: 0; padding-right: 0; max-width: 100vw; } 
    .testimonials .section-header { padding: 0 20px; }
    .testimonials-grid { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; overflow-x: auto !important; overflow-y: hidden !important; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; gap: 15px; padding: 10px 20px 20px 20px !important; width: 100% !important; margin: 0 !important; scrollbar-width: none;}
    .testimonials-grid::-webkit-scrollbar { display: none; }
    .testimonial-card { flex: 0 0 85vw !important; min-width: 85vw !important; max-width: 85vw !important; scroll-snap-align: center; padding: 30px 20px; margin: 0; white-space: normal; overflow-wrap: break-word;} 
    .testimonial-author { flex-direction: row; text-align: left; align-items: center; justify-content: flex-start;}
    
    .card { padding: 30px 20px; } .card-icon { margin-left: auto; margin-right: auto;}
    .cta h2, .section-header h2 { font-size: 32px; } 
    .modal-box { padding: 30px 20px; width: calc(100% - 40px); margin: 0; } .form-control { font-size: 14px; padding: 12px 14px; } .btn { padding: 14px 24px; font-size: 14px; }
    .faq-question { padding: 20px 20px; font-size: 15px;} .faq-answer { padding: 0 20px; font-size: 14px;} .faq-item.active .faq-answer { padding: 0 20px 20px 20px; } 
}