/* ==========================
   RESET Y ESTILOS GENERALES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:'Outfit', sans-serif !important;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* =============================
   SECCIÓN 1: Encabezado visual
============================= */
.hero-contacto {
  background: url('../images/contact.png') center/cover no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-overlay h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-contacto {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}




/* ====================================
   SECCIÓN 2: ¿Te interesó un producto?
==================================== */
.productos-contacto {
  padding: 40px 20px;
  text-align: center;
}

.productos-contacto h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.productos-contacto p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.tarjetas-producto {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.tarjeta {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  width: 300px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-5px);
}

.tarjeta img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tarjeta h3 {
  font-size: 1.2rem;
  margin: 15px 0 10px;
}

.tarjeta a {
  display: inline-block;
  margin-bottom: 20px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.tarjeta a:hover {
  background-color: #1ebe5d;
}

/* ============================
   SECCIÓN: Mapa + Contacto lado a lado
============================ */
.ubicacion-contacto {
  padding: 40px 20px;
  background-color: #fff;
}

.titulo-ubicacion {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
}

.contenedor-contacto {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px; /* Centrado y ancho máximo */
  margin: 0 auto; /* Centrar el contenedor */
}

.mapa {
  flex: none; /* Elimina el estiramiento */
  width: 500px; /* Ancho fijo */
  position: relative;
}

.mapa iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 10px;
}

.btn-direcciones {
  margin-top: 20px;
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-direcciones i {
  margin-right: 8px;
}

.btn-direcciones:hover {
  background-color: #005fc1;
}

.datos-contacto {
  flex: none; /* Elimina el estiramiento */
  width: 400px; /* Ancho fijo */
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.datos-contacto h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.datos-contacto p {
  margin-bottom: 15px;
  color: #222;
}

.datos-contacto a {
  text-decoration: none;
  font-weight: 600;
}

.datos-contacto i {
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
}

.btn-wsp {
  display: inline-block;
  margin-top: 20px;
  background-color: #25d366;
  color: white !important;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.3s ease color;
  font-weight: 700;
}

.btn-wsp i {
  margin-right: 10px;
  font-size: 1.3rem;
  color: white;
}

.btn-wsp:hover {
  background-color: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor-contacto {
    flex-direction: column;
    gap: 30px;
    max-width: 90%; /* Ajuste para móviles */
  }

  .mapa {
    width: 100%; /* Mapa ocupa todo el ancho en móvil */
  }

  .mapa iframe {
    height: 280px;
  }

  .datos-contacto {
    width: 100%; /* Datos ocupan todo el ancho en móvil */
    font-size: 1rem;
  }

  .titulo-ubicacion {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/* ======================
   RESPONSIVE - MÓVILES
====================== */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .tarjetas-producto {
    flex-direction: column;
    align-items: center;
  }

  .tarjeta {
    width: 90%;
  }

  .datos-contacto h2 {
    font-size: 1.5rem;
  }
}
