html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #2a97d6;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  background-color: white;
  padding: 0;
  margin: 0px;
  color: #083085;
  font-size: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

nav {
  background-color: white;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  padding-bottom: 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav a {
  margin: 0 15px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

nav a:hover {
  background-color: #083085;
  color: white;
  transform: translateY(-2px);
}

a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #083085;
}

div {
  text-align: center;
  
}

iframe {
  padding: 30px;
}

article {
  color: black;
  text-align: justify;
  margin-left: 10%;
  margin-right: 10%;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  font-weight: 400;
  font-size: 1.1em;
}

form {
  color: black;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 40px;
}

#div2 {
  text-align: left;
}

#logoibaps {
  width: 300px;
  height: auto;
}

#imagem1 {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.hero-section {
  position: relative;
  text-align: center;
  color: white;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

  .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2em, 5vw, 4em);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 2;
  text-align: center;
  max-width: 90%;
}

.hero-subtitle {
  font-size: 0.6em;
  font-weight: normal;
  display: block;
  margin-top: 0.5em;
}

  .donations-section {
    background-color: white;
    padding: 40px 20px;
    margin: 60px auto 0 auto;
    text-align: center;
    color: #083085;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 800px;
  }

  .donations-section h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 600;
  }

.donations-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.donation-options {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  gap: 20px; 
}

.donation-row {
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  flex-wrap: wrap; 
}

.donation-button {
  color: white;
  border: 2px solid;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  min-width: 120px;
}

.donation-button.orange {
    background-color: #FFA500; 
    border-color: #FFA500;
}
.donation-button.orange:hover {
    background-color: white;
    color: #FFA500;
}

.donation-button.turquoise {
    background-color: #40E0D0; 
    border-color: #40E0D0;
}
.donation-button.turquoise:hover {
    background-color: white;
    color: #40E0D0;
}

.donation-button.light-pink {
    background-color: #FFB6C1; 
    border-color: #FFB6C1;
}
.donation-button.light-pink:hover {
    background-color: white;
    color: #FFB6C1;
}

.donation-button.hot-pink {
    background-color: #FF69B4; 
    border-color: #FF69B4;
}
.donation-button.hot-pink:hover {
    background-color: white;
    color: #FF69B4;
}

.donation-button.red-orange {
    background-color: #FF4500; 
    border-color: #FF4500;
}
.donation-button.red-orange:hover {
    background-color: white;
    color: #FF4500;
}

.donation-button.navy {
    background-color: #000080; 
    border-color: #000080;
}
.donation-button.navy:hover {
    background-color: white;
    color: #000080;
}

.pix-info {
    font-size: 1.1em;
    margin-top: 30px; 
    color: #083085;
    font-weight: bold;
}

.counter-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  margin: 40px 0;
  text-align: center;
}

.counter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}

