.hero-page {
    padding: 100px 20px;
    text-align: center;
}

.hero-subtitle {
    max-width: 800px;
    margin: 15px auto 0;
    font-size: 1.2rem;
    color: #e6fff6;
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-text {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.15rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mv-card {
    padding: 25px;
    border: 1px solid #00FF9D;
    border-radius: 10px;
    background: rgba(0, 255, 157, 0.05);
}

.mv-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.mv-list li {
    margin-bottom: 6px;
}

.section-list li {
    margin-bottom: 5px;
}

/* HEADER */
.xgens-header {
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #00FF9D;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.header-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo img {
    height: 42px;
}

/* NAV LINKS */
.header-nav a {
    margin: 0 14px;
    text-decoration: none;
    color: #eafff5;
    font-size: 1rem;
    transition: 0.2s;
}

.header-nav a:hover {
    color: #00FF9D;
    text-shadow: 0 0 6px #00FF9D;
}

/* BOTÃO */
.header-btn {
    background: #00FF9D;
    color: #0f1f17;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.header-btn:hover {
    background: #0f1f17;
    color: #00FF9D;
    border: 1px solid #00FF9D;
}

/* ESPAÇAMENTO PARA EMPURRAR O CONTEÚDO PARA BAIXO */
.header-spacing {
    height: 70px;
}

/* RESPONSIVO */
@media(max-width: 860px){
    .header-nav {
        display: none; /* Versão básica (pode virar menu hamburguer depois) */
    }
}



/* HEADER */
.xgens-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #00FF9D;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* CONTAINER */
.header-container {
    max-width: 1400px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.header-logo img {
    height: 40px;
}

/* MENU DESKTOP */
.header-nav a {
    margin: 0 12px;
    text-decoration: none;
    color: #000; /* PRETO */
    font-size: 1rem;
    transition: 0.2s;
}

.header-nav a:hover {
    color: #00FF9D;
    text-shadow: 0 0 4px #00FF9D;
}

/* BOTÃO DESKTOP */
.header-btn {
    background: #00FF9D;
    color: #000;          /* PRETO */
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.header-btn:hover {
    background: #000;
    color: #00FF9D;
    border: 1px solid #00FF9D;
}

.hamburger {
    width: 32px;
    height: 28px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: #000; /* PRETO */
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 2px solid #00FF9D;
    padding: 20px;
}

.mobile-menu a {
    color: #000; /* PRETO */
    text-decoration: none;
    margin: 12px 0;
    font-size: 1.2rem;
}

.mobile-menu a:hover {
    color: #00FF9D;
}

/* BOTÃO WHATSAPP MOBILE */
.mobile-whatsapp {
    margin-top: 15px;
    background: #00FF9D;
    padding: 12px;
    border-radius: 6px;
    color: #000;
    text-align: center;
    display: block;
    font-weight: bold;
}

.mobile-whatsapp:hover {
    background: #000;
    border: 1px solid #00FF9D;
    color: #00FF9D;
}

@media(max-width: 860px){
    .header-nav,
    .header-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}




@media(max-width: 860px){
    .header-nav,
    .header-btn {
        display: none !important;
    }
}

@media(max-width: 860px){
    .hamburger {
        display: flex !important;
    }
}

/* ===== BANNER SOBRE ===== */
.top-banner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
}

.top-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain; /* garante imagem inteira */
    background: #fff;
}

/* BLOQUEIO GLOBAL DE OVERFLOW LATERAL */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
}


/* ======================================================
   RODAPÉ XGENS
====================================================== */

.xgens-footer {
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #00FF9D;
    margin-top: 60px;
    padding-top: 40px;
    color: #000;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
}

/* LOGO */
.footer-logo img {
    width: 160px;
}

.footer-slogan {
    margin-top: 10px;
    font-size: 1rem;
    color: #444;
}

/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #000;
}

.footer-links a {
    display: block;
    margin: 6px 0;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00FF9D;
}

/* CONTATO */
.footer-contact p {
    margin: 6px 0;
}

.footer-contact a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: #00FF9D;
}

/* REDES SOCIAIS */
.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    font-size: 1.4rem;
    text-decoration: none;
    color: #00FF9D;
    transition: 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* PARTE INFERIOR */
.footer-bottom {
    text-align: center;
    background: #fafafa;
    padding: 12px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #444;
}

/* RESPONSIVO */
@media(max-width: 600px) {
    .footer-logo img {
        width: 140px;
    }
}
