* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #1f2933;
  background: #f9fafb;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.navbar a {
  margin-left: 1rem;
  text-decoration: none;
  color: #1f2933;
  transition: color .3s;
}

.navbar a:hover {
  color: #2563eb;
}

.btn {
  background: #2563eb;
  color: white !important;
  padding: .5rem 1rem;
  border-radius: 6px;
}

.hero {
  min-height: 100vh;
  padding: 6rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero img {
  width: 100%;
}

.cta {
  margin-top: 1rem;
  padding: .8rem 1.5rem;
  background: #2563eb;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .3s;
}

.cta:hover {
  transform: scale(1.05);
}

.services, .gallery {
  padding: 4rem 2rem;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform .3s;
}

.card:hover {
  transform: translateY(-8px);
}

.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 2rem;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.info-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}

.buttons-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.buttons-row button {
  padding: .8rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.buttons-row button:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

.texto-resultado {
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  background: #f3f4f6;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all .3s ease;
}
