/* Main */
body {
    margin: 0;
    font-family: 'Poppins', 'Arial';
    background-color: #fafafa;

    background-image:
      /* gradiente de desvanecido inferior */
        linear-gradient(
        to bottom,
        rgba(250, 250, 250, 0) 15%,
        #fafafa 100%
        ),
      /* puntos */
        radial-gradient(
        rgba(219, 219, 219, 0.7) 0.6px,
        transparent 0.5px
        );

    background-size:
        100% 100%,
        16px 16px;

    background-repeat: no-repeat, repeat;
}

.brand {
    margin: 80px;
    display: flex;
    justify-content: center;
}

.brand img {
    width: 249px;
    height: auto;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;


}

h2 {
    font-weight: 400;
    font-size: 1.4rem;
}

h3 {
    font-weight: 400;
    font-size: 1.1rem;
}

/* Gallery */
.gallery {
    padding: 5rem;
    gap: 3rem;

    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-images {
    width: 25%;
    height: auto;
    overflow: hidden;
    border-radius: 11px;
}

.gallery-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Button CTA */

.cta {
    margin: 0 0 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-cta {  
    border-radius: 15px;
    padding: 4px 12px;
    font-family: 'Poppins', 'Arial';
    font-size: 1.2rem;
    color: aliceblue;
    background-color: #464646;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.button-cta:hover {
    transform: scale(1.05);
    background-color: rgb(13, 13, 13);
}

a {
    text-decoration: none;
}

/* Footer */

.down-page {
    display: flex;
    justify-content: center;
}



/* RESPONSIVE */
@media (max-width: 768px) {


    .brand {
        margin: 80px;
    }   

    .gallery {
        padding: 5rem;
        gap: 3rem;
        flex-direction: column;
    }

    .gallery-images {
        display: none;
        width: 90%;
    }

    .gallery-images:first-child {
        display: block;
    }

    p {
        font-size: .7rem;
    }

}


/* Hide items */

h1 {
    position: absolute;
    left: -9999px;
}