/*
Theme Name: Tema Finance Clone
Author: Gemini
Description: Versão com Suporte a Menu e Logo Dinâmicos
Version: 1.4
*/

* { box-sizing: border-box; }

:root {
    --primary-color: #3f502e; /* Verde */
    --accent-color:  #2e3517; /* Bege */
    --dark-brown:    #372018; 
    --text-color:    #1D1D1B;
    --container-width: 1200px;
}

body { margin: 0; font-family: 'Arial', sans-serif; color: var(--text-color); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; margin: 0; padding: 0; }

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    height: 45px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: stretch;
}
.top-bar-inner { width: 100%; max-width: var(--container-width); display: flex; justify-content: space-between; padding: 0 15px; }
.top-address { font-size: 13px; display: flex; align-items: center; }
.top-address i { margin-right: 8px; color: var(--accent-color); }
.quote-btn { background-color: var(--accent-color); color: #fff; font-weight: bold; font-size: 12px; padding: 0 30px; display: flex; align-items: center; height: 100%; }
.quote-btn:hover { background-color: #fff; color: var(--dark-brown); }

/* Header Meio */
.site-header-middle { padding: 25px 0; background: #fff; border-bottom: 1px solid #eee; }
.header-container { display: flex; justify-content: space-between; align-items: center; max-width: var(--container-width); margin: 0 auto; padding: 0 15px; }

/* --- CSS ESPECÍFICO PARA LOGO DO WORDPRESS --- */
.site-logo .custom-logo-link img, 
.site-logo img {
    max-height: 165px; /* Impede que a logo fique gigante */
    width: auto;
    display: block;
}
.site-logo h1 a { color: var(--primary-color); text-decoration: none; font-size: 28px;}

/* Contatos */
.header-contacts { display: flex; gap: 40px; }
.contact-item { display: flex; align-items: center; gap: 12px; }
.contact-item i { font-size: 28px; color: var(--primary-color); }
.contact-text h6 { margin: 0; color: #666; font-size: 11px; }
.contact-text span { display: block; font-weight: 700; font-size: 14px; color: var(--text-color); }

/* --- CSS PARA O MENU DO WORDPRESS --- */
.site-navigation-bar { background: #fff; border-bottom: 1px solid #eee; }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: var(--container-width); margin: 0 auto; padding: 0 15px; height: 60px; }

/* A classe .wp-finance-menu é gerada pelo header.php */
.main-menu .wp-finance-menu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-menu .wp-finance-menu li {
    display: block; /* Garante que os itens fiquem em linha */
}

.main-menu .wp-finance-menu li a {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 20px 0;
    display: block;
    position: relative;
}

.main-menu .wp-finance-menu li a:hover { color: var(--dark-brown); }
.main-menu .wp-finance-menu li a:after { content: ''; display: block; width: 0; height: 2px; background: var(--accent-color); transition: width 0.3s; position: absolute; bottom: 18px; left: 0; }
.main-menu .wp-finance-menu li a:hover:after { width: 100%; }

/* Mobile */
.mobile-trigger { display: none; font-size: 22px; color: var(--primary-color); }
@media (max-width: 900px) {
    .header-contacts, .quote-btn, .top-bar { display: none; }
    .mobile-trigger { display: block; }
    .main-menu { display: none; }
}

/* --- ESTILO DO CARRINHO (Header) --- */

/* Container do carrinho */
.header-cart {
    position: relative; /* Necessário para o dropdown funcionar */
    padding: 10px 0;    /* Área de clique */
    cursor: pointer;
}

/* Link e Ícone */
.cart-link {
    position: relative;
    display: inline-block;
    color: var(--primary-color); /* Verde */
    font-size: 22px;
    transition: color 0.3s;
}

.cart-link:hover {
    color: var(--dark-brown);
}

/* Contador (Bolinha) */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent-color); /* Bege/Dourado */
    color: var(--primary-color); /* Número Verde */
    font-size: 11px;
    font-weight: bold;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff; /* Borda branca para separar */
}

/* --- MINI CART DROPDOWN (Oculto por padrão) --- */
.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
    
    /* Animação de entrada */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 4px;
}

/* Mostrar ao passar o mouse (Hover) */
.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- AJUSTES INTERNOS DO WIDGET WOOCOMMERCE --- */
/* (Isso deixa a lista de produtos bonita) */
.woocommerce-mini-cart-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f4f4f4;
    font-size: 13px;
    align-items: center;
}

.woocommerce-mini-cart-item img {
    width: 40px;
    height: auto;
    border-radius: 4px;
}

.woocommerce-mini-cart__total {
    font-weight: bold;
    color: var(--primary-color);
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
}

.woocommerce-mini-cart__buttons .button {
    background-color: var(--primary-color);
    color: #fff;
    display: block;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
.woocommerce-mini-cart__buttons .button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* --- REDESIGN DO MINI-CART (UX/UI MELHORADO) --- */

/* 1. Container Principal */
.mini-cart-dropdown {
    /* Sombra mais suave e profunda para destacar o elemento */
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: none; /* Remove a borda cinza padrão */
    border-radius: 8px; /* Cantos arredondados suaves */
    padding: 25px; /* Mais espaço interno (respiro) */
    min-width: 340px; /* Um pouco mais largo para caber melhor as informações */
}

/* 2. Itens do Carrinho (Lista) */
.woocommerce-mini-cart-item {
    padding-bottom: 20px; /* Mais espaço entre os produtos */
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0; /* Linha separadora mais sutil */
    align-items: flex-start; /* Alinha itens ao topo */
}

/* Imagem do Produto */
.woocommerce-mini-cart-item img {
    width: 80px; /* Aumenta significativamente a imagem (era muito pequena) */
    height: 80px;
    object-fit: cover; /* Garante que a imagem seja quadrada sem distorcer */
    border-radius: 6px; /* Cantos suaves na imagem */
    margin-left: 15px !important; /* Afasta do texto */
}

/* Ícone de Remover (X) */
.woocommerce-mini-cart-item .remove {
    position: relative;
    top: 5px;
    color: #ccc !important; /* Cor inicial discreta */
    font-size: 18px;
    font-weight: 300;
    transition: color 0.2s;
}
/* UX: Feedback de destruição (vermelho) ao passar o mouse */
.woocommerce-mini-cart-item .remove:hover {
    color: #e74c3c !important;
    background: none !important;
}

/* 3. Tipografia do Produto */
/* Nome do Produto */
.woocommerce-mini-cart-item a:not(.remove) {
    display: block;
    font-weight: 700;
    font-size: 15px;
    /* Usa o marrom escuro da paleta para destaque elegante */
    color: var(--dark-brown); 
    margin-bottom: 5px;
    line-height: 1.3;
}

/* Preço e Quantidade */
.woocommerce-mini-cart-item .quantity {
    font-size: 13px;
    color: #666; /* Cor secundária */
}
/* Destaca o preço em verde */
.woocommerce-mini-cart-item .quantity .amount {
    color: var(--primary-color);
    font-weight: 600;
}

/* 4. Área do Subtotal */
.woocommerce-mini-cart__total {
    border-top: 2px solid #f4f4f4; /* Separação clara dos itens */
    padding-top: 20px;
    margin-bottom: 25px;
    align-items: center;
}
/* Rótulo "Subtotal:" */
.woocommerce-mini-cart__total strong {
    font-weight: 400;
    color: #888; /* Texto discreto */
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}
/* O Valor Final */
.woocommerce-mini-cart__total .amount {
    font-size: 22px; /* Valor grande e claro */
    font-weight: 800;
    color: var(--primary-color); /* Verde principal */
}

/* 5. BOTÕES DE AÇÃO (A parte mais importante do UX) */
.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column; /* Empilha os botões verticalmente */
    gap: 12px; /* Espaço entre eles */
}

/* Estilo Base dos Botões */
.woocommerce-mini-cart__buttons .button {
    width: 100%; /* Botões de largura total fáceis de clicar */
    padding: 15px;
    border-radius: 50px; /* Botões "pílula" modernos */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0; /* Remove margens padrão do Woo */
}

/* --- BOTÃO PRIMÁRIO: Finalizar Compra (Checkout) --- */
/* UX: Deve ser o botão mais chamativo */
.woocommerce-mini-cart__buttons .button.checkout {
    background-color: var(--primary-color); /* Fundo Verde Forte */
    color: #fff !important; /* Texto Branco */
    border: 2px solid var(--primary-color);
    order: 1; /* Garante que fique no topo da pilha (ação principal) */
}
.woocommerce-mini-cart__buttons .button.checkout:hover {
    background-color: var(--dark-brown); /* Escurece para marrom no hover */
    border-color: var(--dark-brown);
    transform: translateY(-2px); /* Efeito sutil de "elevação" ao passar o mouse */
}

/* --- BOTÃO SECUNDÁRIO: Ver Carrinho --- */
/* UX: Deve ter menos peso visual que o checkout */
.woocommerce-mini-cart__buttons .button:not(.checkout) {
    background-color: transparent; /* Fundo transparente */
    /* Texto verde e borda bege para consistência com o header */
    color: var(--primary-color) !important;
    border: 2px solid var(--accent-color); 
    order: 2; /* Fica abaixo do checkout */
}
.woocommerce-mini-cart__buttons .button:not(.checkout):hover {
    background-color: var(--accent-color); /* Preenche com bege no hover */
    color: var(--primary-color) !important;
}

/* --- ESTILOS GERAIS DAS PÁGINAS WOOCOMMERCE (Carrinho/Checkout) --- */

/* Garante que os inputs e tabelas não vazem a tela */
.woocommerce-cart table.cart, 
.woocommerce-checkout .col2-set {
    width: 100%;
    border-collapse: collapse;
}

/* Botões padrões do WooCommerce seguindo sua paleta */
.woocommerce button.button.alt, 
.woocommerce a.button.alt {
    background-color: var(--primary-color) !important; /* Verde */
    color: #fff !important;
    padding: 15px 30px !important;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.woocommerce button.button.alt:hover, .woocommerce a.button.alt:hover {
    background-color: #222b19 !important;
}

/* Tabela do Carrinho */
.woocommerce-cart .cart_item td {
    padding: 20px 10px;
    vertical-align: middle;
}

.woocommerce-cart .product-thumbnail img {
    width: 80px;
    border-radius: 4px;
}

/* Mensagens de erro/sucesso */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    border-top-color: var(--primary-color) !important;
    background-color: #f9f9f9 !important;
}

/* --- CSS PREÇOS (Obrigatório para aparecer bonito) --- */
.pricing-section { padding: 80px 0; background-color: #f9f9f9; }
.pricing-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { color: var(--primary-color); font-size: 36px; margin: 0; }
.section-header p { color: #666; font-size: 18px; margin-top: 10px; }

.pricing-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }

.pricing-card {
    background: #fff;
    width: 260px;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    display: flex; flex-direction: column;
}

.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(77, 89, 39, 0.15); border-color: var(--accent-color); }

.pricing-card.popular { border: 2px solid var(--primary-color); transform: scale(1.05); z-index: 2; position: relative; }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-10px); }

