/* ... CSS existente ... */

/* LOGO CUSTOMIZADO STYLES 
   Adaptado do Tailwind para CSS Puro para manter consistência
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@500;700&display=swap');

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Centraliza no contexto do card se necessário, ou flex-start */
}

.logo-box {
    position: relative;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover .logo-box {
    border-color: rgba(0, 255, 65, 0.3);
}

/* Cantos Tech */
.logo-corner {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border-color: #00FF41;
    opacity: 0.5;
}

.top-left {
    top: 0;
    left: 0;
    border-top: 2px solid #00FF41;
    border-left: 2px solid #00FF41;
}

.top-right {
    top: 0;
    right: 0;
    border-top: 2px solid #00FF41;
    border-right: 2px solid #00FF41;
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #00FF41;
    border-left: 2px solid #00FF41;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #00FF41;
    border-right: 2px solid #00FF41;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    user-select: none;
    cursor: default;
}

.logo-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-tagline {
    font-family: 'Inter', monospace;
    /* Fallback para mono */
    font-size: 0.7rem;
    color: #00FF41;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    opacity: 0.8;
    text-align: center;
}

.logo-modo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.25rem;
    /* Ajustado para caber no card */
    font-weight: 500;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    line-height: 1;
}

.card:hover .logo-modo {
    letter-spacing: 0.3em;
}

.logo-pro {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    /* Ajustado */
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.05em;
    color: #00FF41;
    text-shadow:
        0 0 5px #00FF41,
        0 0 20px rgba(0, 255, 65, 0.6),
        0 0 40px rgba(0, 255, 65, 0.4);
    animation: flicker 3s linear infinite;
    line-height: 1;
}

@keyframes flicker {

    0%,
    19.999%,
    22%,
    62.999%,
    64%,
    64.999%,
    70%,
    100% {
        opacity: 1;
    }

    20%,
    21.999%,
    63%,
    63.999%,
    65%,
    69.999% {
        opacity: 0.8;
    }
}

/* Ajustes responsivos para Mobile */
@media (max-width: 480px) {
    .logo-modo {
        font-size: 1.8rem;
    }

    .logo-pro {
        font-size: 2.5rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .logo-box {
        padding: 1rem 1.5rem;
    }
}