body {
    margin: 0;
    font-family: calibri, helvetica, sans-serif;
    background-color: #f0f2f5;
}

/* --- ESTILOS GERAIS --- */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Expletus Sans', cursive;
    color: #0785b8;
    font-weight: 400;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
    margin-top: 0;
}

p {
    color: #666;
    line-height: 1.6;
}

ul {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

.botao {
    display: inline-block;
    background-color: #0785b8;
    text-decoration: none;
    padding: 10px 25px;
    color: white;
    border: 1px solid #0785b8;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.botao:hover {
    background-color: #034f6b;
}

/* --- TOP E MENU --- */
#topo {
    width: 100%;
    border-top: 3px solid #040280;
    background-image: linear-gradient(to right, #04180a, #021841);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#topo .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    min-height: 80px;
}

#logo {
    position: absolute;
    top: 13px;
    left: 0;
    z-index: 1;
}

#logo img {
    height: 55px; /* Ajuste para o tamanho do seu logo */
}

#menu a {
    font-family: 'Expletus Sans', cursive;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    color: rgb(255, 255, 255);
    display: inline-block;
    padding: 30px 20px;
    transition: 0.4s background-color;
}

#menu a:hover {
    background-color: #ffffff;
    color: #0785b8;
}

/* --- PORTFÓLIO SECTION --- */
#portfolio-header {
    text-align: center;
    margin: 50px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 3px solid #0785b8;
}

.card-content {
    padding: 30px;
}

.card-content ul {
    margin-bottom: 20px;
}

/* --- RODAPÉ --- */
#rodape {
    background-color: #1a1a1a;
    color: #f2f2f2;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    margin-top: 50px;
}

#rodape .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    color: #0785b8;
    margin-bottom: 15px;
}

.footer-column p {
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #0785b8;
}

.footer-social-icons a {
    font-size: 24px;
    margin-right: 15px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-social-icons a:hover {
    color: #0785b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
}


/* --- BOTÃO DE DOWNLOAD --- */
#download-cta {
    text-align: center;
    margin: 50px auto;
}

.download-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background-image: linear-gradient(to right, #00c6ff, #0072ff);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Expletus Sans', cursive;
    text-transform: uppercase;
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.5);
}


/* --- BOTÃO DO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}


/* --- MOBILE MENU & RESPONSIVIDADE --- */
#btn-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 25px;
    right: 20px;
    z-index: 10001;
}

.barra {
    width: 40px;
    height: 3px;
    background-color: rgb(13, 75, 146);
    margin-bottom: 6px;
    border-radius: 5px;
    transition: 0.5s;
}

.x .barra:first-child { transform: rotate(-45deg) translate(-6px, 6px); }
.x .barra:nth-child(2) { opacity: 0; }
.x .barra:last-child { transform: rotate(45deg) translate(-6px, -6px); }

@media screen and (max-width: 1024px) {
    #menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(2, 24, 65, 0.95);
        z-index: 10000;
        padding-top: 100px;
    }
    #menu a {
        display: block;
        padding: 20px;
        text-align: center;
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    #btn-menu {
        display: block;
    }

    .service-card {
        flex-direction: column;
    }
    .service-card.reverse {
        flex-direction: column;
    }

    .service-card img {
        height: 250px;
    }

    .footer-column {
        min-width: 100%;
        text-align: center;
    }
    .footer-social-icons {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}