* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Arial;
}

body div {
    padding: 10px 30px;
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    padding: 10px 20px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: rgba(217, 229, 248, 0.7);
    backdrop-filter: blur(10px);
}

.header-logo {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    color: #ff6600;
}

.header-nav {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0 15px;
    padding: 0;
}

.header-a {
    color: #0b26a9;
    text-decoration: none;
    font-weight: bold;
}

.header-a:hover {
    text-decoration: underline;
}

.body {
    background-color: #eeeeee;

}

.blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 35px;
    justify-content: center;
    align-items: center;
    /* padding: 0px 100px; */
}

.sobre {
    height: 90vh;
    position: relative;
    background-image: url('./assets/5.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 80px;
}

.title-sobre {
    margin: 0;
    padding: 0;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    color: white;
}

.text-sobre {
    text-align: center;
    display: flex;
    color: #ffffff;
    font-size: 20px;
}

.ul-sobre {
    text-align: center;
    padding: 0;
    list-style-position: inside;
}

.li-sobre {
    color: #ffffff;
    font-size: 20px;
}

.servicos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.title-servico {
    margin: 0;
    padding: 10px 0;
    font-size: 35px;
    font-weight: bold;
    /* text-decoration: underline; */
    text-align: center;
    color: #0b26a9;
}


.row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.image-servico {
    border-radius: 16px 16px 0 0;
}

.text-servico {
    padding: 10px;
}

.info-IPV4,
.info-sms,
.info-integracao,
.info-outsourcing {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 14px;
    text-align: justify;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    margin-bottom: 10px;
}

.card {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 22%;
    transform: scale(1)
}

.card:hover .info-IPV4,
.card:hover .info-sms,
.card:hover .info-integracao,
.card:hover .info-outsourcing {
    max-height: 300px;
    opacity: 1;
    padding: 10px 15px;
}

.card:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contato {
    background-color: #ffffff;
    padding: 40px 30px;
    text-align: center;
}

.title-contato {
    font-size: 35px;
    font-weight: bold;
    color: #0b26a9;
    margin-bottom: 10px;
    margin-top: 100px;
}

.subtitulo-contato {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

.form-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.form-contato textarea {
    resize: vertical;
    height: 120px;
}

.form-contato button {
    background-color: #0b26a9;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 100px;
}

.form-contato button:hover {
    background-color: #ff6600;
}

.footer {
    width: 100%;
    background-color: #ffffff;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*gap: 12px;*/
    background-color: #ffffff;

}

.footer-logo {
    height: 30px;
    width: auto;
}

.footer-text {
    font-size: 14px;
    font-weight: 500;
}


@media (max-width: 1024px) {

    .text-sobre,
    .li-sobre {
        font-size: 18px;
    }

    .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    body div {
        padding: 5px 5px;
        font-size: 16px;
    }

    .header-nav {
        display: none;
    }

    .sobre {
        height: 90vh;
    }

    .title {
        font-size: 20px
    }

    .text-sobre,
    .li-sobre {
        font-size: 16px;
    }

    .row {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        flex: 1 1 100%;
        width: 60%;
    }
}