.contacto-directo-doscol {
  padding: 60px 20px;
  background-color: #f7f7f7;
}

.contacto-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.contacto-imagen {
  flex: 1 1 40%;
  max-width: 400px;
  text-align: center;
}
.contacto-imagen img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contacto-info {
  flex: 1 1 50%;
}

.contacto-info h2 {
  font-size: 28px;
  color: var(--color-principal);
  margin-bottom: 15px;
}
.contacto-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.opciones-contacto {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.opciones-contacto a,
.opciones-contacto button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  min-width: 260px;
}

.opciones-contacto a:hover,
.opciones-contacto button:hover {
  background-color: #eee;
}

.opciones-contacto i {
  font-size: 28px;
  color: var(--color-principal);
}

.opciones-contacto span {
  display: block;
  font-size: 14px;
  color: #666;
}

.opciones-contacto strong {
  display: block;
  font-size: 18px;
  color: #111;
}



/* Contenedor de ambos botones */
.contacto-botones {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Botón de WhatsApp cuadrado en la sección */
#whatsapp-button-seccion {
  background-color: #25D366;
  border: none;
  border-radius: 8px;
  width: 160px;
  height: 90px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}
#whatsapp-button-seccion:hover {
  background-color: #1ebd5a;
}

.btn-whatsapp-seccion {
  background-color: #25D366;
  border: none;
  border-radius: 8px;
  min-width: 260px;
  padding: 15px 20px;
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}
.btn-whatsapp-seccion:hover {
  background-color: #1ebd5a;
}
.btn-whatsapp-seccion i {
  font-size: 28px;
}
.btn-whatsapp-seccion span {
  font-size: 14px;
  display: block;
}
.btn-whatsapp-seccion strong {
  font-size: 18px;
  display: block;
}

/* -- Botón de Messenger -- */

.btn-messenger {
  display: flex;
  align-items: center;
  background-color: #0084ff;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  gap: 12px;
  transition: background 0.3s;
  height: 90px;
min-width: 260px;

}

.btn-messenger:hover {
  background-color: #006fd6;
}

.btn-messenger i {
  font-size: 20px;
}