/*
Theme Name: Estúdio Mayer v2
Description: HUD Tony Stark Edition - Refinado
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --cyan: #00ffff;
    --orange: #ff4500;
    --bg-dark: #000000;
    --glass: rgba(0, 255, 255, 0.03);
    --border-hud: rgba(0, 255, 255, 0.15);
}

body {
    background-color: var(--bg-dark);
    color: var(--cyan);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Efeito de Scanlines (Linhas de Monitor) */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    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));
    z-index: 9999;
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
}

h1, h2, h3 { font-family: 'Orbitron', sans-serif; text-transform: uppercase; letter-spacing: 3px; }

/* HUD Box - O segredo do visual Stark */
.hud-box {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-hud);
    border-left: 4px solid var(--cyan);
    padding: 30px;
    margin: 20px 0;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 20%, 100% 100%, 5% 100%, 0 80%); /* Bordas Chanfradas */
}

.hero-mayer {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#wavesCanvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

/* Botão WhatsApp Neon */
.btn-whatsapp {
    position: fixed;
    bottom: 30px; right: 30px;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 15px 30px;
    font-family: 'Orbitron';
    text-decoration: none;
    box-shadow: 0 0 15px var(--orange);
    transition: 0.3s;
    z-index: 10000;
}

.btn-whatsapp:hover {
    background: var(--orange);
    color: #000;
    box-shadow: 0 0 30px var(--orange);
}