:root {
    --laranja: #F69053;
    --lilas: #702054;
    --lilas-claro: #f4e9f0;
    --branco: #FFFFFF;
    --preto-suave: #333333;
    --cinza-claro: #f8f9fa;
    --cinza-borda: #dee2e6;
    --sombra: 0 4px 15px rgba(0, 0, 0, 0.07);
    --sombra-forte: 0 10px 30px rgba(0, 0, 0, 0.1);
    --cuidado-cor: #f5c518;
    --reaja-cor: #F69053;
    --ajuda-cor: #e74c3c;
    --extremo-cor: #F69053;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--branco);
    color: var(--preto-suave);
    line-height: 1.7;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

#impacto {
    padding: 80px 0;
    background-color: var(--branco);
}

#quem-somos {
    padding-top: 40px;
    padding-bottom: 80px;
}

section:nth-of-type(odd) {
    background-color: var(--cinza-claro);
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--lilas);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--laranja);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -30px auto 50px;
    font-size: 1.1rem;
    color: #666;
}

.icon {
    stroke-width: 1.5;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--laranja);
    color: var(--branco);
    box-shadow: 0 4px 15px rgba(246, 144, 83, 0.3);
}

.btn-primary:hover {
    background-color: #e57a3e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(246, 144, 83, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secondary:hover {
    background-color: var(--branco);
    color: var(--lilas);
}

.btn-sos {
    background-color: #ff4d4d;
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-sos i {
    width: 18px;
    height: 18px;
}

.btn-sos:hover {
    background-color: #e60000;
    transform: scale(1.05);
}

#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

#header.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--cinza-borda);
    background-color: rgba(255, 255, 255, 0.95);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.4s ease;
}

#header.scrolled .container {
    height: 70px;
}

.logo img {
    height: 35px;
    transition: all 0.3s ease;
}

.scrolled .logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-menu li {
    margin-left: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--preto-suave);
    font-weight: 600;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-menu a:not(.btn-sos):hover {
    background-color: var(--cinza-claro);
    color: var(--lilas);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: var(--lilas);
    border-radius: 5px;
    transition: all 0.3s ease;
}

#inicio {
    height: 110vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    position: relative;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

#inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(112, 32, 84, 0.75), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

#inicio .container {
    position: relative;
    z-index: 2;
}

#inicio h1 {
    font-size: 3.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--branco);
    font-weight: 800;
    line-height: 1.2;
}

#inicio .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.impact-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card {
    background: linear-gradient(145deg, var(--branco), #f7f7f7);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
    border: 1px solid var(--cinza-borda);
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
}

.impact-card .icon {
    width: 48px;
    height: 48px;
    color: var(--laranja);
    margin-bottom: 15px;
}

.impact-card .counter {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, var(--lilas), var(--laranja));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.impact-card p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    color: var(--preto-suave);
}

#quem-somos .text-content-full {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 30px;
}

.timeline-container {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cinza-borda);
    border-radius: 4px;
}

.timeline-wrapper {
    display: flex;
    gap: 40px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    cursor: grab;
    align-items: flex-start;
}

.timeline-wrapper:active {
    cursor: grabbing;
}

.timeline-wrapper::-webkit-scrollbar {
    display: none;
}

.timeline-item {
    flex: 0 0 320px;
    position: relative;
    padding-top: 45px;
}

.timeline-content {
    background: var(--branco);
    border-radius: 15px;
    box-shadow: var(--sombra);
    width: 100%;
    position: relative;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--sombra-forte);
}

.timeline-content img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid var(--laranja);
    transition: transform 0.4s ease;
}

.timeline-content:hover img {
    transform: scale(1.1);
}

.timeline-body {
    padding: 15px 25px 25px;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lilas);
    color: var(--branco);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 22px;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--branco);
    border: 5px solid var(--lilas);
    z-index: 5;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    background-color: var(--laranja);
    border-color: var(--laranja);
    transform: translate(-50%, -50%) scale(1.1);
}

.timeline-title {
    color: var(--lilas);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--lilas);
    color: var(--branco);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.timeline-nav:hover {
    background-color: var(--laranja);
    opacity: 1;
}

.timeline-nav.prev { left: -15px; }
.timeline-nav.next { right: -15px; }

#quem-somos .mission-vision-values {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.mvv-card {
    background: var(--branco);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--sombra);
}

.mvv-card h3 {
    margin-bottom: 15px;
}

.mvv-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: var(--laranja);
}

.transparency-link-wrapper {
    text-align: center;
    margin-top: 60px;
}

