@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:wght@700;800&display=swap');

/* =================================
   1. PALETA DE CORES E VARIÁVEIS
   ================================= */
:root {
    --cor-primaria: #6d9bff;        /* Azul Claro Vibrante */
    --cor-primaria-hover: #5a8cff;  /* Azul mais escuro para hover */
    --cor-secundaria: #a37cff;      /* Roxo Suave */
    --cor-secundaria-hover: #8a2be2;
    
    --fundo-azul-suave: rgba(109, 155, 255, 0.08);
    --fundo-roxo-suave: rgba(163, 124, 255, 0.08);
    
    --cor-texto: #333;
    --cor-texto-suave: #666;
    --cor-fundo: #ffffff;
    --cor-borda: #eaeaea;
    
    --fonte-titulos: 'Poppins', sans-serif;
    --fonte-principal: 'Inter', sans-serif;
    
    --sombra-suave: 0 4px 15px rgba(0,0,0,0.05);
    --sombra-hover: 0 10px 25px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-principal);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 80px;  /* Espaço para o Header Fixo */
}

/* =================================
   2. TIPOGRAFIA
   ================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fonte-titulos);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--cor-texto);
}

p {
    margin-bottom: 1rem;
    color: var(--cor-texto-suave);
}

a {
    color: var(--cor-primaria);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cor-secundaria);
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* =================================
   3. LAYOUT E HEADER
   ================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    width: 100%;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cor-borda);
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* LOGO */
.logo {
    font-family: var(--fonte-titulos);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    text-decoration: none;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo .logo-blue { color: var(--cor-primaria); }
.logo .logo-white { color: #ccc; margin: 0 2px; }
.logo .logo-purple { color: var(--cor-secundaria); }

/* MENU DESKTOP */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    font-weight: 600;
    color: var(--cor-texto-suave);
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-primaria);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--cor-primaria);
}

/* =================================
   4. MENU MOBILE (HAMBÚRGUER)
   ================================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--cor-texto);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 2000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links a::after { display: none; }
}

/* =================================
   5. BOTÕES GERAIS
   ================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 155, 255, 0.3);
    text-align: center;
}

.btn:hover {
    background: var(--cor-primaria-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(109, 155, 255, 0.5);
    color: white;
}

.btn-secundario {
    background: var(--cor-secundaria);
    box-shadow: 0 4px 15px rgba(163, 124, 255, 0.3);
}

.btn-secundario:hover {
    background: var(--cor-secundaria-hover);
    box-shadow: 0 6px 20px rgba(163, 124, 255, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-ingressos {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.btn-cta-invertido {
    background: white;
    color: var(--cor-primaria);
}
.btn-cta-invertido:hover {
    background: #f0f0f0;
    color: var(--cor-secundaria);
}

/* =================================
   6. HERO SECTION (HOME)
   ================================= */
.hero-home {
    margin-top: -80px !important;
    padding-top: 160px;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('hero-orlando.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-content h1 .typewriter {
    display: block;
    color: #a78bfa;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-home {
        min-height: auto;
        padding-bottom: 4rem;
        background-attachment: scroll;
    }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}

/* =================================
   7. PÁGINAS INTERNAS & POSTS
   ================================= */
.page-header {
    margin-top: -80px;
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.page-header-blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.page-header-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.page-header-green { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- IMAGENS DE POST E BLOG --- */
.post-header {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
}

.post-content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transform: translateY(-80px);
    position: relative;
    z-index: 10;
}

/* Efeito Adesivo para Foto de Destaque dentro do Post */
.post-header-img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 12px;
    border: 8px solid #ffffff; 
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-1.5deg);
    margin-top: 1rem;
    margin-bottom: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.post-header-img:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 20px 45px -5px rgba(0, 0, 0, 0.35), 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Imagens gerais dentro do texto */
.post-content img:not(.post-header-img) {
    display: block;
    max-width: 100%;
    width: auto;
    max-height: 500px;
    height: auto;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    object-fit: contain;
}

.youtube-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

/* BREADCRUMBS */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}
.breadcrumbs a { font-weight: 600; }
.breadcrumbs .separator { margin: 0 8px; color: #ccc; }
.breadcrumbs .current { color: #999; }

/* =================================
   8. CABEÇALHO COM ADESIVOS (FOTO + ETIQUETA FOFA 3D)
   ================================= */

/* Container para alinhar os adesivos lado a lado */
.sticker-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    perspective: 1000px;
}

/* Adesivo 1: Foto Principal (SUPER DESTAQUE) */
.blog-author-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    
    /* CORREÇÃO: Borda Cinza Clara para destacar do fundo branco */
    border: 8px solid #e0e0e0; 
    
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),       
        0 0 0 1px rgba(0,0,0,0.05),
        0 25px 50px -12px rgba(109, 155, 255, 0.4);
        
    background-color: #fff;
    transform: rotate(-4deg) scale(1.05);
    margin: 0; 
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.blog-author-img:hover {
    transform: rotate(0deg) scale(1.15) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 30px 60px -12px rgba(109, 155, 255, 0.6);
    z-index: 10;
}

