/* HEADER BRANCO */
.xgens-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #00FF9D;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.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 14px;
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.2s;
}

.header-nav a:hover {
    color: #00FF9D;
}

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

.header-btn:hover {
    background: #000;
    color: #00FF9D;
}

/* HAMBÚRGUER */
.hamburger {
    width: 32px;
    height: 26px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: #000;
    border-radius: 3px;
    display: block;
}

/* MENU MOBILE */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 2px solid #00FF9D;
    width: 100%;
    padding: 20px;
    position: absolute;
    left: 0;
    top: 70px;
}

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

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

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

.mobile-whatsapp:hover {
    background: #000;
    color: #00FF9D;
}

/* RESERVA DE ESPAÇO */
.header-spacing {
    height: 75px;
}

/* RESPONSIVO */
@media(max-width: 880px){
    .header-nav,
    .header-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}



/* ===== PREVENÇÃO TOTAL DE OVERFLOW ===== */
html, body {
    max-width: 100%;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

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

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

/* ===== AJUSTE MOBILE ===== */
@media(max-width: 600px){
    .top-banner img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}



/* ===== GRID ===== */
.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ===== CARDS ===== */
.plano-card {
    border: 1px solid #00FF9D;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    position: relative;
    transition: 0.3s;
}

.plano-card:hover {
    transform: translateY(-6px);
}

/* ===== TÍTULO ===== */
.plano-titulo {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #000;
}

/* ===== PREÇOS ===== */
.plano-preco {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00884d;
    margin-bottom: 4px;
}

.plano-preco-mensal-destaque {
    font-size: 1.9rem;
    font-weight: bold;
    color: #00AA63;
    margin-bottom: 10px;
    text-shadow: 0 0 4px #00FF9D55;
}

.plano-subtext {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 20px;
}

/* ===== LISTA ===== */
.plano-lista {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.plano-lista li {
    margin: 6px 0;
    color: #000;
}

/* ===== BOTÕES ===== */
.btn-plano {
    display: block;
    background: #00FF9D;
    color: #000;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}

.btn-plano:hover {
    background: #000;
    color: #00FF9D;
}

/* ===== DESTAQUE (MEI) ===== */
.destaque {
    border: 2px solid #00FF9D;
    background: #ffffffd9;
}

.destaque-btn {
    background: #000;
    color: #00FF9D;
}

.destaque-btn:hover {
    background: #00FF9D;
    color: #000;
}

.badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #00FF9D;
    color: #000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* ======================================================
   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;
    }
}
