body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Estilo de la barra de navegación */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #303030;
    padding: 10px 20px;
    color: white;
    position: relative;
}

/* Estilo del logo */
.navbar img {
    height: 35px; /* Ajusta la altura del logo */
    transition: transform .3s ease;
}

.navbar:hover img {
    transform: scale(1.05);
}

/* Estilo para los iconos de las redes sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    color: #ce0000;
}

/* Estilos de los enlaces del menú */
.navbar-links {
    display: flex;
    align-items: center;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.navbar-links a:hover {
    color: #ce0000;
}

.navbar a.active-a {
    color: #FFD700;
}


/* Botón de hamburguesa */
.hamburger {
    display: none; /* Oculta el botón de hamburguesa en pantallas grandes */
    font-size: 1.5rem;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: white;
    padding: 0px 0px;
    text-decoration: none;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #404040;
    min-width: 160px;
    padding: 10px;
    border-radius: 10px; /* Agrega esta propiedad */
    z-index: 3;
    animation: slideIn 0.3s ease forwards;
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #575757;
    border-radius: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Sección del banner A */

.banner {
    width: 100%;
    height: 400px;
    background-image: url('https://i.ibb.co/d6hWWSD/large-screen-banner.png');
    background-size: cover;
    background-position: center;
    position: relative; /* Necesario para colocar la película encima */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden; /* Evita que el contenido salga del contenedor */
    animation: fadeIn .3s ease-in forwards;


}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Película semitransparente negra */
    z-index: 1; /* Coloca la película detrás del contenido del banner */
    pointer-events: none; /* Evita interferencias en la interacción con el contenido */
}


.banner img {
    width: 500px;
    opacity: 0; /* Inicialmente invisible */
    animation: fadeInDown 1s ease-out forwards;
}

.banner-merch img {
    height: 200px;
    opacity: 0; /* Inicialmente invisible */
    animation: fadeInDown 1s ease-out forwards;
}

.banner > * {
    position: relative;
    z-index: 2; /* Asegura que el contenido esté encima de la película */
}

.banner h1 {
    font-size: 3rem;
    margin: 0;
}
.banner p {
    font-size: 1.5rem;
}

/* Sección del banner B */

.banner-merch {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative; /* Necesario para colocar la película encima */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden; /* Evita que el contenido salga del contenedor */
    animation: fadeIn .3s ease-in forwards;

}

.banner-1 {
    background-image: url('https://i.ibb.co/7K822Bd/banner-merch-d.png');
}

.banner-2 {
    background-image: url('https://i.ibb.co/PFNFZWN/anime-banner.png');
}

.banner-3 {
    background-image: url('https://i.ibb.co/2Y7Swpg/streetwear-banner.png');
}

.banner-4 {
    background-image: url('https://i.ibb.co/tPLfKYn/banner-catalog.png');
}

.banner-san-valentin {
    background-image: url('https://i.ibb.co/xtxSpSHV/banner-san-valentin.png');
}

.banner-san-valentin-b {
    background-image: url('https://i.ibb.co/Vp0rQDGq/san-valentin-banner-a.png');
}

.banner-gym-a {
    background-image: url('https://i.ibb.co/BKZwvhs4/gym-banner-a.png');
}

.banner-playeras {
    background-image: url('https://i.ibb.co/wgDzPmL/banner-playeras.png');
}

.banner-sudaderas {
    background-image: url('https://i.ibb.co/FkPbTxLr/sudaderas-banner.png');
}

.banner-tazas {
    background-image: url('https://i.ibb.co/ZRH5H4F2/banner-tazas-a.png');
}

.banner-gorras {
    background-image: url('https://i.ibb.co/wgDzPmL/banner-playeras.png');
}

.banner-posters {
    background-image: url('https://i.ibb.co/wgDzPmL/banner-playeras.png');
}

.banner-valentines-a{
    background-image: url('https://i.ibb.co/xt4F5R8p/banner-valentines.jpg');
}



.banner-merch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Película semitransparente negra */
    z-index: 1; /* Coloca la película detrás del contenido del banner */
    pointer-events: none; /* Evita interferencias en la interacción con el contenido */
}

.banner-merch > * {
    position: relative;
    z-index: 2; /* Asegura que el contenido esté encima de la película */
}

.banner-merch p {
    font-size: 1.5rem;
}
/* Cuadros con esquinas redondas */
.section-cuadros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 20px;
}
.cuadro {
    background-color: #f4f4f4;
    height: 250px;
    width: 250px;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.cuadro:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    background-color: #303030;
}

.cuadro:hover h3 {
  color: #FFD700;
}

.cuadro:hover i, .cuadro:hover p {
  color: #fff;
}

.cuadro i {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
}
.cuadro h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #303030;
}
.cuadro p {
    font-size: 1rem;
    color: #666;
    margin: auto;
}


.productos-personalizables {
    background-color: #303030; /* Fondo gris oscuro */
    color: white; /* Color del texto en blanco */
    text-align: center; /* Centra el texto */
    padding: 5px; /* Espaciado interno */
}


.productos-personalizables-b {
    background-color: #ffffff; /* Fondo blanco */
    color: #303030; /* Color del texto gris oscuro */
    text-align: center; /* Centra el texto */
    align-items: center;
    padding: 10px; /* Espaciado interno */
}

.back-button {
    display: inline-flex; /* Alinea el ícono y el texto en una línea */
    align-items: center; /* Centra el ícono y el texto verticalmente */
    color: #303030; /* Color del texto */
    text-decoration: none; /* Elimina el subrayado */
    font-size: 18px; /* Ajusta el tamaño del texto */
}

.back-button i {
    margin-right: 8px; /* Espacio entre el ícono y el texto */
    font-size: 20px; /* Ajusta el tamaño del ícono */
    vertical-align: middle; /* Alinea el ícono con el texto */
}

.productos-personalizables-c {
    background-color: #303030; /* Fondo gris oscuro */
    color: #fff; /* Color del texto en blanco */
    text-align: center; /* Centra el texto */
    padding: 10px; /* Espaciado interno */
}

.productos-personalizables-b a, .productos-personalizables-c a {
    font-size: 2rem; /* Tamaño de la fuente */
    text-decoration: none;
    font-family: 'FT Expo Black', sans-serif;
    padding-top: 10px;
    color: #303030;
    transition: transform .5s ease;
}

.productos-personalizables-b a:hover {
    transform: scale(1.08);
}

.productos-personalizables-b h2, .productos-personalizables-c h2 {
    font-size: 2rem; /* Tamaño de la fuente */
    font-family: 'FT Expo Black', sans-serif;
    padding-top: 10px;
    color: #303030;
}

