:root {
  --orange: #E8460A;
  --dark: #1a1a18;
  --white: #ffffff;
  --whatsapp-color: #25D366;
  --telegram-color: #0088cc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #fafaf8;
  color: var(--dark);
  overflow-x: hidden;
}

header {
  background: var(--dark);
  padding: 10px 20px;
  border-bottom: 4px solid var(--orange);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo-img {
  max-height: 60px;
  width: auto;
}

.logo-text {
  font-family: 'Bebas Neue';
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-text span {
  color: var(--orange);
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.8rem;
  }

  .logo-img {
    max-height: 50px;
  }
}

.carousel-container {
  max-width: 1400px;
  margin: 30px auto;
  padding: 0 20px;
}

.swiper {
  width: 100%;
  padding-bottom: 60px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  max-height: 550px;
  object-fit: contain;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-text {
  text-align: center;
  padding: 40px 20px;
  background: white;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-family: 'Bebas Neue';
  font-size: 3.5rem;
  /* Ajustado para mejor balance con el h2 */
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-text h2 {
  font-family: 'Bebas Neue';
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Estilo para sección EEAT */
.eeat-section {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.eeat-title {
  font-family: 'Bebas Neue';
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.eeat-content {
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.floating-actions {
  position: fixed;
  bottom: 35px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.btn-float {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 35px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid white;
}

.btn-wa {
  background: var(--whatsapp-color);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.btn-tg {
  background: var(--telegram-color);
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.5);
}

.btn-float:hover {
  transform: scale(1.1) rotate(5deg);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  border-top: 5px solid var(--orange);
}

.footer-legal-name {
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 5px;
  display: block;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--orange);
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 20px;
}

.footer-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.promo-banner {
  flex: 1;
  /* Hace que ambos ocupen el mismo ancho */
  min-width: 280px;
  /* Evita que se hagan demasiado flacos en móvil */
  max-width: 450px;
  /* Evita que se estiren demasiado en PC */
  background: #f5c842;
  /* Un fondo suave */
  border: 1px dashed #e2e2e2;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  /* También usamos flex adentro para alinear el emoji y el texto */
  align-items: center;
  gap: 10px;
}

.promo-banner p {
  margin: 0;
  /* Quita el espacio extra que traen los párrafos por defecto */
  font-size: 0.95rem;
}

.promo-banner p {
  color: #3a2e00;
  font-weight: 800;
  font-size: 1rem;
  margin: 0;
}

.btn-pedido {
  /* Colores y Fondo */
  background-color: #d86931;
  /* El tono naranja de la imagen */
  color: #ffffff;
  /* Texto blanco */

  /* Tipografía */
  font-family: 'Nunito', sans-serif;
  /* Usando la que ya tienes en tu web */
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  /* Forzar mayúsculas */
  text-decoration: none;
  /* Quitar subrayado de enlace */
  letter-spacing: 1px;
  /* Espaciado entre letras */

  /* Forma y Espaciado */
  display: inline-block;
  padding: 15px 50px;
  /* Espacio interno (arriba/abajo y lados) */
  border-radius: 50px;
  /* Bordes tipo "píldora" totalmente redondeados */

  /* Alineación y Sombra suave */
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
}

/* Efecto al pasar el mouse (Hover) */
.btn-pedido:hover {
  background-color: #bc5624;
  /* Un naranja un poco más oscuro */
  transform: translateY(-2px);
  /* Pequeño salto hacia arriba */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Efecto al hacer clic */
.btn-pedido:active {
  transform: translateY(0);
}


.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  user-select: none;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
  transform: scale(0.97);
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .swiper-slide img {
    max-height: 400px;
  }

  .btn-float {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

.floating-actions {
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  /* Uno encima del otro */
  gap: 15px;
  /* Espacio entre ellos */
  z-index: 1000;
  padding: 10px;
  /* "Zona sensible" para el mouse */
}

/* 1. Animación */
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.1);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(1);
  }
}

/* 2. Botones (Estado inicial) */
.btn-float {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: all 0.3s ease !important;
  /* Suaviza el cambio de tamaño */

  /* Aplicamos la animación */
  animation: heartbeat 2s infinite ease-in-out;
}

/* 3. DETENER EL LATIDO (Aquí está el truco) */
/* Usamos !important y una ruta más específica para obligar al navegador */
.floating-actions:hover .btn-float {
  animation: none !important;
}

/* 4. El botón señalado CRECE */
.btn-float:hover {
  transform: scale(1.3) !important;
  opacity: 1 !important;
}

/* 5. El hermano se ACHICA */
.floating-actions:hover .btn-float:not(:hover) {
  transform: scale(0.8) !important;
  opacity: 0.6 !important;
}