*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: hsla(0, 0%, 100%, 1);
    background-image: radial-gradient(circle at 32% 16%, hsla(14.000000000000004, 100%, 64%, 0.33) 17.647148063137625%, transparent 61.5109675345299%), radial-gradient(circle at 75% 1%, hsla(247.99999999999997, 100%, 63%, 0.3) 11.26645584295136%, transparent 63.69587993071477%);
    background-blend-mode: multiply, multiply;
    font-family: 'Poppins', sans-serif;
    color: #333333; /* Color de texto oscuro para buena legibilidad */
    margin-top: 80px; /* Para que la navbar fija no tape contenido */
    background-size: cover;
    background-attachment: scroll; /* La imagen se desplaza con el contenido */
}

/* Navbar */
.navbar {
    border-radius: 0 0 30px 30px;
    background-color: #ffffff !important; /* Fondo blanco para la navbar */
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
}
.navbar-nav .nav-link {
   
    font-size: 20px;
    color: #000000 !important; /* Color de texto oscuro para los enlaces */
    transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: rgb(255, 0, 195) !important; /* Color de texto al pasar el mouse */
}
.perfil-icon {
    margin-left: 20px; /* Espacio a la izquierda del icono */
}

.perfil-icon .dropdown-menu {
    background-color: #000000; /* Color de fondo del menú */
    border: none;
    min-width: 150px; 
    text-align: center;
}

.perfil-icon .dropdown-item {
    color: #333; /* Color del texto */
    transition: background 0.3s ease-in-out;
}

.perfil-icon .dropdown-item:hover {
    background-color: rgb(255, 0, 195); /* Color de fondo al pasar el mouse */
    color: black;
}




.titulo{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 60vh;
}

.titulo h1{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-shadow: 2px 2px 2px black ;
    color: white;
    font-size: 50px;
}
.titulo h2{
    margin-left: 10px;
    font-family:'Times New Roman', Times, serif;
    text-shadow: 2px 2px 2px rgb(255, 255, 255) ;
    color: rgb(255, 0, 195);
    font-size: 50px;
}


.fondo{
    margin-top: 120px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 50vh;
}

/* productos */

.titulos{
    margin-left: 25px;
    display: flex;
    justify-content: start;
    flex-direction: column;
    font-family:Arial, Helvetica, sans-serif;
}
.titulos h3{
    margin-top: 53px;
    font-size: 30px;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tarjetas de producto */
.card {

    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Imágenes con animación */
.card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Texto de las tarjetas */
.card h3 {
    font-size: 16px;
    margin: 15px 0 10px;
    color: #333;
}

.card .price {
    font-size: 18px;
    font-weight: bold;
    color: black;
}

/* Botones */
.card button {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    background-color: rgb(255, 0, 195);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.botones .bt2 {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.card button:hover {
    background-color: rgb(255, 0, 195);
    color: white;
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination a {
    text-decoration: none;
    color: #9ba7d0;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s;
}

.pagination a:hover {
    background-color: #d0106c;
    color: #ffffff;
}

.pagination a.active {
    color: #fffbff;
    font-weight: bold;
}

/* hero */


.t2{
    display: flex;
    justify-content: center;
}

.titulo p{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: black;
    font-size: 20px;
    text-align: center;
    padding: 20px;
    width: 90%;
}

.text{
    color: rgb(255, 0, 195);
}

@media (max-width: 768px){
    .titulo p{
        text-align: justify;
    }

    .t2 h1{
        margin-top: 200px;
        text-align: center;
    }

    .s{
        margin-top: 200px;
    }

    .fondo{
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
    }
    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.show {
        display: flex;
    }
}


/* Nueva sección de etiquetas */
/* Estilos generales para la sección */
.tags-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
}

/* Estilos para cada etiqueta */
.tag {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    max-width: 300px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    opacity: 0; /* Inicialmente invisible */
    animation: fadeInUp 0.6s ease-out forwards; /* Animación de entrada */
}

/* Animación de entrada para las tarjetas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Retraso en la animación para cada tarjeta */
.tag:nth-child(1) {
    animation-delay: 0.2s; /* Primera tarjeta */
}

.tag:nth-child(2) {
    animation-delay: 0.4s; /* Segunda tarjeta */
}

.tag:nth-child(3) {
    animation-delay: 0.6s; /* Tercera tarjeta */
}

/* Efecto hover con animación */
.tag:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Estilos para la imagen */
.tag img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #eee;
    transition: transform 0.4s ease;
}

/* Efecto hover en la imagen */
.tag:hover img {
    transform: scale(1.1);
}

/* Estilos para el título */
.tag h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #333;
    transition: color 0.3s ease;
}

/* Efecto hover en el título */
.tag:hover h3 {
    color: #fc3294;
}

/* Estilos para la descripción */
.tag p {
    font-size: 1rem;
    color: #666;
    padding: 0 20px 20px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Efecto hover en la descripción */
.tag:hover p {
    color: #444;
}

/* Botón o enlace adicional (opcional) */
.tag a {
    display: inline-block;
    margin: 15px 0 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}



/* Footer */
.footer {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    max-width: 300px;
    margin: 20px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: hotpink;
}

.footer-column p, .footer-column ul, .footer-column li {
    font-size: 16px;
    color: #000000;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #000000;
    text-decoration: none;
}

.footer-column a:hover {
    color: hotpink;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #000000;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}


