* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html, body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    color: #fff;
}

/* BACKGROUND */
.background {
    position: fixed;
    inset: 0;
    background: url("imagens/home.jpeg") no-repeat center center/cover;
    z-index: -2;
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* HEADER */
.header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 10px 10px;
}

/* LOGO */
.logo {
    width: clamp(200px, 60vw, 320px);
    animation: logoGlow 3s infinite ease-in-out;
}

/* MAIN */
.main {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 10px 60px;
}

/* MENU BOX */
.menu {
    width: 100%;
    max-width: 620px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 22px;
    padding: 40px 28px 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.35);
    animation: boxEnter 1.2s ease;
}

/* TEXT */
.menu h1 {
    font-size: clamp(24px, 6vw, 34px);
    color: #00eaff;
    text-shadow: 0 0 20px #00eaff;
    margin-bottom: 10px;
    text-align: center;
}

.menu p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
    text-align: center;
}

/* BUTTONS */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-btn {
    padding: 15px;
    font-size: 16px;
    font-weight: 800;
    border-radius: 14px;
    border: 2px solid #00aaff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.menu-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0, 170, 255, 0.4),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.5s;
}

.menu-btn:hover::before {
    transform: translateX(100%);
}

.menu-btn:hover {
    background: rgba(0, 170, 255, 0.15);
    box-shadow: 0 0 25px #00eaff;
    transform: scale(1.05);
}

/* MOBILE CLICK FIX */
.menu-btn:active {
    transform: scale(0.97);
}

/* FOOTER */
.feedback {
    margin-top: 26px;
    text-align: center;
    font-size: 13px;
    opacity: 0.75;
}

/* ANIMATIONS */
@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 8px #00eaff); }
    50% { filter: drop-shadow(0 0 22px #00eaff); }
    100% { filter: drop-shadow(0 0 8px #00eaff); }
}

@keyframes boxEnter {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* RESPONSIVE EXTRA */
@media (max-height: 700px) {
    .menu {
        padding: 32px 22px 26px;
    }
}
.menu-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

