@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #02c1ca;
  background-color: #ffffff;
}
header {
  background-color: #60717a;
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.header__content nav ul li:first-child {
  margin-left: 0;
}
.header__container > img {
  width: 100px;
  border-radius: 50%;
}
.header__links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: white;
}
.header__links svg {
  font-size: 30px;
  color: white;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin-left: 2rem;
}
nav ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #ffcc80;
}
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem;
  background-image: url('../img/fone1.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.hero-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  width: 600px;
  max-width: 100%;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-button {
  width: 200px;
  display: flex;
  background-color: #02c1ca;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease, transform 0.3s;
}
.cta-button:hover {
  background-color: #4f7e97;
  transform: translateY(-3px);
}
.services {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #4f7e97;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #ffffff;
}
.service-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.service-item {
  background-color: #e0f2f1;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-item:hover {
  transform: translateY(-5px);
}
.service-item h3 {
  margin: 1rem 0;
  color: #02c1ca;
}
.service-item p {
  font-size: 0.9rem;
  color: #555;
}
.service-icon {
  font-size: 3rem;
  color: #60717a;
  position: absolute;
  top: 20px;
  left: 20px;
}
.contact-form {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #60717a;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  max-width: 600px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.form-group {
  margin: 1rem 0;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 500px;
  max-width: 100%;
  padding: 5px;
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  font-family: 'Poppins';
}
.form-group textarea {
  resize: none;
  height: 120px;
}
.partners {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #ffffff;
}
.partners h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #60717a;
}
.partner-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.partner-logo img {
  max-width: 150px;
  height: auto;
}
footer {
  background-color: #60717a;
  padding: 2rem 2rem;
  color: #ffffff;
}
.footer-nav {
  text-align: center;
  margin-top: 1rem;
}
.footer-nav a {
  color: #02c1ca;
  text-decoration: none;
  margin: 0 1rem;
}
.footer-nav a:hover {
  color: #ffffff;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-content > * {
  width: 400px;
}
.footer-content > img {
  width: 80px;
  height: 80px;

}
.footer__links {
  display: flex;
  gap: 40px;
}
.footer__links svg {
  font-size: 40px;
  color: white;
}
.banner__container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.banner {
  width: 700px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .form-group {
    width: 100%;
  }
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 5px;
  }
  .contact-form {
    border-radius: 0;
  }
  .logo {
    display: none;
  }
  header {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .header__content ul {
    flex-wrap: wrap;
    justify-content: start;
    gap: 13px;
  }
  .header__content ul li {
    margin-left: 0;
  }
  .hero-content {
    width: 100%;
  }
  h1, h2 {
    font-size: 30px !important;
  }
  .header__container > img {
    width: 50px;
  }
  .header__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
  }
  .hero-content p {
    font-size: 18px;
    line-height: 1.2;
  }
  .service-icon {
    font-size: 2rem;
  }
  .footer__links {
    justify-content: center;
  }
  .footer-content {
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }
}