@import url('./design-system.css');

@font-face {
    font-family: "alore";
    src: url("../assets/alore.otf");
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;

}

.video-container {
    position: relative;
    width: 100vw;
    height: 97vh;
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.197);
    pointer-events: none;
}

/* Continue com o restante do seu CSS normalmente */


nav {
    width: 100%;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.5s, background-color 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(12px);
}

nav.sticky-nav {
    background-color: rgba(0, 0, 0, 1);
    opacity: 1;
    pointer-events: auto;
}

nav .nav-logo {
    max-height: 100%;
    height: auto;
    width: auto;
    filter: brightness(111);
    padding: 0 20px;
    flex-shrink: 0;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    z-index: 11;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Sidebar slide-in animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sidebar */
.sidebar {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    z-index: 999;
    padding-top: 80px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    flex-direction: column;
}

.sidebar.active {
    display: flex;
    animation: slideInRight 0.3s ease;
}

/* Sidebar Overlay/Scrim */
body.sidebar-open::before {
    content: '';
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 998;
    cursor: pointer;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.sidebar-nav a {
    color: #e8e8e8;
    text-decoration: none;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    font-size: 16px;
    width: 100%;
    display: block;
}

.sidebar-nav a:hover {
    background-color: rgba(91, 127, 255, 0.1);
    color: #5b7fff;
    padding-left: 28px;
}

.sidebar-nav a.sidebar-login {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #5b7fff;
    font-weight: 500;
}

.sidebar-nav a.sidebar-login:hover {
    background-color: rgba(91, 127, 255, 0.15);
    color: #a8c5ff;
}

.c1 {
    background-color: #000000;
    width: 100vw;
    color: white;
    font-family: 'alore', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.c1>h1 {
    margin: 0;
    color: white;
    font-family: 'alore', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    padding: 50px 20px;
    text-align: left;
    text-align: left;
}

@media screen and (max-width: 450px) {
    .c1>h1 {
        font-size: 1.6rem;
        padding: 10px 5px 10px 5px;
    }
}

.parallax {
    width: 100vw;
    height: 70vh;
    background-image: url('../assets/bgParalax.jpg');
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 4;
}

.c2 {
    background-color: rgba(0, 0, 0, 0.5);
    height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.c2>h1 {
    margin: 0;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3rem;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for sequential animation */
.reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.reveal:nth-child(6) {
    transition-delay: 0.5s;
}
