/* RESET */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: transparent;
}

/* LINKS (remover sublinhado azul) */
a, a:visited {
    text-decoration: none;
    color: inherit;
}

/* VÍDEO DE FUNDO */
#bg-video {
    position: fixed;
    top: 50%;
    left: 50%;

    min-width: 100vw;
    min-height: 100vh;

    width: auto;
    height: auto;

    transform: translate(-50%, -50%);
    object-fit: cover;

    z-index: -1;
    pointer-events: none;
    background: transparent;
}

/* TÍTULO PRINCIPAL */
.page-title {
    width: 100%;
    text-align: center;
    margin-top: -90px;
    z-index: 10;
    position: relative;
}

.page-title h1 {
    color: white;
    font-size: 60px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,255,255,0.7);
}

.subtitulo {
    color: white;
    font-size: 22px;
    margin-top: -10px;
    text-shadow: 0 0 12px rgba(0,255,255,0.5);
}

/* ÁREA PRINCIPAL */
.content-container {
    width: 100%;
    margin-top: 150px;
    padding-bottom: 200px;
    position: relative;
    z-index: 10;
}

/* CATEGORIAS */
.category {
    padding: 40px 80px;
    margin-bottom: 40px;
    border-radius: 18px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
}

.category h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 25px;
    text-shadow: 0px 0px 10px rgba(0,255,200,0.7);
}

/* CARDS */
.cards-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.credit-card {
    width: 360px;
    height: 160px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 18px;
    padding: 20px;
    display: flex;
    align-items: flex-start;

    cursor: pointer;

    transition: 0.4s ease;
}

.credit-card h3 {
    color: white;
    font-size: 20px;
    margin: 0;
    text-shadow: 0 0 10px black;
}

/* HOVER ANIMADO */
.credit-card:hover {
    transform: scale(1.05);
    animation: glowPulse 2s infinite alternate;
}

/* EFEITO DE BRILHO */
@keyframes glowPulse {
    0% {
        box-shadow:
            0 0 15px rgba(101,216,201,0.6),
            0 0 30px rgba(173,170,175,0.4),
            0 0 50px rgba(0,255,200,0.3);
    }
    50% {
        box-shadow:
            0 0 15px rgba(101,216,201,0.6),
            0 0 30px rgba(173,170,175,0.4),
            0 0 50px rgba(0,255,200,0.3);
    }
    100% {
        box-shadow:
            0 0 15px rgba(101,216,201,0.6),
            0 0 30px rgba(173,170,175,0.4),
            0 0 50px rgba(0,255,200,0.3);
    }
}

.logo-pure {
    width: 380px;          /* tamanho ideal */
    margin-bottom: -90px;   /* espaço entre o logo e o título */
    filter: drop-shadow(0 0 12px rgba(0,255,255,0.6)); /* glow elegante */
}