:root {
    --azul-fundo: #001529;
    --dourado: #D4AF37;
    --branco: #ffffff;
    --transparencia: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: var(--azul-fundo);
    color: var(--branco);
    line-height: 1.6;
}

/* Redes Sociais no Topo */
.social-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-top a {
    color: var(--branco);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}

.social-top a:hover {
    color: var(--dourado);
    opacity: 1;
}

.hero {
    text-align: center;
    padding: 80px 20px 120px 20px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,21,41,0.9));
    border-bottom: 5px solid var(--dourado);
}

.logo-area h1 {
    font-size: 3.5rem;
    letter-spacing: 8px;
    margin: 0;
    font-weight: 700;
}

.slogan-container h2 {
    color: var(--dourado);
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-top: 20px;
    letter-spacing: 2px;
}

.descricao {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 650px;
    margin: 20px auto;
}

/* Grid e Cards */
.container {
    max-width: 1100px;
    margin: -60px auto 100px;
    padding: 0 20px;
}

.titulo-sessao {
    text-align: center;
    margin-bottom: 40px;
}

.grid-nichos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--transparencia);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 45px 20px;
    text-align: center;
    text-decoration: none;
    color: white;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.card:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-12px);
    border-color: var(--dourado);
}

.card i {
    font-size: 50px;
    color: var(--dourado);
    margin-bottom: 20px;
    display: block;
}

/* Rodapé */
/* Rodapé Centralizado Profissional */
.footer-melgaco {
    text-align: center; /* Centraliza o texto */
    padding: 60px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 50px;
    display: flex; /* Garante alinhamento em bloco */
    flex-direction: column;
    align-items: center;
}

.social-footer {
    margin-top: 20px;
    font-size: 1.8rem;
    display: flex;
    justify-content: center; /* Centraliza os ícones horizontalmente */
    gap: 25px; /* Espaçamento igual entre os ícones */
}

.social-footer a {
    color: var(--dourado);
    transition: 0.3s ease;
    text-decoration: none;
}

.social-footer a:hover {
    color: var(--branco);
    transform: scale(1.1);
}

/* Botão WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}