/* CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body, html {
    width: 100%;
    min-height: 100%;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* FUNDO FIXO */
.background-pv {
    position: fixed;
    inset: 0;
    background: url("imagens/pv.jpeg") no-repeat center center/cover;
    z-index: -2;
}

.background-pv::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* WRAPPER PRINCIPAL */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* BLOCO PRETO TRANSPARENTE (CARD) */
.identity-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 234, 255, 0.2);
    border-radius: 30px;
    padding: 50px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 234, 255, 0.05);
    animation: cardEntrance 1.5s ease-out;
}

/* EFEITO DE BRILHO ANIMADO */
.glow-overlay {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 234, 255, 0.1), transparent 30%);
    animation: rotateGlow 10s linear infinite;
    pointer-events: none;
}

/* GRID DE COLUNAS */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.column h3 {
    color: #00eaff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(0, 234, 255, 0.3);
    display: inline-block;
    padding-bottom: 5px;
}

/* CONTEÚDO ESPECÍFICO */
.brand-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.brand-logo span {
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

.objective {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cnpj { font-size: 0.8rem; opacity: 0.5; }

/* LINKS E LISTAS */
.column ul { list-style: none; }
.column ul li { margin-bottom: 15px; }

.column ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.column ul li a:hover {
    opacity: 1;
    color: #00eaff;
    transform: translateX(10px);
}

/* REDES SOCIAIS */
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover { color: #00eaff; transform: translateY(-5px); }

/* RODAPÉ DO CARD */
.card-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.payments, .security-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.payments i { font-size: 1.5rem; }
.badge {
    background: rgba(0, 234, 255, 0.1);
    padding: 5px 12px;
    border-radius: 5px;
    border: 1px solid rgba(0, 234, 255, 0.3);
    font-size: 0.75rem;
}

/* FAIXA FINAL */
.bottom-bar {
    margin-top: 30px;
    text-align: center;
    opacity: 0.4;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* ANIMAÇÕES */
@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes cardEntrance {
    from { opacity: 0; transform: scale(0.95) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .identity-card { padding: 30px; border-radius: 15px; }
    .card-footer { flex-direction: column; text-align: center; }
}