/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #0b1c3d;
    color: white;
}

/* HEADER COM BLUR */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    position: fixed;
    top: 0;
    width: 100%;
    height: 290px;
    background: rgba(11, 28, 61, 0.75);
    backdrop-filter: blur(10px);
    z-index: 999;
}

/* LOGO */
header img {
    width: 340px;
    margin-top: 95px;

    filter: drop-shadow(0 0 7px rgba(0,255,136,0.35));
    transition: 0.4s ease;
}

/* HOVER */
header img:hover {
    transform: scale(1.05);
}

/* MENU */
nav a {
    margin-left: 25px;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: #00ff88;
}

/* HERO */
.hero {
    margin-top: 290px;
    padding: 120px 6% 80px;
    min-height: 100vh;
}

/* ANIMAÇÃO */
.hero-text {
    max-width: 720px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TEXTOS */
.hero-text h1 {
    color: #f5c542;
    font-size: 42px;
    line-height: 1.2;
}

.destaque {
    font-size: 46px;
    font-weight: 900;
    margin-top: 20px;
}

.subtitulo {
    font-size: 24px;
    color: #ccc;
    margin-top: 15px;
}

.verde {
    color: #00ff88;
}

/* BOTÃO */
.btn {text-decoration: none;
    display: inline-block;
    padding: 16px 32px;
    background: #25D366;
    color: black;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: bold;
    transition: 0.3s;
}
.btn, .btn:visited, .btn:link {
    text-decoration: none !important;
}

.btn:hover {
    transform: scale(1.05);
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* SERVIÇOS */
.services {
    padding: 50px 10% 80px;
    text-align: center;
}

.services h2 {
    color: #f5c542;
}

.cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.card {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

/* CTA */
.cta {
    padding: 80px 10%;
    text-align: center;
}

.cta h2 {
    color: #f5c542;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
}

footer a {
    color: white;
}

footer a:hover {
    color: #00ff88;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    header {
        height: 230px;
    }

    header img {
        width: 240px;
        margin-top: 70px;
    }

    .hero {
        margin-top: 230px;
        padding: 100px 6%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .destaque {
        font-size: 28px;
    }

    .subtitulo {
        font-size: 18px;
    }
}html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}.services h2 {
    margin-top: 0;
}.services {
    padding: 140px 10% 80px;
}
@media (max-width: 768px) {

    /* HEADER */
    header {
        padding: 15px 5%;
        height: auto;
        flex-direction: column;
        gap: 10px;
    }

    header img {
        width: 180px;
    }

    nav a {
        margin-left: 10px;
        font-size: 14px;
    }

    /* HERO */
    .hero {
        padding: 160px 5% 50px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .destaque {
        font-size: 24px;
    }

    .subtitulo {
        font-size: 16px;
    }

    /* BOTÃO */
    .btn {
        width: 100%;
        text-align: center;
    }

    /* SERVIÇOS */
    .cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    /* CTA */
    .cta {
        padding: 50px 5%;
    }
}