/* Error de minimización. Devolviendo el contenido no minimizado.
(85,23): run-time error CSS1038: Expected hex color, found '#F8F7F7F8F7F7'
: run-time error CSS1066: Unexpected end of file encountered
 */

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .body-content {
        padding: 0;
    }
}

/* --------------------------  */

@font-face {
    font-family: 'MiTipografiaPersonalizada';
    src: url('Images/GT America Medium.otf') format('truetype');   
}

        .body {
            font-family: 'MiTipografiaPersonalizada', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #333;
        }

        .header {
            background-color: #fff;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #ddd;
        }

            .header nav {
                display: flex;
                align-items: center;
            }

                .header nav a {
                    margin: 0 15px;
                    text-decoration: none;
                    color: #333;
                    padding: 10px;
                    border-radius: 15px;
                    transition: background-color 0.3s, color 0.3s;
                    margin-left: 20px;
                    font-size: 14px;

                }
                .header nav a:hover {
                    background-color: #E7E5E5;
                    color: black;
                }

                .header nav a.active {
                    background-color: #eee;
                    color: #333;
                }

                .header-logo {
                    max-width: 150px;
                }

nav a {
    margin-left: 20px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.main-content {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    padding: 0px;
}

.titulo1 {
    background-color: #0D0D0F;
    color: #fff;
    padding: 100px;
    text-align: left;
}

.texto1 {
    background-color: #F8F7F7F8F7F7;
    color: black;
    padding-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: left;
}

.main-content h1 {
    margin: 0;
    font-size: 80px;
    margin-bottom: 40px;
}

.main-content p1 {
    margin: 0;
    font-size: 30px;
}

.catalogue {
    text-align: center;
    padding: 40px 20px;
}

    .catalogue h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .catalogue p {
        font-size: 18px;
        margin-bottom: 40px;
    }

.filters {
    margin-bottom: 20px;
}

    .filters button {
        padding: 10px 20px;
        font-size: 16px;
        border: 1px solid #ddd;
        cursor: pointer;
        margin-right: 10px;
    }

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .product-card:hover {
        transform: scale(1.05);
    }

    .product-card img {
        width: 100%;
        height: auto;
    }

    .product-card h3 {
        font-size: 20px;
        margin: 15px;
    }

    .product-card p {
        font-size: 14px;
        color: #555;
        margin: 0 15px 15px;
    }

.product-tags {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #eaeaea;
}

.product-tag {
    padding: 5px 10px;
    background-color: #eee;
    border-radius: 5px;
    font-size: 12px;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background-color: #000;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subscribe {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .subscribe input[type="email"] {
        padding: 10px;
        border: 1px solid #fff;
        background-color: #000;
        color: #fff;
    }

    .subscribe button {
        padding: 10px;
        border: 1px solid #fff;
        background-color: #000;
        color: #fff;
        cursor: pointer;
    }

.links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .links a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

        .links a:hover {
            color: #ccc;
        }

        .social-media {
            display: flex;
            gap: 10px;
        }

        .social-media img {
                width: 24px;
                height: 24px;
                filter: invert(1);
            }

        .footer-info {
            max-width: 300px;
            font-size: 12px;
        }

        .footer-logo {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

            .footer-logo img {
                height: 30px;
                
            }
            UKU
