/* Barlow */
@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow-Regular.ttf') format('truetype'),
        url('/fonts/Barlow-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow-Medium.ttf') format('truetype'),
        url('/fonts/Barlow-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow';
    src: url('/fonts/Barlow-Bold.ttf') format('truetype'),
        url('/fonts/Barlow-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Things */
@font-face {
    font-family: 'Things';
    src: url('/fonts/Things-Regular.ttf') format('truetype'),
        url('/fonts/Things-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Se tiver outras variações da Things (bold, italic) */
@font-face {
    font-family: 'Things';
    src: url('/fonts/Things-Bold.ttf') format('truetype'),
        url('/fonts/Things-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D3D4D4;
    overflow-x: hidden;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    /* Adicionei o peso explícito */
}

/* Classes adicionais para diferentes pesos da Barlow */
.font-regular {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

.font-medium {
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.font-bold {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
}

/* Fixed video behind content */
.fixed-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.fixed-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

main {
    margin-top: 60vh;
}

@media (max-width: 640px) {
    main {
        margin-top: 45vh;
        /* ou outro valor menor que 65vh */
    }
}