* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at center, rgba(149, 1, 1, 0.20) 0%, rgba(149, 1, 1, 0.06) 25%, transparent 50%),
        #000;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
     display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 50px;
    border-bottom: 1px solid rgba(149, 1, 1, 0.25);
    background: rgb(0, 0, 0);
}

.linha-topo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.linha-topo span {
    display: block;
    width: 50px;
    height: 1px;
    background: #950101;
    box-shadow: 0 0 8px rgba(149, 1, 1, 0.8);
}

.linha-topo p {
    color: #c77a7a;
    letter-spacing: 6px;
    font-size: 0.8rem;
}

.nome img {
    margin: 0;
    height: 2rem;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.menu li a {
    color: #f7f6f6;
    text-decoration: none;
    font-size: 1.2rem;
        font-family: Helvetica, Arial, sans-serif;

    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 6px;
    font-style: italic;
}

.menu li a .red {
    color: #950101;
}

.texto {
    flex: 1;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
}


.bg-texto {
    position: absolute;

    width: 500px;

    opacity: 0.3;

    z-index: 1;
}


.texto h2 {
    position: relative;
    z-index: 2;

    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;

    text-align: center;

    animation: onda 3s ease-in-out infinite;
}

.footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 120px;
    padding: 40px 50px 20px 50px;
    background: #030303;
    border-top: 1px solid rgba(149, 1, 1, 0.12);
    margin-top: auto;
}
.footer-copy {
    grid-column: 1 / -1;
    margin-top: 35px;
    text-align: center;
    color: #950101;
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes onda {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}