.tag-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary-color); color: #fff; padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: bold; text-transform: uppercase; }

.card-header h3 { text-align: center; color: var(--dark-brown); font-size: 18px; text-transform: uppercase; margin-top: 0; }
.price { display: flex; justify-content: center; align-items: baseline; color: var(--primary-color); margin: 20px 0; }
.amount { font-size: 38px; font-weight: 800; }
.currency { font-size: 14px; font-weight: bold; margin-right: 2px; }
.period { font-size: 12px; color: #999; }

.card-features ul li { margin-bottom: 10px; font-size: 13px; color: #555; display: flex; gap: 8px; }
.card-features i { color: var(--primary-color); }
.card-features .disabled { opacity: 0.5; text-decoration: line-through; }

.btn-plan { display: block; width: 100%; padding: 12px; text-align: center; border: 2px solid var(--primary-color); border-radius: 5px; color: var(--primary-color); font-weight: bold; text-transform: uppercase; font-size: 12px; margin-top: auto; }
.btn-plan:hover, .btn-highlight { background: var(--primary-color); color: #fff; }

@media (max-width: 900px) {
    .pricing-card { width: 100%; max-width: 350px; }
    .pricing-card.popular { transform: scale(1); }
}






/* --- CONFIGURAÇÕES GERAIS DAS SEÇÕES --- */
.container-default {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge-title {
    background-color: #f4f4f4;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

/* --- SEÇÃO GRID DE SERVIÇOS --- */
.services-grid-section {
    padding: 100px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsivo automático */
    gap: 30px;
    margin-top: 50px;
}

/* Card Design Moderno */
.service-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Curva suave */
    position: relative;
    overflow: hidden;
}

/* Efeito Hover "Elevado" */
.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

/* Barra verde decorativa no topo do card no hover */
.service-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-box:hover::before {
    transform: scaleX(1);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 50%; /* Círculo perfeito */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.icon-wrap i {
    font-size: 24px;
    color: var(--primary-color);
}

/* No hover, o ícone fica verde e o fundo bege */
.service-box:hover .icon-wrap {
    background-color: var(--primary-color);
}
.service-box:hover .icon-wrap i {
    color: #fff;
}

.service-box h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.service-box:hover .link-arrow {
    gap: 12px; /* A seta se move para a direita */
    color: var(--dark-brown);
}

/* --- SEÇÃO SPLIT (ZIG-ZAG) --- */
/* --- SEÇÃO DIFERENCIAIS (COM SEU ESTILO + LAYOUT ROBUSTO) --- */

.feature-split-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden; /* Evita que o blob vaze a tela */
}

/* Estrutura Flex (Lado a Lado) */
.split-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}
.split-row:last-child { margin-bottom: 0; }
.split-row.reverse { flex-direction: row-reverse; }

.split-text { flex: 1; }

/* === SEU CÓDIGO (ESTILIZAÇÃO DE TEXTO E BOTÕES) === */

.highlight-text {
    color: var(--accent-color); /* Dourado/Bege */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.split-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.split-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark-brown);
    font-weight: 500;
}
.check-list i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Botão Outline Elegante */
.btn-primary-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
    text-decoration: none; /* Garante que não tenha sublinhado */
}
.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* === FIM DO SEU CÓDIGO === */


/* === PARTE ROBUSTA (IMAGENS + BLOBS) === */

.split-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px; /* Garante altura para a animação */
}

/* Formas Orgânicas (Blobs) */
.blob-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: morph 8s ease-in-out infinite;
}

.shape-green {
    background-color: #f4f8f0; /* Verde bem suave */
    right: 20px;
}
.shape-beige {
    background-color: #fcf8f2; /* Bege bem suave */
    left: 20px;
}

/* A Foto Recortada */
.person-photo {
    position: relative;
    z-index: 2;
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}
.split-image-wrapper:hover .person-photo {
    transform: scale(1.03); /* Zoom suave no hover */
}

/* Cards Flutuantes (Badges) */
.float-badge {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 3;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid var(--accent-color);
    animation: floatBadge 3s ease-in-out infinite;
}
.float-badge i { color: var(--accent-color); font-size: 16px; }

.badge-right { bottom: 60px; right: 40px; }
.badge-left { top: 60px; left: 40px; }

/* Animações */
@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsivo */
@media (max-width: 900px) {
    .split-row, .split-row.reverse {
        flex-direction: column;
        gap: 50px;
        text-align: center;
        margin-bottom: 80px;
    }
    
    .blob-shape { width: 300px; height: 300px; }
    .person-photo { max-height: 320px; }
    
    .float-badge { display: none; } /* Remove badges no mobile */
    .check-list li { justify-content: center; } /* Centraliza lista no mobile */
}








/* --- RODAPÉ MODERNO (Footer) --- */

.site-footer {
    background-color: var(--primary-color); /* Fundo Verde Floresta */
    color: #e0e0e0; /* Texto cinza claro para suavizar */
    font-size: 14px;
}

/* Container Geral */
.footer-main {
    padding: 80px 0; /* Espaçamento generoso (UX clean) */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* Colunas */
.footer-col {
    flex: 1;
    min-width: 250px; /* Garante que não fique espremido no mobile */
}

/* Coluna 1: Sobre */
.footer-logo img {
    max-width: 180px;
    filter: brightness(0) invert(1); /* Torna a logo BRANCA automaticamente */
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
}

/* Ícones Sociais */
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: var(--accent-color); /* Fica Bege no hover */
    color: var(--primary-color); /* Ícone fica verde */
    transform: translateY(-3px);
}

/* Títulos das Colunas */
.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
/* Detalhe visual abaixo do título */
.footer-col h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color); /* Tracinho bege */
}

/* Coluna 2: Links (Menu) */
.footer-nav ul li {
    margin-bottom: 12px;
}
.footer-nav ul li a {
    color: #ccc;
    transition: 0.3s;
    display: inline-block;
}
.footer-nav ul li a:hover {
    color: var(--accent-color); /* Link fica bege */
    padding-left: 5px; /* Efeito sutil de movimento */
}

/* Coluna 3: Contato */
.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.contact-list i {
    color: var(--accent-color); /* Ícones bege */
    font-size: 18px;
    margin-top: 3px;
}
.contact-list span {
    color: #ccc;
    line-height: 1.5;
}

/* --- COPYRIGHT BAR (Barra inferior) --- */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2); /* Verde levemente mais escuro */
    padding: 20px 0;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    align-items: center;
}

.credit {
    margin: 0;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Empilha tudo no celular */
    }
    .footer-col {
        width: 100%;
    }
    .bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* --- CORREÇÃO DEFINITIVA DA LOGO (HEADER E FOOTER) --- */

/* 1. Regra Geral para a Logo do WordPress */
.custom-logo-link img,
img.custom-logo {
    width: auto !important;       /* Ignora a largura fixa do HTML */
    height: auto !important;      /* Mantém a proporção correta */
    max-width: 100% !important;   /* Garante que nunca vaze a tela */
    display: block;
}

/* 2. Logo Específica do HEADER (Barra Branca) */
.site-logo .custom-logo-link img,
.site-logo img {
    max-height: 120px !important;  /* Altura máxima permitida no topo */
    width: auto !important;       /* Largura se ajusta sozinha */
}

/* 3. Logo Específica do FOOTER (Rodapé Verde) */
.footer-logo .custom-logo-link img,
.footer-logo img {
    max-width: 200px !important;  /* Largura máxima no rodapé */
    height: auto !important;
    margin-bottom: 20px;
    /* Removemos o filtro de cor para evitar bugs, mantendo a original */
    opacity: 1; 
}
.icone-topo{
    font-size: 25px;
}

/* Ajuste Mobile para garantir */
@media (max-width: 768px) {
      .site-logo .custom-logo-link img {
        max-height: 120px !important;
        margin-top: 50px;
        margin-bottom: 30px;
    }
}


/* --- HEADER FIXO INTELIGENTE (STICKY) --- */

.site-navigation-bar {
    /* A mágica acontece aqui: */
    position: -webkit-sticky; /* Para Safari */
    position: sticky;         /* Padrão moderno */
    top: 0;                   /* Cola no topo exato */
    z-index: 10000;           /* Garante que fique acima de tudo (banners, textos) */
    
    /* Efeito visual para destacar do conteúdo */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    transition: top 0.3s ease; /* Suavidade se houver mudança */
}

