    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
    *{
        font-family: "Poppins", sans-serif;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        scroll-padding-top: 2rem;
        scroll-behavior: smooth;
        list-style: none;
        text-decoration: none;

    }
    :root{
        --main-color: #0648a4;
        --second-color: #0268f7;
        --text-color:#444;
        --gradient: linear-gradient(#0648a4, #0268f7); 
    }
    html::-webkit-scrollbar{
        width: 0.5rem;
    }
    html::-webkit-scrollbar-track{
        background: transparent;
    }
    html::-webkit-scrollbar-thumb{
        background: var(--main-color);
        border-radius: 5rem; 
    }
    section{
        padding: 50px 100px;
    }
    header{
        z-index: 1100;
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
        padding: 15px 100px;
    }
    .logo img{
        width: 60px;
    }
    .navbar{
        display: flex;
    }
    .navbar li{
        position: relative;
    }
    .navbar a{
        font-size: 1rem;
        padding: 10px 20px;
        color: var(--text-color);
        font-weight: 500;
    }
    .navbar a::after{
        content: '';
        width: 0%;
        height: 3px;
        background: var(--gradient);
        position: absolute;
        bottom: -4px;
        left: 0;
        transition: 0.5s;
    }
    .navbar a:hover::after{
        width: 100%;
    }
    #menu-icon{
        font-size:24px;
        cursor:pointer;
        z-index: 10001;
        display: none;
    }
    .header-btn a{
        padding: 10px 20px;
        color: var(--text-color);
        font-weight: 500;
    }
    .header-btn .sign-in{
        background-color: #20e65c;
        color: #FFF;
        border-radius: 0.5rem;
    }
    .header-btn .sign-in:hover{
    background: #4f9a70;
    }
    .home{
        width: 100%;
        min-height: 100vh;
        position: relative;
        background: url(/img/home1.png);
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
        display: grid;
        align-items: center;
        grid-template-columns: repeat(2,1fr);
    }
    .home .home2 {
        display: none;
    }    
    .logoHome {
        width: 200px;
        height: auto;
        display: block;   
    }
    .text span{
        color: #f9e712;
    }
    .text p{
        color: #002150;
        margin: 00.5rem 0 1rem;
    }
    .app-stores {
        display: flex;
    }
    .app-stores img{
        width: 100px;
        margin:0.25rem;
        cursor: pointer;
    }
    .form-container form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 4rem;
    left: 100px;
    background: #ededed;
    padding: 20px;
    border-radius: 0.5rem;
    }
    .input-box{
        flex: 1 1 7rem;
        display: flex;
        flex-direction: column;
    }
    .input-box span{
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .input-box input{
        padding: 7px;
        outline: none;
        border: none;
        background: #fff;
        border-radius: 0.5rem;
        font-size: 1rem;
    }
    .form-container form .btn{
        flex: 1 1 auto;
        padding: 20px 44px;
        border: none;
        border-radius: 0.5rem;
        background: #0648a4;
        color: #fff;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
    }
    .form-container form .btn:hover{
        background: #003a8a;
    }
    .heading{
        text-align: center;
    }
    .heading span{
        font-weight: 500;
        text-transform: uppercase;
    }
    .heading h1{
        font-size: 2rem;
    }
    .processos-container{
        align-items: start;
        display: grid;
        align-items: center;
        grid-template-columns: repeat(auto-fit, minmax(250px, auto));
        grid-auto-rows: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    .processos-container .box{
        text-align: center;
        padding: 20px;
        align-self: start;
    }
    .processos-container .box .bx{
        border-radius: 3px;
        font-size: 34px;
        padding: 10px;
        background:#0648a4;
        border-radius: 0.5 rem;
        color: #fff;
    }
    .processos-container .box h2{
        font-size: 1.3rem;
        font-weight: 500;
        margin: 1.4rem 0 0.5rem;
    }
    .processos-container .box .bx:hover{
        background: #f9e712;
    }
    
    .vistos {
        padding: 4rem 2rem;
        background-color: #f9f9f9;
        text-align: center;
    }
    .vistos-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
    }
    .vistos-container .box {
        background-color: #fff;
        box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        flex: 1 1 300px;
        padding: 2rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .vistos-container .box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .vistos-container .box img {
        max-width: 100%;
        border-radius: 8px;
        margin-bottom: 0.1rem;
    }
    .vistos-container .box span {
        display: inline-block;
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 0.1rem;
    }
    .vistos-container .box h3 {
        font-size: 1.5rem;
        color: #333;
        margin: 1rem 0;
        font-weight: 600;
    }
    .vistos-container .box p {
        font-size: 1rem;
        color: #555;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    .vistos-container .box .vistos-btn {
        display: inline-block;
        font-size: 1rem;
        color: #fff;
        background-color: #0648a4;
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    .vistos-container .box .vistos-btn:hover {
        background-color: #024cb5;
    }
    .vistos-container .box .vistos-btn i {
        margin-left: 0.5rem;
    }   
   
    .servicos-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .servicos-container .box {
        background-color: #ffffff;
        padding: 1.5rem;
        border-radius: 1rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .servicos-container .box:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
    
    .servicos-container .box .box-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 1rem;
        margin-bottom: 1rem;
    }
    
    .servicos-container .box .box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease;
    }
    
    .servicos-container .box .box-img:hover img {
        transform: scale(1.05);
    }
    
    .servicos-container .box h3 {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .servicos-container .box h2 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #002150;
        margin: 0.2rem 0 1rem;
        text-align: center;
    }
    
    .servicos-container .box .btn {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 1rem auto 0;
        background-color: #0648a4;
        color: #fff;
        padding: 0.8rem 1.2rem;
        border-radius: 0.5rem;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        transition: background-color 0.3s ease, transform 0.3s ease;
        cursor: pointer;
    }
    
    .servicos-container .box .btn:hover {
        background-color: #003a8a;
        transform: scale(1.05);
    }
    .sobre {
        background: #f9f9f9; 
        padding: 4rem 2rem; 
    }
    .sobre-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 2rem; 
    }

    .sobre-img img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    }
    .sobre-text span {
        font-size: 1rem;
        font-weight: bold;
        color: #0648a4;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 1rem;
    }
    .sobre-text p {
        font-size: 1.2rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .sobre-text .destaque{
        font-weight: bold;
    }
    .sobre-text .btn {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background: #0648a4;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s ease;
    }
    .sobre-text .btn:hover {
        background: #003a8a;
    }
        /*scroll logo*/
        .scroll-line {
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 30px;
            background: var(--gradient);
            overflow: hidden;
            z-index: 1050;
            display: flex;
            align-items: center;
            margin-top: 50px;
        }
    
        .scroll-content {
            white-space: nowrap;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            transform: translateX(0);
            transition: transform 0.1s ease-out;
        }
        footer {
            background-color: #fff;
            padding: 20px;
            color: #444;
            font-size: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }
    
        footer .copyright {
            display: flex;
            align-items: center;
            gap: 15px;
        }
    
        footer .copyright p {
            margin: 0;
        }
    
        footer .social {
            display: flex;
            gap: 15px;
        }
    
        footer .social a {
            color: #444;
            text-decoration: none;
            font-size: 20px;
            transition: color 0.3s, transform 0.3s;
        }
    
        footer .social a:hover {
            color: #0078d7;
            transform: scale(1.2);
        }
   /* Responsividade */
   @media (max-width: 1124px) {
    .servicos-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-container .box .box-img {
        height: 180px;
    }
    header{
        padding: 18px 40px;
    }
    .logoHome {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .app-stores {
        justify-content: center;
        align-items: center;
    }

    .home{
        width: 90%;
        margin: 0 auto;
        background-position: left;
        text-align: center;
        grid-template-columns: 1fr;
    }
    section {
        padding: 50px 50px;
    }

    .form-container form {
        left: 10px;
        right: 10px;
        width: auto;
        padding: 15px;
    }
    .home .home2 {
        display: block;
        width: 100%;
        grid-column: span 2;
        margin-top: 0px;
    }
    header{
        padding: 11px 40px;
    }
    #menu-icon{
        display: initial;
    }
    .text h1{
        font-size: 4xrem;
    }


    .form-container form{
        position: unset;
    }
    header .navbar{
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 4px rgb(0, 0, 0, 0.1);
        transition: 0.2s ease;
        text-align: left;
    }
    .navbar a{
        padding: 1rem;
        border-left: 2px solid #0648a4;
        margin: 1rem;
        display: block;
    }
    .navbar a:hover{
        color: #fff;
        background: #0648a4;
        border: none;
    }
    .navbar.active{
        top: 100%;
    }
    .navbar a::after{
        display: none;
    }
    .heading span{
        font-size: 0.9rem;
        font-weight: 600;
    }
    .header h1{
        font-size: 1.3rem;
    }
    .sobre-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sobre-img{
        padding: 1rem;
        order: 2;
    }
    .sobre-container {
        grid-template-columns: 1fr; 
        text-align: center;
    }

    .sobre .heading h1 {
        font-size: 1.8rem;
    }

    .sobre-text p {
        font-size: 0.9rem;
    }

    .vistos-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .sobre-container {
        grid-template-columns: 1fr; 
    }

    .sobre .heading h1 {
        font-size: 2rem; 
    }

    .sobre-text p {
        font-size: 0.9rem; 
    }
    .servicos-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .servicos-container .box {
        padding: 1rem;
    }

    .servicos-container .box .box-img {
        height: 180px;
    }

    .servicos-container .box h2 {
        font-size: 1.1rem;
    }

    .servicos-container .box .btn {
        max-width: 220px;
    }
}
@media (max-width: 480px) {
.servicos-container {
    grid-template-columns: 1fr;
}

.servicos-container .box .box-img {
    height: 150px;
}

.servicos-container .box h2 {
    font-size: 1rem;
}

.servicos-container .box h3 {
    font-size: 0.9rem;
}

.servicos-container .box .btn {
    max-width: 200px;
}
.text h1 {
    font-size: 2rem;
}
.copyright{
    flex-direction: column;
}

.sobre .heading h1 {
    font-size: 1.5rem;
}

.sobre-text p {
    font-size: 0.8rem;
}

.sobre-text .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

footer {
    flex-direction: column;
    text-align: center;
}

footer .social {
    justify-content: center;
}
.form-container{
    padding-top: 2rem;
}
.vistos-container{
    grid-template-columns: repeat(auto-fit,minmax(254px, auto))
}
}


