@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --footer-bg-start: #5a0a5a; /* Roxo escuro no topo */
    --footer-bg-end: #8a0b5a; /* Roxo mais avermelhado na base */
    --footer-text-color: #f0e0f0; /* Cor do texto claro */
    --footer-link-hover: #ffffff; /* Cor do link ao passar o mouse */
    --footer-heading-color: #ffffff; /* Cor dos títulos das colunas */
    --hr-color: rgba(255, 255, 255, 0.2); /* Cor da linha divisória */
    --font-family-poppins: 'Poppins', sans-serif;
}

.pink   { --gradient: linear-gradient(to bottom right, #ec4899, #f43f5e); }
.purple { --gradient: linear-gradient(to bottom right, #a855f7, #6366f1); }
.blue   { --gradient: linear-gradient(to bottom right, #3b82f6, #06b6d4); }
.green  { --gradient: linear-gradient(to bottom right, #10b981, #059669); }

* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Concert One", sans-serif;
    background: linear-gradient(90deg, #634fb6, #7a458b);
    color: white;
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(to right, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.logo h1 {
    font-size: 1.3rem;
    font-weight: 600;
}

.logo .logo-image {
    color: #ff5c8d;
}

.logo .logo-image img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
}

.logo-image span img {
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

nav a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #ff5c8d;
}

/* Menu hambúrguer */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(90deg, #634fb6, #7a458b);
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 5rem 3rem 3rem;
    flex-wrap: wrap;
}

.hero-content {
    padding: 2rem;
    flex: 1;
    min-width: 300px;
}

.hero-content h2 {
    max-width: 500px;
    line-height: 1;
    font-size: 4rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient( to right, #ff1361 0%, #ff6b6b 33%, #f8ffae 66%, #ff1361 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave-animation 4s linear infinite;
    background-size: 200% auto;
}

.hero-content p {
    margin-top: 1.2rem;
    max-width: 500px;
    font-size: 1.05rem;
}

.hero-buttons {
    max-width: 500px;
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(90deg, #ff5c8d, #ff6fb5);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 92, 141, 0.5);
    transition: transform 0.2s;
}

.gift {
    align-content: center;
    align-items: center;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: white;
    color: #7b4dd3;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

/* Image e stats */
.hero-image {
    position: relative;
    flex: 1;
    min-width: 320px;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
}

.stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 0.8rem 1.2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.stat-top {
    top: 5%;
    right: 30%;
}

.stat-bottom {
    bottom: 7%;
    left: -10%;
}

.stat strong {
    display: block;
    font-size: 1.1rem;
    color: #ffd54f;
}

.stat .icon {
    font-size: 1.5rem;
}

@keyframes wave-animation {
    to {
        background-position: 200% center;
    }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 9999;
    animation: fadeIn 0.3s ease forwards;
    overflow-y: auto;
}

/* ===== Modal Principal ===== */
.modal {
    background: #fff;
    border-radius: 1.5rem;
    max-width: 90vw;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.4s ease forwards;
    max-height: 90vh;
    overflow-y: auto;
}

/* ===== Cabeçalho ===== */
.modal-header {
    background: linear-gradient(to right, #7e22ce, #db2777);
    color: white;
    padding: 1.5rem;
    position: relative;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: left;
}

.icon-heart {
    font-size: 2rem;
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.2s;
}

.close-btn:hover {
        background: rgba(255, 255, 255, 0.4);
    }

/* ===== Corpo do Modal ===== */
.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

/* ===== Seção QR Code ===== */
.qr-section {
    background: linear-gradient(to bottom right, #f3e8ff, #fce7f3);
    padding: 3rem 2rem;
    text-align: center;
    color: #000;
}

.qr-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-bottom: 1rem;
}

.qr-icon {
    font-size: 4rem;
    color: #7e22ce;
}

.pix-box {
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.pix-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.pix-key {
    color: #7e22ce;
    font-family: monospace;
    font-weight: bold;
    word-break: break-all;
}

/* ===== Seção Formulário ===== */
.form-section {
    padding: 2rem;
}

.form-section h3 {
        color: #1f2937;
        margin-bottom: 1.5rem;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    transition: 0.2s;
    font-size: 0.95rem;
}

input:focus,
textarea:focus {
        border-color: #a855f7;
        outline: none;
        box-shadow: 0 0 0 2px #a855f755;
    }

.submit-btn {
    background: linear-gradient(to right, #7e22ce, #db2777);
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
        opacity: 0.9;
    }

/* ===== Botão de abrir ===== */
.open-btn {
    background: linear-gradient(to right, #7e22ce, #db2777);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
    font-size: 1rem;
}

.open-btn:hover {
        opacity: 0.9;
    }

/* About Us */
.about {
    width: 100vw;
    align-items: center;
    padding: 5rem 3rem 3rem;
    flex-wrap: wrap;
    background-color: #ffffff;
    color: #4b5563;
}

.about-content h2 {
    color: #6d68cb;
    font-size: 2.5rem;
}

.about-content p {
    font-size: 1.1rem;
    text-align: justify;
}

.about-content h2, .about-content p { text-align: center; }

.cards {
    padding: 6rem 8rem 8rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
    text-align: center;
    min-width: 300px;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1;
}

.icon-border {
    border-radius: 10rem;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    width: 4rem;
    height: 4rem;
    align-content: center;
    margin-bottom: 0.8rem;
    color: #fff;
    align-content: end;
}

.icon-border svg {
    width: 40px;
    height: 40px;
}

.card h3 {
    color: #000000;
}

.mission-content {
    padding: 2rem 2rem 2rem 2rem;
    gap: 1rem;
    display: flex;
    background: #fff1f2;
    border-radius: 15px;
    max-width: 1550px;
    width: 100%;
    justify-content: space-between;
}

.mission-text {
    max-width: 500px;
    align-content: center;
}

.mission-text h2 {
    padding-bottom: 1rem;
}

.mission-text h2, .mission-text p {
    text-align: left;
}

.mission-image {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    max-width: 700px;
}

.mission-image img {
    width: 100%;
    height: 400px;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/* Founder */
.founder {
    background: lightyellow;
    padding: 5rem 3rem;
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #6d68cb;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.founder-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.founder-image {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-image img {
    height: 700px;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.quote {
    position: relative;
    margin-top: -50px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1rem 1rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-style: italic;
    color: #4b3a91;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    width: fit-content;
    transition: transform 0.3s ease;
    transform: translateX(200px)
}

.quote:hover {
    transform: translateX(205px);
}

.quote svg {
    color: #7b4dd3;
    min-width: 20px;
}

.founder-text {
    flex: 1;
}

.founder-text h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 1rem;
}

.founder-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.founder-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-card svg {
    color: rgb(168 85 247);
    font-weight: bold
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 1.8rem;
    color: #8b6ef3;
    margin-bottom: 0.5rem;
}

.stat-card h4 {
    font-size: 1.5rem;
    color: #222;
}

.stat-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Donation */
.doacao {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: auto;
}

.doacao-header h2 {
    font-size: 2rem;
    color: #f43f5e;
    margin-bottom: 0.5rem;
}

.doacao-header p {
    color: #fff;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.doacao-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card .icon {
    font-size: 2rem;
    padding-bottom: 0.2rem;
}

.icon-donation {
    align-content: center;
    padding-top: 0.5rem;
    width: 40px;
    height: 40px;
}

.icon-donation img {
    width: 100%;
    height: 100%;
    background:#d0f0d0 ;
}

.card .icon-border svg {
    font-size: 2rem;
    padding-bottom: 0.2rem;
}

.card.unica {
    background: #e5f7e5;
}

.card.mensal {
    background: #f2e8ff;
}

.card.especial {
    background: #e5f6ff;
}

.card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.card p {
    color: #555;
    font-size: 0.9rem;
    min-height: 40px;
}

.card .valor {
    display: block;
    font-weight: 600;
    color: #000;
    margin: 1rem 0;
    font-size: 1.2rem;
}

.card button {
    background: var(--roxo);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.card.unica button {
    background: linear-gradient(135deg, #a5e780, #69b73d);
}

.card.mensal button {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.card.especial button {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.card button:hover {
    opacity: 0.85;
}

.modal-overlay-donation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-donation {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }

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

.modal-donation h1 {
    font-size: 1.4rem;
    color: #7e22ce;
    margin-bottom: 10px;
}

.modal-donation p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.modal-donation img {
    width: 100%;
    max-width: 150px;
    border-radius: 12px;
}

/* Botão para abrir modal */
.open-btn-donation {
    display: block;
    margin: 100px auto;
    padding: 12px 24px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.open-btn-donation:hover {
    opacity: 0.85;
}

.close-btn-donation {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 22px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.close-btn-donation:hover {
    color: #7e22ce;
}

/* --- Impacto --- */
.impacto {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.impacto-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.impacto-header .icon {
    font-size: 1.8rem;
}

.impacto-valores {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.impacto-valores div {
    min-width: 150px;
}

.impacto-valores h4 {
    margin: 0;
    font-size: 1.3rem;
}

.impacto-valores p {
    margin-top: 0.3rem;
    font-size: 0.9rem;
}

/* Gallery */
#gallery {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f0ff, #ffe6f0);
  text-align: center;
  font-family: "Poppins", sans-serif;
}

#gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6b46c1, #d53f8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* ===== Galeria ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.card-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card-gallery:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

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

.card-gallery:hover img {
    transform: scale(1.1);
}

/* ===== Overlay ===== */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.card-gallery:hover .overlay {
    opacity: 1;
}

.overlay .tag {
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 8px;
  text-align: left;
}

.overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== Ícones e Infos ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 70px;
    text-align: center;
}

.info .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.icon.pink {
    color: #ec4899;
}

.icon.purple {
    color: #8b5cf6;
}

.icon.blue {
    color: #3b82f6;
}

.icon svg {
    padding-top: 1rem;
    height: 50px;
    width: 50px;
}

.info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.info p {
    color: #666;
    font-size: 0.95rem;
}

/* Volunter */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.volunteer-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeUp 1s ease forwards;
}

.volunteer-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.volunteer-card::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.1;
        background: var(--gradient);
    }

.volunteer-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.card-content {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.card-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.card-content .time {
    font-weight: 600;
    color: #7e22ce;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    color: white;
    background: var(--gradient);
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn:hover {
        opacity: 0.9;
    }

/* Motivos */
.reason-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6)
}

@media (min-width: 992px) {
    .reason-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.reason-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reason-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #9333ea, #ec4899);
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.reason-text {
    margin: 0;
}

.reason-text h4 {
    text-align: left;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reason-text p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reason-grid img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(to bottom right, #3b0764, #831843);
    padding: 4rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

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

.logo-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.logo-icon {
    color: #f472b6;
    font-size: 2rem;
}

.logo-footer span {
    font-size: 1.5rem;
    font-weight: bold;
}

.description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.socials {
    display: flex;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s, transform 0.2s;
}

.socials a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.socials i {
    font-size: 18px;
    color: white;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-item span {
    margin: 0;
}

.contact-item i {
    color: #f472b6;
    font-size: 1.2rem;
    margin: 0;
    margin-top: 2px;
    width: 25px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom i {
    color: #f472b6;
    margin: 0 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== Scrollbar personalizada ===== */
.modal,
.modal-overlay {
    scrollbar-width: thin;
    scrollbar-color: #a855f7 #f3e8ff;
}

.modal::-webkit-scrollbar,
.modal-overlay::-webkit-scrollbar {
    width: 8px;
}

.modal::-webkit-scrollbar-track,
.modal-overlay::-webkit-scrollbar-track {
    background: #f3e8ff;
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb,
.modal-overlay::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #a855f7, #7e22ce);
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover,
.modal-overlay::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #9333ea, #6d28d9);
}


/* Responsividade */
@media (max-width: 1366px) {
    .quote {
        right: 40%;
    }

    .stat-top {
        top: 15%;
        right: -3%;
    }

    .stat-bottom {
        bottom: 15%;
        left: -5%;
    }
}

@media (max-width: 900px) {
    .quote {
        right: 20%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .highlight {
        font-size: 2.2rem;
    }

    .hero-content p {
        text-align: justify;
    }

    .hero-image {
        order: 2;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.3);
        position: absolute;
        top: 70px;
        right: 0px;
        padding: 1rem;
    }

    nav ul li {
        padding-left: 1rem;
        width: 100%;
        text-align: left;
    }

    nav ul.show {
        top: 67px;
        display: flex;
        width: 100vw;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    nav ul.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 67px;
        right: 0;
        width: 100vw;
        background: rgb(100, 79, 181, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .menu-toggle {
        display: block;
    }

    .stat-top {
        top: 5%;
        right: -6%;
    }

    .stat-bottom {
        bottom: 7%;
        left: -10%;
    }
    
    .about-content p {
        text-align: center;
    }

    .mission-content {
        flex-direction: column;
        min-width: 22rem;
    }

    .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-text p {
        text-align: center;
    }

    .founder-stats {
        justify-content: center;
    }

    .benefits-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefits-content {
        max-width: 100%;
        text-align: left;
    }

    .image-placeholder, .image-simulation {
        max-width: 100%;
        height: 300px;
    }

    .volunteer-image-real {
        max-height: 300px;
    }

    .footer-column {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .quote {
        right: 40%;
    }

    .founder-image img {
        height: 500px;
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .doacao-cards {
        flex-direction: column;
        align-items: center;
    }

    .impacto-valores {
        flex-direction: column;
        gap: 1rem;
    }

    .galeria-menu {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: unset;
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }

    .footer-logo, .footer-column h3 {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 30px;
    }

    .footer-column ul {
        display: inline-block;
        text-align: left;
    }

    .footer-column ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .qr-section {
        padding: 2rem 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .modal-header-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .modal {
        border-radius: 1rem;
    }

    .qr-icon {
        font-size: 3rem;
    }

    .submit-btn,
    .open-btn {
        font-size: 0.95rem;
    }

    .quote {
        right: 50%;
    }

    .main-footer {
        padding: 40px 15px 15px;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }

    .modal-donation {
        padding: 16px;
    }

    .modal-donation h1 {
        font-size: 1.2rem;
    }

    .modal-donation img {
        max-width: 120px;
    }
}