.destacados-title {
    background-image: url(https://i.ibb.co/twGm1CwF/banner-desktop-san-valentin.png);
    color: #303030; /* Color del texto gris oscuro */
    text-align: center; /* Centra el texto */
    align-items: center;
    padding: 10px 0; /* Espaciado interno (ajustar según sea necesario) */
    background-repeat: no-repeat;
    background-size: cover; /* La imagen se adapta al ancho y cubre todo el contenedor */
    background-position: top center; /* Coloca la imagen en la parte superior, centrada horizontalmente */
}

/* Para asegurar que la imagen ocupe el 100% de la altura: */
.destacados-title::before {
    content: '';
    background-image: url(https://i.ibb.co/twGm1CwF/banner-desktop-san-valentin.png);
    background-repeat: no-repeat;
    background-size: contain; /* Ajusta proporcionalmente */
    position: absolute; /* Para que se coloque en relación al contenedor */
    top: 0; /* Pegado a la parte superior */
    left: 50%; /* Centrado horizontalmente */
    width: 100%; /* Ancho automático, ajustable */
    height: auto; /* Ocupa la altura completa del contenedor */
    transform: translateX(-50%); /* Centra la imagen horizontalmente */
    z-index: -1; /* Para que el texto esté por encima */
}

.destacados-title h2{
    font-size: 2rem; /* Tamaño de la fuente */
    font-family: 'FT Expo Black', sans-serif;
    padding-top: 10px;
    color: #BA006E;
}


.productos-personalizables-b i{
    color: #303030;
    font-size: 20px;
}

.productos-personalizables-d {
  font-family: 'FT Expo Black', sans-serif;
  background-color: #303030; /* Fondo oscuro */
  color: #FFF; /* Color del texto blanco */
  text-align: center; /* Centra el texto */
  align-items: center;
  padding: 30px 20px;
  position: relative;
  margin-top: 40px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.productos-personalizables-d h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #FFEB3B, #FF5733, #FFEB3B); /* Gradiente de colores brillantes */
  background-size: 200% 200%; /* Asegura que el gradiente ocupe todo el texto */
  background-position: left center;
  color: transparent; /* Hace el texto transparente para que se vea el gradiente */
  -webkit-background-clip: text; /* Necesario para aplicar el fondo a las letras */
  animation: fade-in-t 1s ease-in-out, gradient-motion-a 5s ease-in-out infinite; /* Animación más lenta de gradiente */
}

.contador {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
}

.contador-num {
  color: #FFEB3B; /* Color del contador (amarillo brillante) */
  font-size: 4rem;
  animation: contador-animation-h 2s ease-out forwards; /* Animación para el contador */
}

.contador-texto {
  color: #FFF; /* Color del texto adicional */
  font-size: 1.5rem;
  margin-left: 10px;
  animation: fade-in-h 1s ease-in-out; /* Animación para el texto adicional */
}

/* Cuadros con esquinas redondas Merch*/
.section-cuadros-merch {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: calc(250px * 4 + 60px);
    margin: auto;
    padding: 50px;
}
.cuadro-merch {
    height: 130px;
    width: 250px;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover; /* Hace que la imagen cubra todo el cuadro */
    background-position: center; /* Centra la imagen en el cuadro */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    color: white; /* Ajusta el color del texto */
    overflow: hidden;
}

.cuadro-merch:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Específico para cada cuadro */
.cuadro-1 {
    background-image: url('https://i.ibb.co/19PcpcL/Playeras.png'); /* Ruta de la imagen 1 */
}

.cuadro-2 {
    background-image: url('https://i.ibb.co/FmwpF1n/Tazas-Termos.png'); /* Ruta de la imagen 2 */
}

.cuadro-3 {
    background-image: url('https://i.ibb.co/zRwCfmK/Sudaderas.png'); /* Ruta de la imagen 3 */
}

.cuadro-4 {
    background-image: url('https://i.ibb.co/zSv46XJ/Gorras.png'); /* Ruta de la imagen 4 */
}

.cuadro-5 {
    background-image: url('https://i.ibb.co/v1w1hx7/Posters.png'); /* Ruta de la imagen 4 */
}

.cuadro-6 {
    background-image: url('https://i.ibb.co/tZPbX6X/Fotoboton.png'); /* Ruta de la imagen 4 */
}


.cuadro-merch h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}
.cuadro-merch p {
    font-size: 1rem;
    color: #666;
}

.section-playeras i{
   font-size: 30px;
   color: white;
}

/* Sección sobre playeras personalizadas */
.section-playeras, .section-sudaderas {
    width: 100%;
    padding: 30px 0px; /* Ajustar el padding */
    background-color: #303030;
    color: white;
    display: flex;
    justify-content: center;
    gap: 50px;
}



.section-merch {
    width: 100%;
    background-color: #303030;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0; /* Oculta inicialmente */
    animation: fadeIn 0.8s ease-out forwards; /* Aplica la animación */

}

.text-box-merch h1 {
    font-size: 1.1rem; /* Reducir el tamaño del encabezado */
    font-weight: lighter;
    text-align: center
}

.text-box-merch i {
    font-size: 2rem; /* Reducir el tamaño del encabezado */
}

.text-box-merch {
  height: 100px;
  width: 250px;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.text-box-merch:hover {
    transform: scale(1.05);

}

.image-box {
    width: 30%;
    border-radius: 15px;
    padding: 10px; /* Reducir el padding */
    overflow: hidden;
    transition: transform 0.3s ease;
}
.text-box{
    background-color: #303030;
    width: 40%;
    border-radius: 15px;
    padding: 15px; /* Reducir el padding */
    overflow: hidden;
}
.section-playeras h2,
.section-sudaderas h2 {
    font-size: 2rem; /* Reducir el tamaño del encabezado */
    margin-bottom: 10px; /* Reducir el margen inferior */
    font-weight: bold;
    text-align: center
}
.section-playeras p,
.section-sudaderas p {
    font-size: 1rem; /* Reducir el tamaño del párrafo */
    line-height: 1.4; /* Ajustar la altura de línea */
    text-align: center
}
.section-playeras .highlight,
.section-sudaderas .highlight {
    font-size: 1.2rem; /* Reducir el tamaño */
    font-weight: bold;
    color: #FFD700;
    text-align: center
}
.section-playeras .subheading,
.section-sudaderas .subheading {
    font-size: 1.5rem; /* Reducir el tamaño */
    margin-top: 20px; /* Reducir el margen superior */
    font-weight: 600;
    text-align: center
}
.image-box img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.5);
}

.image-box:hover {
    transform: scale(1.05);
}

.image-box-b {
    width: 30%;
    position: relative;
    overflow: hidden;
}

.image-box-b img {
    width: 100%;
}

.button-overlay {
    position: absolute; /* Posiciona el botón dentro del contenedor de la imagen */
    top: 85%; /* Centra el botón verticalmente */
    left: 50%; /* Centra el botón horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta el botón para que quede exactamente centrado */
    background-color: #C30000; /* Color de fondo del botón */
    font-weight: bold;
    color: white; /* Color del texto */
    padding: 10px 20px; /* Espaciado interno */
    font-size: 1rem; /* Tamaño de la fuente */
    text-decoration: none; /* Elimina el subrayado */
    border-radius: 25px; /* Bordes redondeados */
    transition: background-color 0.3s ease; /* Transición suave */
}

.button-overlay:hover {
    background-color: #808080; /* Cambia el color del botón al pasar el mouse */
}

/* Sección de tazas personalizadas */
.section-tazas {
  width: 100%;
  padding: 0px 0px; /* Ajustar el padding */
  background-color: #303030;
  color: white;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.image-box-taza {
  width: 30%;
  border-radius: 15px;
  overflow: hidden;
  transition: transform .3s ease;
}

.image-box-taza:hover {
    transform: scale(1.05);
}
.section-tazas h2 {
    font-size: 2rem; /* Reducir el tamaño del encabezado */
    margin-bottom: 10px; /* Reducir el margen inferior */
    font-weight: bold;
    text-align: center
}
.section-tazas p {
    font-size: 1rem; /* Reducir el tamaño del párrafo */
    line-height: 1.4; /* Ajustar la altura de línea */
    text-align: center
}
.image-box-taza img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.5);
}

