@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@160..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dongle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=REM:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --azul: #0b2c7a;
    --vermelho: #e10600;
    --preto: #0a0a0a;
    --cinza: #f1f1f1;
    --branco: #ffffff;
}

p, a, h1, h2, h3{
    font-family: 'Sansation', sans-serif;
}

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

body {
    background: var(--preto);
    color: var(--branco);
}

header {
    display: flex;
    position: fixed;
    z-index: 1000;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    border-bottom: 1px solid #222;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header img {
    height: 50px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--branco);
    transition: 0.3s;
}

nav a:hover {
    color: var(--vermelho);
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #000, #0b2c7a);
}

.hero img {
    max-width: 300px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    color: #ccc;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 25px;
    background: var(--vermelho);
    color: var(--branco);
    border: none;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #b80000;
}

.section {
    padding: 80px 10%;
    text-align: center;
}

.section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #11111146;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--vermelho);
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 10px;
    color: var(--vermelho);
}

.about {
    max-width: 700px;
    margin: auto;
    color: #ccc;
}

footer {
    padding: 40px 10%;
    text-align: center;
    border-top: 1px solid #222;
    color: #777;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--vermelho);
    padding: 15px 18px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.whatsapp .fa-whatsapp{
    width: 40px;
    height: 40px;
}