* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
}

/* MENU */
.menu {
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);

  /* Blur moderno com fallback */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);

  transition: top 0.4s ease;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.menu.show {
    top: 0;
}

.menu-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 42px;
}

.menu-btn {
    background: #25d366;
    color: #000;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.hero-content img {
    max-width: 320px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: #d80000;
}

.hero p {
    max-width: 800px;
    margin: auto;
    margin-bottom: 2rem;
    color: #ccc;
}

.btn-main {
    background: #d80000;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

/* SEÇÃO EXTRA */
.info {
    padding: 4rem 1rem;
    text-align: center;
    background: #050505;
}

.info h2 {
    margin-bottom: 1rem;
}

.info p {
    color: #aaa;
}

/* FOOTER */
.footer {
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #222;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .logo {
        height: 36px;
    }
}