/* Estilo para el botón */
.boton-pedido {
    display: inline-block;
    width: 200px;
    padding: 12px;
    background-color: #c40c0c ; /* Color de fondo */
    color: #ffffff; /* Color del texto */
    text-align: center;
    font-size: 1rem;
    border: none;
    border-radius: 25px; /* Esquinas redondeadas */
    margin: 10px 10px;
    cursor: pointer;
    text-decoration: none; /* Sin subrayado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s, font-weight 0.3s;
}
.boton-pedido:hover {
    background-color: #FFD700; /* Color más oscuro al pasar el ratón */
    transform: scale(1.05); /* Efecto de escala al pasar el ratón */
    color: #303030;
    font-weight: bold;
}

.boton-whatsapp {
    display: inline-block;
    width: 200px;
    padding: 12px;
    background-color: #1fa225 ; /* Color de fondo */
    color: #ffffff; /* Color del texto */
    text-align: center;
    font-size: 1rem;
    border: none;
    border-radius: 25px; /* Esquinas redondeadas */
    margin: 10px 10px;
    cursor: pointer;
    text-decoration: none; /* Sin subrayado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s, font-weight 0.3s;
}
.boton-whatsapp:hover {
    background-color: #FFD700; /* Color más oscuro al pasar el ratón */
    transform: scale(1.05); /* Efecto de escala al pasar el ratón */
    color: #303030;
    font-weight: bold;
}

.footer {
    background-color: #303030;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p, .footer-section a {
    color: #bbb;
    text-decoration: none;
}

.footer-section a:hover {
    color: #c40c0c; /* Color destacado */
    font-weight: bold; /* Letra gruesa */
    transition: all 0.3s ease-in-out; /* Transición suave */
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2rem;
    color: #bbb;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #c40c0c;
    transform: scale(1.3); /* (Opcional) Aumenta ligeramente el tamaño */
    transition: all 0.5s; /* Animación suave */
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 10px;
}





/* Sección de categorías */
.categories-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.categories-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category {
    background-color: #303030;
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInRight 0.5s forwards;
    text-decoration: none;
}

.category:hover {
    background-color: #ce0000;
}

/* Aplicar animaciones con retrasos */
.category:nth-child(1) {
    animation-delay: 0.2s;
}

.category:nth-child(2) {
    animation-delay: 0.4s;
}

.category:nth-child(3) {
    animation-delay: 0.6s;
}

.category:nth-child(4) {
    animation-delay: 0.8s;
}

.category:nth-child(5) {
    animation-delay: 1s;
}

.category:nth-child(6) {
    animation-delay: 1.2s;
}

.category:nth-child(7) {
    animation-delay: 1.4s;
}

.category:nth-child(8) {
    animation-delay: 1.6s;
}

.category:nth-child(9) {
    animation-delay: 1.8s;
}

.category:nth-child(10) {
    animation-delay: 2s;
}

.category:nth-child(11) {
    animation-delay: 2.2s;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .floating-button {
    background-color: #ce0000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }

  .floating-button:hover {
    background-color: #303030;
  }

  .floating-buttons i{
    font-size: 30px;
  }

  .floating-buttons a {
  text-decoration: none; /* Elimina la línea azul */
}

  .section-catalog {
    background-color: #fff;
    text-align: center;
  }

  .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
      padding: 20px 250px;
  }

  .box {
      display: flex;
      flex-direction: row; /* Alinea la imagen y el texto horizontalmente */
      align-items: center; /* Alinea verticalmente el contenido */
      justify-content: center;
      background-color: #e0e0e0;
      padding: 15px;
      border-radius: 30px;
      text-align: left; /* Alinea el texto a la izquierda */
      font-size: 1.3rem;
      font-weight: bold;
      transition: transform 0.3s, background 0.3s, color 0.3s;
      text-decoration: none;
      color: #303030;
  }

  .box i {
      font-size: 20px;
      margin-right: 20px; /* Separación de 10px entre la imagen y el texto */
      transition: fill 0.3s;
  }

  .box:hover {
      background-color: #303030;
      color: yellow;
      transform: scale(1.08);
  }


.section-catalog-a {
    background-color: #fff;
    text-align: center;
}

.container-a {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1200px; /* Limita el ancho máximo */
    margin: auto; /* Centra el contenedor cuando hay pocos elementos */
    gap: 25px;
    padding: 20px;
    justify-content: center; /* Centra los elementos si hay pocos */
    transition: transform .3s ease-in-out;
}



.box-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Elimina el subrayado */
}

.box-a {
    width: 380px; /* Tamaño fijo para evitar expansión */
    height: auto; /* Mantiene proporción */
    background-color: #fff;
    border-radius: 7px;
    position: relative;
    transition: transform 0.3s;
    justify-content: center;
}


.box-a:hover {
    transform: scale(1.02);
}

.box-a img {
    width: 100%;
    height: 100%;
    border-radius: 7px;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
}

/* Aseguramos que el texto .overlay-text no se sobreponga y quede debajo */
.product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-text {
    position: relative;
    color: #303030;
    font-size: 17px;
    font-weight:bolder;
    opacity: 1; /* Siempre visible */
    text-transform: uppercase;
    text-align: center;
    font-display: upp;
    margin-bottom: 0px; /* Márgenes para separar el texto */
}


/* Nuevo botón de solo texto e icono */
.box-a button.btn-text-icon {
    position: absolute;
    background-color: #202020;
    color: #FFD700;
    border: none;
    border-radius: 20px; /* Redondeo de las esquinas */
    width: auto; /* Espacio para el texto */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: default; /* No es interactivo */
    transition: all 0.3s ease;
    z-index: 3; /* Asegura que los botones estén por encima */
    opacity: 1; /* Siempre visible */
    visibility: visible; /* Siempre visible */
    padding-left: 10px; /* Espacio para el icono */
    bottom: 50px; /* Ubicación en la esquina inferior */
    left: 10px; /* Ubicación en la esquina inferior izquierda */
}


/* Mostrar el texto junto con el icono */
.box-a button.btn-text-icon::after {
    content: attr(data-text);
    color: white; /* Color por defecto */
    font-size: 12px;
    margin-left: 10px;
    opacity: 1; /* Siempre visible */
    transition: opacity 0.3s ease-in-out;
}



/* Seccion Multiple Diseños */

.section-catalog-b {
    background-color: #fff;
    text-align: center;
}

.container-b {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px; /* Limita el ancho máximo */
    margin: auto; /* Centra el contenedor cuando hay pocos elementos */
    gap: 40px 20px;
    padding: 20px;
    justify-content: center; /* Centra los elementos si hay pocos */
    transition: transform .3s ease-in-out;
}

.box-t {
    width: 280px; /* Tamaño fijo para evitar expansión */
    height: 185px; /* Mantiene proporción */
    background-color: #e0e0e0;
    border-radius: 7px;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.box-t:hover {
    transform: scale(1.03);
}

.img-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background-color: #f3f3f3; /* Color de fondo mientras carga */
}

.img-container-b {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background-color: #f3f3f3; /* Color de fondo mientras carga */
}

