*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

header {
  background: #e3eded;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

header h1 {
  font-size: 1.2rem;
  margin: 0;
}

.logo {
  height: 80px;
  width: auto;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-size: 1rem;
}

.btn-whatsapp:hover {
  background: #1ebe5b;
}


.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  background: #1ebe5b;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
  
.hero {
  width: 100vw;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('/assets/casaLimpaImg.jpeg') no-repeat center center;
  background-size: 100% auto; 
}

.hero h2,
.hero p,
.hero .btn-whatsapp {
  color: #fff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2.2rem;
}

section {
  padding: 3rem 1rem;
  max-width: 1100px;
  margin: auto;
}

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

.service {
  padding: 1rem;
  border-radius: 10px;
  background: #eef4f4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.service:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.service-icon {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
}
.region {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: left;
  padding: 2.5rem 1rem;
}

.region-icon {
  width: 120px;
  height: auto;
}

.region-text {
  font-size: 2rem;
  color: #1a2536;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

footer {
  text-align: center;
  background: #cbcccc;
  padding: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  header .btn-whatsapp {
    display: none;
  }
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }

}