.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1 {
  color: #fff;
}

.sucursal-hero {
  background: url("../imagenes/distribuidor.jpg") center/cover no-repeat;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.sucursal-content {
  padding: 50px 0;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.servicios-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.servicio-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 25px;
  align-items: center;
}

/* IMAGEN */
.servicio-img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* 🔥 clave para que no se deformen */
  border-radius: 8px;
}

/* CONTENIDO */
.servicio-content h3 {
  margin-bottom: 10px;
}

.servicio-content p {
  margin-bottom: 15px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  text-decoration: none;
  height: 48px;
  width: 100%;
  background-color: #64bc32;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  text-decoration: none;
  height: 48px;
  width: 180px;
  background-color: #64bc32;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.btn-primary p,
.btn-secondary p {
  text-align: center;
  width: 100%;
  margin-bottom: 0px;
}

/* MOBILE */
@media (max-width: 768px) {
  .servicio-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .servicio-img {
    height: 180px;
  }
}
.cotiza-ahora {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #bb8f00;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  width: 80%;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

.cotiza-ahora:hover {
  background-color: #00d157;
}

.cotiza-ahora p {
  width: 100%;
  text-align: center;
}
