/* =========================================
   GLOBAL CSS - STUDIO NASCEN
   Unificação e Otimização (Core + Landing Page + Chat + Privacidade)
========================================= */

@font-face {
  font-family: 'Google Sans Flex Variable';
  font-style: normal;
  font-display: swap;
  font-weight: 1 1000;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex:vf@latest/latin-wght-normal.woff2) format('woff2-variations');
}

:root {
    --primary: #4b92e3; 
    --dark: #0c0c0c;    
    --white: #ffffff;   
    --accent: #0a4d8c;  
    --grey: #e1e4e8;    
    --font-main: 'Google Sans Flex Variable', sans-serif;
    --ls-heading: -0.05em; 
}

/* =========================================
   RESET & REGRAS GLOBAIS
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none; 
    color: inherit; 
}

body {
    background-color: var(--white);
    color: var(--dark);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

#smooth-wrapper {
    overflow-x: hidden;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section {
    padding: 120px 5vw;
}

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: var(--ls-heading);
    line-height: 1.1;
    color: var(--dark);
}

h1 { font-size: 4rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    font-size: 1.125rem;
    color: rgba(12, 12, 12, 0.75);
}

.text-primary { color: var(--primary); }
.split-text { overflow: hidden; display: block; }

/* =========================================
   CABEÇALHOS DE SECÇÃO (GLOBAL)
========================================= */
.section-header,
.solucoes-header,
.metodo-header,
.beneficios-header,
.equipe-header,
.feedbacks-header,
.cases-header,
.consultoria-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto 4rem auto; 
    align-items: center;      
    text-align: center;       
}

/* =========================================
   BOTÕES
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: var(--ls-heading);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    position: relative;
    z-index: 2; 
}

.btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark);
    border: 2px solid rgba(12, 12, 12, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(12, 12, 12, 0.05);
    border-color: var(--dark);
}

.btn-white {
    background-color: var(--white);
    color: var(--accent);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: scale(1.05);
    background-color: var(--grey);
    color: var(--accent);
}

.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 1rem 2rem;
    border: 2px solid var(--dark);
    background-color: transparent;
    border-radius: 100px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    overflow: hidden;
    transition: color 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button i {
    position: absolute;
    font-size: 1.5rem;
    z-index: 9;
    transition: left 0.8s cubic-bezier(0.23, 1, 0.32, 1), right 0.8s cubic-bezier(0.23, 1, 0.32, 1), color 0.8s;
}

.animated-button .arr-1 { right: 16px; }
.animated-button .arr-2 { left: -25%; }

.animated-button .circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    background-color: var(--dark); 
    border-radius: 50%;
    opacity: 0;
    transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1), height 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s;
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover { color: var(--white); border-radius: 12px; }
.animated-button:hover .arr-1 { right: -25%; }
.animated-button:hover .arr-2 { left: 16px; }
.animated-button:hover .text { transform: translateX(12px); }
.animated-button:hover i { color: var(--white); }
.animated-button:hover .circle { width: 250px; height: 250px; opacity: 1; }

/* =========================================
   HEADER & NAVIGATION 
========================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5vw;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(225, 228, 232, 0.5);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.4rem 5vw; 
}

.logo { height: 32px; transition: transform 0.3s ease; }
.logo:hover { transform: scale(1.05); }

.main-nav ul { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.main-nav a {
    color: rgba(12, 12, 12, 0.6); 
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background-color: var(--primary);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-nav a:hover { color: var(--dark); }
.main-nav li:first-child a { color: var(--dark); font-weight: 600; }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-cta:hover { background-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(75, 146, 227, 0.25); color: var(--white); }

/* DROPDOWN */
.has-dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.dropdown-trigger i { font-size: 0.8rem; transition: transform 0.3s ease; }
.has-dropdown:hover .dropdown-trigger i { transform: rotate(180deg); color: var(--primary); }

.dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    min-width: 240px; border-radius: 16px; padding: 1rem;
    list-style: none; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(225, 228, 232, 0.5);
    opacity: 0; visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    color: var(--dark) !important; font-size: 0.9rem !important; font-weight: 500;
    border-radius: 10px; transition: background 0.3s ease, color 0.3s ease !important;
}
.dropdown-menu a i { font-size: 1.2rem; color: var(--primary); }
.dropdown-menu a:hover { background: rgba(75, 146, 227, 0.1); color: var(--primary) !important; }
.dropdown-menu a::after { display: none; } 

/* =========================================
   FORMULÁRIOS E INPUTS (CONTATO E QUIZ)
========================================= */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--dark); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background-color: #fafafa;
    border: 1px solid var(--grey);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Estilização Exclusiva e Avançada para os Selects */
