*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    color:#222;
    background:#f5f7fb;

}

header{

    position:fixed;
    width:100%;
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1000;

}


.contenedor{

    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;

}

.logo{

    font-size:28px;
    font-weight:700;
    color:#0f4c81;

}

nav{

    display:flex;
    gap:35px;

}

nav a{

    text-decoration:none;
    color:#444;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:#ff7a00;

}
/*     background:url("https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=1600")  */ 
.hero{

    height:100vh;
    background:url("imag/fondo.fw.png")
    center/cover;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

}

.overlay{

    position:absolute;
    width:100%;
    height:100%;
    background:rgba(5,28,52,.10);

}

.contenido{

    position:relative;
    color:white;
    text-align:center;
    max-width:850px;
    padding:20px;

}

.contenido h1{

    font-size:56px;
    margin-bottom:20px;

}

.contenido p{

    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;

}

.boton{

    display:inline-block;
    background:#ff7a00;
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:40px;
    transition:.3s;

}

.boton:hover{

    background:#ff5400;

}

.servicios{

    padding:90px 20px;

    max-width:1200px;

    margin:auto;

}

.servicios h2{

    text-align:center;
    margin-bottom:60px;
    color:#0f4c81;
    font-size:40px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.card{

    background:white;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.icono{

    font-size:60px;
    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;
    color:#0f4c81;

}

.card p{

    color:#666;
    line-height:1.7;

}

.estadisticas{

    background:#0f4c81;
    color:white;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    text-align:center;

    padding:70px 20px;

}

.estadisticas h2{

    font-size:45px;

}

.estadisticas span{

    font-size:18px;

}

.software{

    max-width:1200px;
    margin:90px auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(400px,1fr));

    gap:50px;

    align-items:center;

    padding:20px;

}

.software img{

    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.software h2{

    font-size:40px;
    color:#0f4c81;
    margin-bottom:20px;

}

.software p{

    line-height:1.8;
    margin-bottom:30px;

}

.boton2{

    background:#0f4c81;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    border-radius:35px;

}

footer{

    background:#071f36;
    color:white;
    text-align:center;
    padding:50px 20px;

}

footer h3{

    margin-bottom:10px;

}

footer p{

    margin-bottom:10px;

}

@media(max-width:768px){

    .contenedor{

        flex-direction:column;
        gap:15px;

    }

    nav{

        flex-wrap:wrap;
        justify-content:center;
        gap:20px;

    }

    .contenido h1{

        font-size:38px;

    }

    .contenido p{

        font-size:18px;

    }

    .software{

        grid-template-columns:1fr;

    }

}