/* --- CORREÇÃO PARA BARRA DO ADMIN WORDPRESS --- */
/* Se você estiver logado, a barra preta do WP empurra o menu para baixo.
   Sem isso, o menu ficaria escondido atrás da barra preta. */

body.admin-bar .site-navigation-bar {
    top: 32px; /* Altura padrão da barra do WP no Desktop */
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-navigation-bar {
        top: 46px; /* Altura da barra do WP no Mobile */
    }
}





/* --- LAYOUT ESPECIAL DE PRODUTO (UX LANDING PAGE) --- */

.special-product-wrapper {
    background-color: #fcfcfc;
    padding-bottom: 80px;
}

/* Hero Section */
.product-hero-bg {
    background-color: var(--primary-color);
    padding: 60px 0 100px 0; /* Espaço extra embaixo para sobreposição */
    color: #fff;
    margin-bottom: -40px; /* Faz o conteúdo subir um pouco */
}

.product-badge {
    background: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.product-title {
    font-size: 42px;
    margin: 15px 0;
}

.product-short-desc {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

/* Grid Layout */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Esquerda maior, Direita menor */
    gap: 40px;
    align-items: start; /* Importante para o sticky funcionar */
}

/* Coluna Esquerda (Conteúdo) */
    .product-content-col {
background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    line-height: 30px;
    }

.product-main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-long-desc h3 {
    color: var(--primary-color);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    margin-top: 30px;
}

/* Benefícios Extras */
.extra-benefits {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
.benefit-item { display: flex; gap: 15px; }
.benefit-item i { font-size: 24px; color: var(--accent-color); }
.benefit-item strong { display: block; color: var(--dark-brown); }
.benefit-item p { font-size: 13px; margin: 0; color: #666; }

/* FAQ Styles */
details {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
}
summary { font-weight: bold; color: var(--primary-color); }
details p { margin: 10px 0 0 0; font-size: 14px; color: #555; }

/* --- COLUNA DIREITA (STICKY CARD) --- */
.sticky-purchase-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--accent-color); /* Borda bege elegante */
    
    /* A MÁGICA DO STICKY */
    position: sticky;
    top: 100px; /* Trava 100px do topo ao rolar */
}

.card-price-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 20px;
}
.card-price-header .label {
    display: block;
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
}
.price-display {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
}
.price-display span.amount { color: var(--primary-color); }

.card-checklist { margin-bottom: 25px; }
.card-checklist li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-checklist i { color: var(--primary-color); }

/* Customizando o Botão do WooCommerce dentro do Card */
.action-area .button {
    width: 100%;
    background-color: var(--primary-color) !important;
    color: #fff !important;
    padding: 18px !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}
.action-area .button:hover {
    background-color: var(--dark-brown) !important;
    transform: translateY(-2px);
}

.security-badges {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Responsividade */
@media (max-width: 900px) {
    .product-layout-grid {
        grid-template-columns: 1fr; /* Empilha no mobile */
    }
    .sticky-purchase-card {
        position: static; /* Remove sticky no mobile */
        margin-top: -20px;
        order: -1; /* Joga o card de compra para cima do conteúdo no mobile (BOA PRÁTICA UX) */
        margin-bottom: 30px;
    }
}

/* --- HERO BANNER ANIMADO (UX PREMIUM) --- */

.hero-coffee-banner {
    position: relative;
    /* Degradê do Verde Escuro para um tom mais suave */
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a3315 100%);
    padding: 80px 0 0 0; /* Padding top para afastar do menu */
    overflow: hidden; /* Esconde cortes de imagem */
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* --- LADO ESQUERDO (Texto) --- */
.hero-text-content {
    flex: 1;
    max-width: 600px;
    color: #fff;
    padding-bottom: 80px; /* Espaço para a onda */
    animation: fadeUp 1s ease-out; /* Animação de entrada */
}

/* Badge (Etiqueta) */
.welcome-badge {
    background: rgba(237, 208, 168, 0.2);
    /* color: var(--accent-color); */
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(237, 208, 168, 0.3);
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title .highlight {
    color: #dced9a;
    position: relative;
    z-index: 1;
    font-weight: 900;
}
/* Efeito de sublinhado no texto destaque */
.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.1);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Botões */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-hero-coffee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}
.btn-hero-coffee:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* --- LADO DIREITO (Imagem) --- */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    height: 680px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.accountant-photo {
    max-height: 100%; /* Ocupa a altura disponível */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5)); /* Sombra na foto PNG */
    animation: slideInRight 1.2s ease-out; /* Vem da direita */
    z-index: 1;
}

/* Card Flutuante */
.floating-card {
    position: absolute;
    top: 30%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite; /* Flutua pra cima e pra baixo */
    z-index: 2;
    border-left: 4px solid var(--accent-color);
}
.floating-card i { font-size: 24px; color: var(--primary-color); }
.floating-card strong { display: block; color: var(--text-color); font-size: 24px; }
.floating-card span { font-size: 12px; color: #666; }

/* --- FORMA DE ONDA (Divider) --- */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    
    /* O SEGREDO ESTÁ AQUI: */
    transform: scaleY(-1); /* Inverte o SVG de cabeça para baixo */
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

/* --- ANIMAÇÕES (Keyframes) --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 900px) {
    .hero-coffee-banner {
        padding-top: 40px;
        min-height: auto;
        text-align: center; /* Centraliza texto no mobile */
    }
    
    .hero-container {
        flex-direction: column; /* Empilha: Texto em cima, Foto embaixo */
    }

    .hero-text-content {
        padding-bottom: 40px;
    }

    .hero-title { font-size: 32px; }
    
    .hero-actions { justify-content: center; }

    .hero-image-wrapper {
        height: 400px; /* Altura menor no celular */
        width: 100%;
    }

    .accountant-photo {
        max-height: 400px;
    }

    /* Ajuste do card flutuante no mobile */
    .floating-card {
        top: auto; 
        bottom: 50px; /* Fica perto do rodapé da foto */
        left: 50%;
        transform: translateX(-50%); /* Centraliza */
        width: max-content;
        animation: none; /* Remove flutuação para não atrapalhar scroll */
    }
}

/* --- CORREÇÃO DEFINITIVA CHECKOUT (FUNDO BRANCO + LAYOUT) --- */

/* 1. Força o fundo da página inteira a ser cinza claro (tira o verde) */
body.woocommerce-checkout {
    background-color: #f4f6f8 !important;
}

/* 2. Cria o "Cartão de Papel Branco" ao redor do formulário */
.woocommerce-checkout .woocommerce {
    background-color: #ffffff !important;
    max-width: 1100px;     /* Largura ideal */
    margin: 40px auto;     /* Centraliza na tela */
    padding: 40px;         /* Espaço interno */
    border-radius: 12px;   /* Cantos redondos */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Sombra suave */
    display: block;        /* Garante bloco sólido */
}

/* 3. Força as letras a serem escuras (legibilidade) */
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #ffffff;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -1em 0 0 2em;
}
.woocommerce form .form-row textarea {
    height: 175px !important;
}
/* 4. LAYOUT DE 2 COLUNAS (Restaurando o Design UX) */
@media (min-width: 901px) {
    /* Coluna Esquerda: Formulário */
    .woocommerce-checkout .col2-set {
        width: 55% !important;
        float: left;
        margin-right: 5%;
    }

    /* Coluna Direita: Pagamento */
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 40% !important;
        float: right;
        clear: right;
    }
    
    /* Limpa a flutuação no final para não quebrar o rodapé */
    .woocommerce-checkout .woocommerce::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* 5. Inputs Modernos (Garante fundo branco nos campos) */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background-color: #fbfbfb !important;
    border: 1px solid #ddd !important;
    color: #333 !important;
    padding: 12px !important;
    border-radius: 6px !important;
    height: 48px !important;
}

/* 6. Mobile: Empilha tudo corretamente */
@media (max-width: 900px) {
    .woocommerce-checkout .woocommerce {
        padding: 20px;
        margin: 10px;
        width: auto;
    }
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review {
        width: 100% !important;
        float: none !important;
    }
}

/* --- CHECKOUT WOOCOMMERCE MODERNO (SENIOR UX) --- */

/* 1. Layout Geral (Grid Duplo) */
.woocommerce-checkout .col2-set {
    width: 58% !important; /* Coluna Esquerda */
    float: left;
    margin-right: 4%;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    width: 38% !important; /* Coluna Direita */
    float: right;
    clear: right;
}

/* Título "Seu Pedido" alinhado com a direita */
#order_review_heading {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* 2. Estilização dos Campos (Inputs) */
.woocommerce form .form-row {
    padding: 3px 0;
    margin-bottom: 15px;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.woocommerce-input-wrapper input,
.woocommerce-input-wrapper textarea,
.select2-container .select2-selection--single {
    padding: 15px !important;
    background-color: #f9f9f9 !important; /* Fundo cinza suave */
    border: 1px solid #e5e5e5 !important;
    border-radius: 6px !important;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    height: 50px !important; /* Altura confortável para toque no mobile */
    box-shadow: none !important;
}

/* Foco (Ao clicar no campo) */
.woocommerce-input-wrapper input:focus,
.woocommerce-input-wrapper textarea:focus {
    background-color: #fff !important;
    border-color: var(--primary-color) !important; /* Verde ao digitar */
    box-shadow: 0 0 0 3px rgba(63, 80, 46, 0.1) !important;
}

/* 3. CARD DE PAGAMENTO (Direita) */
#order_review {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Sombra elegante */
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px; /* Efeito Sticky: Acompanha a rolagem */
}

