:root {
    --primary: #601f4a;
    --primary-dark: #4a1838;
    --primary-light: #7d2f5f;
    --secondary: #8b4a6b;
    --secondary-light: #e8d4e0;
    --accent: #c99a8b;
    --bg-light: #faf8f9;
    --surface-white: #ffffff;
    --text-main: #1a0e15;
    --text-muted: #665a6f;
    --border-color: #f0e8eb;
    --white: #ffffff;
    --black: #000000;
    --font-display: 'Epilogue', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --container-width: 1200px;
    --header-height: 120px;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-soft: 0 4px 20px -2px rgba(96, 31, 74, 0.15);
}* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--primary);
}

/* Tamanhos progressivos para headings */
h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.125rem; font-weight: 600; }
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}
ul {
    list-style: none;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.text-gradient {
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-white {
    color: var(--white) !important;
}

/* Classe utilitária para texto centralizado */
.text-center {
    text-align: center;
}
.material-symbols-outlined {
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    color: var(--primary);
}
.icon-badge {
    font-size: 16px;
}
.icon-btn {
    font-size: 18px;
}
.btn-primary .icon-btn {
    color: white;
}
.icon-btn-outline {
    font-size: 18px;
    color: var(--secondary);
}
.icon-card {
    font-size: 32px;
}.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.brand-icon {
    width: 90px;
    height: 90px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-brand .brand-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
}
.brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--primary);
}
.nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.5rem;
    z-index: 99;
}
.nav-menu .nav-link {
    color: var(--text-main);
}
.nav-menu .nav-link:hover {
    color: var(--primary);
}
.nav-menu .nav-dropdown-toggle {
    color: var(--text-main);
}
.nav-menu .nav-dropdown-toggle:hover {
    color: var(--primary);
}
.nav-menu.active {
    display: flex !important;
}
.nav-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 0.75rem 0;
    display: block;
    transition: color 0.2s ease;
}
.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown-toggle {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: color 0.2s ease;
}
.nav-dropdown-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
}
.nav-dropdown-toggle .dropdown-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #ffffff;
}
.nav-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    display: none;
    padding-left: 1rem;
    padding-top: 0.5rem;
    gap: 0.25rem;
    flex-direction: column;
}
.nav-dropdown.active .nav-dropdown-menu {
    display: flex;
}
.nav-dropdown-link {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    display: block;
    transition: color 0.2s ease;
}
.nav-dropdown-link:hover {
    color: var(--primary);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.btn-logout {
    display: none;
    align-items: center;
    height: 40px;
    padding: 0 1.25rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(96, 31, 74, 0.2);
    transition: background-color 0.2s, transform 0.2s;
}
.btn-logout:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}
.btn-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    z-index: 101;
}
.btn-mobile-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.btn-mobile-menu .material-symbols-outlined {
    font-size: 28px;
    color: #ffffff;
}
@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row;
        background-color: transparent;
        border-top: none;
        box-shadow: none;
        padding: 0;
        gap: 1rem;
        align-items: center;
    }
    .nav-menu.active {
        display: flex !important;
    }
    .nav-menu .nav-link {
        color: #ffffff;
    }
    .nav-menu .nav-link:hover {
        color: rgba(255, 255, 255, 0.8);
    }
    .nav-menu .nav-dropdown-toggle {
        color: #ffffff;
    }
    .nav-menu .nav-dropdown-toggle:hover {
        color: rgba(255, 255, 255, 0.8);
    }
    .nav-menu .nav-dropdown-toggle .dropdown-icon {
        color: #ffffff;
    }
    .nav-dropdown {
        position: relative;
    }
    .nav-dropdown-toggle {
        padding: 0.75rem 0.5rem;
    }
    .nav-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--surface-white);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        padding: 0.5rem;
        min-width: 200px;
        z-index: 1000;
        padding-left: 0.5rem;
        padding-top: 0.5rem;
    }
    .nav-dropdown.active .nav-dropdown-menu {
        display: flex;
    }
    .nav-dropdown-link {
        padding: 0.5rem 0.75rem;
        white-space: nowrap;
    }
    .btn-logout {
        display: flex;
    }
    .btn-mobile-menu {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .btn-mobile-menu {
        display: flex !important;
    }
    .nav-menu {
        display: none !important;
    }
    .nav-menu.active {
        display: flex !important;
    }
    .nav-menu .nav-dropdown-toggle .dropdown-icon {
        color: #000000;
    }
    .hero-img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    .hero-img-container {
        max-width: 100%;
        transform: rotate(0deg);
    }
    .hero-image-wrapper {
        max-width: 100%;
    }
    .blob-1,
    .blob-2 {
        width: 150px;
        height: 150px;
    }
}.hero {
    padding: 3rem 0 5rem;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.badge-safe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(139, 74, 107, 0.1);color: var(--secondary);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 550px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.btn-primary {
    height: 3rem;
    padding: 0 2rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(96, 31, 74, 0.25);
    transition: transform 0.2s ease, background-color 0.2s;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-outline {
    height: 3rem;
    padding: 0 2rem;
    background-color: var(--surface-white);
    border: 1px solid #e5e7eb;
    color: var(--text-main);
    font-weight: 500;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: var(--secondary);
    background-color: rgba(139, 74, 107, 0.05);
}
.hero-image-wrapper {
    position: relative;
}.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}
.blob-1 {
    top: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background-color: rgba(201, 154, 139, 0.3);
}
.blob-2 {
    bottom: -20px;
    left: -20px;
    width: 250px;
    height: 250px;
    background-color: rgba(139, 74, 107, 0.2);
}
.hero-img-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    border: 4px solid var(--surface-white);
    transition: transform 0.5s ease;
}
.hero-img-container:hover {
    transform: rotate(0);
}
.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(96, 31, 74, 0.2), transparent);
    mix-blend-mode: multiply;
}
.hero-quote {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--primary);
}
.hero-quote strong {
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.hero-quote i {
    display: block;
    font-style: italic;
    font-size: 1rem;
    margin-top: 0.75rem;
}
/* Hero responsivo movido para seção de media queries completa */.definitions {
    padding: 2rem 0;
    background-color: var(--surface-white);
}
.section-header {
    max-width: 90%;
    margin: 0 auto 2rem;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    text-align: center;
}

/* Título menor para doar.php */
.section-title-center.section-title-smaller,
h1.section-title-center.section-title-smaller {
    font-size: 1.125rem !important;
}

@media (min-width: 768px) {
    .section-title-center.section-title-smaller,
    h1.section-title-center.section-title-smaller {
        font-size: 1.25rem !important;
    }
}

@media (min-width: 992px) {
    .section-title-center.section-title-smaller,
    h1.section-title-center.section-title-smaller {
        font-size: 1.5rem !important;
    }
}

@media (min-width: 1200px) {
    .section-title-center.section-title-smaller,
    h1.section-title-center.section-title-smaller {
        font-size: 1.75rem !important;
    }
}
.section-desc {
    color: var(--text-muted);
    font-weight: 700;
    text-align: center;
}
.cards-grid {
    display: grid;
    gap: 2rem;
}
.cards-grid-violence {
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .cards-grid-violence {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1200px) {
    .cards-grid-violence {
        grid-template-columns: repeat(4, 1fr);
    }
}
.card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}
.card:hover {
    box-shadow: var(--shadow-soft);
    background-color: white;
}
.card-moral:hover { border-color: rgba(139, 74, 107, 0.3); }
.card-sexual:hover { border-color: rgba(96, 31, 74, 0.3); }
.card-psicologica:hover { border-color: rgba(139, 74, 107, 0.3); }
.card-fisica:hover { border-color: rgba(220, 53, 69, 0.3); }
.card-patrimonial:hover { border-color: rgba(201, 154, 139, 0.3); }
.card-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon-moral { background-color: rgba(139, 74, 107, 0.1); color: var(--secondary); }
.card-icon-sexual { background-color: rgba(96, 31, 74, 0.1); color: var(--primary); }
.card-icon-psicologica { background-color: rgba(139, 74, 107, 0.1); color: var(--secondary); }
.card-icon-fisica { background-color: rgba(220, 53, 69, 0.1); color: #dc3545; }
.card-icon-patrimonial { background-color: rgba(201, 154, 139, 0.1); color: var(--accent); }
.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-right: 4rem;
    color: var(--primary);
}
.card-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.check-icon {
    color: var(--primary);
    font-size: 1.25rem;
}
/* Cards grid responsivo movido para seção de media queries completa */.signs-section {
    padding: 2rem 0;
}
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
details.accordion-item {
    background-color: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
details.accordion-item[open] {
    box-shadow: var(--shadow-md);
}
summary.accordion-trigger {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
}
summary.accordion-trigger::-webkit-details-marker {
    display: none;
}
.accordion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.accordion-icon {
    padding: 0.5rem;
    border-radius: 0.5rem;
    display: flex;
}
.accordion-title {
    font-weight: 700;
    font-size: 1.125rem;
}
.accordion-content {
    padding: 0 1.5rem 1.5rem 4.5rem;
    color: var(--text-muted);
}
.accordion-arrow {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
details.accordion-item[open] .accordion-arrow {
    transform: rotate(180deg);
}
.faq-section {
    padding: 4rem 0;
    background-color: var(--surface-light);
}
.icon-yellow { background-color: rgba(201, 154, 139, 0.2); color: #a67d6f; }
.icon-teal { background-color: rgba(139, 74, 107, 0.2); color: var(--secondary); }
.icon-pink { background-color: rgba(96, 31, 74, 0.2); color: var(--primary); }
.icon-red { background-color: rgba(220, 53, 69, 0.2); color: #dc3545; }

/* Info boxes estilo accordion mas sem ser acordeon */
.info-box {
    background-color: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1rem;
    transition: box-shadow 0.3s ease;
}

.info-box:hover {
    box-shadow: var(--shadow-md);
}

.info-box .section-desc {
    margin-bottom: 0;
    color: var(--text-main);
}

/* Cards grid single - apenas 1 card centralizado */
.cards-grid-single {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-grid-single .card {
    max-width: 600px;
    width: 100%;
}
.arrow-icon {
    transition: transform 0.3s;
    color: #9ca3af;
}
details[open] summary .arrow-icon {
    transform: rotate(180deg);
}.steps-section {
    padding: 2rem 0;
    background-color: rgba(96, 31, 74, 0.03);border-top: 1px solid rgba(96, 31, 74, 0.08);
    border-bottom: 1px solid rgba(96, 31, 74, 0.08);
}
.steps-container {
    position: relative;
}
.timeline-line {
    display: none;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}
.step-card {
    background-color: var(--surface-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
    border: 4px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.bg-step-1 { background-color: var(--primary); }
.bg-step-2 { background-color: var(--secondary); }
.bg-step-3 { background-color: var(--accent); }
.step-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.step-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.step-alert {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: var(--radius-md);
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.step-alert .material-symbols-outlined {
    color: #ffc107;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.step-alert p {
    font-size: 0.8125rem;
    color: var(--text-main);
    margin: 0;
    line-height: 1.5;
}
.step-alert strong {
    color: var(--primary);
}
.step-alert.alert-security {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.step-alert.alert-emergency {
    margin-top: 0;
    margin-bottom: 1rem;
    background-color: rgba(220, 53, 69, 0.1);
    border-left-color: #dc3545;
}
.step-alert.alert-emergency .material-symbols-outlined {
    color: #dc3545;
}
/* Steps responsivo movido para seção de media queries completa */.help-section {
    padding: 2rem 0;
}
.cta-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    color: white;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}
.cta-shape-1 {
    top: -20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
}
.cta-shape-2 {
    bottom: -20%;
    left: 10%;
    width: 250px;
    height: 250px;
    background-color: rgba(139, 74, 107, 0.4);
}
.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: stretch;
}
.cta-text-block {
    text-align: left;
    flex: 2;
}
.cta-headline {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--surface-white);
}
.cta-subhead {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
.btn-call {
    background-color: white;
    color: var(--primary);
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}
.btn-call:hover { background-color: #f8f9fa; }
.btn-legal {
    background-color: rgba(139, 74, 107, 0.3);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.btn-legal .material-symbols-outlined {
    color: white;
}
.btn-legal:hover { background-color: rgba(139, 74, 107, 0.5); }
.emergency-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    flex: 1;
}
.emergency-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--surface-white);
}
.emergency-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.emergency-list li .material-symbols-outlined {
    color: white;
}

.emergency-item-separator {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-detail {
    display: block;
    margin-top: 0.25rem;
    opacity: 0.9;
    font-size: 0.8rem;
}

.emergency-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.emergency-link.emergency-detail {
    display: block;
    margin-top: 0.25rem;
}

.emergency-link:hover {
    opacity: 0.8;
}
/* CTA responsivo movido para seção de media queries completa */.main-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0 2rem;
}
.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 250px;
}
.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-col ul li a:hover { color: var(--primary); }
.link-danger { color: var(--primary) !important; font-weight: 700; }
.footer-icon {
    font-size: 16px;
    vertical-align: middle;
}
.footer-cnpj-item {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}
.footer-cnpj {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-icon {
    color: var(--text-muted);
    width: 1.25rem;
    height: 1.25rem;
}
.social-icon:hover { color: var(--primary); }
/* Footer responsivo movido para seção de media queries completa */.btn-sair-rapido {
    position: fixed;
    top: calc(var(--header-height) + 1rem);
    right: 1rem;
    z-index: 1001;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}
.btn-sair-rapido:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.5);
}
.btn-sair-rapido .material-symbols-outlined {
    font-size: 1.25rem;
}
@media (max-width: 576px) {
    .btn-sair-rapido {
        top: calc(var(--header-height) + 0.5rem);
        right: 0.5rem;
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    .btn-sair-rapido span:not(.material-symbols-outlined) {
        display: none;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    z-index: 1000;
    width: 4rem;
    height: 4rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: bounce 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.whatsapp-icon {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* ============================================
   RESPONSIVIDADE COMPLETA - TODOS OS BREAKPOINTS
   ============================================ */

/* === MOBILE PEQUENO (≤320px) === */
@media (max-width: 320px) {
    .container {
        padding: 0;
    }
    
    body {
        font-size: 14px;
    }
    
    /* Headings responsivos */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.875rem; }
    
    /* Header */
    .main-header {
        height: 100px;
    }
    
    .brand-icon {
        width: 90px;
        height: 90px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .btn-mobile-menu .material-symbols-outlined {
        font-size: 24px;
    }
    
    /* Hero */
    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-quote {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .hero-quote strong {
        font-size: 1rem;
    }
    
    .hero-quote i {
        font-size: 0.875rem;
    }
    
    /* Cards */
    .card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
        padding-right: 3rem;
    }
    
    .card-icon {
        width: 2.5rem;
        height: 2.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .section-title-center {
        font-size: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Accordion */
    .accordion-trigger {
        padding: 1rem;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem 1rem 3.5rem;
        font-size: 0.875rem;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-card {
        padding: 1rem;
    }
    
    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
    
    .step-desc {
        font-size: 0.8125rem;
    }
    
    .step-alert {
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .step-alert .material-symbols-outlined {
        font-size: 1.25rem;
    }
    
    /* CTA */
    .cta-box {
        padding: 1.5rem;
    }
    
    .cta-headline {
        font-size: 1.5rem;
    }
    
    .cta-subhead {
        font-size: 1rem;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .btn-call,
    .btn-legal {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 3rem;
        height: 3rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Blobs */
    .blob-1,
    .blob-2 {
        width: 100px;
        height: 100px;
    }
}

/* === MOBILE (≤576px) === */
@media (max-width: 576px) {
    .container {
        padding: 0;
    }
    
    /* Headings responsivos */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }
    
    /* Header */
    .brand-name {
        font-size: 1.125rem;
    }
    
    /* Hero */
    .hero {
        padding: 2.5rem 0 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.0625rem;
    }
    
    .hero-quote {
        font-size: 1.125rem;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title-center {
        font-size: 1.375rem;
    }
    
    /* Accordion */
    .accordion-content {
        padding: 0 1.5rem 1.5rem 4rem;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA */
    .cta-content {
        flex-direction: column;
    }
    
    .cta-text-block {
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-call,
    .btn-legal {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === MOBILE/TABLETS MÉDIOS (577px-767px) === */
@media (min-width: 577px) and (max-width: 767px) {
    .container {
        padding: 0;
    }
    
    /* Hero */
    .hero {
        padding: 3rem 0 4.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-quote {
        font-size: 1.25rem;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-center {
        font-size: 1.5rem;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* CTA - manter lado a lado até 768px */
    .cta-content {
        flex-direction: row;
        align-items: stretch;
    }
    
    .cta-text-block {
        flex: 2;
        text-align: left;
    }
    
    .emergency-card {
        flex: 1;
    }
    
    .cta-subhead {
        margin-left: 0;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .btn-call,
    .btn-legal {
        flex: 1;
        min-width: 200px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === TABLETS (768px-991px) === */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0;
    }

    /* Headings responsivos */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
    h5 { font-size: 1.375rem; }
    h6 { font-size: 1.25rem; }

    /* Hero */
    .hero {
        padding: 3rem 0 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-quote {
        font-size: 1.375rem;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-title-center {
        font-size: 1.625rem;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .step-card {
        align-items: flex-start;
        text-align: left;
    }
    
    .timeline-line {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #e5e7eb;
        transform: translateY(-50%);
        z-index: 1;
    }
    
    /* CTA - manter lado a lado */
    .cta-content {
        flex-direction: row !important;
        align-items: stretch;
        text-align: left;
    }

    .cta-text-block {
        text-align: left !important;
        flex: 2 !important;
    }

    .emergency-card {
        flex: 1 !important;
    }
    
    .cta-subhead {
        margin-left: auto !important;
        margin-right: auto;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .cta-box {
        padding: 2.5rem 3rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
    /* WhatsApp */
    .whatsapp-float {
        bottom: 5rem;
    }
}

/* === DESKTOP PEQUENO (992px-1199px) === */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0;
    }
    
    /* Hero */
    .hero {
        padding: 2rem 0 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-quote {
        font-size: 1.5rem;
    }
    
    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title-center {
        font-size: 1.75rem;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-content {
        flex-direction: row;
        align-items: stretch;
    }
    
    .cta-text-block {
        flex: 2;
        text-align: left;
    }
    
    .emergency-card {
        flex: 1;
    }
    
    .cta-subhead {
        margin-left: 0;
        margin-right: auto;
    }
    
    .cta-box {
        padding: 3rem 3.5rem;
    }
    
    .cta-headline {
        font-size: 2.25rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* === DESKTOP GRANDE (≥1200px) === */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0;
    }

    /* Hero */
    .hero-grid {
        gap: 5rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .hero-quote {
        font-size: 1.5rem;
    }

    .hero-quote i {
        font-size: 1.125rem;
    }

    /* Cards */
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.75rem;
    }

    .section-title-center {
        font-size: 1.875rem;
    }

    /* CTA */
    .cta-content {
        flex-direction: row;
        align-items: stretch;
    }

    .cta-text-block {
        flex: 2;
        text-align: left;
    }

    .emergency-card {
        flex: 1;
    }

    .cta-subhead {
        margin-left: 0;
        margin-right: auto;
    }

    .cta-box {
        padding: 3rem 4rem;
    }

    .cta-headline {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   ESTILOS ESPECÍFICOS - PÁGINAS INDIVIDUAIS
   ============================================ */

/* === ESTILOS COMUNS PARA PÁGINAS .PAGE === */
.page .hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.page .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.page .hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    font-size: 0.875rem;
}

.page .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .page .hero-title {
        font-size: 4rem;
    }
}

.page .content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .page .content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.page .main-article h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.page .main-article p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.page .highlight-box {
    background-color: white;
    border-left: 5px solid var(--primary);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.page .highlight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.page .highlight-box p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* === ABUSO-SEXUAL.PHP === */
.page .hero {
    background-color: #2a1b2e;
}

.page .hero img {
    opacity: 0.6;
}

.page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(42, 27, 46, 0.9), rgba(42, 27, 46, 0.4));
}

.page .services-title {
    text-align: left;
}

.page .service-card {
    height: 100%;
}

.page .services-section {
    margin-top: 4rem;
}

.page .services-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--primary);
    line-height: 1.3;
}

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

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

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

.page .service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.page .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.page .service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.page .service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.page .service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.page .report-section {
    background:#f2d9fc;
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page .report-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 15rem;
    opacity: 0.05;
    pointer-events: none;
    color: white;
}

.page .report-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.page .report-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.page .btn-report {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-light);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 800;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    position: relative;
    z-index: 10;
}

.page .btn-report:hover {
    transform: scale(1.05);
    background-color: #ffd67a;
}

.page .btn-report {
    text-decoration: none;
}

.page .report-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.page .card-info p.intro-text {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.page .step-alert ul.aside-help-list {
    margin-top: 0.5rem;
}

.page .step-alert p.alert-final {
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.page .step-alert.alert-spacing {
    margin-top: 1.5rem;
}

.page aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.page .card-info {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page .card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.page .stat-list {
    list-style: none;
}

.page .stat-item {
    margin-bottom: 1.25rem;
}

.page .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.page .stat-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.page .contact-card {
    background-color: var(--bg-light);
    border: 2px solid var(--primary);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.page .contact-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.page .phone-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Epilogue', sans-serif;
}

.page .contact-sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Espaçamentos específicos da página abuso-sexual */
.page .section-spacing {
    margin-top: 4rem;
}

.page .subsection-spacing {
    margin-top: 3rem;
}

.page .aside-help-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.page .aside-help-list li {
    margin-bottom: 0.5rem;
}

.page .highlight-box .btn-spacing {
    margin-top: 1.5rem;
}

/* === ARTIGOS.PHP === */
.page-artigos .hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a1b2e 0%, #1a0d1f 100%);
}

.page-artigos .hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-artigos .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
}

.page-artigos .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.page-artigos .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .page-artigos .hero-title {
        font-size: 4rem;
    }
}

.page-artigos .hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-artigos .main-content {
    padding: 4rem 0;
}

.page-artigos .content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .page-artigos .content-wrapper {
        grid-template-columns: 1fr 300px;
    }
}

.page-artigos .articles-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
}

.page-artigos .articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
    .page-artigos .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.page-artigos .article-card {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-artigos .article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.page-artigos .article-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.page-artigos .article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.page-artigos .article-card:hover .article-thumb img {
    transform: scale(1.05);
}

.page-artigos .article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-artigos .article-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-artigos .article-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-artigos .article-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.page-artigos .article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.page-artigos .article-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.page-artigos .article-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.page-artigos .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-artigos .pagination a,
.page-artigos .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.page-artigos .pagination a {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

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

.page-artigos .pagination .current {
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
}

.page-artigos aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.page-artigos .sidebar-card {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.page-artigos .sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.page-artigos .categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-artigos .category-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

.page-artigos .category-item a:hover {
    background-color: rgba(96, 31, 74, 0.05);
}

.page-artigos .category-name {
    color: var(--text-main);
}

.page-artigos .category-count {
    background-color: var(--border-color);
    color: var(--text-muted);
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.page-artigos .recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-artigos .recent-post-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.page-artigos .recent-post-thumb {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.page-artigos .recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-artigos .recent-post-content {
    flex: 1;
}

.page-artigos .recent-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-artigos .recent-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === ASSEDIO.PHP === */
.page .hero {
    background: linear-gradient(135deg, #4a2c82 0%, #2a1b2e 100%);
}

.page .hero img {
    opacity: 0.5;
}

.page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(74, 44, 130, 0.8), rgba(42, 27, 46, 0.6));
}

.page .hero-title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page .services-title {
    text-align: left;
}

.page .service-card {
    height: 100%;
}

/* Espaçamentos específicos da página assedio */
.page .section-spacing {
    margin-top: 4rem;
}

.page .aside-help-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.page .aside-help-list li {
    margin-bottom: 0.5rem;
}

/* === VIOLENCIA-DOMESTICA.PHP === */
/* Usa os mesmos estilos de abuso-sexual.php */

.page .services-title {
    text-align: center;
}

/* Espaçamentos específicos da página violencia-domestica */
.page .section-spacing {
    margin-top: 4rem;
}

.page .aside-help-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.page .aside-help-list li {
    margin-bottom: 0.5rem;
}

/* === ARTIGO.PHP === */
.page-artigo header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.page-artigo .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-artigo .brand-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(96, 31, 74, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-artigo .brand-name {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.page-artigo .nav-links {
    display: none;
    gap: 2rem;
}

.page-artigo .nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.page-artigo .nav-links a:hover {
    color: var(--primary);
}

.page-artigo .nav-links a.active {
    color: var(--primary);
    position: relative;
}

.page-artigo .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 99px;
}

.page-artigo .btn-exit {
    display: none;
    align-items: center;
    height: 40px;
    padding: 0 1.25rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(96, 31, 74, 0.2);
    transition: all 0.2s;
}

.page-artigo .btn-exit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.page-artigo .btn-mobile-menu {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
}

.page-artigo .btn-mobile-menu:hover {
    background-color: rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .page-artigo .nav-links {
        display: flex;
    }
    .page-artigo .btn-exit {
        display: flex;
    }
    .page-artigo .btn-mobile-menu {
        display: none;
    }
}

.page-artigo .hero {
    position: relative;
    height: 60vh;
    max-height: 500px;
    width: 100%;
    overflow: hidden;
}

.page-artigo .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-artigo .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
}

.page-artigo .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .page-artigo .hero-content {
        padding: 3rem;
    }
}

.page-artigo .tag-category {
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.page-artigo .hero-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 56rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .page-artigo .hero-title {
        font-size: 3rem;
    }
}

.page-artigo .meta-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .page-artigo .meta-info {
        font-size: 1rem;
    }
}

.page-artigo .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-artigo .author-avatar {
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Epilogue', sans-serif;
}

.page-artigo .main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .page-artigo .main-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.page-artigo .article-intro {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .page-artigo .article-intro {
        padding: 2.5rem;
    }
}

.page-artigo .intro-text {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    opacity: 0.85;
}

@media (min-width: 768px) {
    .page-artigo .intro-text {
        font-size: 1.5rem;
    }
}

.page-artigo .prose {
    max-width: none;
    color: rgba(26, 14, 21, 0.9);
    font-family: 'Merriweather', serif;
}

.page-artigo .prose h3 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.page-artigo .prose p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.page-artigo .prose ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.page-artigo .prose li {
    margin-bottom: 0.5rem;
}

.page-artigo .prose strong {
    font-weight: 700;
    color: var(--text-main);
}

.page-artigo .prose blockquote {
    border-left: 4px solid var(--primary);
    background-color: rgba(96, 31, 74, 0.05);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
    color: var(--text-main);
}

.page-artigo .info-box {
    background-color: rgba(139, 74, 107, 0.1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary);
    margin: 2rem 0;
}

.page-artigo .info-box h4 {
    font-family: 'Epilogue', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-artigo .info-box p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.page-artigo .info-box a {
    color: var(--primary);
    font-weight: 700;
}

.page-artigo .info-box a:hover {
    text-decoration: underline;
}

.page-artigo .article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .page-artigo .article-footer {
        flex-direction: row;
    }
}

.page-artigo .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-artigo .tag-link {
    padding: 0.375rem 1rem;
    background-color: #f3f4f6;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: background-color 0.2s;
}

.page-artigo .tag-link:hover {
    background-color: #e5e7eb;
}

.page-artigo .share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-artigo .share-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
}

.page-artigo .share-buttons {
    display: flex;
    gap: 0.5rem;
}

.page-artigo .btn-share {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.page-artigo .btn-share:hover {
    opacity: 0.9;
}

.page-artigo .btn-share svg {
    width: 1rem;
    height: 1rem;
}

.page-artigo aside {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.page-artigo .card-help {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px -2px rgba(96, 31, 74, 0.15);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-artigo .card-help-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem;
    opacity: 0.1;
    font-size: 8rem;
    pointer-events: none;
}

.page-artigo .card-help h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
}

.page-artigo .help-icon {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.375rem;
    border-radius: 50%;
}

.page-artigo .help-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.page-artigo .emergency-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
}

.page-artigo .emergency-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
    color: white;
}

.page-artigo .emergency-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-artigo .emergency-label {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-artigo .emergency-number {
    font-family: 'Epilogue', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
}

.page-artigo .btn-all-numbers {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.625rem;
    background-color: white;
    color: var(--primary);
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.page-artigo .btn-all-numbers:hover {
    background-color: #f9fafb;
}

.page-artigo .card-related {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.page-artigo .card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.page-artigo .related-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-artigo .related-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.page-artigo .related-thumb {
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.page-artigo .related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.page-artigo .related-item:hover .related-thumb img {
    transform: scale(1.1);
}

.page-artigo .related-content {
    flex: 1;
}

.page-artigo .related-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}

.page-artigo .related-heading {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s;
}

.page-artigo .related-item:hover .related-heading {
    color: var(--primary);
}

.page-artigo .card-newsletter {
    background-color: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.page-artigo .newsletter-icon {
    font-size: 2.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.page-artigo .newsletter-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-artigo .newsletter-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.page-artigo .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-artigo .input-email {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
    outline: none;
}

.page-artigo .input-email:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(139, 74, 107, 0.2);
}

.page-artigo .btn-subscribe {
    width: 100%;
    padding: 0.5rem;
    background-color: var(--text-main);
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.page-artigo .btn-subscribe:hover {
    background-color: black;
}

.page-artigo footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-top: auto;
}

.page-artigo .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .page-artigo .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-artigo .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.page-artigo .footer-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 250px;
}

.page-artigo .footer-heading {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.page-artigo .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-artigo .footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.page-artigo .footer-links a:hover {
    color: var(--primary);
}

.page-artigo .footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
}

.page-artigo .copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.page-artigo .social-links {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
}

.page-artigo .social-links a:hover {
    color: var(--primary);
}

.page-artigo .whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    width: 4rem;
    height: 4rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.page-artigo .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ============================================
   ESTILOS ESPECÍFICOS - ARTIGOS.PHP
   ============================================ */

/* Container com padding para páginas que precisam */
.container-padded {
    padding: 0 1.5rem;
}

/* Header específico para artigos.php */
.blog-header-section {
    padding: 4rem 0 2rem;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.blog-header-grid {
    display: grid;
    gap: 2rem;
}

.blog-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
    background-color: var(--bg-light);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(96, 31, 74, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    background-color: white;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.pill-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pill-btn.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(96, 31, 74, 0.2);
}

@media (min-width: 992px) {
    .blog-header-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .filters-container {
        align-items: flex-end;
    }
    .category-pills {
        justify-content: flex-end;
    }
}

/* Featured Section */
.featured-section {
    padding: 3rem 0;
}

.featured-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featured-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
}

.featured-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
}

.featured-card {
    display: grid;
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.featured-image-col {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
}

.featured-card:hover .featured-img {
    transform: scale(1.05);
}

.featured-content-col {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.tag {
    color: var(--secondary);
    background-color: rgba(139, 74, 107, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-title-text {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-main);
}

.featured-excerpt {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-read-featured {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 10px rgba(96, 31, 74, 0.2);
}

.btn-read-featured:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .featured-card {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Articles Section */
.articles-section {
    padding-bottom: 6rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(96, 31, 74, 0.2);
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.tag-sm {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: var(--primary);
}

.card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-card-read {
    margin-top: auto;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    transition: all 0.2s;
}

.btn-card-read:hover {
    color: var(--primary);
    gap: 0.5rem;
}

/* Footer específico para artigos.php */
.main-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}


/* Brand icon específico - pode ser usado quando necessário */
.brand-icon-artigos {
    width: 90px;
    height: 90px;
    background-color: rgba(96, 31, 74, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Classes utilitárias para remover estilos inline */
.icon-sm {
    font-size: 16px;
}

.icon-md {
    font-size: 18px;
}

.icon-lg {
    font-size: 48px;
    margin-bottom: 1rem;
}

.icon-secondary {
    color: var(--secondary);
}

/* ============================================
   ESTILOS ESPECÍFICOS - CONTATO.PHP
   ============================================ */
.contact-section {
    padding: 0 0 5rem;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 3fr 2fr;
        gap: 4rem;
    }
}
.form-card {
    background-color: var(--surface-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.form-header {
    margin-bottom: 2rem;
}
.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.form-header p {
    color: var(--text-muted);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .form-grid-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}
.form-group {
    position: relative;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
    background-color: #fcfcfc;
    color: var(--text-main);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(139, 74, 107, 0.1);
}
.form-textarea {
    min-height: 150px;
    resize: vertical;
}
.form-input:not(:placeholder-shown):valid {
    border-color: #198754;
}
.form-input:not(:placeholder-shown):invalid {
    border-color: #dc3545;
}
.btn-submit {
    width: 100%;
    height: 3.5rem;
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(96, 31, 74, 0.25);
    transition: transform 0.2s ease, background-color 0.2s;
    font-size: 1rem;
    margin-top: 1rem;
}
.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.form-buttons .btn-submit {
    flex: 1;
    margin-top: 0;
}
.form-buttons .btn-clear {
    flex: 1;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s;
}
.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-main);
}
.form-checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}
.form-checkbox-label span:not(.material-symbols-outlined) {
    flex: 1;
}
@media (max-width: 768px) {
    .form-buttons {
        flex-direction: column;
    }
    .form-buttons .btn-submit,
    .form-buttons .btn-clear {
        width: 100%;
    }
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-card {
    background-color: var(--surface-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(139, 74, 107, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-content {
    display: flex;
    flex-direction: column;
}
.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}
.info-value {
    font-weight: 600;
    color: var(--text-main);
    word-break: break-all;
}
.whatsapp-cta {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.whatsapp-cta h4 {
    color: white;
    font-size: 1.25rem;
}
.whatsapp-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}
.btn-whatsapp-large {
    background-color: white;
    color: #128C7E;
    font-weight: 800;
    padding: 1rem 2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.2s;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-whatsapp-large:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* ============================================
   ESTILOS ESPECÍFICOS - DOAR.PHP
   ============================================ */
.page-doar .container {
    padding: 0 1.5rem;
}
.page-doar .header-content {
    position: static;
}
.page-doar .brand-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(96, 31, 74, 0.1);
    color: var(--primary);
    border-radius: 50%;
}
.page-doar .hero {
    padding: 3rem 0 5rem;
    overflow: hidden;
    position: relative;
}
.page-doar .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media (max-width: 320px) {
    .page-doar .hero {
        padding: 2rem 0 3rem;
    }
    .page-doar .hero-grid {
        gap: 1.5rem;
    }
    .page-doar .hero-title {
        font-size: 1.75rem;
    }
}
@media (min-width: 321px) and (max-width: 576px) {
    .page-doar .hero {
        padding: 2.5rem 0 4rem;
    }
    .page-doar .hero-grid {
        gap: 2rem;
    }
    .page-doar .hero-title {
        font-size: 2rem;
    }
}
@media (min-width: 577px) and (max-width: 767px) {
    .page-doar .hero {
        padding: 3rem 0 5rem;
    }
    .page-doar .hero-grid {
        gap: 2.5rem;
    }
    .page-doar .hero-title {
        font-size: 2.25rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .page-doar .hero {
        padding: 3rem 0 5rem;
    }
    .page-doar .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .page-doar .hero-title {
        font-size: 2.5rem;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .page-doar .hero {
        padding: 5rem 0 7rem;
    }
    .page-doar .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .page-doar .hero-title {
        font-size: 2.75rem;
    }
}
@media (min-width: 1200px) {
    .page-doar .hero {
        padding: 6rem 0 8rem;
    }
    .page-doar .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
    .page-doar .hero-title {
        font-size: 3rem;
    }
}
.page-doar .hero-text-block p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 600px;
    text-align: justify;
}
.page-doar .hero-text-block p:last-child {
    margin-bottom: 2rem;
}
.page-doar .bank-card-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    margin-top: 2rem;
}
.page-doar .bank-card-wrapper .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.6;
}
.page-doar .bank-card-wrapper .blob-1 {
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: rgba(201, 154, 139, 0.3);
}
.page-doar .bank-card-wrapper .blob-2 {
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: rgba(139, 74, 107, 0.2);
}
.page-doar .bank-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f9 100%);
    border: 1px solid rgba(96, 31, 74, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}
.page-doar .bank-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}
.page-doar .bank-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px dashed var(--border-color);
}
.page-doar .bank-header-icon {
    color: var(--text-muted);
    font-size: 1.5rem;
}
.page-doar .bank-value-favorecido {
    font-size: 1rem;
}
.page-doar .bank-logo {
    background-color: #fbf600;
    color: #0036a9;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
}
.page-doar .bank-info-row {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.page-doar .bank-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    display: block;
}
.page-doar .bank-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}
.page-doar .pix-box {
    background-color: rgba(139, 74, 107, 0.05);
    border: 1px solid rgba(139, 74, 107, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
}
.page-doar .pix-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}
.page-doar .pix-key {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    word-break: break-all;
}
.page-doar .donation-email {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.page-doar .donation-email a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 320px) {
    .page-doar .bank-card-wrapper {
        margin-top: 1.5rem;
    }
    .page-doar .bank-card-wrapper .blob-1,
    .page-doar .bank-card-wrapper .blob-2 {
        width: 100px;
        height: 100px;
    }
    .page-doar .bank-card {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }
    .page-doar .bank-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    .page-doar .bank-header-icon {
        font-size: 1.25rem;
    }
    .page-doar .bank-logo {
        font-size: 1rem;
        padding: 0.375rem 0.75rem;
    }
    .page-doar .bank-value {
        font-size: 1rem;
    }
    .page-doar .bank-value-favorecido {
        font-size: 0.875rem;
    }
    .page-doar .bank-info-row {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .page-doar .pix-key {
        font-size: 0.9rem;
    }
}
@media (min-width: 321px) and (max-width: 576px) {
    .page-doar .bank-card-wrapper {
        margin-top: 2rem;
    }
    .page-doar .bank-card-wrapper .blob-1,
    .page-doar .bank-card-wrapper .blob-2 {
        width: 120px;
        height: 120px;
    }
    .page-doar .bank-card {
        padding: 1.75rem;
        max-width: 100%;
    }
    .page-doar .bank-header-icon {
        font-size: 1.375rem;
    }
    .page-doar .bank-logo {
        font-size: 1.125rem;
    }
    .page-doar .bank-value {
        font-size: 1.125rem;
    }
    .page-doar .bank-value-favorecido {
        font-size: 0.9375rem;
    }
}
@media (min-width: 577px) and (max-width: 767px) {
    .page-doar .bank-card-wrapper {
        margin-top: 2.5rem;
    }
    .page-doar .bank-card-wrapper .blob-1,
    .page-doar .bank-card-wrapper .blob-2 {
        width: 180px;
        height: 180px;
    }
    .page-doar .bank-card {
        padding: 2rem;
        max-width: 450px;
        transform: rotate(-1deg);
    }
    .page-doar .bank-card:hover {
        transform: rotate(0deg) translateY(-5px);
    }
    .page-doar .bank-header-icon {
        font-size: 1.5rem;
    }
    .page-doar .bank-value-favorecido {
        font-size: 1rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .page-doar .bank-card-wrapper {
        margin-top: 0;
    }
    .page-doar .bank-card-wrapper .blob-1,
    .page-doar .bank-card-wrapper .blob-2 {
        width: 200px;
        height: 200px;
    }
    .page-doar .bank-card {
        padding: 2.25rem;
        max-width: 480px;
        transform: rotate(-2deg);
    }
    .page-doar .bank-card:hover {
        transform: rotate(0deg) translateY(-5px);
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .page-doar .bank-card-wrapper {
        margin-top: 0;
    }
    .page-doar .bank-card-wrapper .blob-1,
    .page-doar .bank-card-wrapper .blob-2 {
        width: 220px;
        height: 220px;
    }
    .page-doar .bank-card {
        padding: 2.5rem;
        max-width: 480px;
        transform: rotate(-2deg);
    }
    .page-doar .bank-card:hover {
        transform: rotate(0deg) translateY(-5px);
    }
}
@media (min-width: 1200px) {
    .page-doar .bank-card-wrapper {
        margin-top: 0;
    }
    .page-doar .bank-card-wrapper .blob-1,
    .page-doar .bank-card-wrapper .blob-2 {
        width: 250px;
        height: 250px;
    }
    .page-doar .bank-card {
        padding: 2.5rem;
        max-width: 480px;
        transform: rotate(-2deg);
    }
    .page-doar .bank-card:hover {
        transform: rotate(0deg) translateY(-5px);
    }
}
.page-doar .volunteer-section {
    padding: 6rem 0;
    background-color: var(--surface-white);
}
.page-doar .section-desc-block p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    max-width: 600px;
    text-align: justify;
}
.page-doar .check-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}
.page-doar .check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--secondary);
}
.page-doar .check-icon {
    color: var(--secondary);
    font-size: 1.5rem;
}
.page-doar .form-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}
.page-doar .form-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.page-doar .form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.page-doar .form-group {
    margin-bottom: 1.25rem;
}
.page-doar .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}
.page-doar .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.page-doar .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(139, 74, 107, 0.1);
}
.page-doar textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.page-doar .btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}
.page-doar .btn-submit:hover {
    background-color: #5a32a3;
    transform: translateY(-2px);
}
.page-doar .volunteer-grid {
    display: grid;
    gap: 4rem;
}
@media (min-width: 992px) {
    .page-doar .volunteer-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}
.page-doar .whatsapp-float {
    bottom: 1.5rem;
}
.page-doar .security-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
.page-doar .security-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.page-doar .security-badge-item:hover {
    background-color: white;
    box-shadow: var(--shadow-sm);
    border-color: var(--secondary);
}
.page-doar .security-badge-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}
.page-doar .security-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.page-doar .security-badge-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}
.page-doar .security-badge-desc {
    font-size: 0.6875rem;
    color: var(--text-muted);
    display: block;
}
@media (min-width: 321px) and (max-width: 576px) {
    .page-doar .security-badge-icon {
        font-size: 1.75rem;
    }
    .page-doar .security-badge-title {
        font-size: 0.875rem;
    }
    .page-doar .security-badge-desc {
        font-size: 0.75rem;
    }
}
@media (min-width: 577px) and (max-width: 767px) {
    .page-doar .security-badges {
        flex-direction: row;
        gap: 1.25rem;
    }
    .page-doar .security-badge-item {
        flex: 1;
        padding: 1rem;
    }
    .page-doar .security-badge-icon {
        font-size: 2rem;
    }
}
@media (min-width: 768px) {
    .page-doar .security-badges {
        flex-direction: row;
        gap: 1.5rem;
    }
    .page-doar .security-badge-item {
        flex: 1;
        padding: 1rem;
    }
    .page-doar .security-badge-icon {
        font-size: 2rem;
    }
    .page-doar .security-badge-title {
        font-size: 0.875rem;
    }
    .page-doar .security-badge-desc {
        font-size: 0.75rem;
    }
}

/* ============================================
   ESTILOS ESPECÍFICOS - PALAVRA-PRESIDENTE.PHP
   ============================================ */
.president-hero {
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}

.deco-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214,51,132,0.1) 0%, rgba(214,51,132,0) 70%);
    top: -100px;
    right: -100px;
}

.deco-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111,66,193,0.1) 0%, rgba(111,66,193,0) 70%);
    bottom: 100px;
    left: -100px;
}

.letter-container {
    display: grid;
    gap: 4rem;
    align-items: start;
}

.president-profile {
    position: relative;
    text-align: center;
}

.profile-frame {
    position: relative;
    display: inline-block;
    padding: 1.5rem;
    background-color: var(--surface-white);
    border-radius: 200px 200px 20px 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    max-width: 100%;
    z-index: 2;
}

.profile-frame::before {
    content: '';
    position: absolute;
    inset: 0.75rem;
    border: 2px solid var(--secondary-light);
    border-radius: 190px 190px 15px 15px;
    z-index: 3;
    pointer-events: none;
}

.profile-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 180px 180px 10px 10px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.profile-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: var(--text-main);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    z-index: 4;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--surface-white);
}

.profile-decoration-icon {
    font-size: 40px !important;
}

.letter-content {
    background-color: var(--surface-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.letter-content::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(96, 31, 74, 0.1);
    line-height: 1;
}

.page-eyebrow {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.letter-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.letter-body {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.letter-body p {
    margin-bottom: 1.5rem;
}

.letter-highlight {
    font-weight: 600;
    color: var(--primary-dark);
    background-color: rgba(96, 31, 74, 0.05);
    padding: 0.1em 0.3em;
    border-radius: 4px;
}

.letter-security {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background-color: rgba(96, 31, 74, 0.08);
    border-left: 4px solid var(--primary-dark);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-primary);
}

.signature-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.signature-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.signature-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary);
}

.signature-role {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.signature-org {
    font-size: 0.875rem;
    color: var(--primary);
}

@media (min-width: 992px) {
    .letter-container {
        grid-template-columns: 450px 1fr;
        gap: 5rem;
    }
    
    .president-profile {
        position: sticky;
        top: 120px;
        text-align: left;
    }
    
    .letter-content {
        padding: 4rem;
    }
    
    .letter-title {
        font-size: 3.5rem;
    }
}

/* ============================================
   ESTILOS ESPECÍFICOS - SOBRE-NOS.PHP
   ============================================ */

/* Definitions section específica para sobre-nos */
.sobre-nos-definitions {
    padding: 5rem 0;
    background-color: var(--surface-white);
}

.sobre-nos-section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.sobre-nos-section-desc {
    color: var(--text-muted);
}

/* History grid e cards */
.history-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.history-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.history-card:hover {
    box-shadow: var(--shadow-soft);
    background-color: white;
    transform: translateY(-5px);
}

.card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: -0.5rem;
}

.card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.card-body {
    color: var(--text-muted);
    font-size: 1rem;
}

.card-impact {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.values-list {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
}

.value-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.services-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 576px) {
    .services-pillars {
        grid-template-columns: 1fr;
    }
}

.pillar-item {
    background-color: white;
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pillar-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.pillar-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.pillar-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.pillar-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
    margin-top: 0.5rem;
    text-align: center;
}

.card-span-2 {
    grid-column: span 2;
}

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

/* Help section específica para sobre-nos */
.sobre-nos-help-section {
    padding: 5rem 0;
}

/* Credibility section específica para sobre-nos */
.sobre-nos-credibility {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credibility-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.credibility-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.credibility-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.credibility-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.credibility-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

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

/* CTA box específica para sobre-nos */
.sobre-nos-cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.sobre-nos-cta-text-block {
    text-align: center;
}

.sobre-nos-cta-subhead {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-nos-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.sobre-nos-emergency-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 768px) {
    .sobre-nos-cta-content {
        flex-direction: row;
        text-align: left;
    }
    
    .sobre-nos-cta-text-block {
        text-align: left;
        flex: 1;
    }
    
    .sobre-nos-cta-subhead {
        margin-left: 0;
    }
    
    .sobre-nos-cta-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .sobre-nos-cta-box {
        padding: 3rem 4rem;
    }
}

/* ============================================
   PÁGINA POLÍTICA DE PRIVACIDADE
   ============================================ */

.page-header-section {
    padding: 6rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(96, 31, 74, 0.05) 100%);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-update-date {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.policy-wrapper {
    padding: 4rem 0 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.policy-content-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.policy-card {
    background-color: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.policy-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-card h2 .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.8;
}

.policy-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0 0.75rem;
}

.policy-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-list {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.policy-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.3rem;
}

.contact-box {
    background-color: rgba(139, 74, 107, 0.05);
    border: 1px solid rgba(139, 74, 107, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.contact-box a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.page-politica .container {
    padding: 0 1.5rem;
}

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

/* ============================================
   ESTILOS ESPECÍFICOS - PÁGINA TERMOS
   ============================================ */

.terms-hero {
    padding: 6rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(96, 31, 74, 0.05) 100%);
}

.terms-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

.terms-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
}

.terms-content-section {
    padding: 3rem 0 6rem;
    background-color: var(--surface-white);
}

.terms-hero .container,
.terms-content-section .container {
    padding: 0 1.5rem;
}

.terms-layout {
    display: grid;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.term-block {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background-color: var(--surface-white);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.term-block:hover {
    box-shadow: var(--shadow-md);
}

.term-title {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid rgba(139, 74, 107, 0.1);
    padding-bottom: 1rem;
}

.term-icon {
    color: var(--primary);
}

.term-text {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    text-align: justify;
}

.term-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.term-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.term-list li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.term-block .highlight-box {
    background-color: rgba(201, 154, 139, 0.15);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 1.5rem 0;
}

.term-block .highlight-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #a67d6f;
}

.term-block .highlight-box p {
    font-size: 0.9rem;
    color: #7A5C14;
    margin-bottom: 0;
}

/* Aviso de LGPD - Discreto e não obstrutivo */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    font-family: var(--font-body);
}

.lgpd-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.lgpd-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.lgpd-banner-text {
    flex: 1;
    min-width: 280px;
}

.lgpd-banner-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.lgpd-banner-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.lgpd-banner-link {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.lgpd-banner-link:hover {
    color: #ff6b9d;
}

.lgpd-banner-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-body);
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.lgpd-banner-btn:hover {
    background: #ff6b9d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.lgpd-banner-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .lgpd-banner {
        padding: 1rem;
    }
    
    .lgpd-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .lgpd-banner-text {
        min-width: 100%;
    }
    
    .lgpd-banner-title {
        font-size: 0.875rem;
    }
    
    .lgpd-banner-desc {
        font-size: 0.8125rem;
    }
    
    .lgpd-banner-btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .lgpd-banner {
        padding: 0.875rem;
    }
    
    .lgpd-banner-title {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .lgpd-banner-desc {
        font-size: 0.75rem;
    }
    
    .lgpd-banner-btn {
        font-size: 0.8125rem;
        padding: 0.75rem 1rem;
    }
}