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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #c4ebff;
}

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

/* Header */
.header {
    background-color: white;
    padding: 8px 0;
}

.site-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: bold;
    margin: 0;
}

.text-black {
    color: black;
}

.text-red {
    color: #dc2626;
}

/* Hero Section */
.hero-section {
    background-color: #c4ebff;
    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: white;
    border-radius: 8px;
    padding: 32px;
    margin: 16px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Section Titles */
.section-title {
    color: #F67161;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    color: #F67161;
    font-size: 1.5rem;
    font-weight: bold;
    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: #F67161;
    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: #F67161;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin: 16px auto;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.donate-button:hover {
    background-color: #15803d;
}

/* 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: #F67161;
    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: 16px auto;
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-pix-button:hover {
    background-color: #2563eb;
}

.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 #F67161;
}

.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: #F67161;
    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: #F67161;
    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: #00c853;
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  transition: all 0.3s ease;
}

.copy-pix-button:hover {
  background-color: #00a844;
  transform: scale(1.03);
}

.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, #F67161, #15803d);
    color: white;
    border: none;
    padding: 16px;
    margin: 0 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
}

.carousel-navigation button:hover {
    background: linear-gradient(135deg, #15803d, #166534);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.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: #F67161;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.pix-modal-close:hover {
    background-color: #15803d;
    transform: translateY(-1px);
}

/* 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: #F67161;
  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: #333;
  font-size: 14px;
  text-align: center;
  margin-bottom: 8px;
}

.footer-email {
  color: #555;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.testimonials-section {
  background:#C4EBFF;
  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: 300px;
  max-width: 420px;
  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) */
.swiper-pagination-bullet {
  background: #4caf50;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #2e7d32;
  opacity: 1;
}
.bordered-title {
  color: #f67161;
  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 */
}
