.contacto-banner {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* imagen */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* overlay rojo */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(134, 0, 0, 0.95),
    rgba(231, 101, 101, 0.7)
  );
  z-index: 2;
}

/* contenido */
.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* texto */
.banner-content h1 {
  color: white;
  font-size: 60px;
  letter-spacing: 12px;
  font-weight: bold;
}

/* SECTION 2 */
/* SECTION 2 */
/* SECTION 2 */
/* SECTION 2 */

.sucursales {
  padding: 80px 10%;
  background: #f5f5f5;
  text-align: center;
}

/* titulo */
.sucursales h2 {
  color: #d6001c;
  font-size: 28px;
  margin-bottom: 60px;
}

/* contenedor */
.sucursales-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* cada columna */
.sucursal {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  margin: auto;
}

/* icono */
.icon {
  font-size: 40px;
  color: #d6001c;
  margin-bottom: 20px;
}

/* titulo sucursal */
.sucursal h3 {
  color: #1f3a5f;
  margin-bottom: 15px;
}

/* texto */
.sucursal p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* telefonos */
.telefonos {
  font-size: 14px;
}

@media (max-width: 768px) {
  .sucursales-container {
    flex-direction: column;
    align-items: center;
  }
}

/* SECTION 3 */
/* SECTION 3 */
/* SECTION 3 */
/* SECTION 3 */

.contact-section {
  background: #f5f5f5;
  padding-bottom: 80px;
}

/* MAPA */
.map-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FORMULARIO */
.form-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.form-container form {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUTS */
.form-container input,
.form-container textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #999;
  background: transparent;
  font-size: 14px;
  outline: none;
}

/* EFECTO FOCUS */
.form-container input:focus,
.form-container textarea:focus {
  border-color: red;
}

/* BOTÓN */
.form-container button {
  margin-top: 20px;
  padding: 14px;
  border: none;
  background: red;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.form-container button:hover {
  background: #b80000;
}

/* SECTION 4 */
/* SECTION 4 */
/* SECTION 4 */
/* SECTION 4 */

.info-contacto {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  text-align: center;
  padding: 80px 40px;
  background: #f5f5f5;
  flex-wrap: wrap;
}

/* CAJAS */
.info-box {
  max-width: 300px;
}

/* ICONOS */
.info-box .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #555;
}

/* TITULOS */
.info-box h3 {
  font-size: 20px;
  color: #1f3b5c;
  margin-bottom: 15px;
}

/* TEXTO */
.info-box p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

/* HORARIOS */
.horarios {
  margin-top: 15px;
}

.horarios p {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .info-contacto {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