.form-group select {
    width: 100%;
    padding: 1rem;
    padding-right: 2.5rem; /* Espaço para a setinha não encavalar no texto */
    border-radius: 12px;
    background-color: #fafafa;
    border: 1px solid var(--grey);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    
    /* Remove a seta padrão do sistema */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    /* Adiciona a nossa seta customizada em SVG */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b92e3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

/* Hover nos Inputs e Selects */
.form-group input:hover,
.form-group select:hover {
    background-color: #f0f2f5;
    border-color: #ccc;
}

/* Cor do texto quando a opção padrão (Selecione...) está ativa (Placeholder Fake) */
.form-group select:invalid {
    color: rgba(12, 12, 12, 0.5);
}

.form-group select option {
    color: var(--dark);
    background-color: var(--white);
    font-size: 1rem;
    padding: 10px;
}

.form-group input::placeholder { color: rgba(12, 12, 12, 0.4); }

.form-group input:focus, 
.form-group select:focus { 
    border-color: var(--primary); 
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(75, 146, 227, 0.15); 
}



/* Estilização para Radio Buttons (Segmentos) */
.form-group input[type="radio"] {
    accent-color: var(--primary);
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    margin-right: 0.5rem;
}

.form-group .radio-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark);
    margin-right: 1rem;
}

/* Filtros Visuais de E-mail e Número (Validação Automática) */
.form-group input[type="email"]:not(:placeholder-shown):invalid,
.form-group input[type="tel"]:not(:placeholder-shown):invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc3545' viewBox='0 0 16 16'%3e%3cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3e%3cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-group input[type="email"]:not(:placeholder-shown):valid,
.form-group input[type="tel"]:not(:placeholder-shown):valid {
    border-color: #198754;
}

/* Feedback do Formulário */
.form-feedback { margin-top: 1rem; font-weight: 600; text-align: center; padding: 1rem; border-radius: 8px; font-size: 0.95rem; }
.form-feedback.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-feedback.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =========================================
   CHECKBOX CUSTOMIZADO (LGPD / ALINHAMENTO)
========================================= */
.checkbox-lgpd-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 15px 0;
    text-align: left;
    width: 100%;
}

.checkbox-lgpd-wrapper .container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px; /* Force exactly 20px so we can position absolute easily */
    height: 20px;
    max-width: none;
    padding: 0;
}

/* Input Invisível para Gerir o Estado */
.checkbox-lgpd-wrapper .container > input {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    z-index: -1;
    position: absolute;
    left: -10px;
    top: -10px;
    display: block;
    margin: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: none;
    outline: none;
    opacity: 0;
    transform: scale(1);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.2s;
}

/* Área Clicável Visual */
.checkbox-lgpd-wrapper .container > .checkmark {
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* A Caixa (Borda Quadrada com Cantos Arredondados) */
.checkbox-lgpd-wrapper .container > .checkmark::before {
    content: "";
    display: inline-block;
    box-sizing: border-box;
    margin: 0;
    border: solid 2px;
    border-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    width: 20px;
    height: 20px;
    vertical-align: top;
    transition: border-color 0.2s, background-color 0.2s;
}

/* O Ícone de "Check" (Visto) */
.checkbox-lgpd-wrapper .container > .checkmark::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 4px;
    width: 11px;
    height: 6px;
    border: solid 2px transparent;
    border-right: none;
    border-top: none;
    transform: rotate(-45deg);
}

/* ESTADO: Marcado */
.checkbox-lgpd-wrapper .container > input:checked {
    background-color: var(--primary);
}

.checkbox-lgpd-wrapper .container > input:checked + .checkmark::before {
    border-color: var(--primary);
    background-color: var(--primary);
}

.checkbox-lgpd-wrapper .container > input:checked + .checkmark::after {
    border-color: #fff;
}

/* Efeito Hover & Focus (Círculo de Ripple) */
.checkbox-lgpd-wrapper .container:hover > input {
    opacity: 0.04;
}

.checkbox-lgpd-wrapper .container > input:focus {
    opacity: 0.12;
}

.checkbox-lgpd-wrapper .container:hover > input:focus {
    opacity: 0.16;
}

/* Efeito Ativo (Ao Clicar) */
.checkbox-lgpd-wrapper .container > input:active {
    opacity: 1;
    transform: scale(0);
    transition: transform 0s, opacity 0s;
}

.checkbox-lgpd-wrapper .container > input:active + .checkmark::before {
    border-color: var(--primary);
}