.counter-number {
  font-size: 3.5em;
  font-weight: bold;
  color: #083085;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

  .counter-label {
    font-size: 1.2em;
    color: #666;
    font-weight: 500;
    text-align: center;
  }

  .gallery-section {
    background-color: white;
    padding: 60px 20px;
    margin: 40px 0;
    text-align: center;
  }

  .gallery-section h2 {
    color: #083085;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
  }

  .section-header {
    background-color: white;
    padding: 60px 20px;
    margin: 40px 0;
    text-align: center;
  }

  .section-header h2 {
    color: #083085;
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
  }

  #quem-somos {
    background-color: #2a97d6;
    padding: 30px 20px;
    margin: 40px 0;
    text-align: center;
  }

  #quem-somos h2 {
    color: black;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f9fa;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  }

  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }

    .gallery-item:hover .gallery-image {
    transform: scale(1.05);
  }

  .gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }

  .gallery-item:hover .gallery-video {
    transform: scale(1.05);
  }

  .activities-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    flex-wrap: wrap;
  }

  .activity-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
  }

  .activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #083085, #2a97d6, #4facfe);
    border-radius: 20px 20px 0 0;
  }

  .activity-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 48, 133, 0.02) 0%, rgba(42, 151, 214, 0.02) 100%);
    pointer-events: none;
  }

  .activity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(8, 48, 133, 0.3);
  }

  .activity-card h3 {
    color: #083085;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
  }

  .activity-card p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 400;
  }

  .activity-images {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .activity-image {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
  }

  .activity-image:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(8, 48, 133, 0.3);
  }

  .activity-image-1 {
    object-position: center 30%;
  }

  .reforma-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .reforma-container-reverse {
    flex-direction: row;
  }

  .reforma-text {
    flex: 1;
    text-align: left;
  }

  .reforma-text h3 {
    color: #083085;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .reforma-text p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.7;
    margin: 0;
  }

  .kitchen-donation-btn {
    background: linear-gradient(135deg, #083085 0%, #2a97d6 50%, #4facfe 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(8, 48, 133, 0.3), 0 4px 15px rgba(42, 151, 214, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .kitchen-donation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .kitchen-donation-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(8, 48, 133, 0.4), 0 8px 25px rgba(42, 151, 214, 0.3);
  }

  .kitchen-donation-btn:hover::before {
    left: 100%;
  }

  .kitchen-donation-btn:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 6px 20px rgba(8, 48, 133, 0.3), 0 3px 10px rgba(42, 151, 214, 0.2);
  }

  .reforma-video {
    flex: 1;
    text-align: center;
  }

  .reforma-video .reforma-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .reforma-video video {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 768px) {
    .hero-text {
      font-size: clamp(1.5em, 4vw, 2.5em);
      max-width: 95%;
    }
    
    .counter-container {
      gap: 40px;
    }
    
    .counter-item {
      min-width: 150px;
    }
    
    .counter-number {
      font-size: 2.5em;
    }
    
    .counter-label {
      font-size: 1em;
    }
    
    .gallery-container {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }
    
    .gallery-item {
      min-height: 200px;
    }
    
    .gallery-section h2 {
      font-size: 2em;
      margin-bottom: 30px;
    }
    
    .section-header {
      padding: 40px 15px;
      margin: 30px 0;
    }
    
    .section-header h2 {
      font-size: 2em;
      margin-bottom: 30px;
    }
    
    article {
      font-size: 1em;
      margin-left: 5%;
      margin-right: 5%;
    }
    
    .donations-section {
      margin: 40px auto 0 auto;
    }
    
    #quem-somos {
      padding: 20px 15px;
      margin: 30px 0;
    }
    
    #quem-somos h2 {
      font-size: 2em;
      margin-bottom: 8px;
    }
    
    .activities-container {
      gap: 20px;
      padding: 20px 15px;
    }
    
    .activity-card {
      min-width: 250px;
      padding: 30px 20px;
    }
    
    .activity-card h3 {
      font-size: 1.2em;
      margin-bottom: 15px;
    }
    
    .activity-card p {
      font-size: 1em;
    }
    
    .activity-images {
      gap: 8px;
      margin: 15px 0;
    }
    
    .activity-image {
      width: 180px;
      height: 120px;
    }
    
    .reforma-container {
      flex-direction: column;
      gap: 30px;
      padding: 20px 15px;
    }
    
    .reforma-text {
      text-align: center;
    }
    
    .reforma-text h3 {
      font-size: 1.5em;
      margin-bottom: 15px;
    }
    
    .reforma-text p {
      font-size: 1em;
    }

    .kitchen-donation-btn {
      padding: 12px 24px;
      font-size: 1em;
      margin-top: 20px;
    }
    
    .reforma-video .reforma-image,
    .reforma-video video {
      max-width: 200px;
    }

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

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

    .footer-map iframe {
      max-width: 100%;
      height: 180px;
    }
  }

footer {
  background-color: #333;
  color: white;
  padding: 20px;
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-contacts {
  text-align: left;
}

.footer-contacts a {
  color: #4facfe;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  background-color: rgba(79, 172, 254, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(79, 172, 254, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.footer-contacts a:hover {
  background-color: rgba(79, 172, 254, 0.2);
  border-color: rgba(79, 172, 254, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}

.footer-map {
  text-align: right;
}

.footer-map iframe {
  width: 100%;
  max-width: 350px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}