/* Tabela de Produtos no Checkout */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    font-size: 14px;
    color: #666;
}

.woocommerce-checkout-review-order-table .product-name {
    color: var(--dark-brown);
    font-weight: 600;
}
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table .order-total .amount {
    color: var(--primary-color);
    font-weight: bold;
    text-align: right;
}

.order-total th {
    font-size: 16px;
    color: var(--text-color);
}
.order-total .amount {
    font-size: 20px; /* Destaque no preço total */
}

/* 4. Métodos de Pagamento */
#payment {
    background: transparent !important;
    padding: 0 !important;
}
#payment ul.payment_methods {
    border: none !important;
    padding: 0 !important;
}
#payment ul.payment_methods li {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 15px;
    list-style: none !important;
}
/* Método Selecionado */
#payment ul.payment_methods li input:checked + label {
    color: var(--primary-color);
    font-weight: bold;
}

/* Caixa de descrição do pagamento */
#payment div.payment_box {
    background-color: #fff !important;
    color: #666 !important;
    font-size: 13px !important;
    padding: 15px !important;
    margin-top: 10px !important;
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}
#payment div.payment_box::before { display: none; } /* Remove setinha feia padrão */

/* 5. BOTÃO DE FINALIZAR (Place Order) */
#place_order {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    padding: 20px !important;
    border-radius: 8px !important;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(63, 80, 46, 0.2);
}

#place_order:hover {
    background-color: var(--dark-brown) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Texto de Privacidade e Termos */
.woocommerce-terms-and-conditions-wrapper {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

/* --- RESPONSIVIDADE (Mobile) --- */
@media (max-width: 900px) {
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 100% !important;
        float: none;
        margin-right: 0;
    }
    
    #order_review {
        position: static; /* Remove sticky no celular */
        margin-top: 30px;
    }
}


/* --- CORREÇÃO DE EMERGÊNCIA DO MENU MOBILE --- */

/* 1. Prepara o container para segurar o menu */
.nav-container {
    position: relative; /* Isso segura o menu 'preso' na barra */
}

/* 2. Força o Menu a aparecer quando tiver a classe .active */
@media (max-width: 900px) {
    
    /* Garante que o menu base ocupe a largura toda */
    .main-menu.active {
        display: block !important;
        position: absolute;
        top: 60px; /* Altura exata da sua barra de navegação */
        left: 0;
        width: 100vw; /* Largura total da tela */
        height: auto;
        background-color: #ffffff !important; /* Fundo branco sólido */
        border-top: 2px solid var(--accent-color);
        box-shadow: 0 50px 100px rgba(0,0,0,0.5); /* Sombra forte para ver onde ele está */
        z-index: 99999 !important; /* Acima de TUDO (Hero, Banner, Chat) */
        padding: 0 !important;
        margin: 0 !important;
        /* Removemos animação por enquanto para testar */
        opacity: 1 !important; 
        transform: none !important;
    }

    /* Força os itens a aparecerem um embaixo do outro */
    .main-menu.active .wp-finance-menu {
        display: flex !important;
        flex-direction: column !important;
        background: #fff;
    }

    .main-menu.active .wp-finance-menu li {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-menu.active .wp-finance-menu li a {
        display: block;
        padding: 20px;
        color: var(--primary-color);
        font-size: 16px;
        text-align: left;
    }
}

/* --- ESTILO PARA ÍCONES SVG PERSONALIZADOS --- */
/* --- ESTILO PARA ÍCONES SVG PERSONALIZADOS (CORRIGIDO) --- */
.icon-wrap svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-color);
    transition: all 0.1s ease;
}

/* Garante que os caminhos internos tenham transição suave */
.icon-wrap svg path, 
.icon-wrap svg rect, 
.icon-wrap svg circle, 
.icon-wrap svg polygon,
.icon-wrap svg .st0 { 
    transition: fill 0.1s ease;
}

/* Quando passar o mouse no card, FORÇA o branco em tudo */
.service-box:hover .icon-wrap svg,
.service-box:hover .icon-wrap svg path,
.service-box:hover .icon-wrap svg rect,
.service-box:hover .icon-wrap svg circle,
.service-box:hover .icon-wrap svg polygon,
.service-box:hover .icon-wrap svg .st0 {
    fill: #ffffff !important;
}
/* --- AJUSTE PARA 4 COLUNAS --- */

/* No Desktop (Telas grandes) */
@media (min-width: 1100px) {
    .pricing-grid.four-columns {
        display: flex;
        justify-content: space-between;
        gap: 15px; /* Espaço menor entre eles */
        align-items: flex-start; /* Alinha pelo topo */
    }

    .pricing-grid.four-columns .pricing-card {
        width: 24%; /* 4 cards ocupando quase 25% cada */
        padding: 25px 15px; /* Reduz um pouco o padding interno */
    }
    
    /* Ajuste de fonte para caber */
    .pricing-card h3 { font-size: 18px; }
    .price .amount { font-size: 32px; }
    .card-features ul li { font-size: 12px; }
    
    /* O card popular cresce um pouquinho menos para não quebrar */
    .pricing-card.popular {
        transform: scale(1.03); 
        z-index: 5;
    }
    .pricing-card.popular:hover {
        transform: scale(1.05) translateY(-5px);
    }
}

/* Tablet (2 colunas em cima, 2 embaixo) */
@media (max-width: 1099px) and (min-width: 600px) {
    .pricing-grid.four-columns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .pricing-card {
        width: 48%; /* 2 por linha */
    }
}

/* --- ESTILO DO SWITCH (MENSAL/ANUAL) --- */
.pricing-toggle-container {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.toggle-label {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}
.toggle-label.active {
    color: var(--primary-color);
}

/* O Botão Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--primary-color);
}
input:checked + .slider:before {
    transform: translateX(26px);
}

/* Tag de desconto flutuante ao lado do switch */
.discount-badge {
    background-color: #d97706; /* Laranja */
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 10px;
    position: relative;
    top: -10px;
    animation: bounce 1s infinite alternate;
}
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(-5px); } }

.annual-price{
    margin-bottom: 20px;
}

/* =========================================
   SEÇÃO CADU AI - VERSÃO COMPACTA E REFINADA
   ========================================= */