.loader {
    border: 4px solid #ddd;
    border-top: 4px solid #333;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    position: absolute;
}

.loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 7px;
    border: 4px solid #f3f3f3; /* Light gray border */
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hover-img {
    width: 100%; /* or your desired width */
    height: auto; /* Maintain aspect ratio */
    opacity: 0; /* Initially hide the image */
    transition: opacity 0.5s ease-in-out; /* Add fade-in transition */
}

.hover-img.loaded {
    opacity: 1; /* Show the image when loaded */
}

.box-t img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 7px;
    top: 0;
    left: 0;
}

.box-t .overlay-text-b {
    position: relative; /* Cambiado a relative o static para fluir con el contenido */
    margin-top: 10px; /* Ajuste de espacio entre la imagen y el texto */
    text-align: center; /* Alinear el texto al centro si es necesario */
    color: rgb(0, 0, 0); /* Color del texto */
    font-size: 15px; /* Tamaño del texto */
    font-weight: bold; /* Grosor del texto */
}

.box-t:hover::after {
    opacity: 1; /* Hace visible la capa semitransparente al hacer hover */
}

/* Estilo para los botones circulares */
.box-t button {
    position: absolute;
    background-color: #202020;
    color: white;
    border: none;
    border-radius: 20px; /* Cambia de círculo a esquinas redondeadas */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: 'Poppins', sans-serif; /* Aplica la fuente Poppins */
    font-weight: 600; /* Hace el texto un poco más grueso */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3; /* Asegura que los botones estén por encima */
    opacity: 0; /* Ocultar por defecto */
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 10px;
}

/* Mostrar los botones solo cuando se hace hover sobre .box-t */
.box-t:hover button {
    opacity: 1; /* Mostrar los botones */
    visibility: visible; /* Hacer los botones visibles */
    overflow: visible;
}

/* Efecto hover: expansión y texto */
.box-t button:hover {
    background-color: #303030; /* Cambio de color */
    width: 140px; /* Expande el botón horizontalmente */
    justify-content: flex-start; /* Alinea el icono a la izquierda */
    padding-left: 15px; /* Ajusta espacio del icono */
}

/* No tener ningún contenido por defecto */
.box-t button::after {
    content: ''; /* Inicia vacío */
    opacity: 0; /* No visible */
    transition: opacity 0.3s ease-in-out;
}

/* Cuando el hover ocurre, el texto aparece */
.box-t button:hover::after {
    content: attr(data-text); /* Agrega el texto */
    color: #FFD700;
    font-size: 14px;
    margin-left: 10px;
    opacity: 1; /* Visible */
}

/* Mostrar el texto solo en hover */
.box-t button:hover::after {
    opacity: 1;
}


.btn-whatsapp-b {
    top: 10px;
    right: 10px;
}

/* Nuevo botón de solo texto e icono */
.box-t button.btn-text-icon {
    position: absolute;
    background-color: #202020;
    color: white; /* Color del texto e icono */
    border: none;
    border-radius: 20px; /* Redondeo de las esquinas */
    width: auto; /* Espacio para el texto */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: default; /* No es interactivo */
    transition: all 0.3s ease;
    z-index: 3; /* Asegura que los botones estén por encima */
    opacity: 1; /* Siempre visible */
    visibility: visible; /* Siempre visible */
    padding-left: 10px; /* Espacio para el icono */
    bottom: 10px; /* Ubicación en la esquina inferior */
    left: 10px; /* Ubicación en la esquina inferior izquierda */
}

/* No cambia de tamaño ni color al hacer hover (porque no es interactivo) */
.box-t button.btn-text-icon:hover {
    background-color: transparent; /* Elimina el fondo en hover */
    color: #f39c12; /* Cambia el color del icono y el texto al hacer hover */
}

/* Mostrar el texto junto con el icono */
.box-t button.btn-text-icon::after {
    content: attr(data-text);
    color: white; /* Color por defecto */
    font-size: 12px;
    margin-left: 10px;
    opacity: 1; /* Siempre visible */
    transition: opacity 0.3s ease-in-out;
}


