@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #0f0f0f;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

a {
    color: #0f0f0f;
    text-decoration: none;
}

nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 20px 35px;
    border-bottom: 1px solid #e8e8e8;
}


/* links */

#seccionesnav {
    display: flex;
    gap: 22px;
    font-size: 13px;
}

.seccion {
    position: relative;
}


/* hover */

.seccion::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #0f0f0f;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.seccion:hover::after {
    transform: scaleX(1);
}

/* logo */

h1 {
    margin-top: 18px;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -2px;
}


/*  about */

#about {
    width: min(90%, 800px);
    margin: 80px auto 100px;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
}

#about p {
    margin-bottom: 18px;
}

#about p:last-child {
    margin-top: 35px;
    font-family: "Playfair Display", serif;
    font-size: 18px;
}

/* catalogue */

#catalogo {
    width: min(90%, 1200px);
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* producto */

.producto {
    width: 100%;
}

/* contenedor de imagen */

.imagen-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3f3f3;
}

/* imagen */

.imagen-container img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.producto:hover img {
    transform: scale(1.03);
}

/* información */

.imagen-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: white;
    background: linear-gradient(transparent,rgba(0, 0, 0, 0.65));
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.producto:hover .imagen-info {
    opacity: 1;
}


/* footer */

footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    border-top: 1px solid #e8e8e8;
    font-size: 11px;
}

footer h4 {
    font-weight: 400;
}

#contactos {
    display: flex;
    gap: 18px;
}

#contactos a {
    transition: opacity 0.2s ease;
}

#contactos a:hover {
    opacity: 0.5;
}

@media (max-width: 700px) {
    #catalogo {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    #about {
        margin-top: 60px;
        margin-bottom: 70px;
        font-size: 14px;
    }
    h1 {
        font-size: 36px;
    }
}
@media (max-width: 450px) {
    #catalogo {
        grid-template-columns: 1fr;
    }
    #seccionesnav {
        gap: 15px;
    }
}