.promociones-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.promociones-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.promociones-section .card-img-top {
    object-fit: cover;
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.promociones-section .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promociones-section .btn {
    border-radius: 20px;
    font-weight: bold;
    padding: 10px 20px;
}

.promociones-section .card-text {
    font-size: 1.1rem;
    color: #555;
}

/* Para asegurar el mismo alto en las columnas */
@media (min-width: 768px) {
    .promociones-section .row > div {
        display: flex;
    }
}



  
/* Logo responsivo */
.navbar-brand img {
    max-height: 7rem; /* El logo ocupará toda la altura disponible del navbar */
    height: auto; /* Mantiene la proporción del logo */
    display: inline-block;
    vertical-align: middle; /* Alineación vertical */
  }
  
  /* Navbar base */
  nav.navbar {
      padding: 20px 30px; /* Más espacio para el grosor */   
      border-bottom: 2px solid #ddd; /* Línea separadora sutil */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra más pronunciada */
      background: linear-gradient(to bottom right,#f2f2f2 ,#ffcc80, #ff9800, #ff5722);
      max-height: 7rem;
      position: relative;
      z-index: 1000; 
  
  }
  
  /* Navbar links */
  .navbar-light .navbar-nav .nav-link {
      font-size: 1.2rem;
      font-weight: 600;
      color: #555;
      text-transform: uppercase;
      padding: 10px 20px;
      transition: color 0.3s ease, transform 0.2s ease;
  }
  
  .navbar-nav .nav-link:hover {
      color: #ff5722; /* Cambia el color al hover */
      transform: scale(1.05); /* Efecto suave */
  }
  
  /* Ítem activo */
  .navbar-light .navbar-nav .nav-link.active {
      color: #ff5722;
      font-weight: 700;
      border-bottom: 2px solid #ff5722; /* Indicador de activo */
  }
  
  /* Ajustes para escritorio */
  @media (min-width: 992px) {
      .navbar-nav {
          text-align: center;
      }
      .navbar-nav .nav-item {
          margin: 0 15px;
      }
  }
  
  /* Ajustes para tablets y móviles */
  @media (max-width: 991px) {
      .navbar {
          padding: 10px 15px;
      }
  
      .navbar-brand {
          margin-bottom: 10px;
          text-align: center;
          font-size: 1.5rem;
          font-weight: bold;
      }
  
      .navbar-nav {
          text-align: center;
          margin-top: 15px;
          padding: 0;
      }
  
      .navbar-nav .nav-item {
          width: 100%;
          margin: 5px 0;
      }
  
      .navbar-nav .nav-link {
          font-size: 1rem;
          padding: 10px;
          background: #f9f9f9;
          border-radius: 5px;
          margin: 2px 0;
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
  
      .navbar-nav .nav-link:hover {
          background: #ff5722;
          color: #fff;
          transform: scale(1.05);
      }
  }
  
  /* Optimización adicional para pantallas pequeñas */
  @media (max-width: 576px) {
      .navbar-brand {
          font-size: 1.2rem;
      }
  
      .navbar-toggler {
          border: none;
      }
  
      .navbar-nav .nav-link {
          font-size: 0.9rem;
          padding: 8px;
      }
  }
  
  
  
  
  /* Estilos Base para el Footer */
  .footer {
    background: linear-gradient(to bottom right, #ff9800, #ff5722);
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .footer-logo {
    max-width: 250px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-description {
    font-family: 'Roboto', sans-serif; /* Fuente moderna y legible */
    font-size: 1.1rem; /* Un tamaño de fuente ligeramente mayor */
    line-height: 1.8; /* Mayor espaciado entre líneas para mejor legibilidad */
    margin-top: 0.5rem;
    text-align: center;
    color: #cf130d; /* Color oscuro para buen contraste */
    font-weight: 400; /* Peso de fuente normal */
    letter-spacing: 0.5px; /* Espaciado entre letras para mayor claridad */
  }
  
  .footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
    color: #fd3d02; /* Naranja más fuerte */
    transition: color 0.3s ease; /* Transición suave para el hover */
  }
  
  .footer-heading:hover {
    color: #c01c10; /* Naranja más claro al pasar el ratón */
  }
  
  .footer-link, .footer-social-link {
    font-size: 1rem;
    color:  #fd3d02;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover, .footer-social-link:hover {
    color: #f31414; /* Naranja claro al pasar el ratón */
  }
  
  
  .footer-links,
  .legal-links {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra los elementos dentro de cada columna */
  }
  
  .footer-links li,
  .legal-links li {
    list-style: none;
    margin-bottom: 0.5rem;
  }
  
  .footer-link {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #ffe0b2; /* Color claro al pasar el mouse */
  }
  
  /* Estilo para los íconos sociales */
  .footer-social-link {
    font-size: 2rem;
    color: white;
    transition: color 0.3s ease;
    margin-right: 15px; /* Espacio entre los íconos */
  }
  
  .footer-social-link:hover {
    color: #ffe0b2; /* Color claro al pasar el mouse */
  }
  
  .social-links {
    display: flex;
    justify-content: center; /* Centra los íconos en la parte derecha */
    padding: 0;
    margin: 0;
  }
  
  .social-links li {
    list-style: none;
    margin: 0 10px; /* Añadir margen entre los íconos */
  }
  
  /* Copyright en fondo negro (fuera de la estructura del container) */
  .footer-copyright {
    background-color: #212121; /* Fondo negro */
    font-size: 0.9rem;
    font-weight: 300;
    padding: 10px 0;
  }
  
  .footer-copyright p {
    margin-bottom: 0;
    color: white;
  }
  
  /* Responsividad */
  @media (max-width: 768px) {
    .footer-logo {
      max-width: 180px; /* Reducir el logo en dispositivos móviles */
    }
  
    .footer-description {
      font-size: 0.9rem;
    }
  
    .footer-links,
    .legal-links,
    .social-links {
      text-align: center;
    }
  
    .footer-links li,
    .legal-links li {
      margin-bottom: 1rem;
    }
  
    .footer-heading {
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .footer-logo {
      max-width: 130px; /* Ajuste extra para pantallas muy pequeñas */
    }
  
    .footer-description {
      font-size: 0.85rem;
    }
  
    .footer-heading {
      font-size: 1rem;
    }
  }
  
  
  /*Icono whatsapp*/
    
  .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
  }
  
  .whatsapp-icon a {
    background-color: #f2f2f2; /* Fondo verde de WhatsApp */
    padding: 12px; /* Ajusta el padding para un buen espacio alrededor del ícono */
    border-radius: 50%; /* Asegura que el borde sea circular */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Sombra más suave */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Tamaño fijo del icono */
    height: 60px;
    border: 4px solid #25d366; /* Borde blanco alrededor del ícono */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transición suave */
  }
  
  .whatsapp-icon a:hover {
    background-color: #f2f2f2; /* Color verde más oscuro al pasar el mouse */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Sombra más pronunciada al pasar el mouse */
    transform: translateY(-5px); /* Efecto de aumento al pasar el mouse */
  }
  
  .whatsapp-icon i {
    color: white; /* El ícono ahora será blanco */
    font-size: 28px; /* Aumento el tamaño del ícono para que se vea bien */
    transition: transform 0.3s ease; /* Transición para el ícono */
  }
  
  .whatsapp-icon a:hover i {
    transform: scale(1.1); /* Aumentar el tamaño del ícono al hacer hover */
  }
  

  .unique-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
  }

  .unique-title25 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
  }

  .unique-title26 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
  }
  
  
  .promo-description {
    font-size: 1.3rem; /* Aumenta el tamaño del texto */
    font-weight: bold; /* Hace que el texto sea más grueso */
    color: #ff5722; /* Color llamativo (naranja) */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
    text-align: center;
    margin-top: 10px;
}


.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff; /* Azul llamativo */
}

.promo-title {
    font-size: 1.5rem; /* Tamaño del texto más grande */
    font-weight: bold; /* Texto en negrita */
    color: #2c3e50; /* Verde brillante */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    letter-spacing: 1px; /* Espaciado entre letras para mejor legibilidad */
}



.custom-title {
    font-size: 1.5rem; /* Tamaño del texto más grande */
    font-weight: bold; /* Texto en negrita */
    color: #FF8C00; /* Verde brillante */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil */
    letter-spacing: 1px; /* Espaciado entre letras para mejor legibilidad */
}


.custom-titleDos {
  font-size: 1rem; /* Tamaño del texto más grande */
  font-weight: bold; /* Texto en negrita */
  color: #FF8C00; /* Verde brillante */
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil */
  letter-spacing: 1px; /* Espaciado entre letras para mejor legibilidad */
}


/* .cta-button {
    background-color:#FF4500;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color:#FF8C00;
    color: #f2f2f2;
} */


.fondo {
    background-color: #f2f2f2; /* Color gris claro */
}

 /* Estilo para hacer las imágenes más grandes y anchas */
 .large-img {
    height: 300px; /* Ajustamos la altura */
    width: 100%; /* Asegura que la imagen ocupe el 100% de la tarjeta */
    object-fit: cover; /* Mantiene la proporción de la imagen */
    transition: transform 0.3s ease; /* Efecto de transición suave */
}

.card {
    height: 100%; /* Asegura que la tarjeta ocupe todo el espacio disponible */
    width: 100%; /* Las tarjetas ocuparán el 100% del contenedor */
    border-radius: 15px; /* Bordes redondeados */
    overflow: hidden; /* Evita que el contenido sobresalga de las tarjetas */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transición suave para el hover */
}

.card-body {
    padding: 1.5rem; /* Espaciado interno adicional */
}

/* Efecto Hover */
.hover-card:hover {
    transform: translateY(-10px); /* Eleva la tarjeta */
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2); /* Sombra fuerte para efecto de profundidad */
}

.card-title {
    font-size: 1.25rem; /* Tamaño de fuente adecuado para títulos */
    font-weight: bold; /* Títulos en negrita */
}

.card-text {
    font-size: 1rem; /* Tamaño de fuente para la descripción */
    color: #555; /* Color de texto profesional y neutro */
}

/* Ajustes para pantallas grandes */
@media (min-width: 1200px) {
    .col-lg-3 {
        max-width: 33.33%; /* Ajusta el ancho de las columnas en pantallas grandes */
    }
}

/* Ajustes para pantallas medianas */
@media (max-width: 1199px) and (min-width: 768px) {
    .col-md-4 {
        max-width: 50%; /* Ajusta el ancho de las columnas en pantallas medianas */
    }
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 767px) {
    .col-sm-6 {
        max-width: 100%; /* Ajusta el ancho de las columnas en pantallas pequeñas */
    }
}