
body {
  margin: 0;
  font-family: 'Fredoka', sans-serif;
  background-color: #fefefe;
  color: #1C2541;
  overflow-x: hidden;
  text-align: center;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.navbar {
  background-color: #5BC0EB;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 60px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FDE74C;
}


.dropdown {
  position: relative;
}

.dropdown > a {
  cursor: pointer;
  padding: 0.5rem;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  background-color: #5BC0EB;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.2rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: normal;
}

.dropdown-menu a:hover {
  background-color: #FDE74C;
  color: #1C2541;
  border-radius: 6px;
}


.hero {
  background: linear-gradient(to right, #f4e454, #f4e454);
  padding: 4rem 0;
  color: #1C2541;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content img {
  max-width: 150px;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 600;
}


.section {
  padding: 4rem 0;
  background-color: #fff;
  text-align: center;
}

.bg-yellow-light {
  background-color: #fff8c6;
}


.sobre-nos h2 {
  font-size: 2rem;
  color: #5BC0EB;
}

.sobre-nos p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-inline: auto;
}


.emocoes-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.emocao-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  animation: fadeIn 1s ease forwards;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  width: 140px;
  text-align: center;
}

.emocao-item img {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

.emocao-item:hover {
  transform: scale(1.05);
}


.alegria {
  background-color: #FDE74C;
  color: #1C2541;
}

.tristeza {
  background-color: #4442da;
}

.raiva {
  background-color: #e60f28;
}

.medo {
  background-color: #9876bf;
}

.nojinho {
  background-color: #19cd1f;
}


.form-contato label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  color: #1C2541;
  text-align: left;
}

.form-contato input,
.form-contato textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border: 2px solid #5BC0EB;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Fredoka', sans-serif;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: #FDE74C;
  outline: none;
}

.btn {
  background-color: #FDE74C;
  color: #1C2541;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #fcd800;
  transform: scale(1.05);
}


a {
  color: #5BC0EB;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.team-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-img {
  width: 80%;
  max-width: 100px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}



.footer {
  background-color: #3eaf2d;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.95rem;
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.bounce {
  animation: float 3s ease-in-out infinite;
}


@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    padding-left: 0;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
    padding-left: 1rem;
    max-width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    background-color: transparent;
    color: #fff;
  }

  .dropdown-menu a:hover {
    background-color: #FDE74C;
    color: #1C2541;
  }

  .emocoes-box {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .emocao-item {
    width: 80%;
    max-width: 300px;
  }

  .hero h1 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }

  .hero-content img {
    max-width: 100px;
  }

  .form-contato input,
  .form-contato textarea {
    font-size: 0.95rem;
  }
}