/* Adesivo 2: Selo Lateral (Pílula Fofa 3D) */
.sticker-badge {
    background: linear-gradient(135deg, #ffffff 30%, #f8f0ff 100%);
    color: var(--cor-secundaria);
    padding: 14px 28px;
    border-radius: 50px;
    
    font-family: var(--fonte-titulos);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    
    /* CORREÇÃO: Borda Cinza Clara */
    border: 6px solid #e0e0e0;
    
    box-shadow: 
        inset 0 -4px 8px rgba(163, 124, 255, 0.15),
        0 12px 25px rgba(163, 124, 255, 0.3);
    
    transform: rotate(6deg) skewX(-2deg);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: default;
}

.sticker-badge i {
    font-size: 1.4rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
}

.sticker-badge:hover {
    transform: scale(1.1) rotate(0deg);
    box-shadow: 
        inset 0 -2px 5px rgba(163, 124, 255, 0.1),
        0 18px 35px rgba(163, 124, 255, 0.4);
}


/* Ajuste para Mobile */
@media (max-width: 480px) {
    .sticker-header-container {
        gap: 15px;
    }
    .blog-author-img {
        width: 150px; height: 150px;
        border-width: 6px;
    }
    .sticker-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* =================================
   9. SEÇÕES GERAIS
   ================================= */
.stats {
    padding: 4rem 0;
    background: var(--fundo-azul-suave);
    text-align: center;
}

.stats .grid, .why-choose .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--cor-primaria);
    margin-bottom: 0;
}

.why-choose {
    padding: 5rem 0;
    text-align: center;
}

.why-card {
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--sombra-suave);
}

.why-card i {
    font-size: 3rem;
    color: var(--cor-primaria);
    margin-bottom: 1rem;
}

/* =================================
   10. GALERIA
   ================================= */
.gallery {
    padding: 4rem 0;
    background: #fafafa;
    text-align: center;
}

.gallery .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: var(--sombra-suave);
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--sombra-hover);
}

/* =================================
   11. CARDS (SERVIÇOS E BLOG LISTAGEM)
   ================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-grid, .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.card, .service-card, .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.card:hover, .service-card:hover, .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
    border-color: var(--cor-primaria);
}

/* Serviço Card */
.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
}
.service-card i {
    font-size: 3.5rem;
    color: var(--cor-primaria);
    margin-bottom: 1.5rem;
}

/* Blog Card Listagem - IMAGEM FIXA */
.blog-card img, .promo-card img {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    object-position: center;
}

.blog-card-content, .promo-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.blog-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--cor-texto);
    line-height: 1.4;
}

.blog-card-content .btn, .promo-card-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* =================================
   12. SEÇÕES ESPECIAIS (PROMOS)
   ================================= */
.blog-promo {
    padding: 5rem 0;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.blog-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .blog-promo-grid { grid-template-columns: 1fr; }
    .blog-promo-img { order: -1; }
}

.blog-promo-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s;
}
.blog-promo-img img:hover { transform: rotate(0deg) scale(1.02); }

.blog-tag {
    background: var(--cor-secundaria);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.checklist-promo {
    background: var(--cor-secundaria);
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.checklist-promo h2 { color: white; margin-bottom: 1rem; }
.checklist-promo p { color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 2rem; }

/* =================================
   13. DEPOIMENTOS E CTA
   ================================= */
.testimonials {
    padding: 5rem 0;
    background: var(--fundo-azul-suave);
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--sombra-suave);
}
.stars { color: #ffc107; margin-top: 0.5rem; }

.contact-cta-section {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}
.contact-cta-section h2 { color: white; }

/* =================================
   14. FOOTER
   ================================= */
footer {
    background: #f9f9f9;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #eee;
    color: var(--cor-texto-suave);
    font-size: 0.9rem;
}

.footer-links { margin-bottom: 1.5rem; }
.footer-links a { margin: 0 10px; color: #666; font-size: 0.9rem; }

.social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--cor-primaria);
    transition: all 0.3s;
}
.social a:hover { background: var(--cor-primaria); color: white; transform: translateY(-3px); }

/* =================================
   15. BOTÕES FLUTUANTES E POPUP
   ================================= */
.whatsapp-float, .consultor-float {
    position: fixed;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9990;
    transition: transform 0.3s;
}

.whatsapp-float { bottom: 20px; background: #25D366; }
.consultor-float { bottom: 90px; background: var(--cor-secundaria); }
.whatsapp-float:hover, .consultor-float:hover { transform: scale(1.1); }

.exit-popup {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.exit-popup-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
}

.exit-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =================================
   16. ANIMAÇÕES E EXTRAS
   ================================= */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sobre e Fundadores */
.founder-card-single {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--cor-borda);
    margin-bottom: 2rem;
}

.founder-img-together {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .founder-card-single { flex-direction: column; text-align: center; }
}

.form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--sombra-suave);
    margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--fonte-principal);
}
.form-textarea { min-height: 120px; resize: vertical; }

.attractions-header {
    margin-top: -80px; 
    padding-top: 120px;
    text-align: center;
    background: white;
    padding-bottom: 40px;
    box-shadow: var(--sombra-suave);
}
.main-logo-tia-ju {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 3px solid var(--cor-primaria);
    padding: 5px;
}
/* =================================
   FILTROS DO BLOG
   ================================= */
.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--cor-borda);
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--fonte-titulos);
    font-weight: 600;
    color: var(--cor-texto-suave);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--cor-primaria);
    color: var(--cor-primaria);
}

.filter-btn.active {
    background: var(--cor-primaria);
    border-color: var(--cor-primaria);
    color: white;
    box-shadow: 0 4px 10px rgba(109, 155, 255, 0.3);
}

/* Animação para esconder/mostrar */
.blog-card.hide {
    display: none;
}
.blog-card.show {
    animation: fadeIn 0.5s ease;
}