#projetos {
    background-color: var(--cinza-claro) !important;
    padding-top: 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--branco);
    border-radius: 10px;
    padding: 35px 30px;
    border: 1px solid var(--cinza-borda);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-forte);
    border-color: var(--laranja);
}

.project-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--lilas);
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

#apoie {
    background: var(--lilas);
}

#apoie .container {
    position: relative;
    z-index: 3;
}

#apoie h2, #apoie h3, #apoie p {
    color: var(--branco);
}

#apoie h2::after {
    background-color: var(--branco);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.support-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.support-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--branco);
}

.support-card h3 {
    margin-bottom: 15px;
}

.pix-key {
    font-size: 1rem;
    word-break: break-all;
    margin-top: 10px;
    line-height: 1.5;
}

.support-card .pix-key:last-of-type {
    margin-bottom: 25px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-path {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.ods-title-wrapper {
    margin-top: 80px;
    text-align: center;
    margin-bottom: 40px;
}

.ods-main-title {
    color: var(--branco);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ods-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ods-click-prompt {
    display: inline-block;
    margin-top: 10px;
}

.ods-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.ods-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ods-side-click-icon {
    color: var(--branco);
    width: 32px;
    height: 32px;
    animation: pulse-icon 2s ease-in-out infinite;
}

#ods-circle-container {
    position: relative;
    width: 300px;
    height: 300px;
    transition: transform 0.4s ease;
}

#ods-circle-container:hover {
    transform: scale(1.03);
}

.un-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.un-logo-container:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.un-logo-container img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.3s ease;
}

.un-logo-container:hover img {
    transform: scale(1.05);
}

#ods-interactive-circle {
    width: 100%;
    height: 100%;
    animation: rotate 60s linear infinite;
    filter: drop-shadow(3px 5px 5px rgba(0,0,0,0.2));
}

#ods-circle-container:hover #ods-interactive-circle {
    animation-play-state: paused;
}

#ods-interactive-circle path {
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-path 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

#ods-interactive-circle path:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
    animation: none;
}

.ods-popover {
    position: absolute;
    background-color: var(--preto-suave);
    color: var(--branco);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    z-index: 10;
    box-shadow: var(--sombra-forte);
    text-align: center;
    white-space: nowrap;
}

.ods-popover.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#ods-popover-3 { top: 20px; left: 235px; }
#ods-popover-5 { top: 130px; left: 285px; }
#ods-popover-10 { top: 245px; left: 50%; transform: translateX(-50%); }
#ods-popover-17 { top: 130px; right: 285px; }
#ods-popover-18 { top: 20px; right: 235px; }

#ods-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 9, 30, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 20px; 
}

#ods-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

#ods-modal-content {
    background: var(--branco);
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 800px; 
    width: 100%;   
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 90vh; 
    display: flex;
    flex-direction: column; 
}

#ods-modal-overlay.visible #ods-modal-content {
    transform: scale(1);
}

#ods-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10; 
}

#ods-modal-close:hover {
    color: var(--lilas);
}

#ods-modal-content h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    padding-right: 30px; 
}

.ods-modal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    overflow-y: auto; 
    padding: 5px 15px; 
}

.ods-item {
    text-align: center;
    flex: 1 1 180px;
    max-width: 200px;
}

.ods-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ods-item p {
    font-weight: 600;
    color: var(--preto-suave);
}

#contato {
    background-color: var(--cinza-claro) !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--branco);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--preto-suave);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--cinza-borda);
}

.contact-card:hover {
    transform: translateY(-10px);
    background-color: var(--lilas);
    color: var(--branco);
    border-color: var(--lilas);
}

.contact-card:hover .icon, .contact-card:hover h3, .contact-card:hover p {
    color: var(--branco);
}

.contact-card .icon {
    width: 48px;
    height: 48px;
    color: var(--lilas);
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.contact-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    transition: color 0.4s ease;
}

.contact-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: var(--laranja);
    color: var(--branco);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.contact-card:hover span {
    transform: translateY(0);
}

.socials-contato {
    text-align: center;
}

.socials-contato h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.socials-contato .social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.socials-contato .social-icons a {
    color: var(--lilas);
    transition: all 0.3s ease;
}

.socials-contato .social-icons a:hover {
    color: var(--laranja);
    transform: scale(1.2);
}

.socials-contato .social-icons i {
    width: 32px;
    height: 32px;
}

#footer {
    background-color: var(--branco);
    color: var(--preto-suave);
    padding: 60px 0 0;
}

#partners {
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.partner-category {
    margin-bottom: 50px;
}

.partner-category:last-child {
    margin-bottom: 0;
}

