/* 
 * Dogaweb - Exact Recreation (Clean Code) 
 * Author: Antigravity Agent
 */

:root {
    /* Cores Extraídas do Design */
    --blue-primary: #1E40AF;
    /* Azul forte dos botões e ícones (chute aproximado dos prints) */
    --blue-hover: #1e3a8a;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-dark-section: #565d66;
    /* Cinza azulado da seção de Marketing */
    --bg-gradient-stockmee: linear-gradient(180deg, #F0F4FF 0%, #a6bce4 100%);
    /* Gradiente suave */
    --bg-partners: #0a0a0a;
    /* Preto da barra de parceiros */

    /* Fontes */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilitários */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    /* Botões arredondados como no print */
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-blue {
    background-color: #2563EB;
    /* Azul vibrante */
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-blue:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.section {
    padding: 80px 0;
}

/* === HEADER === */
.site-header {
    background: white;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Container: Logo | Nav | Social+Hamburger */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Right side: Social icons + hamburger */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* Hamburger - hidden on desktop */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

/* Nav menu - horizontal on desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .site-header {
        height: auto;
        padding: 12px 0;
    }

    /* Stack: Logo row, then Social+Hamburger row */
    .header-container {
        flex-wrap: wrap;
    }

    /* Logo takes full width, centered */
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .header-logo-img {
        height: 38px !important;
    }

    /* Social + Hamburger row: full width, space-between */
    .header-right {
        width: 100%;
        justify-content: space-between;
        padding: 0 5px;
    }

    /* Show hamburger on mobile */
    .mobile-toggle {
        display: block;
    }

    /* Shrink social icons on mobile */
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .social-icons-header {
        gap: 8px;
    }

    /* Nav menu: hidden by default, opens below header */
    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        text-align: center;
        gap: 0;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-menu a:last-child,
    .nav-menu .dropdown {
        border-bottom: none;
    }

    .dropdown {
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #444;
}

.nav-menu a:hover {
    color: var(--blue-primary);
}

.nav-menu a.active {
    color: var(--blue-primary);
}

/* Ícones Sociais no Header - Estilo Impecável */
.social-icons-header {
    display: flex;
    gap: 12px;
    /* Espaço maior entre ícones */
    align-items: center;
}

.social-link {
    width: 38px;
    height: 38px;
    background-color: #1d4ed8;
    /* Azul vibrante sólido */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(29, 78, 216, 0.3);
    /* Sombra colorida suave */
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #2563eb;
    box-shadow: 0 10px 15px -3px rgba(29, 78, 216, 0.4);
}

/* Service Card Refinement */
.service-card {
    background: white;
    padding: 35px 25px;
    /* Mais respiro interno */
    border-radius: 16px;
    /* Bordas mais suaves */
    border: 1px solid #f1f5f9;
    /* Borda sutil */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #e2e8f0;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--blue-primary);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    /* Fundo azul bem clarinho no ícone */
    border-radius: 12px;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 40px;
    background-color: white;
    /* Cor base */

    /* Imagem de Fundo Real */
    background-image: url('../img/hero-bg.svg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    /* Ou contain, dependendo da imagem */

    /* Máscara Radial para Suavizar Bordas (Fade Out) */
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
    mask-image: radial-gradient(circle at center, black 20%, transparent 80%);

    text-align: center;
    overflow: hidden;
    /* Garante que nada vaze */
}

.hero-title h1 {
    font-size: 2.5rem;
    color: #0f172a;
    /* Slate 900 - Título Escuro Intenso */
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-small-text {
    font-size: 0.85rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto 4rem;
    line-height: 1.6;
    font-family: monospace;
    /* Destaque sutil tipo código */
}

/* Efeito Texto Vazado atrás do boneco */
.hero-visual {
    position: relative;
    height: 400px;
    /* Ajuste para caber o boneco */
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.outlined-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #cbd5e1;
    /* Borda cinza */
    white-space: nowrap;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-character-img {
    position: relative;
    z-index: 2;
    height: 420px;
    width: auto;
    filter: grayscale(100%);
    /* Personagem Preto e Branco */
    transition: filter 0.3s;
    /* Opcional: Efeito hover */
}

/* Opcional: Se quiser cor ao passar o mouse, descomente abaixo */
/* .hero-character-img:hover { filter: grayscale(0%); } */

/* Barra Parceiros */
.partners-bar {
    background-color: var(--bg-partners);
    padding: 20px 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    /* Garante que quebra linha no mobile se precisar */
}

.partner-logo {
    height: 60px;
    /* Aumentado de 40px para 60px */
    opacity: 0.6;
    filter: grayscale(100%) brightness(200%);
    /* Padrão Branco/Cinza */
    transition: all 0.3s ease;
    object-fit: contain;
    /* Garante que não distorça */
    width: auto;
    /* Mantém proporção */
}

.partners-grid a:hover .partner-logo {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
    /* Colorido Original no Hover */
    transform: scale(1.1);
    /* Ligeiro zoom */
}

/* Deixa logo branco */
.partners-footer-text {
    text-align: center;
    color: #666;
    /* Ajuste sutil para não ficar muito pesado maior */
    font-size: 0.85rem;
    /* Aumentado de 0.7rem */
    border-top: 1px solid #222;
    padding-top: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* === EXPERIENCE SECTION === */
.experience-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

/* Texto "Experience" cortado no fundo */
.experience-bg-text {
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    /* Deixa transparente para usar apenas o stroke ou opacidade baixa */
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    /* Opcional: estilo outline */
    fill: rgba(0, 0, 0, 0.05);
    /* Preenchimento muito leve */
    color: rgba(0, 0, 0, 0.05);
    /* Fallback simples: preto com 5% de opacidade */
    text-align: center;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
    letter-spacing: -5px;
}

.experience-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    /* Alinhado a esquerda como no print? Ou centro? Print parece esquerda o titulo, texto justificado */
}

.label-blue {
    color: var(--blue-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.experience-intro h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111;
}

.btn-experience {
    margin-top: 2rem;
}

/* === MARKETING SECTION (DARK) === */
.marketing-section {
    background-color: var(--bg-dark-section);
    color: white;
    text-align: center;
}

.marketing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.marketing-text {
    max-width: 800px;
    margin: 3rem auto 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #e2e8f0;
    text-align: left;
    /* Print mostra texto alinhado a esquerda ou justificado */
}

.marketing-text p {
    margin-bottom: 1rem;
}

/* === SERVICES SECTION === */
.services-section {
    background: #f8fafc;
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: var(--blue-primary);
    min-width: 40px;
}

.service-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.service-info p {
    font-size: 0.9rem;
    color: #666;
}

/* === WHY CHOOSE US (BUDGET) === */
.budget-section {
    background: white;
}

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

@media (max-width: 768px) {
    .budget-container {
        grid-template-columns: 1fr;
    }
}

.budget-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.budget-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.budget-feature-item.highlight {
    background-color: #DBEAFE;
    /* Azul claro destaque */
}

.icon-box-sq {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    /* Mais arredondado conforme print */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-box-sq.blue-bg {
    background-color: #1E40AF;
    /* Azul escuro sólido */
    color: white;
}

.icon-box-sq.light-bg {
    background-color: white;
    color: #2563EB;
    /* Icone azul */
    border: 1px solid #e2e8f0;
    /* Borda leve para destacar no branco */
}

/* === STOCKMEE & TOOLS === */
.stockmee-section {
    background: var(--bg-gradient-stockmee);
    padding-bottom: 60px;
    /* Mais espaço */
}

/* === ARTICLEFY SECTION (NOVO) === */
.articlefy-section {
    background: linear-gradient(180deg, #F7FEE7 0%, #ffffff 100%);
    /* Verde Limão (Lime-50) para Branco */
    padding-bottom: 60px;
    border-bottom: 1px solid #f0fdf4;
}

.btn-green {
    background-color: #65a30d;
    /* Lime-600 */
    color: white;
    box-shadow: 0 4px 6px rgba(101, 163, 13, 0.2);
}

.btn-green:hover {
    background-color: #4d7c0f;
    /* Lime-700 */
    transform: translateY(-2px);
}

.section-logo {
    height: 140px;
    /* Aumentado de 60px para 140px (> 2x) */
    width: auto;
    margin: 0 auto 30px;
    /* Mais espaço abaixo da logo grande */
    display: block;
    filter: none !important;
    /* Remove filtro cinza se herdar */
    opacity: 1 !important;
}

.tools-section {
    background: white;
    padding: 40px 0;
}

.tools-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.tool-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* === BLOG SECTION === */
.blog-preview-section {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-thumb {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.badge {
    background: #565d66;
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
    height: 3em;
    overflow: hidden;
}

.blog-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    height: 4.5em;
    overflow: hidden;
}

.read-more {
    font-weight: 700;
    color: var(--blue-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-meta {
    margin-top: 15px;
    font-size: 0.75rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* === NEWSLETTER BAR (DESIGN NOVO) === */
.newsletter-bar {
    background-color: #F3F4F6;
    /* Cinza bem claro/azulado */
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    font-size: 0.95rem;
    outline: none;
}

.btn-subscribe {
    background-color: #2563EB;
    /* Azul Royal */
    color: white;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-subscribe:hover {
    background-color: #1d4ed8;
}

/* === MAIN FOOTER (DESIGN NOVO) === */
.main-footer {
    background-color: #1F293B;
    /* Dark Slate Blue conforme print */
    color: #D1D5DB;
    /* Gray 300 */
    padding: 80px 0 40px;
    font-size: 0.95rem;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-left h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.footer-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.links-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #3b82f6;
    /* Azul vibrante dos links (conforme print e correcao) */
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.footer-links-list a::before {
    content: "•";
    color: #6B7280;
    /* Bullet cinza */
    font-size: 1.2em;
}

.footer-links-list a:hover {
    color: #60A5FA;
}

/* CTAs Row */
.footer-ctas-row {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    /* Alinhado com a esquerda da coluna direita */
    padding-top: 10px;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.cta-icon-circle {
    width: 55px;
    height: 55px;
    background-color: #22d3ee;
    /* Ciano vívido */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    /* Ícone preto */
    font-size: 1.4rem;
    transition: transform 0.2s;
}

.cta-item:hover .cta-icon-circle {
    transform: scale(1.05);
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #bbb;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.cta-text strong {
    color: #22d3ee;
    /* Texto match com ícone */
    font-size: 1.1rem;
    font-weight: 400;
}

/* Divisor e Bottom */
.footer-divider {
    height: 1px;
    background-color: #374151;
    /* Linha sutil */
    opacity: 0.5;
    margin: 40px 0;
}

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

.address {
    color: #D1D5DB;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.social-section h4 {
    color: #22d3ee;
    /* Cyan */
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 400;
}

.social-icons-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background-color: #2563EB;
    /* Azul Royal Sólido */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* === STATS SECTION === */
.stats-section {
    background-color: #f9fafb;
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563EB;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

@media (max-width: 600px) {
    .stats-grid {
        gap: 30px;
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* === NEW FOOTER (ORIGINAL DESIGN) === */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-col-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-bottom-links a {
    color: #9CA3AF;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #60A5FA;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons-footer {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

/* === WHATSAPP WIDGET === */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.wa-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.wa-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: waSlideUp 0.3s ease;
}

@keyframes waSlideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-chat-header {
    background: #075E54;
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-chat-header-info strong {
    display: block;
    font-size: 1rem;
}

.wa-chat-header-info span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 4px;
}

.wa-chat-body {
    padding: 16px;
    background: #ECE5DD;
}

.wa-chat-bubble {
    background: white;
    padding: 12px;
    border-radius: 0 8px 8px 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.wa-chat-bubble p {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
}

.wa-chat-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #999;
    margin-top: 4px;
}

.wa-chat-prompt {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.wa-chat-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wa-chat-option {
    display: block;
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #075E54;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: background 0.2s;
}

.wa-chat-option:hover {
    background: #f0fdf4;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-left {
        max-width: 100%;
    }

    .links-wrapper {
        justify-content: center;
        text-align: left;
    }

    .footer-ctas-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .div-mobile-toggle {
        /* Dummy selector for match */
    }
}
/* === BLOG POST CONTENT === */
.article-content a {
    color: #2563eb !important;
    text-decoration: underline;
    font-weight: 600;
}

.article-content a:hover {
    color: #1d4ed8 !important;
    text-decoration: none;
}
/* === SOBRE DOUGLAS SOUZA PAGE === */
.sobre-page details summary::-webkit-details-marker {
    display: none;
}
.sobre-page details[open] summary span {
    transform: rotate(180deg);
}
.sobre-page details summary {
    transition: all 0.3s ease;
}
.sobre-page details summary:hover {
    background-color: #f8fafc !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sobre-page section {
    animation: fadeIn 0.8s ease-out forwards;
}
