/* ===== VARIÁVEIS DE COR ===== */
:root {
    --primary-teal: #1B3B2B; /* Verde Floresta Escuro (nome mantido para não quebrar o layout) */
    --gold: #C5A059;         /* Dourado */
    --light-bg: #F9F6F0;     /* Creme/Off-White */
    --dark-text: #1C2E35;    /* Texto Escuro */
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { background-color: var(--light-bg); color: var(--dark-text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, .logo { font-family: 'Montserrat', sans-serif; }
img { max-width: 100%; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

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

/* ===== WHATSAPP FLUTUANTE (MENOR E DISCRETO) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px; 
    height: 55px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}
.btn-primary { background-color: var(--gold); color: var(--white); }
.btn-primary.dark-text { color: var(--dark-text); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4); }

/* ===== NAVBAR ===== */
.main-header {
    background-color: var(--primary-teal);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--white); font-weight: 900; font-size: 1.2rem; line-height: 1.2; }
.logo span { color: var(--gold); font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.nav-menu { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 10px 20px; }
.nav-menu a { color: var(--white); text-decoration: none; margin-left: 0; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.btn-nav { background-color: var(--gold); padding: 8px 16px; border-radius: 5px; color: var(--dark-text) !important; font-weight: 700; }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 100px 0 150px 0;
}
.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-content {
    flex: 1.2;
    text-align: left;
}
.hero-content h1 {
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content .subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}
.hero-content .hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}
.hero-image-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-logo {
    width: auto;
    max-width: min(100%, 440px);
    max-height: 520px;
    object-fit: contain;
}
.wave-bottom, .wave-top { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 3; }
.wave-bottom { bottom: -1px; }
.wave-top { top: -1px; }
.wave-bottom svg, .wave-top svg { display: block; width: 100%; height: 80px; }

/* ===== PROVA SOCIAL ===== */
.social-proof-section { background-color: var(--white); margin-top: -60px; position: relative; z-index: 10; padding: 40px 0; border-radius: 12px; width: 80%; margin-left: auto; margin-right: auto; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.social-proof-container { display: flex; justify-content: space-around; text-align: center; }
.proof-item h3 { color: var(--gold); font-size: 2.2rem; }
.proof-item p { font-weight: 600; color: var(--primary-teal); font-size: 0.95rem; }

/* ===== ÁREAS DE ATUAÇÃO ===== */
.atuacao-section { padding: 80px 0; }
.section-title { color: var(--primary-teal); font-size: 2.2rem; margin-bottom: 10px; }
.section-subtitle { font-size: 1.1rem; margin-bottom: 50px; color: #4a6875; }
.text-center { text-align: center; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.glass-card { background: var(--white); padding: 35px 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.05); }
.glass-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.card-icon { font-size: 2rem; color: var(--gold); margin-bottom: 15px; }
.glass-card h3 { color: var(--primary-teal); margin-bottom: 10px; font-size: 1.25rem; }

/* ===== SIMPLES NACIONAL DESTAQUE ===== */
.simples-destaque { background-color: var(--white); padding: 60px 0; border-top: 2px solid rgba(197, 160, 89, 0.2); border-bottom: 2px solid rgba(197, 160, 89, 0.2); }
.simples-destaque h2 { color: var(--primary-teal); font-size: 2rem; margin-bottom: 20px; }
.simples-destaque p { margin-bottom: 30px; font-size: 1.1rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ===== MÉTODO FÊNIX ===== */
.metodo-fenix { position: relative; background-color: var(--primary-teal); color: var(--white); padding: 120px 0; }
.metodo-container { position: relative; z-index: 5; }
.light-title { color: var(--gold); font-size: 2.4rem; margin-bottom: 15px; }
.metodo-sub { margin-bottom: 40px; font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.pilares { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.badge { background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 12px 24px; border-radius: 30px; font-weight: 600; font-size: 1rem; }

/* Ajustes finos nos cards */
.blog-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    min-width: 320px; /* Crucial para o funcionamento do Slider horizontal */
    max-width: 340px;
    scroll-snap-align: start;
}
.blog-card-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--light-bg);
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-tag { background-color: rgba(197, 160, 89, 0.15); color: var(--primary-teal); padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; align-self: flex-start;}
.blog-card h3 { margin: 15px 0 10px 0; font-size: 1.15rem; color: var(--dark-text); line-height: 1.4; min-height: 48px; }
.card-excerpt { font-size: 0.9rem; color: #555; margin-bottom: 20px; flex-grow: 1; line-height: 1.5; }
.read-more { color: var(--gold); text-decoration: none; font-weight: 700; align-self: flex-start;}
.blog-archive-link { margin-top: 40px; }

/* Estilo das Setas Laterais */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-teal);
    color: var(--white);
    border: 2px solid var(--gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.slider-arrow:hover { background: var(--gold); color: var(--dark-text); }
.slider-arrow:disabled { opacity: 0.45; cursor: not-allowed; }
.slider-arrow:disabled:hover { background: var(--primary-teal); color: var(--white); transform: translateY(-50%); }
.slider-arrow.left { left: -5px; }
.slider-arrow.right { right: -5px; }

/* --- BLOG PAGE HEADER & SINGLE POST --- */
.blog-header { background-color: var(--primary-teal); color: var(--white); padding: 60px 0; }
.blog-header h1 { font-size: 2.8rem; margin-bottom: 15px; color: var(--gold); }
.blog-header p { font-size: 1.2rem; opacity: 0.9; }
.blog-archive-section { padding: 40px 0 100px; }
.single-post { padding: 60px 0 100px 0; background-color: var(--white); }
.post-container { max-width: 800px; margin: 0 auto; }
.post-header { margin-bottom: 40px; text-align: center; border-bottom: 1px solid #eee; padding-bottom: 30px;}
.post-title { font-size: 2.4rem; color: var(--primary-teal); margin: 15px 0; line-height: 1.3;}
.post-subtitle { max-width: 700px; margin: 0 auto 16px; color: #555; font-size: 1.1rem; line-height: 1.6; }
.post-meta { font-size: 0.9rem; color: #777; }
.post-content .post-lead { font-size: 1.2rem; color: var(--primary-teal); line-height: 1.7; text-align: left; }
.post-content h2 { color: var(--primary-teal); font-size: 1.6rem; margin: 40px 0 20px 0; }
.post-content h3 { color: var(--gold); font-size: 1.25rem; margin: 25px 0 15px 0; }
.post-content p { font-size: 1.1rem; color: #333; margin-bottom: 20px; line-height: 1.8; text-align: justify; }
.post-content ul, .post-content ol { margin: 0 0 20px 30px; font-size: 1.1rem; color: #333; line-height: 1.8;}
.post-content li { margin-bottom: 10px; }
.post-content blockquote { font-size: 1.25rem; font-style: italic; color: var(--primary-teal); border-left: 4px solid var(--gold); padding: 20px; margin: 40px 0; background-color: var(--light-bg); }
.post-author-signature { margin-top: 40px; padding-top: 24px; border-top: 1px solid #eee; }
.post-cta { margin-top: 60px; background-color: var(--light-bg); padding: 40px; border-radius: 12px; text-align: center; border: 1px solid #eaeaea;}
.post-cta p { font-weight: 600; margin-bottom: 15px; color: var(--primary-teal);}
.post-table-wrap { overflow-x: auto; margin: 35px 0 45px; }
.post-table { width: 100%; min-width: 650px; border-collapse: collapse; font-size: 1rem; color: #333; background-color: var(--white); }
.post-table th, .post-table td { padding: 14px 16px; border: 1px solid #ddd; text-align: left; vertical-align: top; line-height: 1.55; }
.post-table thead th { background-color: var(--primary-teal); color: var(--white); font-weight: 700; }
.post-table tbody th { color: var(--primary-teal); font-weight: 700; background-color: #faf8f3; }
.post-table tbody tr:nth-child(even) td { background-color: #faf8f3; }

/* ===== FEEDS SOCIAIS ===== */
.feed-section { background-color: var(--white); padding: 80px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.portal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.portal-column { background: var(--light-bg); border-radius: 12px; padding: 20px; }
.portal-column h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 1.1rem; }
.color-yt { color: #FF0000; } .color-ig { color: #E1306C; } .color-li { color: #0077B5; }
.video-ratio iframe { width: 100%; height: 200px; border-radius: 8px; }
.ig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ig-item img { width: 100%; height: 100px; border-radius: 8px; object-fit: cover; }
.li-card-preview { background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.li-card-preview h4 { color: var(--primary-teal); margin-bottom: 10px; }
.btn-link { color: var(--gold); text-decoration: none; font-weight: 700; display: inline-block; margin-top: 10px; }

.social-feed-list { display: grid; gap: 14px; }
.social-feed-card { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 12px; background: var(--white); border-radius: 10px; padding: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); min-width: 0; }
.social-feed-card-media { display: block; overflow: hidden; border-radius: 7px; background: #e9e5dd; aspect-ratio: 16 / 9; }
.social-feed-card-instagram .social-feed-card-media { aspect-ratio: 1 / 1; }
.social-feed-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.social-feed-card-body { min-width: 0; }
.social-feed-card-type { display: block; color: #7b7b7b; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.social-feed-card h4 { margin: 0 0 6px; color: var(--primary-teal); font-size: 0.95rem; line-height: 1.3; }
.social-feed-card h4 a { color: inherit; text-decoration: none; }
.social-feed-card h4 a:hover { text-decoration: underline; }
.social-feed-card p { color: #555; font-size: 0.8rem; line-height: 1.35; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.feed-loading { color: #6f6f6f; font-size: 0.9rem; padding: 20px 0; }
.social-feed-fallback { min-height: 92px; }

/* ===== SOBRE A DRA. SUIANE ===== */
.about-section { background-color: var(--light-bg); padding: 80px 0; }
.about-container { display: flex; align-items: center; gap: 50px; }
.about-text { flex: 1; }
.about-text h2 { font-size: 3.0rem; color: var(--primary-teal); margin-bottom: 20px; }
.badges-wrapper { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-badge { background-color: var(--primary-teal); color: var(--white); padding: 8px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; }
.about-photo-wrapper { flex: 1; display: flex; justify-content: center; }
.about-suiane-img {
    display: block;
    width: min(100%, 520px);
    height: auto;
    aspect-ratio: 1068 / 1600;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== LOCALIZAÇÃO E MAPA ===== */
.location-section { background-color: var(--white); padding: 80px 0; }
.location-container { display: flex; align-items: stretch; gap: 40px; }
.location-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.location-info h2 { color: var(--primary-teal); font-size: 2.2rem; margin-bottom: 15px; }
.address { font-size: 1.1rem; margin-bottom: 30px; }
.review-box { background-color: var(--light-bg); padding: 30px; border-radius: 12px; }
.btn-review { display: inline-block; margin: 20px 0; }
.qrcode-container-dotted { display: flex; align-items: center; gap: 15px; border: 2px dashed var(--primary-teal); padding: 15px; border-radius: 12px; background-color: var(--white); margin-top: 10px; }
.google-qrcode-img { width: 80px; height: 80px; object-fit: contain; }
.qrcode-label { font-size: 0.95rem; color: var(--dark-text); font-weight: 600; line-height: 1.3; }
.location-map { flex: 1; border-radius: 12px; overflow: hidden; min-height: 400px; }

/* ===== FOOTER ===== */
.main-footer { background-color: var(--primary-teal); color: var(--white); padding: 50px 0; text-align: center; }
.footer-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { height: 90px; object-fit: contain; }
.footer-socials a { color: var(--gold); font-size: 1.5rem; margin: 0 10px; transition: transform 0.3s; }
.footer-socials a:hover { transform: scale(1.2); }
.footer-copy { font-size: 0.85rem; opacity: 0.8; }

/* ===== FALLBACK PARA FEEDS EXTERNOS ===== */
.portal-fallback {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(27, 59, 43, 0.12);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-text);
}
.portal-fallback p { font-size: 0.92rem; }
.portal-fallback a { color: var(--primary-teal); font-weight: 700; }

/* ===== PÁGINA DE IMPACTO SOCIAL ===== */
.impacto-header { background-color: var(--primary-teal); color: var(--white); padding: 80px 0; text-align: center; }
.impacto-header h1 { color: var(--gold); font-size: 3rem; margin-bottom: 15px; }
.impacto-header p { font-size: 1.25rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }
.social-action-section { padding: 80px 0; background-color: var(--white); }
.impacto-grid { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.impacto-image-wrapper, .impacto-text { flex: 1 1 320px; min-width: 0; }
.impacto-image-wrapper img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); object-fit: cover; }
.impacto-text .blog-tag { display: inline-block; margin-bottom: 15px; }
.impacto-text h2 { font-size: 2.2rem; color: var(--primary-teal); margin-bottom: 25px; line-height: 1.2; }
.impacto-copy { font-size: 1.1rem; color: #444; line-height: 1.8; }
.impacto-copy p { margin-bottom: 15px; }
.impacto-copy blockquote { font-size: 1.2rem; font-style: italic; color: var(--primary-teal); border-left: 4px solid var(--gold); padding: 20px; margin: 30px 0; background-color: var(--light-bg); border-radius: 0 8px 8px 0; }
.youtube-empowerment-section { padding: 80px 0; background-color: var(--light-bg); border-top: 2px solid rgba(197, 160, 89, 0.2); }
.youtube-content { max-width: 800px; margin: 0 auto; }
.youtube-icon { font-size: 3rem; color: var(--gold); margin-bottom: 20px; }
.youtube-empowerment-section h2 { font-size: 2.2rem; color: var(--primary-teal); margin-bottom: 20px; }
.youtube-empowerment-section p { font-size: 1.15rem; color: var(--dark-text); margin-bottom: 40px; }
.youtube-link { font-size: 1.1rem; padding: 16px 32px; display: inline-flex; align-items: center; gap: 10px; background-color: #FF0000; color: white; }
.youtube-link i { font-size: 1.3rem; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .header-container { flex-direction: column; gap: 15px; }
    .nav-menu { justify-content: center; gap: 8px 12px; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-content { text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-img-logo { max-width: 360px; max-height: 420px; }
    .social-proof-container { flex-direction: column; gap: 20px; }
    .portal-grid { grid-template-columns: 1fr; }
    .about-container, .location-container { flex-direction: column; text-align: center; }
    .qrcode-container-dotted { justify-content: center; text-align: left; }
    .post-title { font-size: 2rem; }
    .post-subtitle { font-size: 1rem; }
}

/* ===== CONFIGURAÇÃO DO SLIDER HORIZONTAL (HOME) ===== */
.blog-slider-outer { 
    position: relative; 
    width: 100%; 
    display: flex; 
    align-items: center; 
    padding: 0 40px; 
}
.grid-blog.slider-mode {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 25px 5px;
    -ms-overflow-style: none; 
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.grid-blog.slider-mode::-webkit-scrollbar { display: none; }

/* ===== CONFIGURAÇÃO DO GRID 3x3 (PÁGINA DO BLOG) ===== */
.grid-blog.grid-layout {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    width: 100%;
}
.grid-blog.grid-layout .blog-card {
    /* Libera a largura para que os cards preencham as 3 colunas perfeitamente */
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* --- AJUSTE DEFINITIVO DE IMAGENS DO POST (PROPORCIONAIS E CENTRALIZADAS) --- */
.post-featured-image-wrap, 
.poem-image-wrapper {
    display: flex;
    justify-content: center; /* Centraliza a imagem horizontalmente */
    align-items: center;
    width: 100%;
    margin: 40px auto; /* Dá um excelente respiro em relação ao texto */
}

.post-featured-image, 
.poem-image-wrapper img {
    max-width: 100% !important;
    max-height: 520px !important; /* Trava de segurança: impede que imagens fiquem gigantescas na vertical */
    width: auto !important; /* Mantém a largura proporcional à altura travada */
    height: auto !important; /* Mantém a proporção nativa sem distorcer ou esticar */
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    display: block;
}

/* Ajuste específico caso a imagem usada seja a logo transparente de fallback */
.post-featured-image[src*="logo"] {
    object-fit: contain;
    padding: 30px;
    background-color: var(--primary-teal);
    width: 100% !important;
    height: 250px !important;
}

/* ===== OTIMIZAÇÃO PARA MOBILE (RESPONSIVIDADE COMPLETA) ===== */
@media (max-width: 992px) {
    /* Em tablets, a página do blog vira 2 colunas */
    .grid-blog.grid-layout {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    html { scroll-padding-top: 210px; }
    .container { width: calc(100% - 32px); }
    .main-header { padding: 14px 0; }
    .header-container { gap: 12px; }
    .nav-menu { width: 100%; gap: 8px 10px; }
    .nav-menu a { font-size: 0.84rem; }
    .btn-nav { width: 100%; text-align: center; }
    .hero-section { padding: 48px 0 110px; }
    .hero-content h1 { font-size: clamp(2rem, 9vw, 2.35rem); }
    .hero-content .subtitle { font-size: 1.05rem; }
    .hero-content .hero-description { font-size: 1rem; margin-bottom: 26px; }
    .hero-img-logo { max-width: 250px; max-height: 315px; }
    .social-proof-section { width: calc(100% - 32px); }
    .section-title { font-size: 1.85rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .cards-grid { grid-template-columns: 1fr; }
    .post-content p, .post-content ul, .post-content ol { text-align: left; font-size: 1rem; }
    .post-content .post-lead { font-size: 1.08rem; }
    .post-content blockquote { font-size: 1.05rem; }
    .post-cta { padding: 26px 20px; }
    .post-table { font-size: 0.92rem; }
    .impacto-header, .social-action-section, .youtube-empowerment-section { padding: 52px 0; }
    .impacto-header h1 { font-size: 2.15rem; }
    .impacto-header p { font-size: 1.05rem; }
    .impacto-grid { gap: 30px; }
    .impacto-text h2, .youtube-empowerment-section h2 { font-size: 1.8rem; }
    .impacto-copy { font-size: 1rem; }
    .youtube-empowerment-section p { font-size: 1rem; }
    .youtube-link { width: 100%; justify-content: center; padding: 14px 18px; }
    .social-feed-card { grid-template-columns: 96px minmax(0, 1fr); }
    /* No celular, o blog vira 1 coluna debaixo da outra */
    .grid-blog.grid-layout {
        grid-template-columns: 1fr !important;
    }
    /* Esconde as setas e ajusta padding para o arrastar com dedo */
    .blog-slider-outer {
        padding: 0 !important;
    }
    .slider-arrow {
        display: none !important;
    }
    .grid-blog.slider-mode {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
