/* INÍCIO DO ARQUIVO CSS COMPLETO */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Inter:wght@400;500&display=swap');


:root {
    --cor-primaria: #FFFFFF; /* Alterado para branco (títulos) */
    --cor-destaque: #F26419; /* Laranja mantido */
    --cor-fundo: #0B132B; /* Alterado para azul escuro (fundo principal) */
    --cor-fundo-secundario: #010409; /* Um tom quase preto para seções secundárias */
    --cor-texto: #CDD5E0; /* Alterado para um cinza claro (texto do corpo) */
    --cor-texto-claro: #8B949E; /* Cinza mais suave para subtítulos e parágrafos */
    --cor-branco: #FFFFFF;
    --cor-borda: rgba(255, 255, 255, 0.1); /* Borda clara para contraste no modo escuro */
}

/* ===== ESTILOS GERAIS E DA PÁGINA PRINCIPAL ===== */

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Avenir', 'Montserrat', sans-serif; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--cor-fundo);
    /* Efeito de gradiente sutil no fundo */
    background-image:
        radial-gradient(circle at 15% 20%, rgba(242, 100, 25, 0.15), transparent 40%),
        radial-gradient(ellipse at 85% 90%, rgba(11, 19, 43, 0.5), transparent 50%);
    background-attachment: fixed;
    color: var(--cor-texto);
    line-height: 1.7;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
h1, h2, h3 { color: var(--cor-primaria); font-weight: 700; }
h2 { text-align: center; margin-bottom: 60px; font-size: 2.2rem; }
.btn { background-color: var(--cor-destaque); color: var(--cor-branco); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: 700; transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; border: none; cursor: pointer; display: inline-block; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 4px 20px rgba(242, 100, 25, 0.25); }
.btn:active { transform: translateY(-1px); box-shadow: 0 2px 8px rgba(242, 100, 25, 0.2); } /* Efeito de clique */

.header {
    background-color: rgba(11, 19, 43, 0.8); /* Fundo semi-transparente */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: 1px solid var(--cor-borda);
}
.header .container { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; }
.logo img { max-height: 35px; display: block; }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 25px; }
.nav-links a {
    text-decoration: none;
    color: var(--cor-primaria);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: transform 0.3s ease;
}
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--cor-destaque); transition: width 0.3s ease; }
.nav-links a:hover { transform: translateY(-2px); }
.nav-links a:hover::after { width: 100%; }
.menu-hamburguer { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; color: var(--cor-primaria); }
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
    color: var(--cor-branco);
}
.hero-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(11, 19, 43, 0.7); z-index: 2; }
.hero .container { position: relative; z-index: 3; }
.hero h1 {
    color: var(--cor-branco);
    font-family: 'Avenir Black', 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.3;
}
.hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; color: rgba(255, 255, 255, 0.9); }
.hero .btn {
    background-color: rgba(242, 100, 25, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 100, 25, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero .btn:hover {
    background-color: rgba(242, 100, 25, 0.3);
    border-color: rgba(242, 100, 25, 0.6);
    box-shadow: 0 4px 20px rgba(242, 100, 25, 0.25);
    transform: translateY(-3px);
}

#clientes {
    padding: 60px 0;
    background-color: var(--cor-branco);
    border-bottom: 1px solid #EAEAEA;
}
#clientes .clientes-titulo {
    color: #555555;
}
.clientes-titulo {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cor-texto-claro);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}
.cliente-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cliente-logo img {
    max-width: 160px;
    max-height: 75px;
}

