/*
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;
    margin-top: 50px; /* Separa do conteúdo acima */
}

/* 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: 50px !important; /* Menor no celular */
    }
}


/* --- 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;
}