:root {
    --primary-color: #3f502e;
    --accent-color: #2e3517;
    --text-color: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #6b8c42 0%, #3f502e 100%);
    --gradient-accent: linear-gradient(135deg, #8fbc5a 0%, #6b8c42 100%);
}

/* Seção Principal */
.cadu-agent-experience {
    background: 
        radial-gradient(circle at 15% 15%, rgba(139, 188, 90, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgba(63, 80, 46, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #f7f9f5 0%, #ffffff 100%);
    padding: 160px 20px 100px 20px; 
    position: relative;
    overflow: visible;
    z-index: 10;
}

/* Partículas de fundo sutis */
.cadu-agent-experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(107, 140, 66, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(63, 80, 46, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

.container-cadu {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cadu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* ===================================
   LADO VISUAL - CARD COMPACTO
   =================================== */

.cadu-visual-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: -180px;
    z-index: 20;
    animation: fadeInScale 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Blob Orgânico Otimizado */
.cadu-blob {
    position: absolute;
    width: 520px;
    height: 520px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 188, 90, 0.12) 0%, transparent 70%),
        linear-gradient(135deg, var(--primary-color), #5e7345);
    opacity: 0.1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphing 25s ease-in-out infinite, pulse 8s ease-in-out infinite;
    z-index: 1;
    filter: blur(60px);
    top: -40px;
}

/* Segundo blob para profundidade */
.cadu-visual-wrapper::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(107, 140, 66, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: morphing 20s ease-in-out infinite reverse, pulse 6s ease-in-out infinite;
    filter: blur(45px);
    z-index: 0;
}

/* Card de Vidro Compacto */
.cadu-avatar-card {
    position: relative;
    z-index: 2;
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 35px;
    padding: 45px 40px 35px 40px;
    box-shadow: 
        0 25px 50px -15px rgba(63, 80, 46, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    max-width: 420px;
}

.cadu-avatar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 35px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(139, 188, 90, 0.3), rgba(63, 80, 46, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.cadu-avatar-card:hover {
    transform: translateY(-12px) translateZ(15px) rotateX(2deg);
    box-shadow: 
        0 35px 70px -20px rgba(63, 80, 46, 0.28),
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cadu-avatar-card:hover::before {
    opacity: 1;
}

/* Container da Imagem */
.cadu-img-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cadu-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s;
    z-index: -1;
}

.cadu-avatar-card:hover .cadu-img-wrapper::before {
    opacity: 0.35;
    animation: rotate 8s linear infinite;
}

/* Imagem do Cadu */
.cadu-img {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(63, 80, 46, 0.08);
    transition: all 0.5s 
cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cadu-avatar-card:hover .cadu-img {
    transform: scale(1.05);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(63, 80, 46, 0.12);
}

/* Badge AI Compacto */
.ai-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(63, 80, 46, 0.25);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-badge::before {
    content: '✨';
    font-size: 12px;
    animation: blink-soft 2s ease-in-out infinite;
}

.ai-badge::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.4;
    z-index: -1;
}

/* Status Online Compacto */
.cadu-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 
        0 6px 18px rgba(76, 175, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: pulse-status 3s ease-in-out infinite;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    animation: blink-dot 2s ease-in-out infinite;
}

/* Tags Flutuantes Compactas */
.floating-tag {
    position: absolute;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color);
    box-shadow: 
        0 12px 28px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    z-index: 3;
    animation: float 7s ease-in-out infinite;
    border: 1px solid rgba(63, 80, 46, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
    white-space: nowrap;
}

.floating-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s;
}

.floating-tag:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 18px 35px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.06);
}

.floating-tag:hover::before {
    opacity: 0.08;
}

.tag-1 { 
    top: 8%; 
    left: -10px; 
    animation-delay: 0s; 
}

.tag-2 {
    bottom: 12%;
    right: 25px;
    animation-delay: 3.5s;
}

/* ===================================
   LADO CONTEÚDO - MAIS COMPACTO
   =================================== */

.cadu-content {
    padding-left: 10px;
    position: relative;
    z-index: 5;
    animation: fadeInRight 1s ease-out 0.3s both;
}

/* Eyebrow Compacto */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(107, 140, 66, 0.12) 0%, rgba(46, 53, 23, 0.08) 100%);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid rgba(107, 140, 66, 0.15);
    position: relative;
    overflow: hidden;
}

.eyebrow::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.8s;
}

.eyebrow:hover::before {
    left: 100%;
}

/* Título Compacto */
.cadu-title {
    font-size: clamp(36px, 4.5vw, 52px);
    color: var(--text-color);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    font-weight: 800;
}

.cadu-title span {
    color: transparent;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Descrição Compacta */
.cadu-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 400;
}

.cadu-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Features Mini Compactas */
.cadu-features-mini {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: default;
}

.mini-item i {
    font-size: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(63, 80, 46, 0.08);
}

.mini-item:hover {
    transform: translateX(4px);
}

.mini-item:hover i {
    transform: scale(1.12) rotate(8deg);
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 
        0 10px 24px rgba(107, 140, 66, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Botão CTA Compacto */
.btn-cadu-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 28px rgba(63, 80, 46, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-cadu-chat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-cadu-chat::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cadu-chat:hover {
    background: var(--gradient-accent);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 18px 38px rgba(63, 80, 46, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-cadu-chat:hover::before {
    opacity: 1;
}

.btn-cadu-chat:hover::after {
    width: 280px;
    height: 280px;
}

.btn-cadu-chat:active {
    transform: translateY(-3px) scale(0.98);
}

/* ===================================
   ANIMAÇÕES
   =================================== */

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(25px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-25px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(1deg); }
    50% { transform: translateY(-18px) rotate(0deg); }
    75% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes morphing {
    0%, 100% { 
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }
    25% { 
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: rotate(90deg) scale(1.04);
    }
    50% { 
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: rotate(180deg) scale(1);
    }
    75% { 
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: rotate(270deg) scale(1.04);
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.14;
        transform: scale(1.03);
    }
}

@keyframes pulse-status {
    0%, 100% { 
        box-shadow: 
            0 6px 18px rgba(76, 175, 80, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 10px 28px rgba(76, 175, 80, 0.45),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes blink-soft {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(0.96);
    }
}

@keyframes blink-dot {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================
   RESPONSIVIDADE
   =================================== */

@media (max-width: 992px) {
    .cadu-agent-experience {
        overflow: hidden;
        padding: 70px 20px 60px 20px;
    }

    .cadu-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .cadu-visual-wrapper {
        order: 1;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .cadu-avatar-card {
        padding: 35px 30px 28px 30px;
        max-width: 360px;
        margin: 0 auto;
    }

    .cadu-img {
        width: 180px;
        height: 180px;
    }

    .cadu-blob,
    .cadu-visual-wrapper::after {
        width: 360px;
        height: 360px;
    }

    .tag-1 { top: 8%; left: -25px; font-size: 11px; padding: 8px 16px; }
    .tag-2 { bottom: 12%; right: -25px; font-size: 11px; padding: 8px 16px; }

    .cadu-content {
        order: 2;
        padding-left: 0;
    }

    .cadu-description {
        margin: 0 auto 28px auto;
    }

    .cadu-features-mini {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .cadu-agent-experience {
        padding: 50px 15px;
    }

    .floating-tag {
        display: none;
    }

    .cadu-avatar-card {
        padding: 28px 22px 22px 22px;
    }

    .cadu-img {
        width: 150px;
        height: 150px;
    }

    .ai-badge {
        top: 15px;
        right: 15px;
        font-size: 10px;
        padding: 6px 12px;
    }

    .cadu-status {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn-cadu-chat {
        width: 100%;
        padding: 14px 28px;
        font-size: 14px;
    }

    .cadu-features-mini {
        gap: 16px;
    }

    .mini-item {
        font-size: 13px;
    }

    .mini-item i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .cadu-title {
        font-size: 32px;
    }

    .cadu-description {
        font-size: 15px;
    }
}

/* =========================================
   SEÇÃO QUEM SOMOS - EDITORIAL STYLE
   ========================================= */

.about-founder-section {
    padding: 120px 20px;
    background-color: #fcfbf9; /* Um bege muito suave, quase papel */
    position: relative;
    z-index: 5; /* Fica abaixo do Cadu sobreposto, criando profundidade */
}

.container-founder {
    max-width: 1200px;
    margin: 0 auto;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- LADO TEXTO --- */
.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

.founder-title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Georgia', serif; /* Serifada para contraste editorial */
}

.highlight-hand {
    color: var(--primary-color);
    font-style: italic;
    position: relative;
    white-space: nowrap;
}

/* Sublinhado criativo */
.highlight-hand::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(63, 80, 46, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.founder-text-main {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.founder-text-sec {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Box de Citação */
.founder-quote-box {
    border-left: 4px solid var(--accent-color);
    padding-left: 25px;
    margin-bottom: 40px;
}

.founder-quote-box blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-brown);
    margin: 0 0 10px 0;
    font-weight: 500;
}

.founder-quote-box cite {
    font-size: 14px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-style: normal;
}

/* Botão Minimalista */
.btn-founder-talk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.btn-founder-talk:hover {
    gap: 15px;
    color: var(--dark-brown);
    border-color: var(--dark-brown);
}

/* --- LADO VISUAL (Arco e Camadas) --- */
.founder-visual-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O Arco da Foto */
.arch-frame {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 600px;
    border-radius: 300px 300px 20px 20px; /* Formato de Arco */
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 20px 20px 0px rgba(63, 80, 46, 0.1); /* Sombra sólida deslocada */
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.arch-frame:hover .founder-img {
    transform: scale(1.05);
}

/* Badge de Experiência */
.exp-badge {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float-slow 4s ease-in-out infinite;
}

.exp-badge .years {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.exp-badge .label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #444;
    line-height: 1.2;
}

/* Elemento Decorativo (Pontinhos) */
.texture-dots {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ccc 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
    opacity: 0.5;
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- MOBILE --- */
@media (max-width: 992px) {
    .about-founder-section {
        padding: 80px 20px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        text-align: left; /* Mantém alinhamento à esquerda para leitura */
    }

    .founder-visual-wrapper {
        order: 1; /* Foto primeiro no mobile para gerar conexão */
        height: 450px; /* Menor no mobile */
        margin-bottom: 40px;
    }

    .arch-frame {
        max-width: 100%;
        border-radius: 200px 200px 20px 20px;
        box-shadow: 10px 10px 0px rgba(63, 80, 46, 0.1);
    }
    
    .exp-badge {
        left: 0;
        bottom: 20px;
    }

    .founder-content {
        order: 2;
    }
    
    .section-tag {
        padding-left: 0; /* Remove a linha decorativa no mobile para economizar espaço */
    }
    .section-tag::before { display: none; }
}

/* =========================================
   SEÇÃO CONTATO & MAPA
   ========================================= */

.contact-location-section {
    padding: 100px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.container-contact {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Mapa um pouco maior */
    gap: 80px;
    align-items: flex-start; /* Alinha ao topo */
}

/* --- LADO FORMULÁRIO --- */
.eyebrow-contact {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-title .highlight-coffee {
    color: var(--dark-brown);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 16px;
}

/* Estilo dos Inputs (Intuitive UI) */
.intuitive-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 5px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: #f4f6f2; /* Fundo cinza/verde bem claro */
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Efeito de Foco Moderno */
.input-group input:focus,
.input-group textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 5px 15px rgba(63, 80, 46, 0.1);
}

.btn-submit-form {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(55, 32, 24, 0.2);
}

.btn-submit-form:hover {
    background: #222c19;
    transform: translateY(-3px);
}

/* Contatos Rápidos (Abaixo do form) */
/* --- Contatos Rápidos em 2 Colunas --- */
.quick-contacts {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.08); /* Linha divisória suave */
    
    /* A Mágica das 2 Colunas: */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide o espaço igualmente em 2 */
    gap: 15px;
}

.qc-item {
    display: flex;
    flex-direction: column; /* Ícone em cima, texto embaixo */
    align-items: center;
    justify-content: center;
    text-align: center;
    
    background-color: #f7f9f5; /* Fundo levemente verde/cinza */
    padding: 15px 10px;
    border-radius: 16px;
    
    font-size: 13px; /* Tamanho bom para caber o email */
    font-weight: 600;
    color: #555;
    
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.qc-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px; /* Espaço entre ícone e texto */
}

/* Efeito Hover (Ao passar o mouse) */
.qc-item:hover {
    background-color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px); /* Leve subidinha */
    box-shadow: 0 5px 15px rgba(63, 80, 46, 0.15);
    color: var(--primary-color);
}

/* Ajuste Fino para Mobile (para o email não quebrar feio) */
@media (max-width: 400px) {
    .qc-item {
        font-size: 11px; /* Diminui um pouco a fonte em telas muito pequenas */
        padding: 12px 5px;
    }
}
/* --- LADO MAPA --- */
.map-visual-wrapper {
    position: relative;
    height: 550px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    background: #eee;
}

.map-frame iframe {
    filter: saturate(0.8); /* Deixa o mapa levemente menos saturado para elegância */
    transition: filter 0.5s;
}

.map-frame:hover iframe {
    filter: saturate(1);
}

/* Card Flutuante de Endereço */
.location-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px; /* Responsivo: ocupa a largura */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 350px; /* Trava largura no desktop */
}

.loc-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.loc-info h4 {
    margin: 0 0 5px 0;
    color: var(--text-color);
    font-size: 16px;
}

.loc-info p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.link-waze {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-waze:hover {
    text-decoration: underline;
}

/* Elemento Decorativo Atrás do Mapa */
.map-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.15;
}

/* --- MOBILE & TABLET --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .map-visual-wrapper {
        height: 400px; /* Mapa menor no mobile */
    }

    .location-card {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none; /* Ocupa largura total disponível */
        flex-direction: row; /* Mantém ícone ao lado */
        padding: 15px;
    }
    
    .loc-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .btn-submit-form {
        width: 100%; /* Botão full width no mobile */
    }
}

.hero-micro-benefit {
    font-size: 14px;
    color: #dced9a;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.why-different {
    padding: 100px 0;
    background: #f7f9f5;
    text-align: center;
}

.why-different h2 {
    color: var(--primary-color);
    font-size: 34px;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.why-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-8px);
}

.why-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}


.social-proof {
    padding: 80px 0;
    background: #fff;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 30px;
}

.proof-grid strong {
    font-size: 36px;
    color: var(--primary-color);
    display: block;
}

.proof-grid span {
    color: #666;
    font-size: 14px;
}


.plan-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}
/* Botão Flutuante Cadu */
.cadu-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); /* Base para o efeito */
    transition: all 0.3s ease;
    animation: caduPulse 2s infinite; /* A pulsação elegante */
}

/* Tooltip (Balão de fala) */
.cadu-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    font-size: 13px;
    padding: 8px 15px;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    pointer-events: none;
    opacity: 0.9;
}

/* Animação de Pulsação Glow */
@keyframes caduPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Efeito ao passar o mouse */
.cadu-float-btn:hover {
    transform: scale(1.1);
    animation: none; /* Para a animação para o usuário clicar fácil */
    background: #128c7e;
}

.cadu-float-btn:hover .cadu-tooltip {
    opacity: 1;
    right: 80px;
    background: #f0f0f0;
}

/* Esconder o botão por padrão (Desktop) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

/* Regras para Mobile (ex: abaixo de 992px) */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block; /* Mostra o botão */
    }

    .main-menu {
        display: none; /* Esconde o menu original */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
    }

    /* Classe que o JavaScript vai adicionar para abrir o menu */
    .main-menu.active {
        display: flex;
    }
}

/* Garante que o botão apareça no Mobile */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block !important; /* Força a aparição */
    }

    .main-menu {
        display: none; /* Esconde o menu de texto lateral */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        z-index: 9999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .main-menu.active {
        display: block; /* Mostra ao clicar */
    }

    /* Esconde textos longos para caber tudo na mesma linha */
    .hide-mobile {
        display: none !important;
    }

    .sistema-access {
        border-right: none !important;
        padding-right: 0 !important;
    }

   .header-container {
        justify-content: center;
        flex-direction: column;
    }
}

/* --- AJUSTES ESPECÍFICOS LP IRPF --- */
.faq-container details {
    background: #fdfdfd;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}
.faq-container details:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(63, 80, 46, 0.05);
}
.faq-container summary {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none; /* Remove setinha nativa em alguns browsers */
    position: relative;
    padding-right: 20px;
}
.faq-container summary::-webkit-details-marker {
    display: none;
}
.faq-container summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
}
.faq-container details[open] summary::after {
    content: '-';
}
.faq-container details p {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
    color: #555;
    line-height: 1.6;
}


/* ===================================================
   LANDING PAGE IRPF - IDENTIDADE EXCLUSIVA
   =================================================== */

.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- HERO MINIMALISTA --- */
.lp-hero-minimal {
    background-color: #f7f9f5;
    padding: 60px 0 100px;
    border-bottom: 10px solid var(--accent-color);
    overflow: hidden;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #d9534f;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pulse-dot {
    width: 10px; height: 10px;
    background: #d9534f;
    border-radius: 50%;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(217, 83, 79, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0); }
}

.lp-title {
    font-size: 52px;
    line-height: 1.1;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.lp-serif-highlight {
    font-family: 'Georgia', serif;
    color: var(--primary-color);
    font-style: italic;
    font-weight: normal;
}

.lp-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.lp-hero-cta-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-lp-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 40px;
    border-radius: 8px; /* Borda levemente arredondada, mais séria que formato pílula */
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(63, 80, 46, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-lp-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(63, 80, 46, 0.3);
}

.lp-security-text { font-size: 12px; color: #888; display: flex; align-items: center; gap: 6px; }

/* Imagem Hero */
.lp-hero-image { position: relative; display: flex; justify-content: center; }
.lp-image-backdrop {
    position: absolute;
    width: 90%; height: 90%;
    background: var(--primary-color);
    border-radius: 20px;
    bottom: -20px; right: -20px;
    z-index: 1;
    opacity: 0.05;
}
.lp-expert-photo { position: relative; z-index: 2; max-height: 550px; border-radius: 12px; }

.lp-floating-stamp {
    position: absolute;
    bottom: 30px; left: -30px;
    background: var(--accent-color);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 120px; height: 120px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.lp-floating-stamp strong { font-size: 28px; line-height: 1; }
.lp-floating-stamp span { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }


/* --- ALERTA ESCURO (Quebra de Padrão) --- */
.lp-dark-alert-section {
    background-color: var(--primary-color);
    color: #fff;
    padding: 100px 0;
}

.lp-section-header-center { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.lp-section-header-center h2 { font-family: 'Georgia', serif; font-size: 38px; color: var(--accent-color); margin-bottom: 15px; }
.lp-section-header-center p { font-size: 18px; color: #e0e0e0; }

.lp-alert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-alert-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 12px;
    transition: 0.3s;
}
.lp-alert-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }

.lp-icon-circle {
    width: 60px; height: 60px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.lp-alert-card h3 { font-size: 22px; margin-bottom: 15px; color: #fff; }
.lp-alert-card p { font-size: 15px; line-height: 1.6; color: #ccc; margin: 0; }


/* --- BENEFÍCIOS EM LINHA --- */
.lp-benefits-section { padding: 100px 0; background: #fff; }
.lp-benefits-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.lp-benefit-row { display: flex; gap: 30px; align-items: flex-start; }
.lp-benefit-number {
    font-family: 'Georgia', serif; font-size: 48px; font-weight: bold;
    color: #f0f0f0; line-height: 1; text-shadow: -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color), -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color);
}
.lp-benefit-text h3 { font-size: 22px; color: var(--primary-color); margin: 0 0 10px; }
.lp-benefit-text p { color: #666; font-size: 16px; line-height: 1.6; margin: 0; }


/* --- FINAL CTA --- */
.lp-final-cta-section { padding: 80px 0 100px; background: #fcfbf9; }
.lp-final-box {
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.lp-final-box h2 { font-size: 36px; color: var(--primary-color); margin-bottom: 15px; font-family: 'Georgia', serif; }
.lp-final-box p { font-size: 18px; color: #666; margin-bottom: 30px; }


/* --- RESPONSIVIDADE LP --- */
@media (max-width: 900px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .lp-hero-cta-box { align-items: center; }
    .lp-floating-stamp { left: auto; right: 10px; bottom: 10px; width: 90px; height: 90px; }
    .lp-floating-stamp strong { font-size: 20px; }
    .lp-floating-stamp span { font-size: 8px; }
    .lp-alert-grid { grid-template-columns: 1fr; }
    .lp-benefit-row { flex-direction: column; gap: 15px; text-align: center; align-items: center; }
}


/* =============================================
   LP IRPF 2026 — Mobile-First Redesign
   Fonts: Fraunces (display) + DM Sans (body)
   ============================================= */

/* ---- RESET & BASE ---- */
.irpf-lp * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.irpf-lp {
    --green-900: #0e3d22;
    --green-800: #1a6b3c;
    --green-700: #2d8a55;
    --green-100: #e8f5ee;
    --gold:       #e8b84b;
    --gold-light: #fdf6e3;
    --dark:       #111510;
    --mid:        #3a3f35;
    --light:      #f5f7f3;
    --white:      #ffffff;
    --text:       #2a2e26;
    --muted:      #6b7365;
    --shadow-sm:  0 2px 8px rgba(14,61,34,.10);
    --shadow-md:  0 8px 32px rgba(14,61,34,.15);
    --shadow-lg:  0 20px 60px rgba(14,61,34,.20);
    --radius:     16px;
    --radius-sm:  10px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ---- CONTAINER ---- */
.irpf-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   HERO
   ============================================= */
.irpf-hero {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding-bottom: 48px;
}

/* Grain noise texture */
.irpf-hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    opacity: .5;
}

/* Radial green glow */
.irpf-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26,107,60,.35) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}

.irpf-hero > * { position: relative; z-index: 1; }

/* TOP BAR */
.irpf-hero__top-bar {
    background: var(--green-800);
    padding: 10px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}
.irpf-hero__top-bar .irpf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.irpf-hero__urgency {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}
.irpf-hero__badge {
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}
.irpf-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(232,184,75,.6); }
    50%      { box-shadow: 0 0 0 6px rgba(232,184,75,0); }
}

/* GRID */
.irpf-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
}

/* LOGO SVG */
.irpf-logo-wrap {
    margin-bottom: 28px;
    animation: fadeSlideUp .7s ease both;
}
.irpf-logo-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
}

/* TITLE */
.irpf-hero__title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.4rem, 7vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeSlideUp .7s .1s ease both;
}
.irpf-hero__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.irpf-hero__subtitle {
    font-size: clamp(.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeSlideUp .7s .2s ease both;
}
.irpf-hero__subtitle strong { color: var(--white); }

/* CTAs */
.irpf-hero__ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeSlideUp .7s .3s ease both;
}
.irpf-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}
.irpf-trust-row i { color: var(--green-700); margin-right: 4px; }

/* ---- BUTTONS ---- */
.irpf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,.35);
    transition: transform .2s, box-shadow .2s, background .2s;
    width: 100%;
    max-width: 380px;
}
.irpf-btn-primary:hover {
    background: #1fbd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,211,102,.45);
}
.irpf-btn-primary .fa-whatsapp { font-size: 1.2rem; }
.irpf-btn-arrow { margin-left: auto; opacity: .7; font-size: .8rem; }

.irpf-btn-primary--large {
    font-size: 1.1rem;
    padding: 18px 36px;
    max-width: 420px;
    margin: 0 auto;
}

.irpf-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s, background .2s;
}
.irpf-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}