/* Estilos para el modal */
.modal-b {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content-b {
    position: absolute; /* Absoluto respecto al modal */
    top: 50%; /* Centrado vertical */
    left: 50%; /* Centrado horizontal */
    transform: translate(-50%, -50%); /* Ajusta la imagen para que esté perfectamente centrada */
    max-width: 90%;
    max-height: 80%;
    display: block;
    border-radius: 15px; /* Redondear esquinas de la imagen */
    position: relative; /* Permite posicionar el botón dentro de la imagen */
}

.close-b {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-b:hover,
.close-b:focus {
    color: #ddd;
    text-decoration: none;
}



/* Contenedor de las etiquetas */
.tags-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px; /* Espaciado entre los tags */
    z-index: 10; /* Asegura que los tags estén por encima del contenido */
}

.hot-tag {
    background-color: #ff0000;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hot-tag i {
    margin-right: 5px;
}

.hot-tag.hot {
    background-color: #ff0000; /* Rojo para HOT */
}

.hot-tag.new {
    background-color: #007bff; /* Azul para NEW */
}

.hot-tag.bestseller {
    background-color: #28a745; /* Verde para BESTSELLER */
}

.search-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.search-bar {
    width: 100%;
    max-width: 800px; /* Máximo 1200px */
    padding: 5px 20px;
    font-size: 18px;
    font-family: Poppins, sans-serif;
    font-weight: bold;
    border: 0px solid #ccc;
    border-radius: 30px;
    outline: none;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
}

/* Animación cuando el usuario escribe */
.search-bar:focus {
    border-color: #c30;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}



.search-bar {
    animation: fadeSlide 0.5s ease-out;
}


.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

/* Botón de Regresar */
.back-btn {
    padding-right: 10px;
    padding-left: 10px;
    margin-right: 20px;
    background-color: #c30;
    color: white;
    font-family: Poppins, sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    font-size: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;

}

.back-btn:hover {
    background-color: #303030;
}

/* Botón de Filtrar */
.filter-btn {
    padding: 12px 20px;
    margin-left: 20px;
    background-color: #c30;
    color: white;
    font-family: Poppins, sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.filter-btn:hover {
    background-color: #303030;
}

/* Estilo de la ventana emergente */
.popup {
    display: none; /* Inicialmente oculta */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #303030;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.popup-content h2 {
    margin-bottom: 20px;
}

.popup-content button {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    background-color: #C30;
    color: white;
    border-radius: 25px;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.popup-content button:hover {
    background-color: #303030;
    color: #FFD700;
}

.close-btn {
    background-color: #f44336;
}

/* Contenedor de la paginación */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  padding: 0px 0;
  position: relative;
  margin: 0 auto; /* Centra horizontalmente */
}

/* Botones de navegación */
.pagination .prev,
.pagination .next {
  font-size: 30px;
  background: none;
  border: none;
  color: #404040;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

.pagination .prev:hover,
.pagination .next:hover {
  transform: scale(1.05);
  color: #c30;
}

.pagination .prev:disabled,
.pagination .next:disabled {
  color: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Estilos para los números de página */
.pagination .page-numbers {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-grow: 1;
}

/* Estilo para cada número de página */
.pagination .page-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: 0px solid #303030;
  background-color: #303030;
  color: #fff;
  border-radius: 50%; /* Hace los botones circulares */
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

/* Número de página activo */
.pagination .page-number.active {
  background-color: #c30;
  color: white;
  transform: scale(1.1);
}

/* Efecto hover */
.pagination .page-number:hover {
  background-color: #808080;
  color: white;
  transform: scale(1.1);
}

/* Puntos suspensivos */
.pagination .dots {
  font-size: 18px;
  color: #666;
  margin: 0 5px;
}

.blank-section {
  background-color: white; /* Fondo blanco */
  height: 5px;
  text-align: center; /* Centrar el texto */
}

/* Estilos del mensaje de no resultados */
#no-results {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #AD0000; /* Color de la fuente */
  background-color: #fff; /* Color de fondo */
  border-radius: 5px; /* Relleno para el borde */
  padding: 10px; /* Espacio entre el texto y el borde */
  text-align: center; /* Alineación del texto */
  width: 100%; /* Ancho del contenedor */
  display: block; /* Display para asegurar que sea un bloque */
}

/* Estilo para el mensaje "No se encontraron resultados" */
.no-results {
    font-size: 24px; /* Tamaño de fuente más grande */
    font-weight: bold; /* Resaltar el texto */
    color: #d9534f; /* Color rojo llamativo */
    text-align: center; /* Centrar el texto */
    background-color: #f8d7da; /* Fondo suave de color rosa */
    padding: 20px; /* Espaciado alrededor del texto */
    border: 2px solid #d9534f; /* Borde de color rojo */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle profundidad */
    margin: 20px 0; /* Separación de otros elementos */
    animation: shake 0.5s ease-in-out; /* Efecto de animación al mostrar */
}

/* Animación para hacer que el mensaje se mueva ligeramente al aparecer */
@keyframes shake {
    0% { transform: translateX(-10px); }
    25% { transform: translateX(10px); }
    50% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.results-message {
    font-size: 18px;
    font-weight: bold;
    color: #5bc0de; /* Color azul claro */
    text-align: center;
    margin: 20px 80px;
    padding: 10px;
    background-color: #e0f7fa; /* Fondo azul claro */
    border-radius: 5px;
    border: 2px solid #5bc0de; /* Borde de color azul */
}

.searching-message {
    font-size: 18px;
    font-weight: bold;
    color: #00ca1b; /* Color azul claro */
    text-align: center;
    margin: 20px 80px;
    padding: 10px;
    background-color: #e0f7fa; /* Fondo azul claro */
    border-radius: 5px;
    border: 2px solid #5fde5b; /* Borde de color azul */
}

@keyframes spin-ner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner {
    display: inline-block; /* Asegúrate de que ocupe solo el espacio necesario */
    animation: spin-ner 1s linear infinite; /* Controla la duración y naturaleza de la animación */
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-comparison {
  display: flex; /* Habilita Flexbox */
  flex-direction: column; /* Asegúrate de que los elementos se apilen */
  justify-content: center; /* Centra verticalmente */
  align-items: center; /* Centra horizontalmente */
  width: 100%;
  padding: 30px 0px; /* Ajustar el padding */
  background-color: #303030;
  color: white;
  gap: 20px; /* Mantiene un espacio entre los elementos, si lo deseas */
}

.text-slider {
  align-items: center;
  text-align: center;
}

.text-slider h2 {
  font-size: 2.3rem;
  color: #FFD700;
  margin: 0px;
  font-family: 'FT Expo Black', sans-serif;
}

.text-slider p {
  font-size: 1.2rem;
  color: #fff;
  margin: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding-left: 400px;
  padding-right: 400px;
}

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    overflow: hidden;
    border-radius: 15px; /* Ajusta el valor para redondear las esquinas */
    /* Agrega un borde si deseas, este es opcional */
    border: 2px solid #ddd; /* Cambia el color y tamaño según prefieras */
}

.comparison-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px; /* Debes asegurarte que las imágenes también tengan esquinas redondeadas */
}

.comparison-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: inset(0 50% 0 0); /* Inicialmente oculta la mitad de la imagen */
    border-radius: 15px; /* Máscaras también deben tener esquinas redondeadas */
}

.comparison-overlay img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px; /* Asegúrate que la imagen de superposición tenga esquinas redondeadas */
}

.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    cursor: ew-resize;
    border-radius: 10px; /* Puedes ajustar según prefieras */
}

.slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.section-products {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #fff;
  gap: 80px;

}

.product-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.product-item a {
    text-decoration: none;
}

.circle {
  width: 150px;
  height: 150px;
  background-color: #e0e0e0;
  border-radius: 50%;
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.circle img {
  width: 180px; /* La imagen sobresale del círculo */
  height: auto;
  position: absolute;
  top: -20px;
}

.product-item p {
  margin-top: 10px;
  color: #303030;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}

/* Efecto hover */
.product-item:hover .circle {
  transform: scale(1.1);
}

.product-item:hover p {
  color: #CF0000;
}

.producto {
   padding: 20px;
   align-items: center;
   justify-content: center;
}

.producto h2{
    text-align: center;
    padding: 30px;
    font-family: 'FT Expo Black', sans-serif;
    font-size: 2rem;
    color: #303030;
    margin: 0px;
}

.cuellos h2 {
  text-align: center;
  padding: 30px;
  font-family: 'FT Expo Black', sans-serif;
  font-size: 2rem;
  color: #c30;
  margin: 0px;
}

.estampados {
  text-align: center;
}

.estampados h2{
  text-align: center;
  font-family: 'FT Expo Black', sans-serif;
  font-size: 2rem;
  color: #c30;
}

.btn-playeras {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-playeras:hover {
    background: #cc5500;
}

.container-colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item1, .item2, .item3, .item4, .item5 {
    width: 250px;
    height: 250px;
    margin: 10px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: background-image .3s ease;
}

.item-content {
    padding: 10px;
    text-align: center;
}

.item1 {
    background-image: url("https://i.ibb.co/16P6S2D/white-a.png");
}

.item1:hover {
    background-image: url("https://i.ibb.co/5kdtM7r/white-b.png");
}

.item2 {
    background-image: url("https://i.ibb.co/0YZ2304/black-a.png");
}

.item2:hover {
    background-image: url("https://i.ibb.co/ZBXgNW7/black-b.png");
}

.item3 {
    background-image: url("https://i.ibb.co/nsnXmF7/gray-a.png");
}

.item3:hover {
    background-image: url("https://i.ibb.co/hVLy6yZ/gray-b.png");
}

.item4 {
    background-image: url("https://i.ibb.co/J57zdms/blue-a.png");
}

.item4:hover {
    background-image: url("https://i.ibb.co/M1YGc2T/blue-b.png");
}

.item5 {
    background-image: url("https://i.ibb.co/GCb8cr7/red-a.png");
}

.item5:hover {
    background-image: url("https://i.ibb.co/R9W2dJS/red-b.png");
}

.item1:hover, .item2:hover, .item3:hover, .item4:hover, .item5:hover {
    animation: animacion .8s ease;
}



.container-destacados {
    display: flex;
    background-image: url(https://i.ibb.co/xKxySGqP/banner-paper.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.box-destacados {
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Para que la superposición se posicione correctamente */
    background-color: white;
    transition: transform .3s ease;
}

.box-destacados img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.box-destacados:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute; /* Posiciona la superposición sobre la imagen */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo negro semitransparente */
    display: flex; /* Para centrar el botón */
    justify-content: center; /* Centrado horizontal */
    align-items: center; /* Centrado vertical */
    opacity: 0; /* Por defecto es invisible */
    transition: opacity 0.3s ease; /* Efecto de transición */
}

.box-destacados:hover .overlay {
    opacity: 1; /* Muestra la superposición en hover */
}

.button-destacados {
    background-color: white;
    text-decoration: none;
    border: none;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color .3s ease, color .3s ease;
}

.button-destacados:hover {
    background-color: #aa0000; /* Color al pasar el mouse sobre el botón */
    color: #FFF;
}

.catalogo-btn {
    display: flex; /* Utiliza flexbox para centrar el contenido */
    justify-content: center; /* Centra horizontalmente el contenido */
    align-items: center; /* Centra verticalmente el contenido */
    background-color: #c30;
    font-size: 20px;
    padding: 7px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    margin: 0 auto; /* Asegura que el botón esté centrado en su contenedor */
    width: fit-content; /* Ajusta el ancho del botón al contenido */
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    transition: transform .3s ease, background-color .3s ease;

}

.catalogo-btn a {
  margin: 5px;
}

.catalogo-btn i {
  margin: 5px;
}

.catalogo-btn:hover {
  transform: scale(1.1);
  background-color: #303030;
}

.catalogo-btn a:hover {
  transform: scale(1.1);
}
/* apartado */

        .container-images {
            display: flex;
            justify-content: center;
            background: #fff;
            padding: 50px;
            border-radius: 10px;
        }

        .container-images-2 {
            display: flex;
            justify-content: center;
            background: #fff;
            padding: 50px;
            border-radius: 10px;
        }

        .main-image img {
            width: 500px;
            height: 500px;
            object-fit: cover;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }

        .thumbnail-selector {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 3fr));
            margin-left: 20px;
            padding: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            height: 280px;
            width: 410px;
            gap: 6px;
            border-radius: 10px;
        }

        .thumbnail {
            width: 120px;
            height: 120px;
            object-fit: cover;
            margin: 5px;
            cursor: pointer;
            border: 2px solid transparent;
            border-radius: 5px;
            transition: transform .5s ease;
            background-color: #fff;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

        .thumbnail:hover {
            transform: scale(1.2);
            background-color: #ccc;
        }

        .table-container {
            width: 410px;
            height: 150px;
            margin-top: 20px;
            background: #fff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

        .table-container {
            width: 410px;
            height: 150px;
            margin-top: 20px;
            background: #fff;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;
        }

        th, td {
            padding: 8px;
            border: 1px solid #303030;
        }

        th {
            background-color: #C30000;
            color: #FFD700;
        }

        /* Estilo del fondo del pop-up */
        .popup-b {
          display: none; /* Inicialmente oculto */
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
          justify-content: center;
          align-items: center;
          z-index: 1001; /* Ajusta el z-index para que salga por encima*/
        }

        /* Estilo del contenido del pop-up */
        .popup-b-content {
          background-color: white;
          border-radius: 10px;
          padding: 20px;
          text-align: center;
          position: relative;
          max-width: 400px; /* Máximo ancho */
          margin: auto;
          z-index: 1002; /* Ajusta el z-index para que salga por encima del fondo */
        }

        /* Estilo del botón de cerrar */
        .close-pop {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 20px;
        }

        /* Estilo del botón */
        .button-pop {
            text-decoration: none;
            background-color: #ff5722; /* Color del botón */
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        /* SECCION DE OFERTAS */

.oferta-san-valentin {
    background-color: #ffe6e6;
    padding: 40px 20px;
    text-align: center;
    border: 2px solid #ff4d4d;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
}
.oferta-san-valentin h2 {
    color: #ff1a1a;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.oferta-san-valentin p {
    font-size: 1.2rem;
    margin: 10px 0;
}
.oferta-san-valentin .precio {
    font-size: 2rem;
    font-weight: bold;
    color: #ff4d4d;
    margin: 20px 0;
}
.oferta-san-valentin img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin: 20px 0;
}
.oferta-san-valentin .detalle-pack {
    text-align: left;
    display: inline-block;
    max-width: 900px;
    margin-top: 20px;
}
.oferta-san-valentin ul {
    list-style: none;
    padding: 0;
}
.oferta-san-valentin ul li {
    font-size: 1.2rem;
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
}
.oferta-san-valentin ul li::before {
    content: "✔";
    color: #ff1a1a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.oferta-san-valentin .boton-oferta {
    background-color: #ff4d4d;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
    display: block;
    text-align: center;
    width: fit-content;
    margin: 10px auto;
}
.oferta-san-valentin .boton-oferta:hover {
    background-color: #e63946;
}

.contador {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ff1a1a;
            margin: 20px 0;
        }
        .wrapper {
                    display: flex;
                    align-items: flex-start ;
                    justify-content: center;
                    background-image: url("https://i.ibb.co/v6GpP2P7/banner-design-a.png");
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                    padding: 60px 0px;
                    border-radius: 10px;
                    text-align: left;
                }
                .photo {
                    margin-right: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                }
                .photo img {
                    width: 700px;
                    height: auto;
                    border-radius: 10px;
                }
                .wrapper-content {
                    display: flex;
                    flex-direction: column;
                    align-items: left;
                    justify-content: center;
                }
                .button-container {
            display: flex;
            gap: 10px;
        }
        .wrapper-content button {
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 20px;
            transition: background-color .5s ease;
        }
        .wrapper-content button:hover {
            background-color: #d3d3d3;
        }
        .rectangle-button {
          width: 200px;
          background-color:  #303030;
        }
        .square-button {
            background-color:  #FFD700;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 0;
            border: none;
            cursor: pointer;
            color: white;
            font-size: 20px;
        }
        .square-button:hover {
            background-color: #777;
        }
        .wrapper-content p {
            margin: 10px 0 5px;
            font-size: 18px;
            font-weight: bold;
        }
        .wrapper-content h3 {
            margin: 5px 0;
            font-size: 16px;
            color: #555;
        }
        /* Estilos del botón de lupa */
.zoom-button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 19px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 10px;
}

.zoom-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Estilos del pop-up */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content img {
    max-width: 90%;
    max-height: 90%;
    cursor: zoom-in;
    transition: transform 0.25s ease;
}

/* Zoom de la imagen */
.popup-content img:hover {
    transform: scale(1.5); /* Cambia el valor para ajustar el zoom */
}

.container-c {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 1200px;
    margin: auto;
    gap: 50px 20px;
    padding: 20px;
    justify-content: center;
    transition: transform .3s ease-in-out;
}

.box-h {
    width: 280px;
    height: 280px;
    background-color: #e0e0e0;
    border-radius: 7px;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.box-h:hover {
    transform: scale(1.03);
}

.img-container-c {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background-color: #f3f3f3;
}

.hover-img {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hover-img.loaded {
    opacity: 1;
}

.box-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    border-radius: 7px;
    top: 0;
    left: 0;
}

.box-h .overlay-text-h {
    position: relative;
    margin-top: 10px;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: bold;
}



/* Estilo para los botones circulares */
.box-h button {
    position: absolute;
    background-color: #202020;
    color: white;
    border: none;
    border-radius: 20px; /* Cambia de círculo a esquinas redondeadas */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: 'Poppins', sans-serif; /* Aplica la fuente Poppins */
    font-weight: 600; /* Hace el texto un poco más grueso */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3; /* Asegura que los botones estén por encima */
    opacity: 0; /* Ocultar por defecto */
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 10px;
}

/* Mostrar los botones solo cuando se hace hover sobre .box-t */
.box-h:hover button {
    opacity: 1; /* Mostrar los botones */
    visibility: visible; /* Hacer los botones visibles */
    overflow: visible;
}

/* Efecto hover: expansión y texto */
.box-h button:hover {
    background-color: #303030; /* Cambio de color */
    width: 140px; /* Expande el botón horizontalmente */
    justify-content: flex-start; /* Alinea el icono a la izquierda */
    padding-left: 15px; /* Ajusta espacio del icono */
}

/* No tener ningún contenido por defecto */
.box-h button::after {
    content: ''; /* Inicia vacío */
    opacity: 0; /* No visible */
    transition: opacity 0.3s ease-in-out;
}

/* Cuando el hover ocurre, el texto aparece */
.box-h button:hover::after {
    content: attr(data-text); /* Agrega el texto */
    color: #FFD700;
    font-size: 14px;
    margin-left: 10px;
    opacity: 1; /* Visible */
}

/* Mostrar el texto solo en hover */
.box-h button:hover::after {
    opacity: 1;
}
/* Nuevo botón de solo texto e icono */
.box-h button.btn-text-icon-h {
    position: absolute;
    background-color: #202020;
    color: white; /* Color del texto e icono */
    border: none;
    border-radius: 20px; /* Redondeo de las esquinas */
    width: auto; /* Espacio para el texto */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: default; /* No es interactivo */
    transition: all 0.3s ease;
    z-index: 3; /* Asegura que los botones estén por encima */
    opacity: 1; /* Siempre visible */
    visibility: visible; /* Siempre visible */
    padding-left: 10px; /* Espacio para el icono */
    bottom: 10px; /* Ubicación en la esquina inferior */
    left: 10px; /* Ubicación en la esquina inferior izquierda */
}
/* No cambia de tamaño ni color al hacer hover (porque no es interactivo) */
.box-h button.btn-text-icon-h:hover {
    background-color: transparent; /* Elimina el fondo en hover */
    color: #f39c12; /* Cambia el color del icono y el texto al hacer hover */
}

/* Mostrar el texto junto con el icono */
.box-h button.btn-text-icon-h::after {
    content: attr(data-text);
    color: white; /* Color por defecto */
    font-size: 12px;
    margin-left: 10px;
    opacity: 1; /* Siempre visible */
    transition: opacity 0.3s ease-in-out;
}

.button-container-b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Columnas adaptables */
    gap: 20px; /* Espacio entre las columnas */
    padding-left: 50px; /* Espacio alrededor de la cuadrícula */
    padding-right: 50px; /* Espacio alrededor de la cuadrícula */
    justify-items: center; /* Centrar los elementos dentro de cada celda */
}

.button-category {
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    margin: 10px 0;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    background-color: #707070;
    background-image: url('https://i.ibb.co/wF1VB81f/texture-1.png');
    background-size: cover;
    background-position: center;
    font-family: 'FT Expo Black', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Estilos para los iconos */
.button-category i {
    font-size: 45px; /* Tamaño del icono aumentado */
    margin-bottom: 35px; /* Subir el icono más */
    color: white; /* Color blanco */
}

.original-text, .hover-text {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    width: 100%;
    margin-top: 60px; /* Bajamos más el texto */
}

.hover-text {
    transform: translateY(30px); /* Bajamos más el texto en hover */
    opacity: 0;
}

.button-category:hover {
    transform: scale(1.05);
}

.button-category:hover .original-text {
    transform: translateY(-10px);
    opacity: 0;
}

.button-category:hover .hover-text {
    transform: translateY(5px);
    opacity: 1;
}

.button-category:hover {
    background-color: #303030;
    color: #FFD700;
}

/* Cambia el color del icono cuando se hace hover */
.button-category:hover i {
    color: #FFD700;
}


.product-container-x {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 100px;
    padding-right: 100px;
    gap: 20px;
    text-align: center; /* Asegura que los títulos estén centrados */
}

/* Agrupa el contenedor con su título */
.product-box {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra todo */
}

.container-products-1x,
.container-products-2x,
.container-products-3x,
.container-products-4x,
.container-products-5x,
.container-products-6x {
    background-image: url(https://i.ibb.co/x4mXjWc/texture-3.png);
    background-size: cover; /* Hace que la imagen de fondo cubra todo el contenedor */
    background-position: center; /* Centra la imagen de fondo */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    position: relative;
    width: 400px; /* Se mantiene el tamaño original */
    height: 230px; /* Se mantiene el tamaño original */
    background-color: #303030;
    border-radius: 15px;
    overflow: visible; /* Permite que la imagen sobresalga */
    text-align: center;
    transition: background-color 0.3s, background-image 0.6s;
}

/* Imagen flotante que sobresale */
.product-image-x {
    position: absolute;
    left: 60px;
    top: 15px;
    width: 300px;
    height: 200px;
    transition: transform 0.6s;
}

/* Animación de movimiento */
.container-products-1x:hover .product-image-x,
.container-products-2x:hover .product-image-x,
.container-products-3x:hover .product-image-x,
.container-products-4x:hover .product-image-x,
.container-products-5x:hover .product-image-x,
.container-products-6x:hover .product-image-x {
    transform: translateY(-40px);
}

.container-products-1x:hover,
.container-products-2x:hover,
.container-products-3x:hover,
.container-products-4x:hover,
.container-products-5x:hover,
.container-products-6x:hover {
    background-color: #383838;
}

/* Estilo del overlay con margen y bordes redondeados */
.overlay-x {
    display: none;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

/* Cambia el fondo al hacer hover */
.container-products-1x:hover,
.container-products-2x:hover,
.container-products-3x:hover,
.container-products-4x:hover,
.container-products-5x:hover,
.container-products-6x:hover {
    background-image: url(https://i.ibb.co/1Yw171xW/texture-4.png); /* Nueva imagen de fondo */
}

/* Mostrar el overlay al hacer hover */
.container-products-1x:hover .overlay-x,
.container-products-2x:hover .overlay-x,
.container-products-3x:hover .overlay-x,
.container-products-4x:hover .overlay-x,
.container-products-5x:hover .overlay-x,
.container-products-6x:hover .overlay-x {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Estilos de los botones con iconos y texto */
.product-icon-x {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 5px;
    transition: color 0.3s;
    text-decoration: none;
}

.product-icon-x i {
    font-size: 20px; /* Tamaño del ícono */
}

.product-icon-x span {
    font-size: 14px; /* Tamaño del texto */
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.product-icon-x:hover {
    color: #f0c040; /* Color amarillo dorado al pasar el mouse */
}

/* Estilo para los títulos debajo de cada producto */
.product-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'FT Expo Black', sans-serif;
    color: #303030;
}

.btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.merch_item_background {
    background-image: url('https://i.ibb.co/M5sKKDmB/texture-c.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container_merch_item {
    width: calc(100% - 500px); /* 100% menos 20px de padding a cada lado */
    padding: 50px 50px 0; /* Elimina el padding inferior */
    margin: 0 auto;
    position: relative;
    text-align: center;
    justify-items: center;
    transition: transform 0.3s ease-in-out; /* Agregamos transición para suavizar el cambio */
}

.container_merch_item:hover {
    transform: scale(1.05); /* Aumenta ligeramente el tamaño al pasar el mouse */
}

.merch_item_a {
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Estilos para el loader */
.page_loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(34, 34, 34);
    display: flex;
    flex-direction: column; /* Cambiamos a una disposición vertical */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Se inicializa como visible */
    visibility: visible;
    opacity: 1;
    color: #FFDD00;
    font-size: 10px;
}

.page_loader.hidden {
    visibility: hidden;
    opacity: 0;
}

iframe {
    border: none; /* Eliminar el borde */
    display: block; /* Elimina el espacio en blanco alrededor */
}

.section_highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
    background-image: url('https://i.ibb.co/xKxySGqP/banner-paper.png'); /* Agregar la imagen de fondo */
    background-size: 100% 100%; /* Forzar ajuste de la imagen a toda la altura y anchura (deformada) */
    background-position: center; /* Centra la imagen de fondo */
    border-radius: 8px; /* Redondear bordes, opcional */
    min-height: 350px;
}

.item_highlights_a {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform .3s;
    text-decoration: none;
}

.item_highlights_a img {
    width: 300px; /* Ajusta el ancho como desees */
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 8px;
}

.item_highlights_a:hover {
    transform: scale(1.05);
}

/* Estilos para el contenedor del icono */
.icon_wrapper {
    position: absolute;
    top: 10px; /* Ajusta según sea necesario */
    right: 10px; /* Ajusta según sea necesario */
    z-index: 2; /* Asegúrate de que esté en la parte superior */
}

/* Estilos para el fondo del icono */
.icon_background {
    border-radius: 50%;
    width: 30px; /* Hacer el ancho y alto iguales para el círculo */
    height: 30px; /* Hacer el ancho y alto iguales para el círculo */
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.green {
    background-color: #1fa225;
}

.red {
    background-color: rgb(158, 0, 0);
}

.blue {
    background-color: #006bc2;
}

/* Estilo del icono */
.icon_background i {
    color: white; /* Color del icono */
    font-size: 16px; /* Ajusta el tamaño del icono */
}

.text_overlay_wrapper {
    position: absolute;
    bottom: 60px; /* Ubicación desde la parte inferior */
    left: 10px; /* Ubicación desde el lado izquierdo */
    color: #ffffff; /* Color del texto */
    padding: 5px 10px; /* Espaciado interno */
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px; /* Bordes redondeados */
    font-size: 14px; /* Tamaño de la fuente */
    z-index: 2; /* Asegúrate de que esté por encima de la imagen */
}

.text-highlights-a {
    text-align: center; /* Centra el texto */
    color: #303030;
    border-radius: 10px; /* Esquinas redondeadas */
    padding: 10px; /* Espaciado interno */
    font-weight: 900;
    margin-top: 0px; /* Separación entre la imagen y el contenedor */
    transition: color 0.3s, background-color 0.3s;
    font-size: 17px;
}

.text-highlights-a:hover {
    color: rgb(255, 208, 0);
    background-color: #303030;
}

a {
    text-decoration: none; /* Elimina el subrayado de los enlaces */
  }

.design_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 160px;
    padding-right: 160px;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 50px;
    background-color: #303030;
  }

  .title_design {
    flex: 1;
    max-width: 50%;
  }
  
  .title_design h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffe600;
    font-family: 'FT Expo Black';
  }
  
  .description_design {
    font-size: 1rem;
    color: #ffffff;
  }
  
  .image_design_a {
    flex: 1;
    max-width: 50%;
  }
  
  .image_design_a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image_design_a img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

  /* Estilos para la barra de migas de pan */
  .breadcrumbs {
    text-align: center; /* Centrar el contenido */
    margin: 20px auto; /* Agregar espacio superior e inferior */
}

.breadcrumbs a {
    text-decoration: none;
    color: #c00000;
    transition: font-weight 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs a:hover {
    font-weight: 900;
}

.breadcrumbs span {
    color: #858585;
    font-size: 14px;
    font-weight: 900;
}

.breadcrumbs .separator {
    margin: 0 5px;
    color: #acacac;
}

.contacto {
    display: flex;
    background-color: #303030;
    padding-top: 50px;
    padding-right: 20px;
    padding-bottom: 50px;
    color: white;
    min-height: 500px;
}

.contacto h2{
    font-family: 'FT Expo Black';
}

.map-container {
    flex: 1;
    margin-left: 0; /* Sin margen a la izquierda */
    border-top-right-radius: 15px; /* Esquinas redondeadas superiores */
    border-bottom-right-radius: 15px; /* Esquinas redondeadas inferiores */
    overflow: hidden; /* Para que las esquinas redondeadas se apliquen al iframe */
}

.map-container iframe {
    width: 100%; /* Asegura que ocupe todo el contenedor */
    height: 100%; /* Asegura que ocupe todo el contenedor */
    border: 0; /* Sin borde */
}

.info-container {
    flex: 1;
    padding: 20px;
    padding-left: 80px;
    text-align: center;
}

.titulo {
    color: #FFCC00; /* Color amarillo banqueta */
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: 10px 0;
}

.info-item i {
    margin-right: 10px;
    color: #FFCC00; /* Mismo color que el título */
    font-size: 25px;
}

.contacto_background {
    background-image: url(https://i.ibb.co/PszVQWrw/background-aes.png);
}

.banner.sin-overlay::before {
    display: none; /* No muestra el pseudo-elemento */
}

.contact-section {
    text-align: center;
    padding: 20px 0;
}

.gray {
    background-color: #303030;
}

.yellow {
    background-color: #FFC300;
}

.contact-section h2 {
    color: #303030;
    margin: 10px;
    font-family: 'FT Expo Black';
    
}

.button-container {
    display: inline-block;
}


.button-s {
    display: inline-flex; /* Cambiamos a inline-flex */
    align-items: center;
    padding: 12px 80px;
    margin: 5px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #fff; /* color del texto */
    transition: background-color 0.3s, transform 0.3s; /* transición */
}

.button-s i{
    font-size: 30px;
    padding-right: 10px;
}

.whatsapp {
    background-color: #00a13b; /* color característico de WhatsApp */
}

.instagram {
    background-color: #da0049; /* color característico de Instagram */
}

.button-s:hover {
    background-color: #303030; /* color de fondo al hover */
    color: #FFC300; /* color del texto al hover */
    transform: scale(1.05); /* efecto de scale al hover */
}

/* Sección "¿Por qué elegirnos?" */
.why-choose-us {
    background-color: #ffffff;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
}

.why-choose-us h2 {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
    text-align: center; /* Centrado del título */
    font-family: 'FT Expo Black';
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    align-items: center; /* Centrado verticalmente */
    transition: transform 0.3s ease-in-out;
}

.feature i {
    font-size: 2em;
    color: #c90000;
    margin-right: 30px; /* Espacio entre el ícono y el texto */
}

.feature h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'FT Expo Black';
    text-transform: uppercase; /* Poner los títulos en mayúsculas */
}

.feature p {
    font-size: 1em;
    color: #666;
}

.feature:hover {
    transform: translateY(-10px);
}

.home-banner{
    background-image: url(https://i.ibb.co/b5j57527/wallpaper-ac.png);
}