/*
Theme Name: MillaMello
Theme URI: https://kamila-mello.local
Author: Antigravity
Author URI: https://google.com
Description: Tema exclusivo para MillaMello (Personal Branding), focado em conversão e autoridade.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
*/

:root {
    --bg-color: #FDFBF7;
    /* Off-white / Marfim (Base) */
    --surface-color: #FFFFFF;
    /* White (Cards/Sections) */
    --text-primary: #333333;
    /* Cinza escuro */
    --text-secondary: #555555;
    /* Cinza médio */
    --accent-color: #2E5A52;
    /* Verde da marca */
    --gold-color: #C5A059;
    /* (Secondary used sparingly) */
    --border-color: #E5E5E5;
    --font-heading: 'Playfair Display', serif;
    /* Serif Elegante para Títulos */
    --font-body: 'Inter', sans-serif;
    /* Sans Limpa para Texto */
    --container-width: 1100px;
    --header-height: 80px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 600;
    /* Mais peso para autoridade */
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Muito respiro */

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: #FFF;
    font-family: var(--font-body);
    /* Sans serif no botão para leitura rápida */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid var(--accent-color);
    cursor: pointer;
    border-radius: 2px;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #FFF;
}

/* Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding: 0 40px;
    transition: all 0.3s ease;
}

/* Header Transparente (estado inicial na home) */
.site-header.header-transparent:not(.scrolled) {
    background: transparent;
    border-bottom: none;
}

.site-header.header-transparent:not(.scrolled) .site-title,
.site-header.header-transparent:not(.scrolled) .site-title a {
    color: #FFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.site-header.header-transparent:not(.scrolled) .main-navigation ul li a {
    color: #FFF;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.site-header.header-transparent:not(.scrolled) .main-navigation ul li:last-child a {
    box-shadow: none;
    border: 1px solid #FFF;
    background: transparent;
}

.site-header.header-transparent:not(.scrolled) .menu-toggle .hamburger,
.site-header.header-transparent:not(.scrolled) .menu-toggle .hamburger::before,
.site-header.header-transparent:not(.scrolled) .menu-toggle .hamburger::after {
    background: #FFF;
}

/* Header Scrolled (quando desce a página) */
.site-header.scrolled {
    background: rgba(253, 251, 247, 0.98);
    /* Fundo sólido de volta */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* No scrolled, a cor dos textos volta pro padrão automaticamente pelo :not(.header-transparent) */

/* DESTAQUE MENU: Último item vira botão (Área do Cliente) */
.main-navigation ul li:last-child a {
    background-color: var(--accent-color);
    color: #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(46, 90, 82, 0.2);
}

.main-navigation ul li:last-child a:hover {
    background-color: var(--gold-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(197, 160, 89, 0.3);
}

/* Ajuste para Barra do Admin WordPress */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    letter-spacing: 0;
    font-weight: 700;
    transition: color 0.3s;
}

/* Ajustes de Logo / Transições à Prova de Falhas */
.custom-logo-link img {
    max-width: 250px;
    height: auto;
    transition: opacity 0.3s ease;
}

/* 
  Estratégia Definitiva v2: 
  Aplica as regras diretamente nas tags <img> que inserimos no header.php.
  Isso ignora qualquer classe 'custom-logo-link' que o WP possa tentar sobrescrever.
*/

/* 1. Oculta TODAS as logos transparentes por padrão em todo o site */
.img-logo-transparent {
    display: none !important;
}

/* 2. Garante que a logo padrão colorida sempre apareça por padrão */
.img-logo-standard {
    display: block !important;
}

/* 3. Apenas quando o cabeçalho for transparente (Fundo de Imagem) E NÃO ROLADO, fazemos a troca */
.site-header.header-transparent:not(.scrolled) .img-logo-standard {
    display: none !important;
}

.site-header.header-transparent:not(.scrolled) .img-logo-transparent {
    display: block !important;
}

/* Fallback de layout */
.site-branding {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-navigation ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-color);
    /* Força o verde do site como cor base do menu (fundo claro) */
    transition: color 0.3s;
}

.main-navigation ul li a:hover {
    color: var(--accent-color) !important;
}

/* MENU TOGGLE (HAMBURGER) */
.menu-toggle {
    display: none;
    /* Esconde no desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 2000;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    left: 0;
    transition: 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger animado */
.menu-toggle.active .hamburger {
    background: transparent !important;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--text-primary);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--text-primary);
}


