/* ======= HERO ======= */
.hero {
  margin-top: 9.1%;
  background:
              url('../img/banner/banner.jpg') center/cover no-repeat;
  height: 30rem;
  text-align: center;
  padding: 160px 20px 120px;
  position: relative;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  animation: fadeIn 1.2s ease-in-out;
}

.hero-content h1 {
  color: #023e8a;
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content p {
  color: #242e30;
  font-size: 1.7rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-pedir {
  background: #05ca26;
  padding: 14px 28px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-pedir:hover {
  background: #00b66a;
  transform: scale(1.05);
}

/* ======= COMBOS PROMOCIONALES ======= */
.combos {
  background: #f0fbff;
  padding: 70px 20px;
  text-align: center;
}

.combos h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #0077b6;
  text-align: center;
}

/* Layout horizontal */
.combo-empresa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-empresa:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.combo-info {
  flex: 1;
  padding: 50px 40px;
  text-align: left;
}

.combo-info h3 {
  color: #0077b6;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.combo-info p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.btn-combo {
  display: inline-block;
  background: linear-gradient(135deg, #05ca26, #48cae4);
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-combo:hover {
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  transform: scale(1.05);
}

/* Imagen */
.combo-img {
  flex: 1;
}

.combo-img img {
  width: 60%;
  height: auto;
  object-fit: cover;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .combo-empresa {
    flex-direction: column;
    text-align: center;
  }

  .combo-info {
    padding: 30px 20px;
    text-align: center;
  }

  .combo-img {
    width: 90%;
  }
}


/* ======= PRODUCTOS DESTACADOS ======= */
.productos {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.productos h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #b60000;
}


.tarjetas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.tarjeta {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.tarjeta img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.tarjeta h3 {
  color: #023e8a;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tarjeta p {
  margin-bottom: 10px;
  font-weight: 600;
  color: #0077b6;
}

.tarjeta .btn {
  display: inline-block;
  background: #05ca26;
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.tarjeta .btn:hover {
  background: #00b66a;
}

/* ======= MARCAS ======= */
.marcas {
  text-align: center;
  padding: 80px 20px;
  background: #e8faff;
}

.marcas h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #b60000;

}

.logos-marcas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logos-marcas img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
  transition: transform 0.3s;
  border-radius: 20%;
}

.logos-marcas img:hover {
  transform: scale(1.1);
}

/* ======= COMBOS ======= */
.combos {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.combos h2 {
  color: #b60000;
  font-size: 2rem;
  margin-bottom: 40px;
}

.combos .tarjeta h3 {
  color: #03045e;
}

/* ======= CONSEJOS ======= */
.consejos {
  background: #f0faff;
  padding: 80px 20px;
  text-align: center;
}

.consejos .container {
  max-width: 1100px;
  margin: 0 auto;
}

.consejos h2 {
  font-size: 2rem;
  color: #b60000;
  margin-bottom: 10px;
}

.consejos .intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
}

.consejos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.consejos .card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.consejos .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.consejos .card img {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.consejos .card h3 {
  color: #0077b6;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.consejos .card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .consejos .intro {
    font-size: 1rem;
  }

  .consejos .card img {
    width: 60px;
  }

  .sobre-nosotros .container {
    flex-direction: column;
    text-align: center;
  }

  .sobre-nosotros .sobre-texto {
    flex: 1 1 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.5rem;
  }

  .tarjetas {
    grid-template-columns: 1fr 1fr;
  }
}


/* ======= FOOTER ======= */
.footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.footer .info {
  margin-bottom: 20px;
}

.footer p {
  margin: 8px 0;
}

.footer .redes {
  margin: 20px 0;
}

.footer .redes img {
  border-radius: 10em;
  width: 40px;
  height: auto;
  margin: 0 10px;
  transition: transform 0.3s, filter 0.3s;
}

.footer .redes img:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.footer .copy {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ======= WHATSAPP FLOAT ======= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  animation: float 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}


/* ======= SOBRE NOSOTROS ======= */
.sobre-nosotros {
  background: #f7f9fc;
  padding: 80px 20px;
}

.sobre-nosotros .container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.sobre-nosotros .sobre-img {
  flex: 1 1 40%;
  text-align: center;
}

.sobre-nosotros .sobre-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sobre-nosotros .sobre-texto {
  flex: 1 1 55%;
}

.sobre-nosotros h2 {
  font-size: 2rem;
  color: #b60000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sobre-nosotros p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.sobre-nosotros .slogan {
  font-size: 25px;
  font-weight: bold;
  color: #0077b6;
  margin-top: 10px;
}


/* ======= ANIMACIONES ======= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 500px) {
  .tarjetas {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 130px 15px 100px;
  }

  .tarjeta img {
    width: 30%;
    height: auto;
  }
}