#branding {
    background-color: transparent;
    text-align: center;
}
.branding-text {
    max-width: 800px;
    margin: 0 auto;
}
.branding-text h3 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.3;
}
.branding-text p {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    margin-bottom: 16px;
}
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.servico-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    color: var(--cor-branco);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease-in-out;
    border: 1px solid var(--cor-borda);
}
.servico-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.servico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}
.servico-card:hover::before {
    transform: scale(1.05);
}
.servico-card-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
    z-index: 2;
}
.servico-card-content {
    position: relative;
    z-index: 3;
}
.servico-card-content h3 {
    color: var(--cor-branco);
    font-size: 1.8rem;
    line-height: 1.2;
}
.card-id-visual::before { background-image: url('../assets/servico-id-visual.jpg'); }
.card-eventos::before { background-image: url('../assets/servico-eventos.jpg'); }
.card-diagramacao::before { background-image: url('../assets/servico-diagramacao.jpg'); }
.card-drone::before { background-image: url('../assets/servico-drone.jpg'); }
.card-ia::before { background-image: url('../assets/servico-ia.jpg'); }
.card-landing-page::before { background-image: url('../assets/servico-landing-page.jpg'); }

#portfolio {
    background-color: var(--cor-fundo-secundario);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.projeto-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-decoration: none;
    color: var(--cor-branco);
    display: block;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease-in-out;
    border: 1px solid var(--cor-borda);
}
.projeto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.projeto-card-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}
.projeto-card-slider img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.projeto-card-slider img.active-slide {
    opacity: 1;
}
.projeto-card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
    z-index: 2;
}
.projeto-card-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.projeto-card-content h3 {
    color: var(--cor-branco);
    margin-bottom: 8px;
}
.projeto-techs span {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--cor-branco);
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 5px;
    display: inline-block;
    margin-top: 5px;
}

#contato {
    background-color: var(--cor-fundo-secundario);
    padding: 100px 0;
}
#contato .container {
    max-width: 800px;
    text-align: center;
}
#contato h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
}
#contato p {
    font-size: 1.1rem;
    color: var(--cor-texto-claro);
    line-height: 1.8;
    margin-bottom: 40px;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.1rem;
}
.btn-whatsapp i {
    font-size: 1.5rem;
}

.footer {
    background-color: #010409;
    color: var(--cor-texto-claro);
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--cor-borda);
}

.fade-in-item,
.servico-card,
.projeto-card,
.section-title-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-item.visible,
.servico-card.visible,
.projeto-card.visible,
.section-title-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- ESTILOS DA PÁGINA DE APRESENTAÇÃO DE LOGO (TEMA HÍBRIDO) ----- */
.presentation-page {
    background-color: #FFFFFF;
    background-image: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}
.presentation-page .header {
    background-color: rgba(11, 19, 43, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cor-borda) !important;
}
.presentation-page .header .logo img {
    filter: brightness(0) invert(1);
}
.presentation-page .header .nav-links a { 
    color: var(--cor-primaria) !important;
}
.pres-section {
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid #EAEAEA;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.pres-section:first-of-type {
    opacity: 1;
    transform: translateY(0);
}
.pres-section:last-of-type { border-bottom: none; }
.pres-section.visible { opacity: 1; transform: translateY(0); }
.presentation-page h1, .presentation-page h2 {
    font-family: 'Montserrat', sans-serif;
    color: #071e2c !important;
}
.presentation-page .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #071e2c;
    opacity: 0.7;
    margin-bottom: 30px;
}
.presentation-page h1 { font-size: 4rem; }
.presentation-page h2 {
    margin-bottom: 25px;
}
.pres-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 120px 0;
    overflow: hidden;
    background-image: url('../assets/andreia-vieira-advocacia/mockup-cartao-visita.jpg');
    background-size: cover;
    background-position: center center;
}
.pres-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}
.small-container { max-width: 700px; margin: 0 auto; padding: 0 24px; }
.pres-section p { 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #555; 
    margin-top: 0; 
}

