@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
   =============================== */

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 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--cor3);
    border-radius: 2px;
}

/* ===============================
   MAIN
   =============================== */

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;
}

.sobremim {
    display: flex;
    flex-wrap: wrap;
    padding: 0 3% 3%;
    justify-content: center;
    align-items: center;
}

.video,
.sobremim-texto {
    width: 50%;
}

.video img {
    width: 100%;
    height: auto;
}

.sobremim-texto {
    text-align: center;
    padding: 1rem;
}

h3 {
    color: var(--cor2);
    font-size: 22px;
}

.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
   =============================== */

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;
}

/* ============================================================
   RESPONSIVO — TABLET (mantive exatamente como pediste)
   ============================================================ */

@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%;
    }
}

/* ============================================================
   RESPONSIVO — MOBILE (mantive exatamente como pediste)
   + adicionei: vídeo -> gif, menu mobile, sobre mim completo
   ============================================================ */

@media (max-width: 768px) {

    /* ESPECÍFICO DO TEU SITE */

        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: var(--cor1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: 0.4s ease;
        z-index: 1000;
        font-size: 22px;
        align-items: center;
    }

    nav.active {
        right: 0;
    }

    .icons {
        position: fixed;
        bottom: 3rem;
        right: -100%;
        width: 70%;
        justify-content: center;
        transition: right .4s;
    }

    .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;
    }
}

/* ============================================================
   RESPONSIVO — MOBILE PEQUENO (mantive como pediste)
   ============================================================ */

@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;
    }
}