/* Estilos Mobile para Header e Menu */
@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
        height: 70px;
    }

    .custom-logo-link img {
        max-width: 150px;
    }

    .site-title {
        font-size: 1.4rem;
        /* Logo menor e 1 linha no mobile */
        white-space: nowrap;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #FDFBF7;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1500;
        padding-top: 80px;
    }

    .main-navigation.toggled {
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

    .main-navigation ul li a {
        font-size: 1.5rem;
        color: var(--text-primary) !important;
        /* força escuro qd aberto */
        text-shadow: none !important;
    }

    .main-navigation ul li:last-child a {
        display: inline-block;
        margin-top: 20px;
        background-color: var(--accent-color) !important;
        border: none !important;
        color: #FFFFFF !important;
        text-shadow: none !important;
    }

    .main-navigation ul li:last-child a:hover {
        background-color: var(--gold-color) !important;
    }

    body.no-scroll {
        overflow: hidden;
    }
}

.main-navigation a {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    position: relative;
    /* Necessário para o ::after */
    text-decoration: none;
}

/* Efeito Hover: Sublinhado que cresce */
.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Reset para o botão "Área do Cliente" (não ter sublinhado) */
.main-navigation ul li:last-child a::after {
    display: none;
}

/* Footer */
.site-footer {
    padding: 80px 0;
    background-color: #FFF;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

/* 
   Picu Integration Support 
*/
.picu-collection {
    background: var(--bg-color) !important;
    color: var(--text-primary) !important;
}

/* V5 HOVER CARDS (SERVICE AREAS) */
.area-card {
    position: relative;
    background: #FFF;
    border: 1px solid var(--border-color);
    text-align: left;
    overflow: hidden;
    height: 400px;
    transition: 0.3s;
    cursor: pointer;
}

/* Fix height and layout for cards */
.area-card {
    height: 480px;
    /* Aumentado para garantir espaço */
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #EEE;
}

.area-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.area-card:hover .area-image-bg {
    transform: scale(1.05);
}

.area-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    padding: 30px 25px;
    /* Ajuste para mostrar 2 linhas de descrição curta */
    min-height: 180px;
    transform: translateY(calc(100% - 130px));
    /* Sobe o suficiente para título + 2 linhas */
    border-top: 1px solid var(--border-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.area-card:hover .area-content {
    transform: translateY(0);
    background: rgba(46, 90, 82, 0.95);
    height: 100%;
    justify-content: center;
}

.area-card h3 {
    font-size: 1.35rem;
    /* Levemente menor para não quebrar tanto */
    margin-bottom: 12px;
    line-height: 1.2;
    transition: 0.3s;
    color: var(--accent-color);
}

.area-card:hover h3 {
    color: #FFF;
}

.short-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: block;
    transition: 0.3s;
    line-height: 1.4;
}

.area-card:hover .short-desc {
    color: rgba(255, 255, 255, 0.8);
    /* Manter visível ou trocar pela longa? Trocar pela longa. */
    display: none;
}

.long-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    display: none;
    opacity: 0;
    animation: fadeIn 0.4s forwards 0.1s;
}

.area-card:hover .long-desc {
    display: block;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* V6 PORTFOLIO STYLES */
.portfolio-clean-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* Tighter grid */
}

.portfolio-item-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
}

.portfolio-item-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    /* Semi-transparent white bar */
    padding: 12px 15px;
    text-align: left;
    transition: all 0.3s ease;
    transform: translateY(0);
    /* Always visible or small hover move? User requested line always there? */
    /* User said "tivesse uma pequena linha", implies permanent. Hover adds emphasis. */
}

