:root{
    --empresa-gradient: linear-gradient(135deg, #0a1a33, #000);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Poppins, sans-serif;
}

body{
    min-height:100vh;
    background: var(--empresa-gradient);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
}

/* CONTAINER */
.hero-content{
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    padding:50px 40px;
    border-radius:24px;
    text-align:center;
    width:100%;
    max-width:420px;
    box-shadow: 0 10px 40px rgba(200, 200, 200, 0.3);
}

/* LOGO */
#empresa-logo{
    width:90px;
    margin-bottom:20px;
}

/* TITULO */
#nome-empresa{
    font-size:32px;
    margin-bottom:10px;
}

/* TEXTO */
.hero-content p{
    opacity:.8;
    margin-bottom:30px;
}

/* BOTÃO */
.cta-button{
    width:100%;
    padding:18px;
    border-radius:40px;
    border:none;
    background: linear-gradient(135deg, #2f9bff, #0057ff);
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    box-shadow: 0 10px 40px rgba(200, 200, 200, 0.3);
}

.cta-button:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 200, 200, 0.3);
}