/* VISUAL / EXPERT CARD */
.irpf-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeSlideUp .7s .4s ease both;
}
.irpf-expert-card {
    position: relative;
    background: linear-gradient(145deg, rgba(26,107,60,.9), rgba(14,61,34,.95));
    border: 1px solid rgba(232,184,75,.3);
    border-radius: var(--radius);
    padding: 24px;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}
.irpf-expert-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 6px rgba(232,184,75,.15);
}
.irpf-expert-info strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--white);
}
.irpf-expert-info span {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
}
.irpf-years-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gold);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,184,75,.4);
    line-height: 1.1;
}
.irpf-years-badge strong {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}
.irpf-years-badge span {
    font-size: .6rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Decorative elements */
.irpf-hero__deco-ring {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px dashed rgba(232,184,75,.2);
    pointer-events: none;
}
.irpf-hero__deco-dot {
    position: absolute;
    top: 20px;
    left: -10px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    opacity: .4;
}

/* =============================================
   ALERT SECTION (Regras 2026)
   ============================================= */
.irpf-alert-section {
    background: var(--light);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.irpf-alert-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-800), var(--gold), var(--green-800));
}

/* Section headers */
.irpf-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.irpf-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-800);
    background: rgba(26,107,60,.1);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.irpf-eyebrow--light {
    color: var(--gold);
    background: rgba(232,184,75,.15);
}
.irpf-section-header h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.irpf-section-header p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
}