.partner-category h4 {
    font-size: 1.3rem;
    color: var(--lilas);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.partner-category h4::after {
    content: '';
    display: block;
    width: 50%;
    height: 3px;
    background-color: var(--laranja);
    margin: 8px auto 0;
    border-radius: 2px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 50px;
}

.logo-grid img {
    transition: transform 0.3s ease;
}

.logo-grid img:hover {
    transform: scale(1.1);
}

.logo-grid.patrocinio img {
    max-height: 55px;
}

.logo-grid.apoio img {
    max-height: 45px;
}

.logo-grid.parceiros img {
    max-height: 50px;
}

.logo-grid.selos img {
    max-height: 65px;
}

.footer-bottom {
    border-top: 1px solid var(--cinza-borda);
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--preto-suave);
    margin: 0;
}

@keyframes fadeInItem {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#rede-da-mulher {
    background: var(--lilas);
}

#rede-da-mulher .header-content {
    text-align: center;
}

#rede-da-mulher h2 {
    color: var(--branco);
}
#rede-da-mulher .section-subtitle {
    max-width: 600px;
    margin-bottom: 60px;
    color: rgba(255,255,255,0.9);
}
#rede-da-mulher h2::after {
    background-color: var(--laranja);
}

.violentometro-container-novo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
}

.imagem-wrapper-topo {
    flex: 1 1 520px;
    max-width: 570px;
    order: 1;
}
.imagem-wrapper-topo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagem-wrapper-topo img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.violentometro-termometro-wrapper {
    flex: 1 1 360px;
    max-width: 380px;
    position: relative;
    order: 2;
}

.termometro-barra {
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 6px;
    background: linear-gradient(to top, var(--cuidado-cor) 10%, var(--reaja-cor) 50%, var(--ajuda-cor) 90%);
    border-radius: 3px;
    z-index: 1;
}

.termometro-nivel {
    position: relative;
    padding-left: 50px;
    margin-bottom: 15px;
}
.termometro-nivel:last-child {
    margin-bottom: 0;
}

.termometro-marcador {
    position: absolute;
    left: 12px;
    top: 15px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 3px solid var(--lilas-claro);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.nivel-cuidado .termometro-marcador { background-color: var(--cuidado-cor); }
.nivel-reaja .termometro-marcador { background-color: var(--reaja-cor); }
.nivel-peca-ajuda .termometro-marcador { background-color: var(--ajuda-cor); }

.termometro-conteudo {
    background: var(--branco);
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: var(--sombra-forte);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.termometro-conteudo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.termometro-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.termometro-header i {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}
.termometro-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--lilas);
}

.nivel-cuidado i { color: var(--cuidado-cor); }
.nivel-reaja i { color: var(--reaja-cor); }
.nivel-peca-ajuda i { color: var(--ajuda-cor); }

.termometro-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}
.termometro-lista li {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--preto-suave);
    opacity: 0;
    animation: fadeInItem 0.5s ease forwards;
}

.termometro-lista li:nth-child(2) { animation-delay: 0.1s; }
.termometro-lista li:nth-child(3) { animation-delay: 0.2s; }
.termometro-lista li:nth-child(4) { animation-delay: 0.3s; }
.termometro-lista li:nth-child(5) { animation-delay: 0.4s; }
.termometro-lista li:nth-child(6) { animation-delay: 0.5s; }

.termometro-lista li.extremo {
    font-weight: 700;
    color: var(--laranja);
}

