/* Reset CSS */
/*
 * Basic reset to ensure consistent rendering across browsers.
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
 * Define CSS variables for a cohesive colour palette.
 * --primary: deep blue used for backgrounds and accents.
 * --accent: golden yellow used for highlights and call‑to‑action elements.
 */
:root {
    --primary: #8dbdfa;
    --accent: #FFC300;
    --primary-dark: #1b4e74;
    --accent-dark: #e6af00;
    --light: #f9fafb;
    --text-dark: #333;
    --text-light: #ffffff;
}

body {
    /* Apply modern font family imported via Google Fonts */
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background-color: var(--primary);
    padding: 8px 0;
}

.site-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.text-black {
    color: black;
}

.text-red {
    color: #dc2626;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary);
    padding-top: 8px;
}

.hero-image-container {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 16px;
    padding-bottom: 16px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: block;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.hero-headline {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Boxes */
.content-box {
    background-color: var(--light);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 40px;
    margin: 20px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Imagem que antecede a seção de impactos da doação */
.impact-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    /* Mantém a proporção sem distorcer a imagem */
    object-fit: cover;
}

/* Section Titles */
.section-title {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
}

/* About Section */
.about-section {
    padding: 0;
}

.about-section p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 0;
}

.impact-title {
    color: #FFC300	;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.impact-subtitle {
    color: #374151;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.impact-section p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1rem;
}

/* Donate Button */
.donate-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 20px auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.donate-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Shelter Section */
.shelter-section {
    padding: 0;
}

.shelter-section p {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1rem;
}

/* Impact List */
.impact-list {
    list-style: none;
    margin: 24px 0;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
}

.impact-list li strong {
    color: #FFC300	;
    font-weight: bold;
    margin-right: 8px;
    min-width: 60px;
}

/* PIX Steps */
.pix-steps {
    margin: 24px 0;
    padding-left: 20px;
}

.pix-steps li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.pix-email {
     padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db; /* cor da borda (border-gray-300) */
  font-weight: bold;
  font-size: 0.875rem; /* text-sm */
  color: #1f2937; /* text-gray-800 */
  background-color: #f3f4f6; /* bg-gray-100 */
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-pix-button {
    display: block;
    margin: 20px auto;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.copy-pix-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.pix-receiver {
    text-align: center;
    font-weight: bold;
    margin: 16px 0 8px 0;
}

.pix-responsible {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Before After Section */
.before-after-section {
    padding: 0;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.before-after-item {
    text-align: center;
}

.before-after-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.before-after-item h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #374151;
}

.before-after-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 0;
}

.testimonial-item {
    margin: 24px 0;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #FFC300	;
}

.testimonial-item h4 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #374151;
}

.testimonial-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    text-align: justify;
}

/* Small Text */
.small-text {
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
    color: #6b7280;
    margin: 16px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }
    
    .site-title {
        font-size: 1.5rem;
    }
    
    .hero-headline {
        font-size: 1.25rem;
        padding: 12px 16px;
    }
    
    .hero-text-overlay {
        padding: 12px 16px;
        width: 95%;
    }
    
    .content-box {
        padding: 20px;
        margin: 12px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
    
    .impact-title {
        font-size: 1.25rem;
    }
    
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .before-after-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1rem;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .impact-list li strong {
        margin-bottom: 4px;
    }
}



/* VSL Section */
.vsl-section {
    padding: 0;
}

.video-placeholder {
    text-align: center;
    margin: 32px 0;
}

.video-placeholder iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Carousel Section */
.carousel-section {
    padding: 0;
}

.carousel-placeholder {
    position: relative;
    max-width: 600px;
    height: 400px;
    margin: 32px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.carousel-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: none;
}
.carousel-image.active {
    opacity: 1;
    z-index: 2;
}

.carousel-placeholder img:first-child {
    display: block;
}

.carousel-navigation {
    text-align: center;
    margin-top: 20px;
}

.carousel-navigation button {
    background-color: #FFC300	;
    color: white;
    border: none;
    padding: 12px 16px;
    margin: 0 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.carousel-navigation button:hover {
    background-color: #15803d;
    transform: scale(1.1);
}

/* Impact Cards Section */
.impact-cards-section {
    padding: 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.card {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    object-fit: contain;
}

.card p {
    font-size: 1rem;
    color: #374151;
    margin: 0;
}

.card strong {
    color: #FFC300	;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Before After Section */
.before-after-section {
    padding: 0;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.before-after-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.before-after-item img:hover {
    transform: scale(1.05);
}

/* Final CTA Section */
.final-cta-section {
    padding: 0;
}

.final-cta-section .content-box {
    text-align: center;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .video-placeholder iframe {
        height: 250px;
    }
    
    .carousel-placeholder img {
        height: 250px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .before-after-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-navigation button {
        padding: 8px 12px;
        font-size: 1rem;
    }
}

.pix-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.pix-email {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-weight: bold;
  font-size: 0.875rem;
  color: #1f2937;
  background-color: #f3f4f6;
  width: fit-content;
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.copy-pix-button {
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.copy-pix-button:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.copy-pix-button .icon-copy {
  margin-right: 10px;
  height: 18px;
  width: 18px;
}

/* Melhorias no Carrossel */
.carousel-container {
    position: relative;
}

.carousel-placeholder {
    position: relative;
    max-width: 600px;
    margin: 32px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-image.active {
    display: block;
    opacity: 1;
}

.carousel-navigation {
    text-align: center;
    margin-top: 24px;
}

.carousel-navigation button {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--text-light);
    border: none;
    padding: 16px;
    margin: 0 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.carousel-navigation button:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-navigation button:active {
    transform: translateY(0);
}

.carousel-navigation button svg {
    width: 24px;
    height: 24px;
}

/* Modal PIX */
.pix-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.pix-modal-content {
    background-color: white;
    margin: 0 auto;
    padding: 32px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    top: 20px;
    animation: slideDown 0.4s ease;
}

.pix-modal-content p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.pix-modal-close {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 16px;
}

.pix-modal-close:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade para o carrossel melhorado */
@media (max-width: 768px) {
    .carousel-image {
        height: 280px;
    }
    
    .carousel-navigation button {
        width: 48px;
        height: 48px;
        padding: 12px;
        margin: 0 8px;
    }
    
    .carousel-navigation button svg {
        width: 20px;
        height: 20px;
    }
    
    .pix-modal-content {
        width: 95%;
        padding: 24px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        height: 220px;
    }
    
    .carousel-navigation button {
        width: 44px;
        height: 44px;
        margin: 0 6px;
    }
}

.carousel-track-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 12px 0;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  flex: 0 0 auto;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFC300	;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: 0.3s;
}

.prev-btn {
  left: -12px;
}

.next-btn {
  right: -12px;
}

.carousel-btn:hover {
  background: #15803d;
}
.swiper {
  width: 100%;
  max-width: 340px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.footer-text {
  color: var(--text-light);
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}

.footer-email {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.testimonials-section {
  background: var(--primary);
  color: var(--text-light);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-image-wrapper {
  background-color: #f8d89c;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transform: rotate(1deg);
  transition: transform 0.3s ease;
  text-align: center;
  width: fit-content;
}

.testimonial-image-wrapper:hover {
  transform: rotate(0deg);
}

.testimonial-image-wrapper img {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.testimonial-image-wrapper h4 {
  margin-top: 8px;
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}

.testimonial-text p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  text-align: justify;
}

@media (min-width: 768px) {
  .testimonial {
    flex-direction: row;
    align-items: flex-start;
  }

  .testimonial-text {
    flex: 1;
  }
}
.testimonials-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.carousel-section {
  text-align: center;
  padding: 30px 20px;
}

.carousel-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 16px;
  color: #1b5e20;
}

.heart {
  color: #d32f2f;
}

.swiper {
  width: 100%;
  height: 425PX;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 300px; /* controla a altura visível */
}

.swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0;
  
  
}

/* Paginação (bolinhas) */
/* Customise Swiper pagination bullets to match the new colour palette */
.swiper-pagination-bullet {
  background: var(--accent);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}
.bordered-title {
  color: #FFC300	;
  border: 2px solid #ffffff; /* cor da borda */
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1); /* leve fundo branco translúcido */
  font-size: 1.2rem;
  font-weight: bold;
}
.with-stroke {
  color: black;
  -webkit-text-stroke: 0.2px rgb(255, 255, 255); /* contorno preto */
  text-stroke: 0.2px rgb(255, 255, 255);         /* para outros navegadores */
}

/*
 * Toast notifications appear at the bottom of the viewport and provide
 * lightweight social proof. Each toast slides up and fades in on show
 * and disappears automatically after a few seconds. The container uses
 * pointer-events: none to allow clicks through to underlying elements.
 */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/*
 * Social proof modal appears automatically after a short delay,
 * encouraging visitors to donate. It overlays the page with a semi‑transparent
 * backdrop and contains a close button. The call‑to‑action button
 * scrolls the visitor to the donation section.
 */
.social-proof-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.social-proof-content {
  background: var(--light);
  color: var(--primary);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 420px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.social-proof-content p {
  margin: 0;
  line-height: 1.4;
}

.social-proof-content p strong {
  font-size: 1.3rem;
}

.social-proof-button {
  margin-top: 16px;
  background-color: var(--accent);
  color: var(--primary);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-proof-button:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.social-proof-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

/* Histórias de Transformação */
.story-text {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-align: center;
  margin-top: 6px;
  line-height: 1.5;
  max-width: 260px;
}

/* Doações Recentes */
.donations-section {
  padding: 0;
}

.donations-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
}

.donations-list li {
  /* Reset default styling for list items; each entry is a donation card */
  background: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border: none;
}

/* =============================
   Histórias de Transformação
   ============================= */
.stories-section {
  padding: 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.story-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.story-image-wrapper {
  border: 6px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.story-image-wrapper img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.story-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary);
  margin-top: 6px;
}

.story-description {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

/* =============================
   Doações Recentes
   ============================= */
.donations-wrapper {
  position: relative;
}

.donations-bg {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 16px 0;
  background-image: url("../images/acKIfm7gY0Wv.png");
  background-size: cover;
  background-position: center;
}

.donations-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.donations-list {
  list-style: none;
  margin: 0;
  padding: 16px;
  max-height: 360px;
  overflow-y: auto;
  position: relative;
  z-index: 2;
}

.donation-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-left: 4px solid var(--accent);
}

.donation-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.heart-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.donation-info {
  display: flex;
  flex-direction: column;
}

.donor-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.donor-location {
  /* Exibe a localização ao lado do ícone de mapa */
  font-size: 0.75rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Ícone de localização dentro da lista de doações */
.location-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.donation-right {
  text-align: right;
  flex-shrink: 0;
}

.donation-value {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.95rem;
}

.donation-time {
  font-size: 0.75rem;
  color: #777;
}

/* =============================
   KPI Section
   ============================= */
.kpi-section {
  padding: 0;
}

.kpi-wrapper {
  background-color: #fff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  margin: 32px 0;
}

.kpi-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.kpi-item {
  flex: 1 1 150px;
}

.kpi-item h3 {
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: bold;
}

.kpi-item p {
  font-size: 1rem;
  color: var(--primary);
  margin-top: 4px;
}

/* =============================
   Footer
   ============================= */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--light);
  padding: 24px 0;
  margin-top: 40px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--accent-dark);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  color: var(--light);
  font-size: 0.75rem;
  text-align: center;
}

/* =============================
   Testimonials Carousel
   ============================= */
.testimonials-section {
  padding: 0;
}

.testimonial-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}

.testimonial-image-wrapper {
  background-color: #f8d89c;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transform: rotate(1deg);
  transition: transform 0.3s ease;
  text-align: center;
}

.testimonial-image-wrapper:hover {
  transform: rotate(0deg);
}

.testimonial-image-wrapper img {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  object-fit: cover;
}

.testimonial-image-wrapper h4 {
  margin-top: 8px;
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}

.testimonial-description {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.testimonial-hearts span {
  color: var(--accent);
  font-size: 1.1rem;
}


.pix-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.pix-modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  font-family: 'Inter', sans-serif;
}
/* Toast container fixado no topo */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* Toast padrão (inicialmente invisível e deslocado para cima) */
.toast {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Quando a animação começa */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}























.testimonials-section {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1A4D8F;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  max-width: 400px;
  margin: 0 auto;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1A4D8F;
}

.testimonial-user {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  font-size: 18px;
  color: #1A4D8F;
  margin: 0;
}

.testimonial-role {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.testimonial-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.6;
}

.testimonial-hearts {
  font-size: 20px;
  color: #1A4D8F;
}
