/* ==========================================================================
   ESTILO CONSOLIDADO E HIGIENIZADO - AP INFORMAÇÃO
   ========================================================================== */
:root {
    --font-main: 'Inter', sans-serif;
    --primary: #2b53a1;
    --accent: #03ab99;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-main); background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 30px; }

.premium-bg-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; background: #fff; }
.glass-overlay { position: absolute; width: 100%; height: 100%; background: linear-gradient(90deg, #fff 40%, rgba(255,255,255,0.7) 65%, rgba(255,255,255,0) 100%); z-index: 1; }
.parallax-bg { width: 100%; height: 100%; object-fit: cover; object-position: right top; z-index: 0; }

.main-layout { position: relative; z-index: 10; }
.top-nav { padding: 40px 0; }
.logo-premium { display: flex; align-items: center; justify-content: flex-start; min-height: 110px; }
.logo-img { height: auto; max-height: 110px; width: auto; opacity: 0; animation: logoEntrance 1.2s forwards; }
@keyframes logoEntrance { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.hero-section { padding: 30px 0 100px; }
.grid-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
.badge { display: inline-block; padding: 6px 14px; background: rgba(3, 171, 153, 0.1); color: var(--accent); border-radius: 100px; font-size: 0.75rem; font-weight: 800; border: 1px solid var(--accent); margin-bottom: 24px; }
.main-title { font-size: 3.5rem; line-height: 1.1; font-weight: 800; letter-spacing: -3px; margin-bottom: 30px; }
.text-gradient { background: linear-gradient(90deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.description { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 520px; }

.glass-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.6); padding: 45px; border-radius: 30px; box-shadow: var(--shadow-premium); }
.card-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 30px; text-align: center; color: var(--primary); }

.floating-group { position: relative; margin-bottom: 20px; }
.floating-group input { width: 100%; padding: 18px; border: 1px solid #cbd5e1; border-radius: 12px; background: #fff; font-size: 1rem; transition: 0.3s; }
.floating-group label { position: absolute; left: 18px; top: 18px; color: #94a3b8; font-size: 1rem; transition: 0.2s; pointer-events: none; z-index: 5; }
.floating-group input:focus ~ label, .floating-group input:not(:placeholder-shown) ~ label { top: -10px; left: 12px; font-size: 0.75rem; background: #fff; padding: 0 4px; color: var(--primary); font-weight: 700; }

.dropdown-wrapper { position: relative; cursor: pointer; background: #fff; border: 1px solid #cbd5e1; border-radius: 12px; padding: 18px; transition: 0.3s; min-height: 58px; display: flex; align-items: center; z-index: 1; }
.dropdown-wrapper.active { z-index: 20; border-color: var(--primary); }
.selected-option { font-size: 1rem; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 90%; }
.dropdown-wrapper.active label, .dropdown-wrapper.has-value label { top: -10px; left: 12px; font-size: 0.75rem; background: #fff; padding: 0 4px; color: var(--primary); font-weight: 700; }
.dropdown-list { position: absolute; top: calc(100% + 5px); left: 0; width: 100%; background: #fff; border: 1px solid rgba(43, 83, 161, 0.1); border-radius: 16px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); list-style: none; padding: 10px; display: none; z-index: 100; }
.dropdown-list li { padding: 12px 15px; border-radius: 10px; font-size: 0.95rem; color: var(--text-main); }
.dropdown-list li:hover { background: rgba(43, 83, 161, 0.05); color: var(--primary); }
.select-arrow { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); transition: 0.3s; }
.dropdown-wrapper.active .select-arrow { transform: translateY(-50%) rotate(180deg); }
.dropdown-wrapper.active .dropdown-list { display: block; }

.btn-premium { width: 100%; padding: 20px; background: var(--text-main); color: #fff; border: none; border-radius: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; transition: 0.3s; }
.btn-premium:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(3, 171, 153, 0.2); }
.security-seal { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 5px; }

#cnpj-check-mark { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.2rem; font-weight: 900; transition: 0.3s; z-index: 10; }
.cnpj-check-hidden { opacity: 0; transform: translateY(-50%) scale(0.5); }
.cnpj-check-visible { opacity: 1; transform: translateY(-50%) scale(1); }

.material-content-section, .testimonials-section { padding: 100px 0; background: #fff; }
.section-title { font-size: 2.4rem; font-weight: 800; margin-bottom: 60px; }
.content-body-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 80px; align-items: center; }
.items-list { display: flex; flex-direction: column; gap: 40px; }
.content-item { display: flex; gap: 24px; }
.icon-premium { width: 44px; height: 44px; background: rgba(43, 83, 161, 0.05); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }
.icon-premium-check { width: 44px; height: 44px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 900; }
.luxury-img { width: 100%; border-radius: 24px; box-shadow: 0 40px 100px rgba(0,0,0,0.08); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.testimonial-card { background: #fff; padding: 40px; border-radius: 24px; box-shadow: var(--shadow-premium); border: 1px solid #f1f5f9; transition: 0.3s; }
.client-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.client-logo { max-height: 65px; width: auto; object-fit: contain; }
.stars { color: #fbbf24; margin-bottom: 10px; }
.testimonial-stat { display: flex; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid #f1f5f9; margin-top: 20px; }
.stat-number { font-size: 2rem; font-weight: 800; color: #e63946; }
.stat-desc { font-size: 0.75rem; color: var(--text-muted); }

.back-to-form-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px rgba(43, 83, 161, 0.3); z-index: 1000; opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.4s; }
.back-to-form-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-form-btn:hover { background: var(--accent); transform: translateY(-5px); }

.reveal-slide-in, .reveal-item, .reveal-slide-right { opacity: 0; transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
.active { opacity: 1 !important; transform: translate(0) !important; }

.footer-simple { padding: 60px 0; text-align: center; color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 1100px) {
    .grid-hero, .content-body-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .main-title { font-size: 2.5rem; }
    .content-visual { order: -1; }
}