/* Custom Font Import */
@font-face {
    font-family: 'HeadingNow';
    src: url('../fonts/HeadingNow-55Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'HeadingNow';
    src: url('../fonts/HeadingNow-56Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'HeadingNow';
    src: url('../fonts/HeadingNow-54Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #A84190;
    --secondary: #FAAA31;
    --blue: #0F3B7C;
    --dark: #28282B;
    --white: #FFFFFF;
    --gray-light: #FAF6F3;
    --gray: #7C7C7C;
    --orange: #E69702;
    --pink-light: #F1CFF3;
    --pink-dark: #892672;
    --blue-light: #588AE5;
    
    /* Typography */
    --font-heading: 'HeadingNow', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    /* Spacing */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--gray-light);
    line-height: 1.5;
    overflow-x: hidden;
}

.titulo-principal {
    font-family: var(--font-heading);
    font-weight: 700; 
}

.subtitulo-importante {
    font-family: var(--font-heading);
    font-weight: 500; 
}

.paragrafo-especial {
    font-family: var(--font-heading);
    font-weight: 400; 
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    padding-left: 30px;
    padding-right: 30px; 
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: 44px; 
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 500;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-primary {
    color: var(--blue);
}

.highlight-orange {
    color: var(--orange);
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #A84190 0%, #FAAA31 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    padding: 13px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 65, 144, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 20px;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    padding: 13px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    padding: 13px 24px;
    background: linear-gradient(90deg, #EE7378 0%, #8A38F5 100%);
    border: none;
    border-radius: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.transformacao-btn-wrapper {
    text-align: center;
    margin-top: 60px;
}


/* Header */



.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 28.6px rgba(30, 32, 36, 0.12);
    z-index: 1000;
    padding: 14px 0;
    width: 100vw;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-link {
    color: var(--blue);
    font-size: 16px;
    text-decoration: none;
    padding: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--blue);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 78px; 
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    content: center;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav {
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: var(--blue);
    text-decoration: none;
    font-size: 18px;
    border-bottom: 1px solid var(--orange);
    width: 100%;
    text-align: center;
}

.mobile-cta {
    width: 100%;
    margin-top: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-burguer {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 22px;
    display: none; 
    z-index: 1001;
    position: relative;
}

.header-burguer svg {
    display: block;
    width: 100%;
    height: 100%;
}

.header-burguer .bar1, 
.header-burguer .bar2, 
.header-burguer .bar3 {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.header-burguer.is-active .bar1 {
    transform: translateY(8px) rotate(45deg);
}

.header-burguer.is-active .bar2 {
    opacity: 0;
}

.header-burguer.is-active .bar3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 716px;
    margin-top: 78px;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 59, 124, 0) 0%, rgba(15, 59, 124, 0.78) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-bg-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 985px;
    height: 100%;
    background: url('../images/vector-overlay.svg');
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-subtitle {
    margin-bottom: 5px;
    display: block;
}

.hero-title {
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-support {
    margin-top: 40px;
}

.hero-support p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #BDCBDA;
}

.support-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.support-badge {
    background: rgba(150, 169, 197, 0.4);
    backdrop-filter: blur(5.25px);
    border: 0.8px solid #A9B0DE;
    border-radius: 47px;
    padding: 9px 12px;
    font-size: 14px;
    color: var(--white);
}

/* Section Projeto */
.section-projeto {
    padding: 66px 0;
    background: var(--white);
}

.projeto-grid {
    display: grid;
    grid-template-columns: 615px 1fr;
    gap: 96px;
    align-items: center;
}

.projeto-image img {
    width: 100%;
    height: 454px;
    object-fit: cover;
    border-radius: 17px;
}



.projeto-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.projeto-text strong {
    color: var(--blue);
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Section Esmola */
.section-esmola {
    padding: 66px 0;
}

.esmola-grid {
    display: grid;
    grid-template-columns: 462px 1fr;
    gap: 96px;
    align-items: center;
}

.esmola-content {
    padding-left: 92px;
}

.esmola-text {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.esmola-comparison {
    margin-top: 24px;
}

.comparison-item {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.comparison-item strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.esmola-image img {
    width: 100%;
    height: 454px;
    object-fit: cover;
    border-radius: 17px;
}

/* Section Transformação */



.section-transformacao {
    padding: 80px 0;
    background: var(--white);
}

.transformacao-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--dark);
    margin-top: -8px;
}

.transformacao-grid {
    display: grid;
    grid-template-columns: repeat(4, 250px);
    gap: 66px;
    justify-content: center;
}

.transformacao-item {
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transformacao-item h3 {
    font-size: 20px;
    color: var(--blue);
    margin-bottom: 20px;
    min-height: 40px;
    font-family: var(----font-heading);
    font-weight: 500;
}

.transformacao-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #1E1E1E;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Section Video */
.section-video {
    padding: 85px 0;
}

.video-wrapper {
    width: 100%;
    max-width: 902px;
    margin: 0 auto 50px;
    border-radius: 31px;
    overflow: hidden;
    box-shadow: 0px 14px 30px rgba(168, 65, 144, 0.38), 0px 4px 47.6px 4px rgba(0, 0, 0, 0.06);
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%; 
    display: block;
    object-fit: cover;
}

.video-content {
    text-align: center;
    max-width: 842px;
    margin: 0 auto;
}

.video-content .section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.video-subtitle {
    font-size: 18px;
    color: var(--dark);
}

/* Section Transparência */
.section-transparencia {
    background: linear-gradient(135deg, #A84190 0%, #0F3B7C 100%);
    padding: 80px 20px;
}

.transparencia-grid {
    display: grid;
    grid-template-columns: 45% 1fr; 
    max-width: 1217px;           
    margin: 0 auto;              
    border-radius: 24px;         
    overflow: hidden;
    gap: 60px;           
}

.transparencia-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px 16px;
}

.transparencia-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
}

.transparencia-text {
    font-size: 18px;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.transparencia-text strong {
    font-weight: 700;
}

.transparencia-highlight {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 24px;
}

.transparencia-features-box {
    background: rgba(0, 0, 0, 0.2); 
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 30px; 
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; 
    margin-top: 20px; 
    padding-top: 20px; 
    border-top: 1px solid rgba(255, 255, 255, 0.2); 
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px; 
    font-size: 16px;
    color: var(--white);
}

.feature-icon {
    flex-shrink: 0; 
    color: var(--secondary); 
}

.feature-item.feature-main {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px; 
}

.section-transparencia .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.section-transparencia .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Section Contribuir */
.section-contribuir {
    padding: 80px 0;
    background: var(--white);
}

.contribuir-grid {
    display: grid;
    grid-template-columns: 386px 1fr;
    gap: 100px;
    align-items: center;
}

.contribuir-text {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 32px;
}

.contribuir-methods {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 30px; 
}

.method-card {
    background: var(--gray-medium); 
    border-radius: 24px;
    padding: 40px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 40px rgba(168, 65, 144, 0.16); 
}

.method-card h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 23px;
}

.pix-box {
    background: var(--primary);
    border-radius: 8px;
    padding: 19px 22px;
}

.pix-box label {
    display: block;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    text-align: left;
}

.pix-key {
    background: #FFF8FD;
    border-radius: 10px;
    padding: 19px 22px;
    margin-bottom: 12px;
}

.pix-key span {
    font-size: 18px;
    color: var(--primary);
    word-break: break-all;
}

.btn-copy {
    background: #FDC8E5;
    color: var(--pink-dark);
    font-size: 14px;
    padding: 7px 17px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.qr-code {
    width: 159px;
    height: 159px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.method-card p {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary); 
    margin-bottom: 12px;
}

.card-description {
    font-size: 18px;
    color: var(--dark); 
    line-height: 1.5;
    max-width: 250px;
}

/* ======================================= */
/* ====== ESTILOS DA SEÇÃO DE EVENTOS ==== */
/* ======================================= */
.eventos-section {
    margin-top: 100px; 
}

.eventos-section .section-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary); 
}

.evento-item {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr 2fr 1.5fr;
    gap: 30px; 
    align-items: center; 
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0; 
}

.evento-item:last-child {
    border-bottom: none; 
}

.evento-titulo h3 {
    font-family: var(--font-body);
    font-size: 26px;
    color: var(--dark);
    font-weight: 600;
}

.evento-descricao p {
    font-size: 17px;
    font-weight: 400;
    font-family: var(--font-body)
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.evento-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    font-size: 16px;
}

.evento-detalhes {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.detalhe-item {
    display: flex;
    align-items: center;
    gap: 10px; 
    font-size: 16px;
    color: var(--dark);
}

.detalhe-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.evento-imagem img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}





/* Section CTA */
.section-cta {
    background: linear-gradient(135deg, #A84190 0%, #0F3B7C 100%);
    padding: 85px 0;
}

.cta-content {
    text-align: center;
    max-width: 693px;
    margin: 0 auto;
}

.cta-logo {
    height: 51px;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 55px;
    color: var(--white);
    margin-bottom: 18px;
}

.cta-text {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 40px;
}

/* Section FAQ */
.section-faq {
    background-image: 
        url("../images/superior.svg"),
        url("../images/inferior.svg"),
        linear-gradient(135deg, #A84190 0%, #511242 100%);

    background-position: 
        top left,          
        bottom right,     
        0 0;             
    
    background-repeat: 
        no-repeat,         
        no-repeat,         
        no-repeat;         

    background-size: 
        45%,               
        45%,                
        cover;             
    
    padding: 112px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .section-title {
    font-size: 58px;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--white);
}

.faq-list {
    max-width: 810px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 5px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 27px;
    width: 100%;
    padding: 25px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-number {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary);
    font-weight: 500;
}

.faq-question span:nth-child(2) {
    flex: 1;
    text-align: left;
    font-size: 18px;
    color: var(--dark);
}

.faq-icon {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.faq-icon path {
    stroke: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 24px 25px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background-color: var(--gray-light); 
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

/* --- Barra Superior --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
}

.footer-top-item h5 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
}

.footer-organizers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.organizer-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.organizer-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
}

.footer-logos-section {
    margin-bottom: 50px;
}

.footer-logos-section h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 24px;
    font-weight: 700;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
}

.logos-grid img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    justify-self: start; 
}

.realization-grid img {
    max-height: 60px; 
}

.footer-disclaimer {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 40px;
    max-width: 974px;
}

.footer-bottom {
    background: linear-gradient(135deg, #FAAA31  0%, #EE7378 100%);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--white);
    flex: 1 1 50%; 
}

.footer-credits {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--white);
    font-size: 14px;
}

.panthera-logo {
    height: 16px;
    width: auto;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex; 
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1; 
    pointer-events: auto; 
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    width: 100%; 
    max-width: 470px; 
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1); 
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.modal-header h3 {
    font-size: 32px;
    color: var(--primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 38px;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.modal-qr {
    text-align: center;
    margin-bottom: 24px;
}

.modal-qr img {
    width: 175px;
    height: 175px;
    border-radius: 8px;
    margin-bottom: 14px;
}

.modal-qr p {
    font-size: 16px;
    color: var(--dark);
}

/* Divisor "ou copie a chave pix" */
.modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin: 24px 0;
    color: var(--gray);
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex-grow: 1; /* Faz as linhas ocuparem o espaço disponível */
    height: 1px;
    background: #E0E0E0;
}

.modal-divider span {
    font-size: 14px;
}

/* Caixa da Chave PIX */
.pix-key-modal {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 14px;
}

.pix-key-modal span {
    flex: 1;
    font-size: 14px;
    color: var(--primary);
    word-break: break-all; /* Quebra a chave pix em telas pequenas */
}

.btn-copy-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--primary);
    flex-shrink: 0;
}

.btn-copy-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-pix p {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .header-burguer{
        display: none;
    }
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .header-burguer{
        display: none;
    }
    .projeto-grid,
    .esmola-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .transformacao-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .transparencia-grid {
        grid-template-columns: 1fr;
    }
    
    .transparencia-image {
        height: 400px;
    }
    
    
    
    .contribuir-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .evento-item {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "titulo imagem"
            "descricao imagem"
            "detalhes imagem";
        gap: 40px;
    }

    .evento-titulo { grid-area: titulo; }
    .evento-descricao { grid-area: descricao; }
    .evento-detalhes { grid-area: detalhes; }
    .evento-imagem { grid-area: imagem; align-self: center; }
    
    .footer-organizers {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-burguer{
        display: none;
    }
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    
    
    .section-title {
        font-size: 32px;
    }
    
    .hero {
        height: auto;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .projeto-grid,
    .esmola-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projeto-image img,
    .esmola-image img {
        height: 244px;
    }
    
    .esmola-content {
        padding-left: 0;
    }
    
    .transformacao-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contribuir-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .evento-item {
        grid-template-columns: 1fr; 
        grid-template-areas: none;  
        gap: 0px;
        text-align: center;
        padding: 30px 0;
        align-items: start;
    }

    .evento-imagem {
        grid-row: 1; 
    }
    .evento-titulo {
        grid-row: 2; 
    }
    .evento-detalhes {
        grid-row: 3; 
        display: flex;
        flex-direction: column;
        align-items: center; 
    }
    .evento-descricao {
        grid-row: 4; 
    }

    .detalhe-item {
        justify-content: center; 
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-number {
        font-size: 32px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    

    .footer-top {
        flex-direction: column;
        align-items: flex-start; 
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logos-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {

    .footer-top {
        align-items: center;
    }

    .section-transparencia {
        text-align: center;
    }

    .transparencia-btn {
        align-self: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .header-burguer{
        display: flex;
    }
    .container {
        padding: 0 20px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .support-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-support-title{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .support-badge {
        text-align: center;
    }

    .evento-titulo h3 {
        font-size: 20px; 
    }

    .modal-content {
        padding: 20px; 
    }

    .modal-header h3 {
        font-size: 28px;
    }

    .modal-subtitle {
        margin-bottom: 24px;
    }

    .pix-key-modal span {
        font-size: 13px; 
    }

    
}