.checkbox-lgpd-wrapper .container > input:checked:active + .checkmark::before {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Texto do Label (LGPD) */
.checkbox-lgpd-wrapper label.text-label {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
    margin: 0;
}

.checkbox-lgpd-wrapper label.text-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

/* =========================================
   CUSTOM TOAST (Aviso Estilizado)
========================================= */
.custom-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border-left: 4px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 12px;
    max-width: 350px;
    z-index: 99999;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-toast.show { transform: translateX(0); }

.custom-toast-header { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--dark); font-size: 1.05rem; }
.custom-toast-header i { font-size: 1.5rem; color: var(--primary); }
.custom-toast-body { font-size: 0.9rem; color: #555; line-height: 1.5; }
.custom-toast-close { position: absolute; top: 15px; right: 15px; background: none; border: none; cursor: pointer; font-size: 1.2rem; color: #999; transition: 0.2s; }
.custom-toast-close:hover { color: var(--dark); }

/* =========================================
   PÁGINA DE PRIVACIDADE (SPA)
========================================= */
.privacy-page-wrapper { padding: 140px 5% 80px; max-width: 800px; margin: 0 auto; color: var(--dark); }
.privacy-header { text-align: left; margin-bottom: 2rem; }
.privacy-title { font-size: 2.5rem; margin-bottom: 1rem; }
.privacy-date { font-size: 0.9rem; color: #666; font-style: italic; }
.privacy-content { display: flex; flex-direction: column; gap: 1.5rem; line-height: 1.6; }
.privacy-content h2 { font-size: 1.5rem; color: var(--dark); margin-top: 1rem; }
.privacy-list { list-style: none; padding-left: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.privacy-card { background: #f8f9fa; padding: 1.5rem; border-radius: 12px; border-left: 4px solid var(--primary); }
.privacy-card .card-title { display: block; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.5rem; }
.privacy-card p { margin-bottom: 0.5rem; }
.privacy-card .base-legal { font-size: 0.9rem; color: #555; }

/* =========================================
   QUIZ MOBILE
========================================= */
.quiz-container { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; }
.quiz-progress { width: 100%; height: 6px; background-color: rgba(12, 12, 12, 0.1); border-radius: 10px; overflow: hidden; }
.progress-bar { height: 100%; background-color: var(--primary); transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.quiz-form { display: flex; flex-direction: column; width: 100%; }
.quiz-step { display: none; flex-direction: column; gap: 1.25rem; text-align: left; }
.quiz-step.active { display: flex; }
.quiz-step h3 { font-size: 1.25rem !important; line-height: 1.4; margin-bottom: 0.5rem; color: var(--dark); text-align: left; }
.quiz-nav-buttons { display: flex; gap: 1rem; width: 100%; margin-top: 0.5rem; }
.quiz-nav-buttons .btn-secondary { flex: 1; }
.quiz-nav-buttons .btn-primary { flex: 2; }
.error-pulse { border-color: #dc3545 !important; box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15) !important; animation: quizShake 0.4s ease-in-out; }

@keyframes quizShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* =========================================
   HERO SECTION (CORE)
========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; 
    text-align: center;
}

.hero-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(225, 228, 232, 0.3) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(225, 228, 232, 0.3) 1px, transparent 1px);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 60%);
    mask-image: linear-gradient(to top, transparent 0%, black 60%);
    z-index: -1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 900px;
}

.hero-title { font-size: 5rem; }
.hero-subtitle { font-size: 1.5rem; font-weight: 500; margin-top: -0.5rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 1rem; position: relative; }

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--grey);
}

.bullet-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--accent); }
.bullet-item i { font-size: 1.25rem; color: var(--primary); }

/* =========================================
   SOBRE NÓS
========================================= */
.sobre-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sobre-illustration { display: flex; justify-content: center; align-items: center; width: 100%; }
.sobre-illustration img { width: 100%; max-width: 500px; height: auto; display: block; }
.sobre-content { display: flex; flex-direction: column; gap: 2rem; }
.sobre-texts { display: flex; flex-direction: column; gap: 1.25rem; }
.sobre-bullets { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--grey); }
.sobre-bullet { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 1rem; color: var(--dark); }
.sobre-bullet i { color: var(--primary); font-size: 1.25rem; }

