* {
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
}

/* TOP BAR */
.top-bar {
  background: #000;
  color: #fff;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.top-bar a {
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

/* HEADER */
.header {
  background: #fff;
  padding: 12px;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

/* HERO */
.hero {
  background: url("https://i.imgur.com/FrFvDM6.jpeg") center/cover no-repeat;
}

.hero-overlay {
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #ff9800;
  color: #000;
}

.secondary {
  background: #25D366;
  color: #fff;
}

/* IMAGEN DESTACADA */
.imagen-destacada {
  position: relative;
}

.imagen-destacada img {
  width: 100%;
}

.imagen-texto {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

/* SERVICIOS */
.servicios {
  padding: 30px 15px;
  text-align: center;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.servicio {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
}

.whatsapp-servicios {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* CONFIANZA */
.confianza {
  background: #111;
  color: #fff;
  padding: 30px 15px;
}

.confianza-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
}

/* MAPA */
.mapa iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* CONTACTO */
.contacto {
  padding: 30px 15px;
  text-align: center;
  background: #fff;
}

/* FOOTER */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* BOTONES FLOTANTES */
.float {
  position: fixed;
  right: 15px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
  z-index: 999;
}

.whatsapp {
  background: #25D366;
  bottom: 80px;
}

.call {
  background: #ff9800;
  bottom: 15px;
}
/* === AJUSTE PARA CELULAR: SECCIÓN CONFIANZA === */
@media (max-width: 768px) {
  .confianza-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .confianza-grid div {
    padding: 15px 0;
  }

  .confianza-grid strong {
    display: block;
    font-size: 26px;
    margin-bottom: 6px;
  }

  .confianza-grid span {
    font-size: 16px;
    opacity: 0.9;
  }
}