/* =========================================================
   STYLE-SITE.CSS - DESIGN SYSTEM SAAS PREMIUM (REVISADO)
   ========================================================= */

:root {
    --primary: #5C6BC0;
    --primary-dark: #3F51B5;
    --primary-light: #EEF0F9;
    --text-dark: #1A202C;
    --text-body: #4A5568;
    --text-light: #718096;
    --bg-light: #F8FAFD;
    --white: #FFFFFF;
    --border: #E6E9F0;
    --border-dark: #CBD5E0;
    
    --c-green: #51CF66;
    --c-orange: #FF922B;
    --c-red: #FA5252;
}

/* RESET E BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.text-center { text-align: center; }

/* ================= COMPONENTES DE BOTÕES ================= */
.btn-cta-large {
    background: var(--primary); color: var(--white);
    padding: 16px 32px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s; box-shadow: 0 10px 20px rgba(92, 107, 192, 0.25);
    border: 2px solid var(--primary);
}
.btn-cta-large:hover {
    background: var(--primary-dark); border-color: var(--primary-dark);
    transform: translateY(-2px); box-shadow: 0 15px 25px rgba(92, 107, 192, 0.35); color: #FFF;
}

.btn-outline-large {
    background: transparent; color: var(--text-dark);
    border: 2px solid var(--border-dark);
    padding: 16px 32px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s;
}
.btn-outline-large:hover {
    border-color: var(--primary); color: var(--primary); background: var(--primary-light);
}

.shadow-glow { box-shadow: 0 0 30px rgba(92, 107, 192, 0.5); }

/* ================= HEADER E NAVEGAÇÃO ================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; height: 85px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(230, 233, 240, 0.8);
    z-index: 1000; transition: all 0.3s ease;
}
.site-header.scrolled { height: 75px; box-shadow: 0 4px 25px rgba(0,0,0,0.05); }

.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.logo { text-decoration: none; display: flex; align-items: center; }

.nav-menu { display: flex; gap: 35px; }
.nav-menu a {
    text-decoration: none; color: var(--text-body);
    font-weight: 600; font-size: 14px; transition: 0.2s; position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after {
    content: ''; position: absolute; bottom: -8px; left: 0;
    width: 100%; height: 2px; background: var(--primary); border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 20px; }
.btn-login { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 14px; transition: 0.2s; }
.btn-login:hover { color: var(--primary); }

.btn-cta {
    background: var(--primary); color: var(--white);
    padding: 12px 24px; border-radius: 6px;
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: 0.3s; box-shadow: 0 4px 10px rgba(92, 107, 192, 0.2);
}
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-1px); color: #FFF;}

.mobile-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--text-dark); cursor: pointer; }

/* ================= HERO SECTION ================= */
.hero {
    padding: 160px 0 100px; position: relative; overflow: hidden;
    background: linear-gradient(145deg, #F8FAFD 0%, #FFFFFF 100%);
}
.hero-bg-shapes {
    position: absolute; top: -150px; right: -100px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(92,107,192,0.06) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; z-index: 0;
}
.hero-container { position: relative; z-index: 1; display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1.1; max-width: 600px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary-light); color: var(--primary-dark);
    padding: 8px 16px; border-radius: 30px;
    font-size: 12px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase;
}
.hero-content h1 {
    font-size: 48px; font-weight: 800; color: var(--text-dark);
    line-height: 1.15; margin-bottom: 25px; letter-spacing: -1.5px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
    font-size: 18px; color: var(--text-body);
    margin-bottom: 40px; font-weight: 500; line-height: 1.7;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 25px;}
.hero-trust { font-size: 13px; color: var(--text-light); font-weight: 500; display: flex; align-items: center; }
.hero-trust i { color: var(--c-green); font-size: 16px; margin-right: 4px; }

