/* BASE */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #3e3e3e;
  background: #f8f5f2;
  line-height: 1.5;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 15px;
}

/* HERO */

.hero {
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(255,255,255,0.85);
  padding: 60px 20px;
  text-align: center;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #3a2f2f;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #3a2f2f;
}

/* BOTONES */

.btn {
  padding: 10px 20px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  border-radius: 5px;
  font-size: 0.9em;
  transition: 0.2s;
}

.primary {
  background: #bfa58a;
  color: white;
}

.primary:hover {
  background: #a88f76;
}

.secondary {
  background: #e5ded6;
  color: #3a2f2f;
}

/* SECCIONES */

.section {
  text-align: center;
  padding: 35px 10px;
}

/* GRID SERVICIOS */

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

/* CARDS COMPACTAS */

.card {
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  text-align: left;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-3px);
}

.card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}

.card h3 {
  font-size: 0.95em;
  margin: 3px 0;
}

.card p {
  font-size: 0.8em;
  margin: 3px 0;
  color: #666;
}

.card span {
  font-weight: 600;
  font-size: 0.85em;
}

/* PERFIL */

.profile {
  width: 110px;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* CTA FINAL (ARREGLADO) */

.cta {
  background: #bfa58a;
  color: white;
  text-align: center;
  padding: 40px 10px;
}

.cta .btn {
  background: #ffffff;
  color: #3a2f2f;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.1);
}

.cta .btn:hover {
  background: #f5f5f5;
}

/* FOOTER */

footer {
  text-align: center;
  padding: 15px;
  background: #eee7df;
  font-size: 0.8em;
}

/* RESPONSIVE */

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.4em;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}