/* --- 1. FONTE LOCAL --- */
@font-face {
    font-family: 'HardResetFont'; 
    src: url('assets/fonts/VCR_OSD_MONO_1.001.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* --- 2. VARIÁVEIS --- */
:root {
    --bg-color: #050505;
    --text-color: #E0E0E0;
    --action-color: #00FF41; /* Verde Hacker */
    --alert-color: #FF0000;  /* Vermelho REC */
    --card-bg: #0a0a0a;
    --card-border: #222;
}

/* --- 3. GERAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Fira Code', monospace; /* Fonte de leitura */
    overflow-x: hidden;
    line-height: 1.6;
}

/* Títulos com a fonte VCR */
h1, h2, h3, .logo, .rec-text, .btn, footer{
    font-family: 'HardResetFont', monospace;
    text-transform: uppercase;
}



/* --- 4. OVERLAY VHS --- */
.crt-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18,16,16,0) 50%, rgba(0,0,0,0.25) 50%), linear-gradient(90deg, rgba(255,0,0,0.06), rgba(0,255,0,0.02), rgba(0,0,255,0.06));
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    z-index: 999;
}

/* --- 5. CABEÇALHO --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #333;
}

.logo { font-size: 1.5rem; letter-spacing: -1px; }

.rec-container { display: flex; align-items: center; font-size: 1rem; }
.rec-dot {
    width: 15px; height: 15px;
    background: var(--alert-color);
    border-radius: 50%;
    margin-left: 10px;
    box-shadow: 0 0 10px var(--alert-color);
    animation: blink 1.5s infinite;
}

/* --- 6. HERO SECTION --- */
.hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

h1 { font-size: 2.2rem; margin-bottom: 20px; max-width: 900px; line-height: 1.1; }

.terminal-text {
    font-size: 1.1rem; color: #aaa; margin-bottom: 50px; min-height: 60px;
    font-family: 'Fira Code', monospace;
}

/* Botão */
.btn {
    background: transparent;
    color: var(--action-color);
    border: 2px solid var(--action-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.2s;
    box-shadow: 4px 4px 0px var(--action-color);
}
.btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--action-color);
    background: rgba(0, 255, 65, 0.1);
}

/* --- 7. CARDS DE SERVIÇO --- */
.services { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }

.section-title {
    font-size: 2rem; margin-bottom: 40px;
    border-left: 5px solid var(--action-color); padding-left: 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border: 1px solid var(--card-border);
    padding: 25px;
    background: var(--card-bg);
    position: relative;
    transition: 0.3s;
}

.card:hover { border-color: var(--text-color); transform: translateY(-3px); }

.card h3 { font-size: 1.2rem; color: var(--action-color); margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin-bottom: 15px; color: #ccc; }

.details { list-style: none; margin-bottom: 15px; font-size: 0.9rem; color: #888; }

.highlight { color: #fff; font-weight: bold; font-size: 0.9rem; }

.price {
    display: block; text-align: right;
    font-family: 'HardResetFont', monospace;
    font-size: 1.6rem; color: #fff; margin-top: auto;
}

/* Badge de Recomendado */
.destaque { border: 1px solid var(--action-color); }
.badge {
    position: absolute; top: -12px; right: 20px;
    background: var(--action-color); color: #000;
    padding: 2px 8px; font-family: 'HardResetFont', monospace; font-size: 0.8rem;
}

/* --- FOOTER E REDES SOCIAIS --- */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px; /* Espaço entre os ícones */
    margin-bottom: 25px;
}

.social-icon {
    display: block;
    width: 35px;  /* Tamanho dos ícones */
    height: 35px;
    color: var(--text-color); /* Começa branco/cinza */
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Efeito ao passar o mouse */
.social-icon:hover {
    transform: translateY(-5px); /* Sobe um pouquinho */
}

/* Cor específica do WhatsApp */
.social-icon.wpp:hover {
    color: #00FF41; /* Verde Terminal */
    filter: drop-shadow(0 0 8px #00FF41); /* Brilho Neon */
}

/* Cor específica do Instagram */
.social-icon.insta:hover {
    color: #FF0055; /* Rosa/Vermelho meio retro */
    filter: drop-shadow(0 0 8px #FF0055); /* Brilho Neon */
}

.social-icon.email:hover {
    color: #00E5FF; /* Azul Ciano Cyberpunk */
    filter: drop-shadow(0 0 8px #00E5FF);
}

.dev-signature {
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}


.priz-name {
    color: #bd93f9; /* Um roxo neon "Cyberpunk" para a Priz */
    font-weight: bold;
    cursor: pointer;
}


.btn-card {
    display: block;
    margin-top: 15px;
    color: var(--action-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: right;
}
.btn-card:hover { text-decoration: underline; }


.links{
   min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 20px;
    
}
 .links a{
    width: 20%;
 }







@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .logo { font-size: 1.8rem; }
    header { padding: 15px 20px; }
    .links a{
    width: 70%;
}
}