.hero-image { flex: 1; perspective: 1200px; }
.mockup-window {
    background: var(--white); border-radius: 12px; border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1), 0 15px 35px rgba(0,0,0,0.05);
    overflow: hidden; transform: rotateY(-8deg) rotateX(4deg); transition: 0.6s ease;
}
.mockup-window:hover { transform: rotateY(0deg) rotateX(0deg); }
.mockup-header {
    background: #F1F3F5; padding: 12px 15px; display: flex; gap: 8px; border-bottom: 1px solid var(--border);
}
.mockup-header i { width: 12px; height: 12px; border-radius: 50%; background: #CBD5E0; display: inline-block; }
.mockup-header i:nth-child(1) { background: #FA5252; }
.mockup-header i:nth-child(2) { background: #FF922B; }
.mockup-header i:nth-child(3) { background: #51CF66; }
.mockup-window img { width: 100%; display: block; }

/* ================= SOCIAL PROOF ================= */
.social-proof { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); text-align: center; }
.social-proof p { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 30px; }
.logos-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; opacity: 0.4; filter: grayscale(100%); transition: 0.3s; }
.logos-grid:hover { opacity: 0.7; }
.logo-box { font-weight: 900; font-size: 22px; color: var(--text-dark); letter-spacing: -1px; }

/* ================= SHOWCASE (ZIGUE-ZAGUE) ================= */
.showcase { padding: 120px 0; }
.showcase.bg-light { background-color: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.showcase-container { display: flex; align-items: center; gap: 80px; flex-wrap: wrap; }
.showcase-container.reverse { flex-direction: row-reverse; }

.showcase-text { flex: 1; min-width: 300px; max-width: 550px;}
.showcase-img { flex: 1; min-width: 300px; position: relative; }
.showcase-img img { width: 100%; height: auto; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); }

/* TRAVA PARA AS TAGS NÃO ESTICAREM */
.feature-tag {
    display: inline-flex !important; 
    align-items: center; 
    gap: 8px;
    padding: 8px 16px; 
    border-radius: 20px;
    font-size: 13px; 
    font-weight: 700; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    width: fit-content; /* Garante que só ocupe o tamanho do texto */
}

.showcase-text h2 { font-size: 38px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
.showcase-text p { font-size: 18px; color: var(--text-body); margin-bottom: 35px; line-height: 1.6; }

/* TRAVA PARA AS LISTAS NÃO MOSTRAREM AS BOLINHAS PADRÃO */
.feature-list { 
    list-style: none !important; /* Força remoção de bullets padrão html */
    padding-left: 0 !important;
    margin-left: 0 !important;
}
.feature-list li { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    margin-bottom: 20px; 
    font-size: 16px; 
    color: var(--text-body); 
    line-height: 1.5; 
}
.feature-list li i { 
    color: var(--primary); 
    font-size: 24px; 
    margin-top: 2px; 
    flex-shrink: 0; /* Impede o ícone de encolher */
}

/* ================= TABELA DE PREÇOS ================= */
.pricing-section { padding: 120px 0; background: var(--white); }
.section-title { max-width: 650px; margin: 0 auto 60px; }
.section-title h2 { font-size: 38px; font-weight: 800; color: var(--text-dark); margin-bottom: 15px; letter-spacing: -1px;}
.section-title p { font-size: 18px; color: var(--text-light); }

.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; max-width: 900px; margin: 0 auto;
}
.pricing-card {
    background: var(--white); border: 1px solid var(--border-dark); border-radius: 16px;
    padding: 50px 40px; position: relative; transition: 0.3s;
    display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

.pricing-card.highlighted {
    border: 2px solid var(--primary); box-shadow: 0 20px 50px rgba(92, 107, 192, 0.15);
}
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: #FFF; padding: 6px 20px; border-radius: 20px;
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-header { text-align: center; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
.pricing-header h3 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.pricing-header p { font-size: 14px; color: var(--text-light); min-height: 40px; }
.price { font-size: 48px; font-weight: 900; color: var(--text-dark); margin-top: 15px; display: flex; justify-content: center; align-items: flex-start; }
.price span { font-size: 18px; font-weight: 600; color: var(--text-light); margin: 6px 4px 0; }

.pricing-features { list-style: none !important; padding: 0 !important; margin-bottom: 40px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; font-size: 15px; color: var(--text-dark); font-weight: 500; line-height: 1.4;}
.pricing-features li i { color: var(--c-green); font-size: 20px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-light); opacity: 0.6; }
.pricing-features li.disabled i { color: var(--text-light); }

.pricing-action { margin-top: auto; }

/* ================= CTA FINAL ================= */
.cta-bottom {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    padding: 120px 0; text-align: center; color: var(--white); position: relative;
}
.cta-bottom h2 { font-size: 46px; font-weight: 800; margin-bottom: 25px; letter-spacing: -1px; }
.cta-bottom p { font-size: 20px; opacity: 0.8; max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
.security-text { font-size: 14px !important; color: #A0AEC0 !important; margin-top: 25px !important; font-weight: 500; }

/* ================= FOOTER ================= */
.site-footer { background: #11151C; color: #A0AEC0; padding: 80px 0 20px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { font-weight: 900; font-size: 26px; color: #FFF; letter-spacing: -1px; }
.footer-brand p { margin-top: 20px; font-size: 14px; max-width: 280px; line-height: 1.6; }
.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a { color: #A0AEC0; font-size: 24px; transition: 0.2s; }
.social-icons a:hover { color: #FFF; transform: translateY(-3px); }

.footer-links h4 { color: #FFF; font-size: 16px; margin-bottom: 25px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links a { display: block; color: #A0AEC0; text-decoration: none; margin-bottom: 12px; font-size: 14px; transition: 0.2s; font-weight: 500;}
.footer-links a:hover { color: #FFF; padding-left: 5px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 25px; text-align: center; font-size: 13px; font-weight: 500; }

/* ================= RESPONSIVO (MOBILE) ================= */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; padding-top: 20px; }
    .hero-content { margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .mockup-window { transform: none; margin-top: 50px; }
    
    .showcase-container, .showcase-container.reverse { flex-direction: column; text-align: center; gap: 40px; }
    .feature-list li { text-align: left; }
    .feature-tag { margin: 0 auto 20px; }
    
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; }
    .pricing-card.highlighted { transform: scale(1); }
    
    .nav-menu {
        position: fixed; top: 85px; left: -100%; width: 100%; height: calc(100vh - 85px);
        background: var(--white); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 50px;
        transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        border-top: 1px solid var(--border);
    }
    .nav-menu.active { left: 0; }
    .nav-menu a { font-size: 18px; margin-bottom: 15px; }
    .mobile-toggle { display: block; }
    .nav-actions { display: none; } 
    
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px;}
    .footer-brand p { margin: 20px auto; }
    .social-icons { justify-content: center; }
    .footer-links a:hover { padding-left: 0; }
}
@media (max-width: 576px) {
    .hero-content h1 { font-size: 36px; }
    .showcase-text h2 { font-size: 28px; }
    .cta-bottom h2 { font-size: 32px; }
    .btn-cta-large { width: 100%; }
    .btn-outline-large { width: 100%; }
}