@keyframes fadeInFromBottom {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.pres-hero .subtitle.hero-main-title {
    animation: fadeInFromBottom 0.8s 0.2s ease-out forwards;
}
.pres-hero .container .subtitle.hero-main-title {
    color: var(--cor-branco);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    opacity: 0;
}
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--cor-branco);
    opacity: 0;
    animation: fadeInFromBottom 0.8s 1s ease-out forwards, bounce 2s infinite 1.8s;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -15px); }
    60% { transform: translate(-50%, -10px); }
}
.simbolo-interativo { text-align: center; }
.simbolo-img { max-width: 400px; width: 100%; margin: 60px auto 0; }
.instrucao { display: none; }
.anotacao { display: block; opacity: 1; position: relative; max-width: 350px; margin: 25px auto 0 auto; text-align: center; }
#anotacao1, #anotacao2 { top: auto; left: auto; right: auto; bottom: auto; position: relative; flex-direction: column; }
.anotacao-ponto { display: none; }
.anotacao-texto { width: 100%; margin: 0; text-align: center; border: none; background-color: transparent; box-shadow: none; padding: 0; }
.anotacao-texto p { font-size: 1rem; line-height: 1.7; color: #555; }
.anotacao-texto strong { color: #333; }
.cores-descricao { max-width: 600px; margin: 0 auto 40px; }
.cores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; margin-top: 30px; }
.cor-mostra { width: 100%; height: 150px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
.cor-info { margin-top: 15px; }
.cor-info strong { display: block; font-weight: 700; color: #333; }
.cor-info span { font-family: monospace; font-size: 0.9rem; color: #777; display: block; margin-bottom: 8px; }
.cor-info p { font-size: 1rem; color: #555; margin-top: 0; }
.tipografia-grid { display: grid; grid-template-columns: 1fr; gap: 50px; margin-top: 40px; text-align: center; }
.nome-fonte { text-transform: uppercase; letter-spacing: 1px; font-size: 1rem; color: #777; margin-bottom: 10px; }
.exemplo-fonte { font-size: 6rem; line-height: 1; margin: 10px 0; font-weight: bold; color: #333; padding: 30px 40px; border: 1px solid #EAEAEA; border-radius: 8px; background-color: #fff; display: inline-block; }
.exemplo-fonte.principal { font-family: 'Playfair Display', serif; }
.exemplo-fonte.secundaria { font-family: 'Lato', sans-serif; text-transform: uppercase; }
.fonte-exemplo p:last-child { font-size: 1rem; margin-top: 20px; color: #555; max-width: 400px; margin-left: auto; margin-right: auto; }
.aplicacoes-intro { max-width: 600px; margin: 0 auto 60px; }
.aplicacoes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.aplicacao-item { background-color: #fff; padding: 20px; border-radius: 8px; border: 1px solid #EAEAEA; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.aplicacao-item:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.07); }
.aplicacao-item img { max-width: 100%; display: block; margin: 0 auto; }
.variations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; align-items: start; }
.aplicacao-item--dark { background-color: #071e2c; border-color: #071e2c; }
.aplicacao-negativa-wrapper { display: none; }
.parallax-wrapper { overflow: hidden; border-radius: 8px; }
.parallax-image { width: 100%; display: block; transition: transform 0.5s cubic-bezier(0,0,0.2,1); }
.pres-cta { background-color: #0B132B; color: #fff; padding: 80px 0; text-align: center; border-bottom: none; }
.pres-cta h2 { color: #fff !important; }
.pres-cta p { color: rgba(255, 255, 255, 0.8); margin: 0 auto 40px; max-width: 500px; text-align: center; }
.hero-video-presentation { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; object-fit: cover; }
.hero-overlay-presentation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 2; }

@media (max-width: 992px) {
    .branding-grid,
    .aplicacoes-grid { 
        grid-template-columns: 1fr; 
    }
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.recommended {
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    section,
    .pres-section,
    .lp-section {
        padding: 60px 0;
    }
    .hero {
        padding: 100px 0;
    }
    .hero h1 { 
        font-size: 2.5rem; 
    }
    h2 { font-size: 2rem; margin-bottom: 40px; }
    #contato h2 { font-size: 2.2rem; }

    .nav-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: var(--cor-fundo-secundario); transition: right 0.3s ease-in-out; }
    .nav-menu.active { right: 0; }
    .nav-links { flex-direction: column; align-items: center; justify-content: center; height: 100%; }
    .nav-links li { margin: 20px 0; }
    .nav-links a { font-size: 1.5rem; }
    .menu-hamburguer { display: block; z-index: 1001; }

    .servicos-grid,
    .portfolio-grid,
    .cores-grid,
    .tipografia-grid,
    .aplicacoes-grid,
    .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
    .servico-card { height: 350px; }
    
    .presentation-page h1 { font-size: 3rem; }
    .exemplo-fonte { font-size: 4rem; }
    .exemplo-fonte.secundaria { font-size: 3rem; }
    
    .lp-hero { padding: 120px 0 80px 0; }
    .lp-hero h1 { font-size: 2.8rem; }
    .lp-dark-page h2 { font-size: 2.2rem; }
}

/* ----- ESTILOS DA LANDING PAGE 'FOCO ACELERADO' (NÃO AFETADO PELO DARK MODE PRINCIPAL) ----- */
:root {
    --lp-dark-bg: #0D1117;
    --lp-dark-card: rgba(33, 40, 54, 0.5);
    --lp-dark-border: rgba(255, 255, 255, 0.1);
    --lp-text-primary: #F0F6FC;
    --lp-text-secondary: #8B949E;
    --lp-accent-gradient: linear-gradient(90deg, #A855F7, #EC4899);
}
.lp-dark-page { background-color: var(--lp-dark-bg); color: var(--lp-text-primary); font-family: 'Inter', sans-serif; overflow-x: hidden; }
.background-blobs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; filter: blur(100px); }
.blob { position: absolute; border-radius: 50%; opacity: 0.2; }
.blob1 { width: 400px; height: 400px; top: -50px; left: -100px; background: #A855F7; animation: moveBlob 20s infinite alternate; }
.blob2 { width: 300px; height: 300px; bottom: -100px; right: -150px; background: #EC4899; animation: moveBlob 25s infinite alternate-reverse; }
@keyframes moveBlob { from { transform: translate(0, 0) scale(1); } to { transform: translate(100px, 50px) scale(1.2); } }
.lp-dark-page .header { background-color: rgba(11, 19, 43, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--cor-borda); box-shadow: none; transition: transform 0.4s ease-in-out; }
.lp-dark-page .header.header-hidden { transform: translateY(-100%); }
.lp-dark-page .header .nav-links a { color: var(--cor-primaria); }
.lp-dark-page .header .nav-links a::after { background: var(--lp-accent-gradient); }
.lp-dark-page .header .logo img { filter: brightness(0) invert(1); }
.lp-section { padding: 100px 0 50px 0; }
.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.lp-hero { padding: 160px 0 100px 0; text-align: center; }
.lp-dark-page h1, .lp-dark-page h2, .lp-dark-page h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--lp-text-primary) !important; }
.lp-hero h1 { font-size: 3.8rem; line-height: 1.2; margin-bottom: 24px; background: var(--lp-accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; max-width: 800px; margin-left: auto; margin-right: auto; }
.lp-hero p { font-size: 1.2rem; color: var(--lp-text-secondary); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.lp-dark-page .btn { background: var(--lp-accent-gradient); padding: 16px 36px; font-size: 1.1rem; font-weight: 600; border-radius: 8px; border: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.lp-dark-page .btn:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3); }
.lp-hero img { 
    margin: 80px auto 0 auto; 
    max-width: 100%;
    display: block;
    border-radius: 12px; 
    border: 1px solid var(--lp-dark-border); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.3); 
}
.lp-dark-page .section-subtitle { text-align: center; font-size: 1.15rem; color: var(--lp-text-secondary); max-width: 650px; margin: 0 auto 70px auto; line-height: 1.8; }
.lp-dark-page h2 { text-align: center; font-size: 2.8rem; margin-bottom: 24px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-item { background: var(--lp-dark-card); border: 1px solid var(--lp-dark-border); padding: 40px 30px; border-radius: 12px; text-align: center; backdrop-filter: blur(10px); transition: transform 0.3s ease, background-color 0.3s ease; }
.feature-item:hover { transform: translateY(-8px); background-color: rgba(33, 40, 54, 0.8); }
.feature-item i { font-size: 2.5rem; margin-bottom: 24px; background: var(--lp-accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.feature-item h3 { font-size: 1.4rem; margin-bottom: 15px; }
.feature-item p { color: var(--lp-text-secondary); }
.testimonials { background-color: #000000; border-top: 1px solid var(--lp-dark-border); border-bottom: 1px solid var(--lp-dark-border); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testimonial-card { background: var(--lp-dark-card); border: 1px solid var(--lp-dark-border); padding: 30px; border-radius: 12px; display: flex; flex-direction: column; backdrop-filter: blur(10px); }
.testimonial-card p:first-child { font-style: italic; flex-grow: 1; margin-bottom: 24px; color: var(--lp-text-secondary); font-size: 1.05rem; }
.testimonial-author { display: flex; align-items: center; margin-top: auto; }
.testimonial-author strong { font-weight: 600; color: var(--lp-text-primary); }
.testimonial-author span { color: var(--lp-text-secondary); }
.plan-toggle { display: flex; justify-content: center; align-items: center; gap: 16px; margin-bottom: 50px; font-weight: 500; }
.plan-toggle .toggle-switch { width: 50px; height: 28px; background-color: var(--lp-dark-card); border-radius: 14px; padding: 4px; cursor: pointer; border: 1px solid var(--lp-dark-border); }
.plan-toggle .toggle-knob { width: 20px; height: 20px; background-color: var(--lp-text-secondary); border-radius: 50%; transition: transform 0.3s ease; }
.plan-toggle.yearly .toggle-knob { transform: translateX(22px); background: var(--lp-accent-gradient); }
.plan-toggle .yearly-discount { background: var(--lp-accent-gradient); color: var(--lp-text-primary); padding: 2px 8px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: center; }
.pricing-card { background: var(--lp-dark-card); border: 1px solid var(--lp-dark-border); padding: 30px; border-radius: 16px; backdrop-filter: blur(10px); text-align: center; height: 100%; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pricing-card.recommended { transform: scale(1.05); position: relative; overflow: hidden; }
.pricing-card.recommended::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: var(--lp-accent-gradient); z-index: -1; padding: 2px; border-radius: 16px; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.popular-badge { position: absolute; top: 15px; right: -35px; transform: rotate(45deg); background: var(--lp-accent-gradient); color: var(--lp-text-primary); padding: 4px 30px; font-size: 0.8rem; font-weight: 600; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.pricing-card p { color: var(--lp-text-secondary); min-height: 48px; }
.pricing-card .price { font-size: 3rem; font-weight: 700; color: var(--lp-text-primary); margin: 15px 0 5px 0; }
.pricing-card .price-freq { color: var(--lp-text-secondary); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-card ul { list-style: none; text-align: left; margin: 20px 0; flex-grow: 1; }
.pricing-card ul li { margin-bottom: 15px; display: flex; align-items: center; }
.pricing-card ul li i { color: #EC4899; margin-right: 12px; font-size: 1.2rem; }
.pricing-card .btn { width: 100%; padding: 15px; font-size: 1rem; margin-top: auto; }
.pricing-card:not(.recommended) .btn { background: var(--lp-dark-card); border: 1px solid var(--lp-dark-border); }
.pricing-card:not(.recommended) .btn:hover { background: rgba(255,255,255, 0.1); box-shadow: none; }
.faq-container { max-width: 750px; margin: 0 auto; }
.faq-item { background: var(--lp-dark-card); border: 1px solid var(--lp-dark-border); border-radius: 10px; margin-bottom: 15px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1.2rem; padding: 20px 25px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; padding: 0 25px; color: var(--lp-text-secondary); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 25px 25px 25px; }
.faq-question i { transition: transform 0.3s ease; color: var(--lp-text-secondary); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--lp-text-primary); }
@media (max-width: 992px) { .lp-dark-page .pricing-grid { grid-template-columns: 1fr; } .lp-dark-page .pricing-card.recommended { transform: scale(1); } .lp-dark-page .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .lp-hero h1 { font-size: 2.8rem; } .lp-dark-page h2 { font-size: 2.2rem; } .lp-section { padding: 80px 0; } .lp-hero { padding: 120px 0 80px 0; } }

/* FIM DO ARQUIVO CSS COMPLETO */