* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  position: relative;
  min-height: 100vh;
}

header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 100;
}

#navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav_img {
  height: 70px;
}

#nav_list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-item.active a,
.nav-item a:hover {
  color: #FF0452;
}

.navbar-buttons button {
  background: white;
  color: #FF0452;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

main.content {
  padding: 150px 20px 40px;
  max-width: 800px;
  margin: auto;
  position: relative;
}



.donation-wrapper h1 {
  color: #FF0452;
  margin-bottom: 20px;
}

.donation-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.nurse-image {
  width: 200px;
  border-radius: 10px;
}

.donation-description {
  color: #FF7F00;
  font-weight: bold;
  line-height: 1.5;
}

.donation-form {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 8px;
}

.donation-form label {
  font-weight: bold;
}

.donation-options {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.donation-options button,
.donate-other {
  flex: 1;
  padding: 10px;
  background: #FF0452;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  ;
}

.donate-other {
  width: 100%;
}

.donation-form input,
.donation-form select {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.donation-form h2 {
  margin-top: 30px;
}

/* Decoração dos desenhos */
.decor-sun {
  position: absolute;
  left: -280px;
  top: 500px;
  width: 300px;
}

.decor-heart {
  position: absolute;
  right: -120px;
  top: 120px;
  width: 300px;
}

.decor-moon {
  position: absolute;
  right: -300px;
  bottom: 100px;
  width: 300px;
}

/* Footer igual ao original */
.site-footer {
  background: #333;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 100px;
}

.footer-center h3 {
  margin-bottom: 10px;
}

.footer-center p {
  margin: 0 0 10px;
}

.social-icons img {
  width: 32px;
  margin: 0 5px;
}

.map-container {
  width: 300px;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid #555;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.footer-divider {
  border: none;
  border-top: 1px solid #555;
  margin: 20px 0;
}

.footer-copyright {
  font-size: 12px;
  color: #ccc;
}

.footer-copyright a {
  color: #E91E63;
  text-decoration: none;
}

.btn-default {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FF0452;
  ;
  /* cor de fundo */
  color: #fff;
  /* cor do texto */
  border: none;
  border-radius: 5px;
  text-decoration: none;
  /* remove sublinhado de link */
  transition: background-color 0.3s;
}

.btn-default:hover {
  background-color: #FF0452;
  ;
  /* cor no hover */
}

.donation-form #qrcode {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.donation-form #qrcode img {
  max-width: 128px;
}



#qrcode {
  display: none;
  position: relative;
  text-align: center;
  margin-top: 10px;
}

#qrcode img {
  max-width: 128px;
}

.mini-form {
  display: none;
  background: #f2f2f2;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

.mini-form input {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.mini-form label {
  font-weight: bold;
}

.btn-formulario {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #FF0452;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.btn-formulario:hover {
  background-color: #e00347;
}

/* Responsividade - mobile */
@media (max-width: 768px) {
  #navbar {
    flex-direction: flex;
    align-items: flex-start;
    padding: 1rem;
  }

  #nav_list {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    display: none; 
  }

  .mobile-menu {
    display: block;
    cursor: pointer;
  }

  .donation-content {
    flex-direction: column;
    text-align: center;
  }

  .nurse-image {
    width: 100%;
    max-width: 300px;
  }

  .decor-sun,
  .decor-heart,
  .decor-moon {
    display: none; /* Esconde as imagens decorativas no mobile */
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .map-container {
    width: 100%;
    max-width: 300px;
  }
}

/* Responsividade - tablets */
@media (max-width: 1024px) {
  #navbar {
    padding: 1rem;
  } 

  main.content {
    padding: 120px 15px 40px;
  }
}

.donation-wrapper h1 {
  color: #FF0452;
  margin: 0 auto 30px auto; /* Centraliza horizontalmente e dá mais espaço abaixo */
  text-align: center;
  font-size: 2.5rem;
  position: relative;
  max-width: 80%; /* Controla a largura máxima do título */
  padding-bottom: 15px; /* Espaço para o sublinhado */
}

/* Opcional: Adicionar um sublinhado decorativo */
.donation-wrapper h1::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: #FF0452;
  margin: 15px auto 0 auto;
}