/* =========================================
   SOLUÇÕES 
========================================= */
.solucoes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.solucoes-card { 
    display: flex; flex-direction: column; align-items: flex-start; padding: 20px;
    background: #fff; border-radius: 32px; border: 1px solid var(--grey);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.solucoes-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); border-color: var(--primary); }
.card-image { width: 100%; aspect-ratio: 4/3; background-color: #f8f9fa; border-radius: 24px; overflow: hidden; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; padding: 30px; }
.card-image img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.solucoes-card:hover .card-image img { transform: scale(1.1); }
.card-title { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--dark); font-weight: 700; }
.card-desc { font-size: 1rem; color: rgba(12, 12, 12, 0.7); margin-bottom: 1.5rem; line-height: 1.6; }
.btn-tag { background-color: var(--primary); color: var(--white); padding: 0.5rem 1.2rem; border-radius: 10px; font-size: 0.875rem; font-weight: 600; margin-top: auto; transition: all 0.3s ease; }
.btn-tag:hover { background-color: var(--accent); color: var(--white); }

/* =========================================
   MÉTODO (TIMELINE)
========================================= */
.metodo { background-color: var(--grey); }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; padding-top: 2rem; }
.timeline-line { position: absolute; top: 48px; left: 10%; right: 10%; height: 2px; background-color: rgba(12, 12, 12, 0.1); z-index: 1; }
.timeline-item { display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 2; }
.timeline-icon { width: 64px; height: 64px; background-color: var(--white); border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); margin-bottom: 1.5rem; position: relative; }
.step-num { position: absolute; top: -10px; right: -10px; background-color: var(--dark); color: var(--white); font-size: 0.75rem; font-weight: 700; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.tooltip-container { position: relative; cursor: pointer; z-index: 10; }
.branch-path-svg { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; z-index: -1; pointer-events: none; overflow: visible; }
.branch-line { fill: none; stroke: var(--primary); stroke-width: 3px; stroke-linecap: round; stroke-dasharray: 40; stroke-dashoffset: 40; transition: stroke-dashoffset 0.4s ease; }

.tooltip-content {
    position: absolute; top: calc(100% + 30px); left: 50%; transform: translateX(-50%) translateY(-10px);
    background: var(--dark); border: 1px solid var(--accent);
    padding: 1.25rem; border-radius: 12px; width: 320px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); z-index: 20;
    opacity: 0; clip-path: inset(0 0 100% 0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), clip-path 0.4s ease;
    pointer-events: none;
}
.mini-flow { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 16px; }
.flow-node { background-color: rgba(255, 255, 255, 0.05); border: 1px solid var(--accent); color: var(--grey); padding: 8px 12px; border-radius: 6px; font-size: 0.75rem; width: 100%; text-align: center; }
.flow-nodes-parallel { display: flex; gap: 6px; width: 100%; }
.tooltip-container:hover .branch-line { stroke-dashoffset: 0; }
.tooltip-container:hover .tooltip-content { opacity: 1; transform: translateX(-50%) translateY(0); clip-path: inset(0 0 0 0); }

