:root {
    /* Cores do logo */
    --burgundy: #7A2332;
    --burgundy-dark: #5A1825;
    --burgundy-light: #9A3D4D;
    --cream: #E8DCC4;
    --cream-light: #F5F0E8;
    --cream-dark: #D4C4A8;
    --rose: #D4A5A5;
    --green-accent: #7A9D54;
    --text-dark: #2D2D2D;
    --text-light: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 25px rgba(122, 35, 50, 0.08);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 35px rgba(122, 35, 50, 0.12);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.3rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Estilos para a Logo dinâmica do WordPress */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 60px;
    /* Altere este valor para deixar a logo maior ou menor */
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(122, 35, 50, 0.2);
}

.logo-icon::before {
    content: '';
    width: 28px;
    height: 22px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    position: absolute;
    top: 12px;
}

.logo-icon::after {
    content: '';
    width: 14px;
    height: 9px;
    background: var(--burgundy);
    position: absolute;
    top: 18px;
    border-radius: 1px;
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--burgundy);
    line-height: 1.2;
    font-weight: 800;
}

.logo-text p {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--burgundy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-light) 0%, #FFFFFF 50%, var(--cream-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(122, 35, 50, 0.08) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 157, 84, 0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 4.2rem;
    color: var(--burgundy);
    margin-bottom: 2rem;
    line-height: 1.15;
    animation: fadeInUp 1s ease;
    font-weight: 800;
}

.hero-text h2 span {
    color: var(--green-accent);
    display: block;
    font-size: 3.8rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.9;
    animation: fadeInUp 1s ease 0.2s backwards;
    max-width: 600px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--burgundy);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s backwards;
    box-shadow: 0 10px 30px rgba(122, 35, 50, 0.1);
}

.hero-highlight p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.8rem;
    animation: fadeInUp 1s ease 0.4s backwards;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
    color: white;
    box-shadow: 0 15px 35px rgba(122, 35, 50, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(122, 35, 50, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 3px solid var(--burgundy);
}

.btn-secondary:hover {
    background: var(--burgundy);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(122, 35, 50, 0.25);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s backwards;
}

.hero-image-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(122, 35, 50, 0.25);
    border: 8px solid white;
}

.hero-image-circle::before {
    content: '';
    position: absolute;
    inset: 25px;
    border-radius: 50%;
    border: 3px dashed var(--burgundy);
    opacity: 0.2;
}

.hero-image-text {
    text-align: center;
    padding: 3rem;
}

.hero-image-text h3 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.hero-image-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* About Section */
.about {
    padding: 7rem 2.5rem;
    background: white;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 4rem;
}

.about-card {
    background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light), var(--green-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(122, 35, 50, 0.18);
    border-color: var(--burgundy-light);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    box-shadow: 0 15px 35px rgba(122, 35, 50, 0.25);
    transition: all 0.4s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-card h3 {
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Services Section */
.services {
    padding: 7rem 2.5rem;
    background: linear-gradient(135deg, var(--cream-light) 0%, white 50%, var(--cream-light) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(122, 35, 50, 0.1);
    transition: all 0.5s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(122, 35, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(122, 35, 50, 0.18);
    border-color: var(--burgundy-light);
}

.service-card h3 {
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 700;
}

.service-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.service-card>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-card ul {
    list-style: none;
    margin-top: 2rem;
}

.service-card li {
    padding: 1rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--cream);
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-card li:last-child {
    border-bottom: none;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-card li:hover {
    padding-left: 3rem;
    color: var(--burgundy);
}

/* Impact Section */
.impact {
    padding: 7rem 2.5rem;
    background: var(--burgundy);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
}

.impact .section-header h2,
.impact .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 7rem 2.5rem;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(12px);
    box-shadow: 0 15px 40px rgba(122, 35, 50, 0.12);
    border-color: var(--burgundy-light);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(122, 35, 50, 0.25);
}

.contact-item-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--burgundy);
    font-weight: 700;
}

.contact-item-text p,
.contact-item-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.contact-item-text a:hover {
    color: var(--burgundy);
}

.contact-form {
    background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(122, 35, 50, 0.15);
    border: 3px solid var(--cream);
}

.contact-form h3 {
    color: var(--burgundy);
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--cream);
    border-radius: 15px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 5px 20px rgba(122, 35, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

/* Footer */
footer {
    background: var(--burgundy-dark);
    color: white;
    padding: 4rem 2.5rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-links h4,
.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    padding: 0.7rem 0;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 12px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: white;
    color: var(--burgundy);
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h2 {
        font-size: 3.5rem;
    }

    .hero-text h2 span {
        font-size: 3.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p,
    .hero-highlight {
        max-width: 100%;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .hero-image-circle {
        width: 450px;
        height: 450px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transition: left 0.4s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        margin-top: 70px;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text h2 span {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-circle {
        width: 320px;
        height: 320px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .about,
    .services,
    .impact,
    .contact {
        padding: 4rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
    }
}


/* =========================================
   EQUIPE / DIRETORIA
   ========================================= */
.equipe {
    padding: 7rem 2.5rem;
    background: var(--cream-light);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.equipe-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(122, 35, 50, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.equipe-card:hover {
    transform: translateY(-10px);
    border-color: var(--burgundy-light);
}

.equipe-img-wrapper {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
}

.equipe-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
}

.equipe-card h3 {
    font-size: 1.5rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.equipe-card p {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   PARCERIAS
   ========================================= */
.parcerias {
    padding: 7rem 2.5rem;
    background: white;
}

.parcerias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.parceria-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    transition: all 0.4s ease;
}

.parceria-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.parceria-card:hover {
    border-color: var(--burgundy);
    box-shadow: 0 10px 30px rgba(122, 35, 50, 0.1);
}

.parceria-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* =========================================
   DOAÇÕES
   ========================================= */
.doacoes {
    padding: 7rem 2.5rem;
    background: linear-gradient(135deg, white 0%, var(--cream-light) 100%);
}

.doacoes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.pix-box {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(122, 35, 50, 0.1);
    border-top: 5px solid var(--green-accent);
}

.pix-box h3 {
    font-size: 2rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.pix-key {
    font-family: monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark);
    background: var(--cream-light);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.pix-msg {
    color: var(--green-accent);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

.doacoes-banner img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.doacoes-banner:hover img {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .doacoes-container {
        grid-template-columns: 1fr;
    }

    .pix-key {
        font-size: 1.4rem;
    }
}