/*
Theme Name: Michelle Melo
Theme URI: https://michellemelo.com
Author: Michelle Melo Team
Author URI: https://michellemelo.com
Description: Tema personalizado para o site da Deputada Estadual Michelle Melo
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: michelle-melo
Tags: politics, modern, responsive
*/

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

body {
    font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);
    line-height: var(--line-height-body, 1.6);
    color: #333;
    background-color: #fff;
    font-size: var(--font-size-body, 1rem);
}

/* Variáveis de Cores */
:root {
    --menu-color: #4f2a84;
    --primary-color: #cf1e48;
    --primary-light: #6a3fa8;
    --accent-color: #cf1e48;
    --gray-bg: #f9fafb;
    --gray-text: #4b5563;
    --white: #ffffff;
    --black: #1a1a1a;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header */
.site-header {
    background-color: var(--color-menu-bg, var(--menu-color));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* ===== Header Right Group (Desktop: search + buttons) ===== */
.header-right-group {
    display: none;
}

@media (min-width: 1024px) {
    .header-right-group {
        display: flex;
        align-items: center;
        height: 100%;
        flex-shrink: 0;
        margin-left: auto;
    }
}

/* ===== Header Mobile Right (lupa + hamburger) ===== */
.header-mobile-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

@media (min-width: 1024px) {
    .header-mobile-right {
        display: none;
    }
}

.header-search-toggle-mobile {
    color: var(--color-menu-text, #ffffff);
}

/* ===== Header Search ===== */
.header-search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 0.5rem;
}

.header-search-toggle {
    background: none;
    border: none;
    color: var(--color-menu-text, #ffffff);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.8;
}

.header-search-toggle:hover {
    opacity: 1;
    background-color: rgba(255,255,255,0.1);
}

.header-search-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--color-menu-bg, #4f2a84);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.header-search-bar.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 540px;
    margin: 0 1.5rem;
    position: relative;
}

.header-search-input {
    width: 100%;
    padding: 0.65rem 2.8rem 0.65rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 2rem;
    background: rgba(255,255,255,0.12);
    color: var(--color-menu-text, #ffffff);
    font-size: 0.95rem;
    font-family: var(--font-body, sans-serif);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.header-search-input::placeholder {
    color: rgba(255,255,255,0.55);
}

.header-search-input:focus {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.18);
}

.header-search-submit {
    position: absolute;
    right: 2.8rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.header-search-submit:hover {
    color: #ffffff;
}

.header-search-close {
    position: absolute;
    right: 0.3rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.header-search-close:hover {
    color: #ffffff;
}

.header-search-close svg {
    width: 20px;
    height: 20px;
}

/* Search overlay backdrop */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .header-search-form {
        margin: 0 1rem;
    }
    
    .header-search-input {
        font-size: 0.875rem;
    }
}

.header-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    background-color: var(--color-menu-bg, var(--menu-color));
    min-height: 70px;
    height: 70px;
}

.header-content .site-logo {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    flex-shrink: 0;
    height: 100%;
}

.site-logo {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.site-logo-image {
    height: 50px;
    width: auto;
}

@media (min-width: 768px) {
    .site-logo-image {
        height: 60px;
    }
}

/* Menu Principal - Centro do Header */
.main-navigation-wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: 100%;
    }
    
    .main-navigation {
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
}

.main-navigation a {
    color: var(--color-menu-text, #ffffff);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--color-menu-text, #ffffff);
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.875rem;
    color: var(--color-menu-text, #ffffff);
    cursor: pointer;
    padding: 0.75rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Header Actions - Bloco de botões à direita */
.header-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

/* Header Action Button - Base styles */
.header-action-button {
    padding: 0 var(--menu-button-padding-horizontal, 25px);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    height: var(--menu-button-height, 70px);
    box-sizing: border-box;
    min-width: 130px;
}

/* Botão WhatsApp - Fale Comigo */
.header-action-whatsapp {
    background-color: var(--color-menu-button-bg);
    color: var(--color-menu-button-text);
    border-right: var(--menu-button-divider-width, 1px) solid var(--menu-button-divider-color, rgba(255, 255, 255, 0.3));
    min-width: var(--menu-button-width-top, 120px);
    border-top: var(--menu-button-border-width-top, 0) solid var(--color-menu-button-border-top, #ffffff);
    border-bottom: var(--menu-button-border-width-top, 0) solid var(--color-menu-button-border-top, #ffffff);
    border-left: var(--menu-button-border-width-top, 0) solid var(--color-menu-button-border-top, #ffffff);
}

.header-action-whatsapp:hover {
    background-color: var(--color-menu-button-bg-hover);
    color: var(--color-menu-button-text-hover);
}

/* Botão Social - Redes Sociais */
.header-action-social {
    background-color: var(--color-menu-button-bg-social);
    color: var(--color-menu-button-text-social);
    min-width: var(--menu-button-width-bottom, 120px);
    border-top: var(--menu-button-border-width-bottom, 0) solid var(--color-menu-button-border-bottom, #ffffff);
    border-bottom: var(--menu-button-border-width-bottom, 0) solid var(--color-menu-button-border-bottom, #ffffff);
    border-right: var(--menu-button-border-width-bottom, 0) solid var(--color-menu-button-border-bottom, #ffffff);
}

.header-action-social:hover {
    background-color: var(--color-menu-button-bg-social-hover);
    color: var(--color-menu-button-text-social-hover);
}

/* Legacy classes - mantidas para compatibilidade */
.menu-cta-button-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 0;
    height: 100%;
    flex-shrink: 0;
    align-self: stretch;
}

.menu-cta-button {
    padding: 0 var(--menu-button-padding-horizontal, 20px);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    height: 100%;
    box-sizing: border-box;
    min-width: var(--menu-button-width-top, 120px);
    align-self: stretch;
}

.menu-cta-top {
    background-color: var(--color-menu-button-bg);
    color: var(--color-menu-button-text);
    border-right: var(--menu-button-divider-width, 1px) solid var(--menu-button-divider-color, rgba(255, 255, 255, 0.3));
    min-width: var(--menu-button-width-top, 120px);
}

.menu-cta-top:hover {
    background-color: var(--color-menu-button-bg-hover);
    color: var(--color-menu-button-text-hover);
}

.menu-cta-bottom {
    background-color: var(--color-menu-button-bg-social);
    color: var(--color-menu-button-text-social);
    min-width: var(--menu-button-width-bottom, 120px);
}

.menu-cta-bottom:hover {
    background-color: var(--color-menu-button-bg-social-hover);
    color: var(--color-menu-button-text-social-hover);
}

/* Mobile CTA Wrapper */
.mobile-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

/* Mobile CTA Button */
.mobile-cta {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
    flex: none;
    border-radius: 0.5rem;
}

.mobile-cta:first-child {
    background-color: var(--color-menu-button-bg);
    color: var(--color-menu-button-text);
}

.mobile-cta:last-child {
    background-color: var(--color-menu-button-bg-social);
    color: var(--color-menu-button-text-social);
}

.mobile-navigation {
    display: none;
    padding: 1rem 0;
    background-color: var(--color-menu-bg, var(--menu-color));
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mobile-navigation a {
    color: var(--color-menu-text, #ffffff);
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.mobile-navigation a:hover {
    opacity: 0.8;
}

/* Mobile CTA Button in menu */
.mobile-navigation .menu-cta-button {
    display: flex;
    width: 100%;
    align-self: stretch;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding-top: 5rem;
    overflow: hidden;
    background-color: var(--color-hero-bg, #ec4899);
    color: var(--color-hero-text, #ffffff);
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 700px;
    }
}

/* Hero Slider */
.hero-slider-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.3);
    opacity: 1;
}

.hero-slider-arrow svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.hero-slider-prev {
    left: 1rem;
}

.hero-slider-next {
    right: 1rem;
}

.hero-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 0.5rem;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* Hide slider controls on mobile */
@media (max-width: 767px) {
    .hero-slider-arrow,
    .hero-slider-dots {
        display: none !important;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: var(--hero-overlay-color, transparent);
    opacity: calc(var(--hero-overlay-opacity, 0) / 100);
    z-index: 2;
}

.hero-content {
    position: absolute;
    z-index: 10;
    width: 100%;
    padding: 3rem 1rem;
    left: 0;
    right: 0;
}

/* Alinhamento vertical usando classes dinâmicas via JavaScript */
.hero-content[data-vertical="top"] {
    top: 0;
    bottom: auto;
}

.hero-content[data-vertical="center"] {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.hero-content[data-vertical="bottom"] {
    top: auto;
    bottom: 0;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 4rem 2rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

/* Alinhamento horizontal usando classes dinâmicas */
.hero-buttons[data-horizontal="left"] {
    justify-content: flex-start;
}

.hero-buttons[data-horizontal="center"] {
    justify-content: center;
}

.hero-buttons[data-horizontal="right"] {
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .hero-buttons {
        width: 100%;
    }
}

.hero-button {
    background-color: var(--color-button-primary-bg, #ec4899);
    color: var(--color-button-primary-text, #ffffff);
    padding: 1rem 2rem;
    border-radius: var(--button-border-radius, 9999px);
    font-weight: 700;
    font-size: var(--button-font-size, 1rem);
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
}

.hero-button:hover {
    background-color: var(--color-button-primary-hover-bg, #d61d7a);
    color: var(--color-button-primary-hover-text, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
    .hero-button {
        padding: 1.25rem 2.5rem;
    }
}

/* Section Base */
section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 7rem 0;
    }
}

.section-title {
    font-family: var(--section-title-font-family, var(--font-headings));
    font-size: var(--section-title-font-size-mobile, var(--font-size-h2));
    font-weight: var(--section-title-font-weight, 900);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--section-title-margin-bottom, 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--icon-gap, 0.75rem);
    letter-spacing: var(--section-title-letter-spacing, 0);
    line-height: var(--section-title-line-height, 1.2);
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-icon svg {
    width: var(--icon-size-mobile, 1.75rem);
    height: var(--icon-size-mobile, 1.75rem);
}

@media (min-width: 768px) {
    .section-title {
        font-size: var(--section-title-font-size, var(--font-size-h1));
    }
    
    .section-icon svg {
        width: var(--icon-size, 2rem);
        height: var(--icon-size, 2rem);
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    line-height: var(--line-height-headings, 1.2);
}

h1 {
    color: var(--h1-color, #1f2937);
    font-size: var(--h1-font-size, var(--font-size-h1));
    font-family: var(--h1-font-family, var(--font-headings));
    font-weight: var(--h1-font-weight, 700);
    letter-spacing: var(--h1-letter-spacing, 0);
    line-height: var(--h1-line-height, 1.2);
}

h2 {
    color: var(--h2-color, #1f2937);
    font-size: var(--h2-font-size, var(--font-size-h2));
    font-family: var(--h2-font-family, var(--font-headings));
    font-weight: var(--h2-font-weight, 700);
    letter-spacing: var(--h2-letter-spacing, 0);
    line-height: var(--h2-line-height, 1.2);
}

h3 {
    color: var(--h3-color, #1f2937);
    font-size: var(--h3-font-size, 1.5rem);
    font-family: var(--h3-font-family, var(--font-headings));
    font-weight: var(--h3-font-weight, 600);
    letter-spacing: var(--h3-letter-spacing, 0);
    line-height: var(--h3-line-height, 1.3);
}

p, li, span, a {
    font-size: var(--font-size-body);
}

/* Sobre Section */
.sobre-section {
    background-color: var(--color-sobre-bg);
    color: var(--color-sobre-text);
}

.sobre-section .section-title {
    color: var(--color-title-sobre);
}

.sobre-section .section-icon svg {
    color: var(--icon-color-sobre, #ec4899);
}

.sobre-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .sobre-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.sobre-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sobre-text p {
    font-size: 1.125rem;
    color: var(--gray-text);
    line-height: 1.75;
    text-align: justify;
}

.sobre-image {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    height: 24rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 20px 25px -5px rgba(79, 42, 132, 0.3);
}

@media (min-width: 768px) {
    .sobre-image {
        height: 28.125rem;
    }
}

/* Notícias Section */
.noticias-section {
    background-color: var(--color-noticias-bg);
    color: var(--color-noticias-text);
}

.noticias-section .section-title {
    color: var(--color-title-noticias);
}

.noticias-section .section-icon svg {
    color: var(--icon-color-noticias, #ec4899);
}

.noticias-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

.carousel-container {
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 0.5rem;
}

@media (min-width: 640px) {
    .carousel-slide {
        padding: 0 1rem;
    }
}

.noticia-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 56rem;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-8px);
}

@media (min-width: 768px) {
    .noticia-card {
        flex-direction: row;
    }
}

.noticia-image {
    width: 100%;
    height: 16rem;
    background: linear-gradient(135deg, var(--primary-color), #3a1f63);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    overflow: hidden;
    position: relative;
}

.noticia-image .noticia-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-image .noticia-placeholder {
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .noticia-image {
        width: 20rem;
        height: auto;
    }
}

.noticia-content {
    flex: 1;
    padding: 2rem 2.5rem;
}

.noticia-date {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.noticia-title {
    color: #111827;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .noticia-title {
        font-size: 1.25rem;
    }
}

.noticia-excerpt {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.noticia-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: gap 0.3s;
}

.noticia-link:hover {
    gap: 0.75rem;
}

.carousel-nav {
    display: none;
}

@media (min-width: 768px) {
    .carousel-nav {
        display: block;
    }
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.carousel-dot {
    height: 0.75rem;
    border-radius: 9999px;
    transition: all 0.3s;
    background-color: #d1d5db;
    width: 0.75rem;
    border: none;
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    width: 2rem;
    background-color: var(--primary-color);
}

/* Conquistas Section */
.conquistas-section {
    background-color: var(--color-conquistas-bg);
    color: var(--color-conquistas-text);
}

.conquistas-section .section-title {
    color: var(--color-title-conquistas);
}

.conquistas-section .section-icon svg {
    color: var(--icon-color-conquistas, #ffffff);
}

.conquistas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .conquistas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .conquistas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.conquista-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 160px;
}

@media (min-width: 768px) {
    .conquista-card {
        padding: 2rem 2.5rem;
        min-height: 200px;
    }
}

.conquista-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.conquista-card.conquista-card-link {
    cursor: pointer;
}

.conquista-card.conquista-card-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.conquista-numero {
    color: #FFFFFF;
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .conquista-numero {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) {
    .conquista-numero {
        font-size: 3.75rem;
        margin-bottom: 1rem;
    }
}

.conquista-texto {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .conquista-texto {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .conquista-texto {
        font-size: 1.125rem;
        line-height: 1.375;
    }
}

.conquista-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.conquista-card-link:hover .conquista-ver-mais {
    opacity: 1;
    transform: translateY(0);
}

.conquista-ver-mais svg {
    width: 16px;
    height: 16px;
}

/* Category Page */
.category-header {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
    margin-top: 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.category-background {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.category-title-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.category-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }
}

.category-description {
    font-size: 1.125rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.category-posts-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .posts-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.post-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .post-card {
        border-radius: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 42, 132, 0.2);
}

.post-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .post-image {
        height: 250px;
    }
}

.post-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-image-placeholder {
    text-align: center;
    padding: 1.5rem;
}

.post-content {
    padding: var(--post-card-padding, 1.5rem);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-date {
    color: #666;
    font-size: 0.875rem;
}

.post-category {
    background: #fbbf24;
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-title {
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .post-title {
        margin-bottom: 1rem;
    }
}

.post-title a {
    color: #2d2d2d;
    text-decoration: none;
    font-size: var(--post-card-title-font-size, 1.125rem);
    font-weight: 700;
    line-height: var(--post-card-title-line-height, 1.05);
    letter-spacing: var(--post-card-title-letter-spacing, 0);
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: #555;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .post-excerpt {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

.post-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.post-link:hover {
    gap: 0.75rem;
}

.post-link svg {
    width: 16px;
    height: 16px;
}

.no-posts {
    text-align: center;
    padding: 4rem 1.5rem;
    grid-column: 1 / -1;
}

.no-posts h3 {
    color: #2d2d2d;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.no-posts p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.button-primary {
    display: inline-block;
    background: var(--color-button-primary-bg);
    color: var(--color-button-primary-text);
    padding: 0.75rem 2rem;
    border-radius: var(--button-border-radius, 9999px);
    font-weight: 600;
    font-size: var(--button-font-size, 1rem);
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background: var(--color-button-primary-hover-bg, #d61d7a);
    color: var(--color-button-primary-hover-text, #ffffff);
    transform: translateY(-2px);
}

.pagination {
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--white);
}

.back-to-conquistas {
    padding: 2.5rem 0;
    text-align: center;
    background: var(--white);
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-button-secondary-bg);
    color: var(--color-button-secondary-text);
    border: 2px solid var(--color-button-secondary-text);
    padding: 0.75rem 2rem;
    border-radius: var(--button-border-radius, 9999px);
    font-weight: 600;
    font-size: var(--button-font-size, 1rem);
    text-decoration: none;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: var(--color-button-secondary-hover-bg, #ec4899);
    color: var(--color-button-secondary-hover-text, #ffffff);
}

.button-secondary svg {
    width: 18px;
    height: 18px;
}

/* Programas Section */
.programas-section {
    background-color: var(--color-programas-bg);
    color: var(--color-programas-text);
}

.programas-section .section-title {
    color: var(--color-title-programas);
}

.programas-section .section-icon svg {
    color: var(--icon-color-programas, #ec4899);
}

.programas-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .programas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.programa-card {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: block;
}

.programa-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.programa-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.programa-image {
    height: 16rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    position: relative;
}

.programa-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.programa-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

.programa-content {
    padding: 2.5rem;
}

.programa-title {
    font-family: var(--font-headings);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .programa-title {
        font-size: 1.875rem;
    }
}

.programa-description {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.75;
}

/* Contato Section */
.contato-section {
    background-color: var(--color-contato-bg);
    color: #FFFFFF;
    padding: 0;
}

.redes-sociais .redes-title {
    color: var(--color-title-contato);
}

.contato-grid {
    display: grid;
}

@media (min-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 320px;
    }
}

.redes-sociais {
    background-color: var(--gray-bg);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .redes-sociais {
        padding: 3.5rem 4rem;
    }
}

.redes-title {
    font-family: var(--font-headings);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .redes-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

.social-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 480px) {
    .social-icons {
        gap: 0.625rem;
    }
}

.social-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .social-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.5rem;
    }
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 480px) {
    .social-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.contato-info {
    background-color: var(--primary-color);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

@media (min-width: 768px) {
    .contato-info {
        padding: 3.5rem 4rem;
    }
}

.contato-title {
    font-family: var(--font-headings);
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    line-height: 1.5;
	
}

@media (min-width: 768px) {
    .contato-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

.whatsapp-button {
    background-color: var(--color-whatsapp-bg);
    color: var(--color-whatsapp-text);
    padding: 1rem 2rem;
    border-radius: var(--button-border-radius, 9999px);
    font-weight: 700;
    font-size: var(--button-font-size, 1rem);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .whatsapp-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }
}

.whatsapp-button .whatsapp-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.whatsapp-button .whatsapp-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--color-whatsapp-icon, currentColor);
}

.whatsapp-button:hover {
    background-color: var(--color-whatsapp-hover-bg, #ec4899);
    color: var(--color-whatsapp-hover-text, #ffffff);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Seções Personalizadas */
.secao-custom {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .secao-custom {
        padding: 7rem 0;
    }
}

.secao-custom-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .secao-custom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.secao-custom-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secao-custom-title {
    font-family: var(--font-headings);
    font-size: var(--font-size-h2);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .secao-custom-title {
        font-size: var(--font-size-h1);
    }
}

/* Vídeo Section */
.video-section {
    background-color: var(--color-video-bg, #ffffff);
    color: var(--color-video-text, #1f2937);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .video-section {
        padding: 6rem 0;
    }
}

.video-section .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.video-section .section-title {
    color: var(--color-title-video);
    margin-bottom: 1rem;
}

.video-section .section-icon svg {
    color: var(--icon-color-video, #ec4899);
}

.video-description {
    text-align: center;
    font-size: 1rem;
    color: inherit;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .video-description {
        font-size: 1.0625rem;
        margin-bottom: 2.5rem;
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
    .video-wrapper {
        border-radius: 1rem;
    }
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-error {
    text-align: center;
    color: #ef4444;
    font-weight: 600;
    padding: 2rem;
    background: #fee2e2;
    border-radius: 0.75rem;
}

.secao-custom-content {
    font-size: 1.125rem;
    line-height: 1.75;
}

.secao-custom-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.secao-custom-content ul,
.secao-custom-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.secao-custom-content li {
    margin-bottom: 0.5rem;
}

.secao-custom-image {
    height: 24rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .secao-custom-image {
        height: 28.125rem;
    }
}

.secao-custom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.secao-custom-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 2rem;
}

/* Layout: Imagem à esquerda */
.secao-custom-grid.imagem-esquerda .secao-custom-image {
    order: 1;
}

.secao-custom-grid.imagem-esquerda .secao-custom-text {
    order: 2;
}

/* Layout: Imagem à direita */
.secao-custom-grid.imagem-direita .secao-custom-text {
    order: 1;
}

.secao-custom-grid.imagem-direita .secao-custom-image {
    order: 2;
}

/* Single Post Page */
.single-post-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
    padding-bottom: 4rem;
}

/* Entry Title */
.entry-title {
    font-size: var(--font-size-entry-title, 2.5rem) !important;
    color: var(--color-entry-title, #ec4899) !important;
}

/* Footer */
.site-footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 0;
}

.site-footer p {
    opacity: 0.8;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* ===== Search Results Page ===== */
.search-results-page {
    padding-top: 110px;
    padding-bottom: 4rem;
    min-height: 70vh;
    background-color: var(--gray-bg);
}

.search-results-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.search-results-title {
    font-family: var(--font-headings);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-entry-title, #cf1e48);
    margin-bottom: 1.5rem;
}

.search-term {
    color: var(--color-menu-bg, #4f2a84);
}

.search-results-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.search-results-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 2rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s;
}

.search-results-input:focus {
    border-color: var(--color-menu-bg, #4f2a84);
}

.search-results-submit {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-button-primary-bg, #ec4899);
    color: var(--color-button-primary-text, #ffffff);
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-results-submit:hover {
    background-color: var(--color-button-primary-hover-bg, #d61d7a);
}

.search-results-count {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.search-result-item {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.search-result-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.search-result-thumb {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.search-result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.search-result-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-button-primary-bg, #ec4899);
}

.search-result-title {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.search-result-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
}

.search-result-title a:hover {
    color: var(--color-menu-bg, #4f2a84);
}

.search-result-excerpt {
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
}

.search-result-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-button-primary-bg, #ec4899);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: color 0.2s;
}

.search-result-link:hover {
    color: var(--color-button-primary-hover-bg, #d61d7a);
}

.search-no-results {
    text-align: center;
    padding: 4rem 1rem;
}

.search-no-results-icon {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.search-no-results h2 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 0.75rem;
}

.search-no-results p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.search-back-home {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--color-button-primary-bg, #ec4899);
    color: var(--color-button-primary-text, #ffffff);
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s;
}

.search-back-home:hover {
    background-color: var(--color-button-primary-hover-bg, #d61d7a);
}

.search-pagination {
    margin-top: 2.5rem;
    text-align: center;
}

.search-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.search-pagination a,
.search-pagination span {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.search-pagination a {
    background: #fff;
    color: #374151;
    border: 1px solid #e5e7eb;
}

.search-pagination a:hover {
    background-color: var(--color-button-primary-bg, #ec4899);
    color: #fff;
    border-color: var(--color-button-primary-bg, #ec4899);
}

.search-pagination .current {
    background-color: var(--color-button-primary-bg, #ec4899);
    color: #fff;
    border: 1px solid var(--color-button-primary-bg, #ec4899);
}

@media (max-width: 767px) {
    .search-result-item {
        flex-direction: column;
    }
    
    .search-result-thumb {
        width: 100%;
        height: 160px;
    }
    
    .search-results-title {
        font-size: 1.5rem;
    }
    
    .search-results-form {
        flex-direction: column;
}

/* Preservar espaçamento entre parágrafos no conteúdo dos posts */
.entry-content p,
.page-content p,
.secao-custom-content p {
    margin-bottom: 1.25em;
}

.entry-content p:last-child,
.page-content p:last-child,
.secao-custom-content p:last-child {
    margin-bottom: 0;
}

.entry-content br,
.page-content br,
.secao-custom-content br {
    display: block;
    content: "";
    margin-top: 0.5em;
}
}