/* =========================================
   BENEFÍCIOS 
========================================= */
.beneficios { background-color: #f8f9fa; }
.beneficios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); grid-auto-rows: 240px; gap: 20px; }
.beneficio-card { background-color: var(--white); border: 1px solid var(--grey); border-radius: 32px; padding: 40px; display: flex; flex-direction: column; justify-content: center; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.beneficio-card:hover { border-color: var(--primary); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(75, 146, 227, 0.08); }
.beneficio-content { display: flex; flex-direction: column; gap: 1rem; color: var(--dark); }
.beneficio-content i { font-size: 3rem; color: var(--primary); margin-bottom: 0.5rem; transition: transform 0.3s ease; }
.beneficio-card:hover .beneficio-content i { transform: scale(1.1); }
.beneficio-content h3 { font-size: 1.5rem; color: var(--dark); }
.beneficio-content p { font-size: 1rem; color: rgba(12, 12, 12, 0.6); line-height: 1.5; }
.beneficio-card.large { grid-column: span 2; grid-row: span 2; }
.beneficio-card.medium { grid-column: span 2; grid-row: span 1; }

/* =========================================
   EQUIPE
========================================= */
.equipe-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.equipe-membro { background-color: var(--white); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.05); }
.equipe-membro:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.membro-foto-wrapper { width: 100%; aspect-ratio: 1 / 1; background-color: #f4f4f5; overflow: hidden; }
.membro-foto-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.equipe-membro:hover .membro-foto-wrapper img { transform: scale(1.05); }
.membro-info-ref { padding: 20px; display: flex; flex-direction: column; align-items: flex-start; }
.membro-nome-pill { border: 1px solid var(--dark); border-radius: 50px; padding: 6px 16px; font-weight: 600; font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; display: inline-block; }
.membro-cargo-ref { color: rgba(12, 12, 12, 0.6); font-size: 0.85rem; margin: 0; }

.card-vaga { background-color: #4b92e3; cursor: default; }
.card-vaga:hover { transform: none; box-shadow: none; }
.vaga-content { padding: 30px 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.vaga-text { color: var(--white); font-size: 0.95rem; line-height: 1.6; }
.card-vaga .membro-nome-pill { background-color: var(--dark); color: var(--white); border-color: var(--dark); }
.card-vaga .membro-cargo-ref { color: rgba(255, 255, 255, 0.8); }

/* =========================================
   FEEDBACKS & CASES & CONSULTORIA
========================================= */
.feedbacks { background-color: var(--grey); }
.feedbacks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feedback-card { background-color: var(--white); padding: 2.5rem 2rem; border-radius: 24px; display: flex; flex-direction: column; gap: 1.5rem; transition: all 0.3s ease; }
.feedback-card:hover { transform: translateY(-8px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); }
.stars { color: #FFB800; display: flex; gap: 4px; }
.feedback-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--grey); padding-top: 1.5rem; }

.cases { background-color: var(--dark); color: var(--white); }
.cases .section-title { color: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 3rem; }
.case-image { width: 100%; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden; background-color: #1a1a1a; }
.case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.case-card:hover img { transform: scale(1.05); }
.case-tags span { background-color: rgba(255, 255, 255, 0.1); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }

.consultoria-container { max-width: 900px; }
.faq-item { border: 1px solid var(--grey); border-radius: 16px; overflow: hidden; margin-bottom: 1rem; }
.faq-item.active { border-color: var(--primary); }
.faq-question { width: 100%; display: flex; justify-content: space-between; padding: 1.5rem 2rem; background: none; border: none; font-size: 1.25rem; font-weight: 600; cursor: pointer; color: inherit; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background-color: rgba(225, 228, 232, 0.2); }
.faq-answer p { padding: 0 2rem 1.5rem 2rem; }

/* =========================================
   CTA & FOOTER & CONTATO (FORMS)
========================================= */
.cta-section { padding: 60px 5vw 120px; }
.cta-card { background-color: var(--accent); padding: 60px 40px; border-radius: 32px; display: flex; justify-content: space-between; align-items: center; gap: 40px; color: var(--white); flex-wrap: wrap; }
.cta-card-title { font-size: 3rem; color: var(--white); }
.cta-card-subtitle { color: rgba(255, 255, 255, 0.9); font-size: 1.125rem; }

.main-footer { background-color: var(--dark); color: var(--white); padding: 60px 5vw 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 30px; }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo { height: 40px; filter: brightness(0) invert(1); }
.footer-desc { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.05); border-radius: 50%; color: var(--white); font-size: 1.2rem; transition: all 0.3s ease; }
.footer-socials a:hover { background-color: var(--primary); transform: translateY(-3px); }
.footer-links-col h3, .footer-contact-col h3 { font-size: 1.1rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 8px; color: var(--white); }
.footer-links-col h3 i, .footer-contact-col h3 i { color: var(--primary); font-size: 1.3rem; }
.footer-links-col nav { display: flex; flex-direction: column; gap: 1rem; }
.footer-links-col a { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: color 0.3s ease; }
.footer-links-col a i { color: var(--primary); font-size: 1rem; transition: transform 0.3s ease; }
.footer-links-col a:hover { color: var(--white); }
.footer-links-col a:hover i { transform: translateX(3px); }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-items a { display: flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; transition: color 0.3s ease; }
.contact-items a i { color: var(--primary); font-size: 1.2rem; }
.contact-items a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.footer-legal { display: flex; gap: 10px; align-items: center; }
.footer-legal a { color: rgba(255, 255, 255, 0.5); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--white); }
.separator { color: rgba(255, 255, 255, 0.2); }

.contato-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contato-content { display: flex; flex-direction: column; gap: 1.5rem; }
.contato-title { font-size: 3rem; line-height: 1.1; color: var(--dark); }
.contato-subtitle { font-size: 1.125rem; color: rgba(12, 12, 12, 0.75); margin-bottom: 1.5rem; }
.contato-social h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--dark); }
.social-bullets { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.social-bullet { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; color: var(--dark); transition: color 0.3s ease; }
.social-bullet i { font-size: 1.5rem; color: var(--primary); }
.social-bullet:hover { color: var(--primary); }

.contato-form-wrapper { background-color: var(--grey); padding: 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* =========================================
   MODAIS GERAIS (INCLUINDO EQUIPE)
========================================= */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: rgba(12, 12, 12, 0.6); backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background-color: var(--white); width: 90%; max-width: 600px; padding: 40px; border-radius: 24px; position: relative; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); transform: translateY(30px); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-height: 80vh; overflow-y: auto; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-content h2 { font-size: 2rem; color: var(--dark); }
.fechar-modal { position: absolute; top: 20px; right: 20px; background: rgba(225, 228, 232, 0.5); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; color: var(--dark); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease, color 0.3s ease; }
.fechar-modal:hover { background: var(--primary); color: var(--white); }

.modal-body-equipe { display: flex; gap: 2rem; align-items: flex-start; text-align: left; }
#modal-foto { width: 200px; height: 250px; object-fit: cover; border-radius: 16px; }
.modal-info-equipe { flex: 1; display: flex; flex-direction: column; }
#modal-nome { font-size: 2rem; color: var(--dark); margin-bottom: 0.25rem; }
#modal-cargo { display: inline-block; background: rgba(75, 146, 227, 0.1); color: var(--primary); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; width: fit-content; }
#modal-desc { color: rgba(12, 12, 12, 0.7); line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.95rem; }
.modal-redes { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-rede { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 0.9rem; color: var(--white); transition: transform 0.2s, opacity 0.2s; }
.btn-rede:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-insta { background: #e1306c; }
.btn-wpp { background: #25D366; }
.btn-email { background: var(--dark); }

/* =========================================
   ELEMENTOS ESPECÍFICOS: LANDING PAGE 
========================================= */
.lp-hero { position: relative; padding: 160px 5vw 100px; background: linear-gradient(to bottom, #f8fbff 0%, var(--white) 100%); text-align: center; overflow: hidden; }
.lp-hero-bg { position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 150vw; height: 150vw; background: radial-gradient(circle, rgba(75, 146, 227, 0.05) 0%, rgba(255, 255, 255, 0) 70%); z-index: 0; pointer-events: none; }
.lp-hero .container { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.lp-hero-title { font-size: 4rem; line-height: 1.1; margin: 0; }
.lp-hero-subtitle { font-size: 1.25rem; color: var(--dark); opacity: 0.75; max-width: 600px; line-height: 1.6; }
.lp-hero-actions { margin-top: 1rem; }

.lp-contexto { padding: 100px 5vw; background-color: var(--white); }
.contexto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contexto-texto h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.contexto-texto p { margin-bottom: 1.5rem; font-size: 1.125rem; line-height: 1.8; color: var(--dark); opacity: 0.8; }
.contexto-destaques { display: flex; flex-direction: column; gap: 1.5rem; }
.destaque-card { background: #fafafa; border: 1px solid var(--grey); padding: 2rem; border-radius: 20px; display: flex; flex-direction: column; gap: 0.5rem; transition: transform 0.3s ease; }
.destaque-card:hover { transform: translateY(-5px); }
.destaque-card i { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.destaque-card h3 { font-size: 1.25rem; letter-spacing: 0; text-transform: none; }
.destaque-card p { font-size: 1rem; margin: 0; }

.lp-entregas { padding: 100px 5vw; background-color: #f8fbff; }
.entregas-header { text-align: center; margin-bottom: 4rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.entregas-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.entregas-header p { font-size: 1.125rem; color: var(--dark); opacity: 0.7; line-height: 1.6; }

.lp-bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(260px, auto); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.lp-bento-card { background-color: var(--white); border: 1px solid #e1e4e8; border-radius: 24px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-start; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.lp-bento-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(12, 12, 12, 0.04); border-color: var(--primary); }
.lp-bento-card .card-icon { width: 56px; height: 56px; background-color: rgba(75, 146, 227, 0.1); color: var(--primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.5rem; transition: background-color 0.3s ease, color 0.3s ease; }
.lp-bento-card:hover .card-icon { background-color: var(--primary); color: var(--white); }
.lp-bento-card h3 { font-size: 1.25rem; text-transform: none; letter-spacing: -0.02em; margin-bottom: 0.75rem; color: var(--dark); }
.lp-bento-card p { font-size: 1rem; line-height: 1.6; color: var(--dark); opacity: 0.75; margin: 0; }
.lp-bento-card.span-1 { grid-column: span 1; }
.lp-bento-card.span-2 { grid-column: span 2; }
.lp-bento-card.span-3 { grid-column: span 3; }

.lp-bento-card.card-destaque { background-color: var(--accent); border: none; }
.lp-bento-card.card-destaque:hover { box-shadow: 0 16px 32px rgba(10, 77, 140, 0.2); }
.lp-bento-card.card-destaque .card-icon { background-color: rgba(255, 255, 255, 0.1); color: var(--white); }
.lp-bento-card.card-destaque:hover .card-icon { background-color: var(--white); color: var(--accent); }
.lp-bento-card.card-destaque h3 { color: var(--white); }
.lp-bento-card.card-destaque p { color: rgba(255, 255, 255, 0.85); }

.lp-processo { padding: 100px 5vw; background-color: var(--white); }
.processo-header { text-align: center; margin-bottom: 4rem; }
.processo-header p { margin-top: 1rem; font-size: 1.125rem; }
.lp-timeline .timeline-desc { opacity: 0.8; font-size: 1rem; line-height: 1.6; }
.lp-timeline h3 { text-transform: none; letter-spacing: 0; }

.lp-parceria { padding: 100px 5vw 160px; background-color: var(--white); }
.lp-cta-box { background-color: var(--accent); border-radius: 32px; padding: 5rem 3rem; display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-box-content { max-width: 700px; margin-bottom: 2.5rem; }
.cta-box-content h2 { color: var(--white); font-size: 3rem; margin-bottom: 1.5rem; }
.cta-box-content p { color: rgba(255, 255, 255, 0.85); font-size: 1.125rem; line-height: 1.6; }

/* =========================================
   ELEMENTOS ESPECÍFICOS: CHATBOT
========================================= */
#nascen-chatbot { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; pointer-events: none; }
.chat-trigger { position: relative; cursor: pointer; transition: transform 0.3s ease; pointer-events: auto; }
.chat-trigger:hover { transform: scale(1.05); }
.avatar-lg img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border: 2px solid #fff; }
.online-indicator { position: absolute; bottom: 4px; right: 4px; width: 14px; height: 14px; background-color: #25D366; border-radius: 50%; border: 2px solid #fff; animation: pulse 2s infinite; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.chat-modal { width: 350px; height: 500px; background: #ffffff; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: flex; flex-direction: column; margin-bottom: 15px; overflow: hidden; transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; transform-origin: bottom right; pointer-events: auto; }
.chat-hidden { opacity: 0; visibility: hidden; transform: scale(0.8); pointer-events: none; }
.chat-header { background: #111111; color: #ffffff; padding: 15px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.header-info { display: flex; align-items: center; gap: 10px; }
.avatar-sm img { width: 32px; height: 32px; border-radius: 50%; }
.close-btn { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.chat-messages { flex: 1; padding: 15px; overflow-y: auto; background: #f9f9f9; display: flex; flex-direction: column; gap: 10px; }
.message { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.4; word-wrap: break-word; animation: fadeIn 0.3s ease; }
.msg-bot { background: #e9ecef; color: #333; align-self: flex-start; border-bottom-left-radius: 2px; }
.msg-user { background: #111111; color: #fff; align-self: flex-end; border-bottom-right-radius: 2px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quick-replies { display: flex; gap: 10px; margin-top: 5px; }
.quick-btn { background: #ffffff; border: 1px solid #111111; color: #111111; padding: 8px 16px; border-radius: 20px; cursor: pointer; font-size: 13px; font-weight: 500; transition: all 0.2s; }
.quick-btn:hover { background: #111111; color: #ffffff; }
.chat-input-area { display: flex; padding: 10px; background: #fff; border-top: 1px solid #eee; }
#chat-input { flex: 1; border: 1px solid #ddd; padding: 10px 15px; border-radius: 20px; outline: none; font-size: 14px; }
#chat-input:focus { border-color: #111111; }
#chat-send-btn { background: none; border: none; color: #111111; padding: 0 10px; cursor: pointer; display: flex; align-items: center; }
#chat-send-btn:disabled { color: #ccc; cursor: not-allowed; }

/* =========================================
   MEDIA QUERIES UNIFICADAS (RESPONSIVIDADE)
========================================= */

/* Desktop Médio / Tablets Landscape */
@media (max-width: 1024px) {
    .lp-bento-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-bento-card.span-1, .lp-bento-card.span-2 { grid-column: span 1; }
    .lp-bento-card.span-2:nth-child(1), .lp-bento-card.span-2:nth-child(4), .lp-bento-card.span-2:nth-child(5) { grid-column: span 2; }
}

/* Tablets Portrait / Mobile Geral */
@media (max-width: 900px) {
    h1, h2, h3, p, span { word-break: keep-all !important; overflow-wrap: break-word !important; hyphens: none !important; }
    .hide-mobile { display: none !important; }
    h1, .hero-title { font-size: 2.2rem !important; }
    h2, .section-title { font-size: 1.8rem !important; }
    h3 { font-size: 1.25rem !important; }
    .section { padding: 50px 5vw; }
    
    .mobile-menu-toggle { display: block; background: none; border: none; font-size: 2rem; color: var(--primary); cursor: pointer; z-index: 1001; }
    .main-nav { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center; align-items: center; transition: right 0.3s ease-in-out; box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1); z-index: 1000; }
    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; gap: 2rem; text-align: center; padding: 0; }
    .nav-cta { display: none; }
    
    .main-footer { padding: 40px 5vw 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; margin-bottom: 20px; padding-bottom: 20px; }
    .footer-brand, .footer-links-col, .footer-contact-col { align-items: center; }
    .footer-socials { justify-content: center; }
    .footer-bottom { justify-content: center; flex-direction: column; text-align: center; gap: 1rem; }
    .footer-logo { height: 32px; }

    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn, .hero-actions .animated-button { width: 100%; justify-content: center; box-sizing: border-box; }
    .hero-bullets, .sobre-bullets { flex-direction: column; gap: 1rem; align-items: center; text-align: center; }

    .sobre-illustration { display: none !important; }
    .sobre-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .sobre-content { align-items: center; }
    .sobre-texts { text-align: center; }

    .solucoes-grid, .beneficios-grid, .equipe-grid, .feedbacks-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 20px; gap: 16px; scrollbar-width: none; -ms-overflow-style: none; }
    .solucoes-grid::-webkit-scrollbar, .beneficios-grid::-webkit-scrollbar, .equipe-grid::-webkit-scrollbar, .feedbacks-grid::-webkit-scrollbar { display: none; }
    .solucoes-card, .beneficio-card, .equipe-membro, .feedback-card { flex: 0 0 85%; scroll-snap-align: center; max-width: 85%; }
    .beneficio-card.large, .beneficio-card.medium { grid-column: auto; grid-row: auto; }
    .beneficios-grid { grid-auto-rows: auto; }
    .feedback-card { padding: 1.5rem; gap: 1rem; }
    .feedback-text { font-size: 0.9rem; line-height: 1.4; }

    .timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .timeline-line { display: none; }
    .timeline-item { align-items: center; text-align: center; }
    .timeline-icon { margin: 0 auto 1rem auto; width: 48px; height: 48px; font-size: 1.2rem; }
    .timeline-step-title { font-size: 1rem; margin-bottom: 0.5rem; }
    .timeline-desc { font-size: 0.85rem; }
    .tooltip-content { display: none !important; }

    .faq-accordion { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
    .faq-item { margin-bottom: 0; }
    .faq-question { padding: 1rem; font-size: 0.9rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    .faq-question i { align-self: center; }
    .faq-answer p { padding: 0 1rem 1rem 1rem; font-size: 0.85rem; text-align: center; }

    .cta-card { flex-direction: column; padding: 30px 20px; text-align: center; gap: 1rem; }
    .cta-card-title { font-size: 1.6rem !important; }
    .cta-card-subtitle { font-size: 0.95rem; }
    .cta-card-content, .cta-card-action, .cta-card-action .btn, .btn-white { width: 100%; justify-content: center; padding: 1rem; box-sizing: border-box; }

    .contato-container { grid-template-columns: 1fr; }
    .contato-form-wrapper { padding: 24px; width: 100%; box-sizing: border-box; }
    .form-row { grid-template-columns: 1fr 1fr !important; gap: 1rem; }
    .form-group input, .form-group select { width: 100%; box-sizing: border-box; padding: 0.8rem; font-size: 0.9rem; }
    .form-group label { font-size: 0.85rem; }
    .form-group.checkbox-group label { font-size: 0.85rem; }
    #chat-modal { width: 85vw !important; height: 60vh !important; max-height: 450px !important; bottom: 80px !important; right: 7.5vw !important; border-radius: 16px !important; }

    .modal-body-equipe { flex-direction: column; align-items: center; text-align: center; }
    #modal-foto { width: 100%; max-width: 200px; height: auto; aspect-ratio: 1/1; }
    #modal-cargo { margin: 0 auto 1.5rem auto; }
    .modal-redes { justify-content: center; }
    .modal-content { padding: 30px 20px; width: 95%; max-height: 85vh; overflow-y: auto; }
    
    /* LP Specifics Mobile Ajustes */
    .lp-hero-title { font-size: 2.5rem; }
    .contexto-grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-box-content h2 { font-size: 2.25rem; }
    .lp-cta-box { padding: 3rem 1.5rem; border-radius: 24px; }
}

/* Mobile Menor */
@media (max-width: 768px) {
    .lp-bento-grid { grid-template-columns: 1fr; }
    .lp-bento-card.span-1, .lp-bento-card.span-2, .lp-bento-card.span-3 { grid-column: span 1 !important; }
    .entregas-header h2 { font-size: 2rem; }
    .lp-bento-card { padding: 2rem; }
}

/* Mobile Chat / Telas Pequenas */
@media (max-width: 480px) {
    .chat-modal { width: calc(100vw - 40px); height: calc(100vh - 120px); }
}