body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

:root {

  --primary: #FF5000;
  --secondary: #59B336;
  --text: #000;

}

.titulo{
  color: var(--primary);
  font-size: 30px;
  text-align: center;
  margin-bottom: 60px;
  padding-top: 30px;
  font-weight: 900;
}

.parrafos{
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  color: #555;
  margin-bottom: 1.5rem;
  padding-right: 200px;
  padding-left: 200px;
}

/* ==== SECCIÓN HEAD-TIENDAS ==== */

.head-tiendas {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding-top: 150px;
}

/* Fondo con imagen */

.head-tiendas .fondo-tiendas img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%); /* Oscurece para resaltar texto */
  z-index: 1;
}

/* Contenido encima */
.head-tiendas .contenido-tiendas {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background-color: #ff510075;
  padding: 10px;
  border-radius: 10px;
}

/* Logo de la tienda */
.logo-tienda {
  width: 140px;
  height: auto;
  border-radius: 50%;
  border: 3px solid var(--primary);
  background-color: #e0e0e0;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Texto informativo */
.info-tienda h2 {
  margin: 10px 0 5px;
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
}

.info-tienda p {
  margin: 2px 0;
  font-size: 16px;
  color: #fff;
}
/* carrusel */
.carousel {
  position: relative;
  width: 700px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform .5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Flechas laterales */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none;
  font-size: 32px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: .3s;
  z-index: 5;
}

.carousel-btn:hover {
  background: rgba(0,0,0,.75);
}

.prev { left: 12px; }
.next { right: 12px; }

/* Información de Contacto */

.info-contacto {
  text-align: center;
  padding: 40px 20px;
}

.cards-contacto {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgb(255, 80, 0);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 15px rgb(255, 80, 0);
}

.card h3 {
  margin-bottom: 12px;
  color: #222;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card a {
  text-decoration: none;
  color: #000000;
  transition: .2s;
}

.card a:hover {
  color: #ff4400;
  text-decoration: underline;
}

.card img{
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.card li {
  display: flex;
  align-items: center; /* CENTRA imagen + texto verticalmente */
  gap: 10px; /* Espacio entre el ícono y el texto */
  margin: 8px 0;
}

.horarios {
  padding-bottom: 50px;
}

.cards-horarios {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding-right: 20px;
  padding-left: 20px;
}

.card-hora {
  background: #ffffff;
  border-radius: 12px;
  width: 500px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 10px rgb(255, 80, 0);
  transition: transform .3s ease, box-shadow .3s ease;
}

.card-hora:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 15px rgb(255, 80, 0);
}


.card-hora img{
  height: 80px;
  width: 80px;
  object-fit: contain;
}

.card-hora li {
  display: flex;
  justify-content: center;
  align-items: center; /* CENTRA imagen + texto verticalmente */
  gap: 10px; /* Espacio entre el ícono y el texto */
  margin: 8px 0;
}

.card-hora li p {
  font-size: 25px;
  font-weight: 700;
  color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
  .head-tiendas {
    height: 380px;
  }

  .titulo{
    font-size: 25px;
  }

  .parrafos{
    padding-left: 80px;
    padding-right: 80px;
  }

  .info-tienda h2 {
    font-size: 22px;
  }
  .info-tienda p {
    font-size: 14px;
  }
  .logo-tienda {
    width: 100px;
  }

  .carousel{
    width: 400px;
  }

 .carousel img {
    height: 220px;
  }

  .carousel-btn {
    font-size: 24px;
    padding: 8px;
  }

  .cards-contacto {
    flex-direction: column;
    align-items: center;
  }
  
}

@media (max-width: 415px) {
  .titulo{
    font-size: 22px;
  }

  .carousel{
    width: 300px;
  }
}