.portfolio-caption strong {
    display: block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

/* Hover Effects Portfolio */
.portfolio-item-wrapper:hover img {
    transform: scale(1.03);
}

.portfolio-item-wrapper:hover .portfolio-caption {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade do Portfolio */
@media (max-width: 992px) {
    .portfolio-clean-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-clean-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-caption {
        /* No mobile muito pequeno, reduz o padding para caber o texto com folga */
        padding: 15px;
    }
}

/* 
   GUTENBERG / BLOCK EDITOR SUPPORT 
   Essencial para Grids e Galerias dentro dos posts
*/
.entry-content ul,
.entry-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.entry-content p {
    margin-bottom: 20px;
}

/* Galerias do WordPress - Estilo Imersivo */
.wp-block-gallery {
    margin-bottom: 60px;
}

.wp-block-gallery .blocks-gallery-item {
    margin-bottom: 15px;
}

.wp-block-gallery figcaption {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
    text-align: center;
    font-style: italic;
}

/* Imagens soltas no meio do texto */
.entry-content img {
    display: block;
    margin: 0 auto;
}

/* Blockquote para Depoimentos */
.wp-block-quote {
    border-left: none;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
}

.wp-block-quote cite {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Colunas do WordPress (Para criar layouts lado a lado) */
.wp-block-columns {
    margin-bottom: 40px;
    gap: 40px;
}

/* Imagens */
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
}

/* 
   RESTAURAÇÃO DE LAYOUT (HERO, PROCESSO, DIFERENCIAIS, CTA)
   Estes estilos garantem que a home tenha o visual correto.
*/

/* 1. HERO SECTION */
.hero-section {
    height: 95vh;
    display: flex;
    align-items: center;
    background-color: #EEE;
    background-size: cover;
    background-position: center top;
    /* Evita cortar rostos em telas estreitas */
    position: relative;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(253, 251, 247, 0.95) 0%, rgba(253, 251, 247, 0.85) 50%, rgba(253, 251, 247, 0.2) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 10%;
    color: var(--text-primary);
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 800;
    /* Mais peso como solicitado */
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
    /* Mais espaçamento entre as linhas */
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    /* Permitir quebra se necessário */
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-content {
        margin-left: 5%;
        max-width: 90%;
        /* Ajuste para botão ficar acima da dobra se o texto for longo */
        padding-top: 40px;
    }

    .hero-buttons .btn {
        width: 100%;
        /* Botão largo no mobile */
        text-align: center;
    }
}

/* 2. SOBRE */
.about-split {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
}

.about-img {
    flex: 1;
    width: 100%;
}

.about-text {
    flex: 1;
    width: 100%;
}

.about-img img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Toque de elegância extra */
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-split {
        display: block !important;
        /* MATA O FLEXBOX AQUI */
        width: 100% !important;
        padding: 40px 15px !important;
    }

    .about-img {
        display: block !important;
        width: 100% !important;
        float: none !important;
        margin: 0 auto 30px auto !important;
    }

    .about-img img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .about-text {
        display: block !important;
        width: 100% !important;
        float: none !important;
        padding: 0 !important;
    }
}

/* 3. ÁREAS */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. PROCESSO */
#processo {
    background-color: #FDFBF7;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-item {
    position: relative;
    padding-top: 20px;
}

.process-item .step-num {
    font-size: 4rem;
    color: rgba(46, 90, 82, 0.1);
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 0;
}

.process-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 6. DIFERENCIAIS */
.differentials-section {
    background-color: var(--accent-color);
    color: #FFF;
    padding: 80px 0;
    text-align: center;
}

.differentials-section h2 {
    color: #FFF;
    margin-bottom: 50px;
}

.diff-list {
    display: flex;
    flex-wrap: wrap;
    /* Permite quebrar linha se necessário */
    justify-content: center;
    /* Centraliza tudo */
    gap: 30px;
    /* Espaço suficiente, mas não exagerado */
    max-width: 1200px;
    /* Aumentar um pouco para caber todos */
    margin: 0 auto;
}

.diff-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.diff-item span {
    color: var(--gold-color);
    font-size: 1.2rem;
}

/* 7. CTA FINAL */
.cta-final {
    padding: 60px 0;
    /* Espaço reduzido para melhor proximidade */
    text-align: center;
    background-color: #FDFBF7;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   LAYOUT SINGLE POST (PORTFOLIO)
   ========================================= */

.single .entry-header {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.single .entry-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    line-height: 1.1;
    font-weight: 600;
}

/* Ajuste Mobile para Título */
@media (max-width: 768px) {
    .single .entry-title {
        font-size: 2.2rem;
    }

    .single .entry-header {
        padding-top: 100px;
        padding-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.single .entry-content {
    max-width: 1200px;
    /* Mais largo para fotos */
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.project-hero-image {
    margin-bottom: 60px;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

/* Navegação entre Projetos */
.post-navigation {
    max-width: 800px;
    margin: 100px auto 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #999;
}

.post-navigation a {
    color: #999;
    font-weight: 400;
}

.post-navigation strong {
    display: block;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 5px;
    font-family: var(--font-heading);
    text-transform: none;
    font-weight: 600;
}

.post-navigation .sep {
    font-size: 1.5rem;
    color: var(--border-color);
}

/* =========================================
   FOOTER STYLE FIXES
   ========================================= */

.site-footer {
    position: relative;
    z-index: 100 !important;
    /* Forces layer above */
    background-color: #FDFBF7;
}

/* Estilo para links sociais */
.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    /* FORÇAR INTERATIVIDADE */
    cursor: pointer !important;
    position: relative;
    z-index: 10000;
    /* Garante que fique acima de tudo */
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links svg,
.footer-col ul li a svg {
    stroke: var(--accent-color);
    transition: 0.3s;
    pointer-events: none;
    /* Garante que o clique vá para o link, não para o SVG */
}

/* Filtros de Portfólio - Botões */
.portfolio-filters {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: #FFF;
    box-shadow: 0 4px 10px rgba(46, 90, 82, 0.2);
}

.social-links a:hover svg {
    stroke: var(--text-primary);
}