* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.section:nth-child(even) {
    background: #081c33;
}

/* LOGO */
.logo img {
    height: 45px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0a0f2c;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.header a:hover {
    color: #00c2ff;
}

section {
    max-width: 1600px;
    margin: auto;
}

/* HERO */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0f2c, #1a2b6d);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    
}


.hero h1 {
    font-size: 48px;
}

.hero p {
    margin: 20px 0;
}

.hero button {
    padding: 14px 30px;
    border: none;
    background: #00c2ff;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

/* SERVIÇOS */
.servicos {
    padding: 60px 40px;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}


.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card p {
    font-size: 13px;
    margin-top: 8px;;
}

.card:hover {
    transform: translateY(-5px);
}



/* PARCEIROS */
.parceiros {
    padding: 60px 40px;
    text-align: center;
    background: #f4f4f4;
}

.cardps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    gap: 20px;
    margin-top: 40px;
}


.cardp {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.cardp h {
    font-size: 20px;
}

.cardp p {
    font-size: 10px;
    color: #666;
}

.cardp:hover {
    transform: translateY(-10px);
}

.cardp-logo {
    width: 160px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1px;
}

/* SOBRE */
.sobre {
    padding: 60px 40px;
}



/* CONTATO */
.contato {
    padding: 60px 40px;
    text-align: center;
    background: #f4f4f4;
}

.contato form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
    background: hsl(0, 0%, 96%);
}

.contato input,
.contato textarea {
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contato button {
    padding: 12px;
    background: #0a0f2c;
    color: white;
    border: none;
    border-radius: 6px;
}

/* FOOTER */
footer {
    background: #0a0f2c;
    color: white;
    text-align: center;
    padding: 15px;
}

/* WHATSAPP */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero {
        padding: 60px 20px;
    }
}