main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main img {
    padding-top: 1%;
    width: 800px;
    max-width: 95%;
    height: auto;
    padding-bottom: 3%;
}

header, .ilustra, h3, footer {
    visibility: hidden;
}

.img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #E6b800;
    color: #D8E2DC;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 30px;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 100;
}

.back-to-top img{ 
    width: 20px;
}

.back-to-top.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top.hide {
    opacity: 0;
    transform: translateY(20px);
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: #1B3B32;
    color: #F6F6F6;
    padding: 2rem 1rem;
}

.icons2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.Logo2 {
    display: flex;
    flex-direction: row;
    transition: transform 0.3s ease;
}

.copy {
    padding: 1%;
    padding-bottom: 1%;
    text-align: center;
}

.email2 {
    padding-bottom: 1%;
}

.copiarmensagem {
    display: none;
    color: #F6F6F6;
    font-size: 16px;
    transition: opacity 0.3s ease;
    text-align: center;
}

.email {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* MEDIA QUERIES PARA RESPONSIVIDADE */

/* Tablets */
@media (max-width: 1024px) {


    body {
        font-size: 16px;
    }

    h3 {
        font-size: 18px;
    }

    main img {
        width: 600px;
        max-width: 90%;
    }

    main video {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    body {
        font-size: 16px;
    }


    h3 {
        font-size: 18px;
        padding-top: 3%;
    }

    main img {
        width: 100%;
        max-width: 90%;
        padding-top: 3%;
    }

    main video {
        height: 300px;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 24px;
    }

    .back-to-top img {
        width: 16px;
    }

    footer {
        padding: 1.5rem 0.5rem;
    }

    .icons2 {
        gap: 1.5rem;
    }

    .copy, .email2, .copiarmensagem {
        font-size: 14px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {

    body {
        font-size: 14px;
    }

    h3 {
        font-size: 16px;
    }

    main img {
        max-width: 95%;
        padding-bottom: 5%;
    }

    main video {
        height: 250px;
    }

    .back-to-top {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
        font-size: 20px;
    }

    .back-to-top img {
        width: 14px;
    }

    .icons2 {
        gap: 1rem;
    }

    .icons2 img {
        max-width: 24px;
    }

    .Logo2 img {
        max-width: 80px;
    }

    .copy, .email2, .copiarmensagem {
        font-size: 12px;
    }
}