@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #14213d;
}

header {
    background-color: #14213d;
    color: white;
}

header .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    padding-top: 30px;
}

header .logo img {
    width: 384px;
    height: 324px;
}

header nav {
    padding: 80px 0px 0px 170px;
}

header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    font-size: 20.5px;
    color: #2E95FC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.5s ease-in-out;
}

header nav ul li a:hover {
    color: #FB8500;
}

#banner {
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: justify;
    position: relative;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 1.6;
    position: absolute;
    left: 50%;
    top: -70%;
    transform: translateX(-20%);
    padding: 20px 20px;
}

#text1 {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    font-weight: 600;
    font-size: 30px;
    padding-left: 90px;
    padding-right: 90px;
    text-align: center;
    color: #FB8500;
}

#services, #portal, #security {
    background-color: #19294D;
    padding: 40px 20px;
}

#services h2, #portal h2, #security h2, #clientes h2 {
    color: white;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}

.text3 {
    color: white;
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    background-color: white;
    border-radius: 10px;
    margin: 10px;
    width: 308px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
}

.service:hover {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service img {
    width: 100%;
    height: 243px;
    object-fit: cover;
}

h3 {
    font-size: 24px;
    color: #14213d;
    margin: 10px 0;
}

.service p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 10px;
}

.service-seguranca {
    background-color: white;
    border-radius: 10px;
    margin: 10px;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
    overflow: hidden; 
}

.service-seguranca img {
    width: 100%;
    height: auto;
    max-height: 300px; 
    object-fit: contain;
}
.security-features {
    list-style-type: none; 
    padding-left: 0; 
    margin: 0; 
}

.security-features li {
    text-align: left;
    position: relative; 
    padding-left: 25px; 
    margin-bottom: 10px;
    font-size: 16px;
    color: #14213d;
    line-height: 1.6; 
}

.security-features li::before {
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 50%; 
    transform: translateY(-50%);
    width: 8px; 
    height: 8px; 
    background-color: #FB8500; 
    border-radius: 50%; 
}

.text2, .text4, .text5 {
    font-size: 16px;
    color: #14213d;
    line-height: 1.6;
    text-align: center;
    padding: 0 20px;
}

.features {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
    color: #14213d;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.features li::before {
    content: '•';
    color: #FB8500;
    position: absolute;
    left: 0;
}
#partners {
    background-color: #19294D;
    padding: 40px 20px;
}

#partners h2 {
    color: white;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.partners-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.partner {
    margin: 10px;
    width: 200px;
    text-align: center;
}

.partner img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease-in-out;
}

.partner img:hover {
    transform: scale(1.5);
}

#contact {
    background-color: #14213d;
    padding: 40px 20px;
    position: relative;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    width: 48%;
}

.contact-info {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #14213d;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 90px;
    text-align: center;
}

.contact-info p {
    font-size: 16px;
    color: #14213d;
    margin-bottom: 10px;
    text-align: center;
    line-height:20px;
}

.contact-form {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: #14213d;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-size: 16px;
    color: #14213d;
}

.contact-form input, .contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background-color: #FB8500;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #f57c00;
}


.social-icons {
    display: flex;
    justify-content: center;
    margin-top:120px;
}

.social-icon {
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icon img {
    width: 30px;
    height: 30px; 
}

.social-icon:hover img {
    transform: scale(1.2);
}

footer {
    background-color: #19294D;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin: 5px 0;
    font-size: 16px;
}

.footer-content a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: center;
    }

    header .logo img {
        width: 200px; /* Ajuste o tamanho da imagem conforme necessário */
        height: auto;
    }

    header nav {
        padding: 20px 0;
    }

    header nav ul {
        display: flex;
        justify-content: center; /* Centraliza os itens horizontalmente */
        padding: 0;
        margin: 0;
        flex-direction: row;
        flex-wrap: wrap; /* Permite que os itens quebrem linha se necessário */
    }

    header nav ul li {
        margin: 10px; /* Ajuste a margem conforme necessário */
    }

    header nav ul li a {
        font-size: 16px; /* Ajuste o tamanho da fonte conforme necessário */
    }

    h1 {
        position: relative; /* Remove a posição absoluta */
        left: auto;
        top: auto;
        transform: none;
        text-align: center;
        padding: 10px 20px;
        font-size: 20px; /* Ajuste o tamanho da fonte conforme necessário */
    }

    #text1 {
        margin-top: 20px; /* Espaço extra acima do texto laranja */
        font-size: 20px; /* Ajuste o tamanho da fonte conforme necessário */
        padding: 0px 20px 0px 20px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        margin-top: 100px;
    }

    .contact-info, .contact-form {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info h2, .contact-form h2 {
        font-size: 28px;
    }

    .contact-form button {
        font-size: 16px;
    }

    .social-icons {
        margin-top: 20px;
    }
}