.violentometro-ajuda-link {
    text-align: center;
    margin-top: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.violentometro-ajuda-link .btn-primary {
    background-color: var(--branco);
    color: var(--lilas);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 40px;
    font-size: 1.1rem;
}
.violentometro-ajuda-link .btn-primary:hover {
    background-color: var(--laranja);
    color: var(--branco);
    transform: translateY(-3px) scale(1.05);
}
.btn-secondary-custom {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    background-color: transparent;
    color: var(--branco);
    border: 2px solid var(--branco);
}

.btn-secondary-custom:hover {
    background-color: var(--branco);
    color: var(--lilas);
    transform: translateY(-3px) scale(1.05);
}

@media (max-width: 992px) { 
    h2 { font-size: 2.2rem; } 
    #inicio h1 { font-size: 2.8rem; } 
    .nav-menu li { margin-left: 10px; } 
    .timeline-nav.prev { left: 0; } 
    .timeline-nav.next { right: 0; } 
    .logo-grid { 
        gap: 30px 40px; 
    } 
    .logo-grid.patrocinio img { max-height: 50px; } 
    .logo-grid.apoio img { max-height: 40px; } 
    .logo-grid.parceiros img { max-height: 45px; } 
    .logo-grid.selos img { max-height: 60px; } 
    .ods-main-title { font-size: 2.2rem; } 
    #ods-circle-container { width: 260px; height: 260px; } 
     
    .violentometro-container-novo { 
        flex-direction: column-reverse; 
        gap: 60px; 
    } 
    .imagem-wrapper-topo { 
        max-width: 450px; 
        flex-basis: auto; 
    } 
    .violentometro-termometro-wrapper {
        max-width: 420px; 
        flex-basis: auto; 
    }
} 

@media (max-width: 768px) { 
    section, #impacto { padding: 60px 0; } 
    #quem-somos { padding-top: 60px; } 
    .impact-numbers-grid { grid-template-columns: 1fr; } 
    .impact-card .counter { font-size: 3rem; } 
    .contact-grid { grid-template-columns: 1fr; } 
    #ods-modal-content { 
        padding: 30px 25px; 
        width: 95%; 
        max-height: 85vh; 
        overflow-y: auto; 
    } 
    #ods-modal-close { 
        position: sticky; 
        top: 15px; 
        right: 15px; 
        align-self: flex-end; 
        background-color: rgba(255, 255, 255, 0.9); 
        backdrop-filter: blur(2px); 
        border-radius: 50%; 
        width: 34px; 
        height: 34px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        z-index: 10; 
        margin: 0; 
        padding: 0; 
        font-size: 2rem; 
    } 
    .ods-modal-grid { 
        flex-direction: column; 
        align-items: center; 
    } 
    #ods-modal-content h3 { font-size: 1.5rem; } 
    .ods-title-wrapper { margin-top: 60px; } 
    .ods-main-title { font-size: 1.8rem; } 
    .ods-subtitle { font-size: 1rem; } 
    .ods-section-container { padding: 0; } 
    .ods-chart-wrapper { gap: 10px; } 
    #ods-circle-container { width: 220px; height: 220px; } 
    .ods-popover { display: none; } 
    .nav-menu { 
        display: none; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background-color: var(--branco); 
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
        flex-direction: column; 
        padding: 10px 0; 
    } 
    #header.scrolled .nav-menu { 
        top: 70px; 
    } 
    .nav-menu.active { display: flex; } 
    .nav-menu ul { 
        flex-direction: column; 
        width: 100%; 
        text-align: left; 
        align-items: flex-start; 
    } 
    .nav-menu li { margin: 0; width: 100%; } 
    .nav-menu a { 
        display: block; 
        padding: 15px 20px; 
        border-bottom: 1px solid var(--cinza-claro); 
        width: 100%; 
        border-radius: 0; 
    } 
    .nav-menu a:not(.btn-sos):hover { 
        background-color: var(--cinza-claro); 
    } 
    .nav-menu .btn-sos { 
        margin: 15px 20px; 
        text-align: center; 
        width: calc(100% - 40px); 
        justify-content: center; 
    } 
    .hamburger { display: flex; } 
    #inicio h1 { font-size: 2.5rem; } 
    #inicio .buttons { flex-direction: column; align-items: center; } 
    .violentometro-ajuda-link { gap: 15px; }
    .violentometro-ajuda-link .btn {
        width: 80%;
        max-width: 350px;
    }
} 

@media (max-width: 576px) { 
    .imagem-wrapper-topo { 
        max-width: 100%; 
    } 
    .termometro-nivel { 
        padding-left: 35px; 
    } 
    .termometro-barra { 
        left: 15px; 
    } 
    .termometro-marcador { 
        left: 7px;
        top: 13px;
    } 
    .termometro-header h4 {
        font-size: 1.2rem;
    }
    .termometro-lista li {
        font-size: 0.9rem;
    }
}

.logo-grid.patrocinio img {
    max-height: 65px;
}

.logo-grid.apoio img.logo-aumentado[src="img/logos_terceiros/apoio01.png"] {
    max-height: 65px;
}
.logo-grid.apoio img[src="img/logos_terceiros/apoio06.png"] {
    max-height: 60px;
}

.logo-grid.parceiros img.logo-aumentado[src="img/logos_terceiros/parceiro03.jpg"] {
    max-height: 70px;
}
.logo-grid.parceiros img.logo-aumentado[src="img/logos_terceiros/parceiro07.jpg"] {
    max-height: 80px;
}

.logo-grid.selos img.logo-aumentado[src="img/logos_terceiros/selo01.png"] {
    max-height: 95px;
}

.logo-grid.parceiros img.logo-parceiro-novo {
    max-height: 60px;
}