body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #f7fafc;
  color: #2d3748;
}

header {
  background-color: #0f1f32;
  color: white;
  padding: 1rem 2rem;
  height: 80px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 200px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00f17d;
}

.hero {
  background-color:	#16283f;
  color: white;
  text-align: center;
  padding: 2rem 2rem;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.hero h1 {
  font-size: 2rem;
  color: #00f17d;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
}

.hero .btn {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #00f17d;
  color: #00f17d;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: #00f17d;
  color: #0f1f32;
}

.content {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #0f1f32;
  font-size: 0.9rem;
  color: #f7fafc;
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 999;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
}

.feedbacks h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.feedback-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feedback-card {
  background-color: #edf2f7;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.feedback-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feedback-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.feedback-card h4 {
  margin: 0;
  font-weight: bold;
  color: #2d3748;
}

.feedback-card span {
  color: #718096;
  font-size: 0.9rem;
}

.servicos-expandido h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.servicos-expandido .intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
  color: #4a5568;
}

.servico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.servico-box {
  background-color: #edf2f7;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.servico-box:hover {
  transform: translateY(-4px);
}

.servico-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #2d3748;
}

.servico-box p {
  margin-top: 0.5rem;
  color: #4a5568;
  font-size: 0.95rem;
}

.sobre-destaque {
  background-color: #0f1f32;
  color: white;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.sobre-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto h2,
.sobre-texto h3 {
  color: #00f17d;
}

.sobre-texto p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #e2e8f0;
}

.valores {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.valores li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #cbd5e0;
}

.contato-dark {
  background-color: #16283f;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  margin-top: 1.5rem;
}

.contato-dark h2 {
 color: #00f17d;
 margin-bottom: 0.5rem;
}

.contato-dark p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #e2e8f0;
  font-size: 1rem;
}

.contato-dark .btn {
  background-color: transparent;
  border: 2px solid #00f17d;
  color: #00f17d;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.contato-dark .btn:hover {
  background-color: #00f17d;
  color: #0f1f32;
}

@media (max-width: 768px) {
  
  nav {
    display: none;
  }

  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}