/* CARDS GRID */
.irpf-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.irpf-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s, box-shadow .25s;
    animation: fadeSlideUp .6s var(--delay, 0s) both;
}
.irpf-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.irpf-card__icon {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green-800);
    margin-bottom: 16px;
}
.irpf-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.irpf-card p {
    font-size: .9rem;
    line-height: 1.65;
    color: var(--muted);
}
.irpf-card p strong { color: var(--dark); }
.irpf-card__accent {
    position: absolute;
    bottom: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--green-800), var(--gold));
    border-radius: 0 3px 0 0;
    transition: width .4s;
}
.irpf-card:hover .irpf-card__accent { width: 100%; }

/* =============================================
   BENEFITS SECTION
   ============================================= */
.irpf-benefits-section {
    background: var(--green-900);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.irpf-benefits-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232,184,75,.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.irpf-benefits-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.irpf-benefits-text h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 14px 0 18px;
}
.irpf-benefits-text h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}
.irpf-benefits-text p {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Benefit items */
.irpf-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.irpf-benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
}
.irpf-benefit-item:last-child { border-bottom: none; }
.irpf-benefit-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(232,184,75,.25);
    line-height: 1;
    min-width: 48px;
    transition: color .3s;
}
.irpf-benefit-item:hover .irpf-benefit-num { color: var(--gold); }
.irpf-benefit-body h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.irpf-benefit-body p {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.irpf-final-section {
    background: var(--light);
    padding: 72px 0;
}
.irpf-final-inner {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}
.irpf-final-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(26,107,60,.4) 0%, transparent 60%);
}
.irpf-final-inner > * { position: relative; z-index: 1; }

.irpf-final-badge {
    display: inline-block;
    background: rgba(232,184,75,.15);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(232,184,75,.3);
}
.irpf-final-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}
.irpf-final-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 32px;
    line-height: 1.7;
}
.irpf-final-inner p strong { color: var(--white); }
.irpf-final-inner .irpf-btn-primary { margin: 0 auto; }

/* FAQ */
.irpf-faq {
    max-width: 720px;
    margin: 0 auto;
}
.irpf-faq__title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 28px;
}
.irpf-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.irpf-faq__item {
    background: var(--white);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow .2s;
}
.irpf-faq__item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--green-700);
}
.irpf-faq__item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--dark);
    gap: 16px;
    user-select: none;
}
.irpf-faq__item summary::-webkit-details-marker { display: none; }
.irpf-faq__item summary i {
    color: var(--green-800);
    font-size: .8rem;
    transition: transform .3s;
    flex-shrink: 0;
}
.irpf-faq__item[open] summary i { transform: rotate(180deg); }
.irpf-faq__answer {
    padding: 0 20px 18px;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 14px;
}

/* =============================================
   STICKY CTA (mobile only)
   ============================================= */
.irpf-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    padding: 12px 20px;
    z-index: 9999;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.irpf-sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px;
    text-decoration: none;
    width: 100%;
    box-shadow: 0 4px 20px rgba(37,211,102,.35);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE — TABLET (600px+)
   ============================================= */
@media (min-width: 600px) {
    .irpf-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .irpf-cards-grid .irpf-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .irpf-btn-primary {
        width: auto;
    }
}

/* =============================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================= */
@media (min-width: 900px) {

    /* Hero grid — 60/40 split */
    .irpf-hero__grid {
        grid-template-columns: 1fr .65fr;
        align-items: center;
        gap: 60px;
        padding-top: 60px;
        padding-bottom: 16px;
    }

    .irpf-logo-svg {
        max-width: 380px;
    }

    /* 3-col cards */
    .irpf-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .irpf-cards-grid .irpf-card:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    /* Benefits 2-col */
    .irpf-benefits-inner {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }

    /* Expert card bigger */
    .irpf-expert-img {
        width: 180px;
        height: 180px;
    }

    /* Sticky CTA hidden on desktop */
    .irpf-sticky-cta {
        display: none !important;
    }
}

/* Show sticky CTA only on mobile */
@media (max-width: 767px) {
    .irpf-sticky-cta { display: block; }
    /* Add padding so sticky CTA doesn't cover last button */
    .irpf-final-section { padding-bottom: 96px; }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    .irpf-lp *,
    .irpf-lp *::before,
    .irpf-lp *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .irpf-pulse {
        animation: none;
    }
}

/* ==========================================================================
   IRPF 2026 LANDING PAGE - ESTILO "FLASHY DARK"
   ========================================================================== */

/* --- Variáveis Locais para a LP (Baseadas na sua identidade + Cores de Efeito) --- */
:root {
    --ir-bg-dark: #2c3a20; /* Variação mais escura do seu verde */
    --ir-bg-darker: #1a2413;
    --ir-primary: #3f502e; /* Seu verde original */
    --ir-accent: #e0dace; /* Seu bege original */
    --ir-glow: #8a9c70; /* Uma versão mais brilhante do verde para efeitos */
    --ir-alert: #ff6b6b; /* Cor de alerta para urgência */
    --ir-text-light: #ffffff;
    --ir-text-dim: #b0bfa0;
}

/* Reset básico para a LP */
#irpf-lp-main {
    font-family: 'Poppins', sans-serif; /* Use a fonte principal do seu tema */
    background-color: var(--ir-bg-darker);
    overflow-x: hidden;
}

.ir-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ================= 1. HERO SECTION (DARK & GLOW) ================= */
.ir-hero-section {
    /* Gradiente radial profundo para dar um ar premium e tecnológico */
    background: radial-gradient(circle at top right, var(--ir-primary) 0%, var(--ir-bg-darker) 70%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Espaço para o header fixo */
    padding-bottom: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Visual do SVG e Status */
.hero-visual {
    text-align: center;
    position: relative;
}

.irpf-svg-badge {
    width: 280px;
    height: 280px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 20px rgba(224, 218, 206, 0.3));
}

/* Animação sutil de pulso no SVG inteiro */
.pulse-animation { animation: subtlePulse 4s infinite ease-in-out; }
@keyframes subtlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.status-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--ir-accent);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(224, 218, 206, 0.2);
    backdrop-filter: blur(10px);
}

.blinking-dot {
    width: 10px; height: 10px;
    background-color: #4cd137; /* Verde "Online" */
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px #4cd137;
    animation: blinkStatus 1.5s infinite;
}
@keyframes blinkStatus { 50% { opacity: 0.5; } }

/* Conteúdo de Texto Hero */
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--ir-text-light);
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Efeito de texto brilhante */
.highlight-glow {
    color: var(--ir-accent);
    text-shadow: 0 0 15px rgba(224, 218, 206, 0.4);
    position: relative;
    display: inline-block;
}

.ir-hero-subtitle {
    font-size: 18px;
    color: var(--ir-text-dim);
    margin-bottom: 40px;
    max-width: 500px;
}

/* --- BOTÃO "FLASHY" PRINCIPAL (O elemento mais importante) --- */
.btn-ir-flashy {
    /* Gradiente chamativo usando as cores da marca */
    background: linear-gradient(45deg, var(--ir-primary), var(--ir-glow));
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    /* Sombra colorida intensa (Glow) */
    box-shadow: 0 10px 30px -5px rgba(138, 156, 112, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho passando pelo botão no hover */
.btn-ir-flashy::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: all 0.6s ease;
}

.btn-ir-flashy:hover::after { transform: rotate(45deg) translate(100%, 100%); }

.btn-ir-flashy:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(138, 156, 112, 0.7);
    color: #fff;
}

