.banner-video {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.grey {
    color: var(--dark-grey);
}

.banner-aplications {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-what-is-tech-foil.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-aplications {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-aplications.animate {
    opacity: 1;
}

.banner-aplications-examples {
    background-image: url('../webp/banners/modulo-60-banner-sample-aplications.webp');
    background-size: cover;
    background-position: 50% 50%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-aplications-examples h1 {
    color: white;
    font-size: 22px;
}

.banner-aplications-examples p {
    color: white;
    font-size: 14px;
}

.banner-aplications-samples {
    position: relative;
    height: 220px;
    background: url('../webp/banners/modulo-60-banner-sample-aplications.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-aplications-samples {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-aplications-samples.animate {
    opacity: 1;
}

.banner-aplications-samples-2 {
    background: url('../webp/banners/modulo-60-banner-what-is-tech-foil.webp');
    background-size: cover;
    background-position: 50% 90%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-aplications-samples-2 h1 {
    color: white;
    font-size: 22px;
}

.banner-aplications-samples-2 p {
    color: white;
    font-size: 14px;
}

.section-grid {
    background-color: var(--white-green);
    padding: 40px 0;
}

.aplications-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 60px 0;
}

.aplication-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 170px;
    min-width: 170px;
}

.aplication-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.aplication-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.aplication-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--light-gray);
}

.aplications-text {
    margin-top: 40px;
    background-color: var(--white);
    border-radius: 0 0 30px 30px;
    padding: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--light-green);
}


/* CATÁLOGOS */
.catalogs-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.catalog-item {
    background: var(--white);
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.catalog-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.catalog-link:hover {
    text-decoration: none;
    color: inherit;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.catalogs-container {
    background-color: var(--white-green);
    padding-bottom: 1px;
}

.container-centered {
    margin-bottom: 60px;
    margin-top: 60px;
}

.container-centered.catalogs-content {
    margin-top: 30px;
    margin-bottom: 30px;
}

.catalogs-content h1 {
    font-weight: 700;
    font-size: 22px;
}

.catalogs-content p {
    font-size: 14px;
    color: var(--secondary-grey);
}

.grid-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

.grid-image .image-decor {
    position: relative;
    flex: 1 1 calc(25% - 10px);
    height: 300px;
    overflow: hidden;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    text-align: center;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* IMAGE SAMPLES */
.container-images {
    margin: 0 auto;
    padding: 30px 10px;
    text-align: center;
}

.image-samples {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
    max-width: 100%;
    scrollbar-width: none; 
    -webkit-overflow-scrolling: touch; 
    scroll-snap-type: x mandatory; 
    user-select: none; 
    white-space: nowrap; 
    cursor: grab; 
}

.image-samples:active {
    cursor: grabbing; 
}

.image-samples::-webkit-scrollbar {
    display: none; 
}

.sample-card {
    min-width: 530px;
    max-width: 530px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center; 
    cursor: grab; 
    display: inline-block; 
    transition: transform 0.2s ease; 
}

/*
.sample-card:hover {
    transform: scale(1.02); 
}

.sample-card:active {
    cursor: grabbing; 
    transform: scale(1.01); 
}*/

.sample-card img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    pointer-events: none; 
}
  
  .samples-text {
    font-size: 12px;
    color: var(--secondary-grey);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

.aplications-container {
    background-color: var(--white-green);
    padding-bottom: 1px;
}

 .container-aplications {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.container-aplications h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.container-aplications p {
    font-size: 14px;
    color: var(--secondary-grey);
}
  
/* RESPONSIVO */
@media (max-width: 900px) {
    .grid-image .image-decor {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .grid-image .image-decor {
        flex: 1 1 100%;
    }
}

@media (max-width: 1024px) {
    .catalogs-three-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .catalogs-three-columns {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        margin: 30px auto;
    }

    .catalog-item h1 {
        font-size: 20px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .aplications-list {
        gap: 30px;
        margin: 40px 0;
    }

    .aplication-item {
        min-width: 150px;
        max-width: 150px;
    }

    .aplication-item img {
        width: 110px;
        height: 110px;
    }

    .aplication-item h3 {
        font-size: 1.2rem;
    }

    .aplication-item p {
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    .aplications-list {
        gap: 20px;
        margin: 30px 0;
    }

    .aplication-item {
        min-width: 120px;
        max-width: 120px;
    }

    .aplication-item img {
        width: 120px;
        height: 120px;
    }

    .aplication-item h3 {
        font-size: 1rem;
    }

    .aplication-item p {
        font-size: 0.8rem;
    }
}