@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    cursor: url(/Img/cursor.png), auto;
}

:root {
    --cor1: #F6F6F6;
    --cor2: #E6b800;
    --cor3: #1B3B32;
}

#intro-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white; /* ou preto, conforme quiser */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

#intro-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}



body {
    background-color: var(--cor1);
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 18px;
    color: var(--cor3);
}

header {
    background-color: var(--cor1);
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.logo {
    width: 20%;
}

.logo img {

    height: auto;
}

nav {
    display: flex;
    width: 60%;
    justify-content: center;
    gap: 2rem;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

nav a:hover {
    color: var(--cor2);
}

.icons {
    width: 20%;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.icons img {
    width: clamp(24px, 2.5vw, 32px);
    height: clamp(24px, 2.5vw, 32px);
}

 .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background-color: var(--cor3);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

section {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.camara {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gif-mobile {
    display: none;
    width: 100%;
    object-fit: contain;
}

.vazio {
    height: 200px;
}

.video, .sobremim-texto, footer {
    visibility: hidden;
}

.sobremim {
    display: flex;
    flex-wrap: wrap;
    padding: 0 3% 3%;
    justify-content: center;
    align-items: center;
}

.video,
.sobremim-texto {
    width: 50%;
}

.cta {
    color: #E6b800;
    font-weight: 500;
}

.cta:hover {
    color: #1B3B32;
}

.video img {
    width: 100%;
    height: auto;
}

.sobremim-texto {
    text-align: center;
    padding: 1rem;
}

h3 {
    color: var(--cor2);
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.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 (max-width: 1024px) {

        body {
        font-size: 16px;
    }

    .logo {
        width: 25%;
    }

    nav {
        width: 50%;
        gap: 1.5rem;
        font-size: 18px;
    }

    .icons {
        width: 25%;
        gap: 1.5rem;
    }

    .video,
    .sobremim-texto {
        width: 100%;
    }
}

@media (max-width: 768px) {

        body {
        font-size: 16px;
    } 
    
    .camara {
        display: none;
    }

    .gif-mobile {
        display: block;
    }

    .video,
    .sobremim-texto {
        width: 100%;
    }

    /* MENU */
    header {
        padding: 1rem;
    }

    .logo {
        width: 40%;
    }

    .hamburger {
        display: flex;
    }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--cor1);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2.5rem;
                transition: right 0.4s ease;
                box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                font-size: 22px;
            }

    nav.active {
        right: 0;
    }

          .icons {
                position: fixed;
                bottom: 3rem;
                right: -100%;
                width: 70%;
                justify-content: center;
                transition: right 0.4s ease;
                z-index: 1000;
            }

    .icons.active {
        right: 0;
    }

        .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;
    }
}

@media (max-width: 480px) {

    .logo {
        width: 50%;
    }

    nav {
        width: 80%;
        font-size: 20px;
    }

        body {
        font-size: 14px;
    }


    .icons {
        width: 80%;
    }

     .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;
    }
}