.btn-icon { font-size: 24px; }

/* Animação de pulsar constante no botão principal */
.cta-pulse { animation: btnPulse 2s infinite; }
@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(138, 156, 112, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(138, 156, 112, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 156, 112, 0); }
}

.secure-note { margin-top: 15px; font-size: 13px; color: var(--ir-text-dim); display: flex; align-items: center; gap: 8px; }

/* Divisor de Onda na parte inferior do Hero */
.ir-wave-divider {
    position: absolute;
    bottom: -1px; left: 0; width: 100%;
    overflow: hidden;
    line-height: 0;
}
.ir-wave-divider svg {
    position: relative; display: block; width: calc(130% + 1.3px); height: 80px;
}
/* A cor da onda deve combinar com a próxima seção (clara) */
.ir-wave-divider .shape-fill { fill: #f4f4f4; }


/* ================= 2. PAIN POINTS (CARDS INTERATIVOS) ================= */
.ir-pain-section {
    background-color: #f4f4f4; /* Fundo claro para contraste */
    padding: 100px 0;
    position: relative;
}

.section-header-ir { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.badge-alert {
    background: #1a2413;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 20px;
}
.section-header-ir h2 {
    font-size: 36px; color: var(--ir-bg-darker); margin-top: 15px; font-weight: 800;
}

.ir-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- CARDS COM EFEITO DE HOVER ELÁSTICO --- */
.interactive-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    /* Transição elástica */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-align: left;
}

.card-icon-glow {
    font-size: 32px; color: var(--ir-primary);
    margin-bottom: 25px;
    width: 70px; height: 70px;
    background: rgba(63, 80, 46, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.interactive-card h3 { font-size: 22px; color: var(--ir-bg-darker); margin-bottom: 15px; font-weight: 700; }
.interactive-card p { color: #666; line-height: 1.6; }

/* Hover States dos Cards */
.interactive-card:hover {
    transform: translateY(-15px) scale(1.03); /* Levanta e aumenta */
    box-shadow: 0 20px 50px rgba(63, 80, 46, 0.15);
    border-color: var(--ir-accent); /* Borda colorida aparece */
}
.interactive-card:hover .card-icon-glow {
    background: var(--ir-primary); color: var(--ir-accent); /* Ícone inverte cores */
    box-shadow: 0 0 20px rgba(63, 80, 46, 0.4); /* Ícone brilha */
}

/* Indicador sutil no rodapé do card */
.hover-indicator {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(to right, var(--ir-primary), var(--ir-accent));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.interactive-card:hover .hover-indicator { transform: scaleX(1); }


/* ================= 3. SOLUTION SECTION (TECH) ================= */
.ir-process-section {
    padding: 100px 0;
    /* Voltamos para o fundo escuro */
    background: var(--ir-bg-dark);
    color: var(--ir-text-light);
    position: relative;
    overflow: hidden;
}

/* Adiciona umas linhas de "circuito" no fundo */
.ir-process-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(224, 218, 206, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 218, 206, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-text h2 { font-size: 34px; font-weight: 800; margin-bottom: 20px; color: var(--ir-accent); }
.process-text p { font-size: 18px; color: var(--ir-text-dim); margin-bottom: 40px; }

.tech-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.tech-list li {
    display: flex; align-items: flex-start;
    margin-bottom: 25px;
    font-size: 16px; color: var(--ir-text-light);
}
.step-num {
    font-size: 24px; font-weight: 800; color: transparent;
    -webkit-text-stroke: 2px var(--ir-accent); /* Texto vazado */
    margin-right: 20px; line-height: 1;
}
.tech-list strong {
    color: var(--ir-accent);
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    margin-right: 30px;
}

/* Botão Outline Moderno */
.btn-ir-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 35px;
    border: 2px solid var(--ir-accent);
    color: var(--ir-accent);
    font-weight: 700; border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-ir-outline:hover {
    background: var(--ir-accent); color: var(--ir-primary);
    box-shadow: 0 0 25px rgba(224, 218, 206, 0.4);
    transform: translateX(5px);
}

/* Imagem flutuante */
.floating-tech-img { max-width: 100%; animation: floatImg 6s ease-in-out infinite; }
@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ================= 4. FINAL CTA ================= */
.ir-final-cta { padding: 80px 20px; background: #f4f4f4; margin-top: -1px; }

.final-box-glow {
    /* Caixa escura com super glow sobre o fundo claro */
    background: linear-gradient(135deg, var(--ir-primary), var(--ir-bg-dark));
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 60px rgba(63, 80, 46, 0.3);
    position: relative;
    overflow: hidden;
}
/* Efeito de luz passando pela caixa */
.final-box-glow::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotateLight 10s linear infinite;
}
@keyframes rotateLight { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.final-box-glow h2 { font-size: 32px; font-weight: 800; margin-bottom: 15px; position: relative; }
.final-box-glow p { font-size: 18px; color: var(--ir-text-dim); margin-bottom: 35px; position: relative; }


/* ================= RESPONSIVIDADE (MOBILE AGRESSIVO) ================= */
@media (max-width: 991px) {
    .hero-grid, .ir-cards-grid, .process-wrapper { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { order: -1; margin-bottom: 40px; }
    .irpf-svg-badge { width: 200px; height: 200px; }
    .hero-content h1 { font-size: 36px; }
    .cta-wrapper { display: flex; flex-direction: column; align-items: center; }
    
    .btn-full-mobile { width: 100%; justify-content: center; padding: 20px; }
    
    .tech-list li { flex-direction: column; align-items: center; text-align: center; }
    .step-num { margin: 0 0 10px 0; }
    
    .process-visual { display: none; /* Esconde imagem tech no mobile para ganhar espaço */ }
    
    .ir-wave-divider svg { height: 50px; } /* Onda menor no mobile */

    .btn-ir-flashy {
    background: linear-gradient(45deg, var(--ir-primary), var(--ir-glow));
    font-size: 11px;
    }
}


/* --- HEADLINE ANIMADA (ANO 2026) --- */
.ir-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(138, 156, 112, 0.15); /* Fundo verde translúcido */
    border: 1px solid var(--ir-glow);
    color: var(--ir-accent); /* Cor bege do texto */
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    /* Animação contínua na borda/fundo da pílula inteira */
    animation: subtleBadgePulse 3s infinite alternate;
}

.ir-year-badge i {
    color: var(--ir-text-light);
    font-size: 16px;
}

#year-counter {
    color: var(--ir-text-light); /* Fica branco para destacar */
    font-weight: 900;
    font-size: 18px;
    display: inline-block;
}

/* Animação suave para a caixinha inteira */
@keyframes subtleBadgePulse {
    0% { 
        box-shadow: 0 0 5px rgba(138, 156, 112, 0.2); 
        border-color: rgba(138, 156, 112, 0.5);
    }
    100% { 
        box-shadow: 0 0 18px rgba(138, 156, 112, 0.8); 
        border-color: var(--ir-glow);
    }
}

/* Animação contínua intensa SÓ no número (Adicionada via JS no fim da contagem) */
.year-active-pulse {
    animation: textGlowPulse 2s infinite alternate !important;
}

@keyframes textGlowPulse {
    0% { text-shadow: 0 0 5px rgba(224, 218, 206, 0.2); transform: scale(1); }
    100% { text-shadow: 0 0 20px rgba(224, 218, 206, 0.9), 0 0 30px rgba(138, 156, 112, 0.8); transform: scale(1.1); color: #fff;}
}


/* ==========================================================================
   MARCAS D'ÁGUA SVG (CR CONT) - IRPF LP
   ========================================================================== */
.ir-bg-logo {
    position: absolute;
    fill: var(--ir-accent); /* Puxa a cor bege do tema para harmonizar */
    opacity: 0.05;          /* Alpha muito sutil (5%) */
    pointer-events: none;   /* Garante que não interfira no clique */
    z-index: 0;
}

/* 1. Fundo Esmaecido no Topo */
.ir-bg-logo.top-left {
    top: -50px;
    left: -100px;
    width: 650px;
    transform: rotate(-15deg);
}

/* 2. Fundo Atrás da Receita Federal (Vaza um pouco para fora) */
.ir-bg-logo.center-badge {
    top: 50%;
    left: 50%;
    width: 140%; 
    transform: translate(-50%, -50%) rotate(-5deg);
    opacity: 0.08; /* Um tiquinho mais forte para dar destaque no miolo */
    z-index: 0;    /* Fica abaixo dos anéis (z-index: 1) e da Receita (z-index: 2) */
}

/* 3. Canto Inferior Direito */
.ir-bg-logo.bottom-right {
    bottom: -60px;
    right: -80px;
    width: 550px;
    transform: rotate(10deg);
}

/* Ajustes Mobile para não quebrar a tela */
@media (max-width: 991px) {
    .ir-bg-logo.top-left {
        width: 400px;
        left: -50px;
    }
    .ir-bg-logo.bottom-right {
        width: 350px;
        right: -30px;
        bottom: -30px;
    }
}

/* Ajustes Mobile para não quebrar a tela e ocultar elementos desnecessários */
@media (max-width: 991px) {
    .ir-bg-logo.top-left {
        width: 400px;
        left: -50px;
    }
    .ir-bg-logo.bottom-right {
        width: 350px;
        right: -30px;
        bottom: -30px;
    }
    
    /* Remove a logo de fundo (atrás do leão) no mobile para limpar o visual */
    .ir-bg-logo.center-badge {
        display: none !important;
    }
}