/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:#333;
}

/* ===========================
   HEADER
=========================== */

header{

    width:100%;
    padding:20px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#005BBB;

}

.logo h1{

    color:white;
    font-size:32px;

}

.logo span{

    color:#8FD8FF;

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    color:white;
    text-decoration:none;
    font-size:17px;
    font-weight:bold;

}

nav a:hover{

    color:#8FD8FF;

}

/* ===========================
   HERO
=========================== */

.hero{

    min-height:90vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    padding:80px 20px;

    background:linear-gradient(
        180deg,
        #8FD8FF 0%,
        #DFF5FF 45%,
        #FFFFFF 100%
    );

}

.hero-texto{

    max-width:900px;

}

.hero-texto h2{

    color:#005BBB;
    font-size:26px;
    margin-bottom:15px;

}

.hero-texto h1{

    color:#003B73;
    font-size:58px;
    margin-bottom:25px;

}

.hero-texto p{

    font-size:22px;
    line-height:36px;
    margin-bottom:40px;

}

/* ===========================
   BOTONES
=========================== */

.botones{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.btn{

    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;

}

.btn-principal{

    background:#005BBB;
    color:white;

}

.btn-principal:hover{

    background:#003B73;

}

.btn-secundario{

    background:white;
    color:#005BBB;
    border:2px solid #005BBB;

}

.btn-secundario:hover{

    background:#F4F4F4;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

header{

    flex-direction:column;
    gap:15px;

}

nav{

    flex-wrap:wrap;
    justify-content:center;

}

.hero-texto h1{

    font-size:38px;

}

.hero-texto h2{

    font-size:22px;

}

.hero-texto p{

    font-size:18px;

}
/* ===========================
   SERVICIOS
=========================== */

.servicios{

    padding:80px 8%;

    background:#ffffff;

}

.contenedor{

    max-width:1200px;

    margin:auto;

}

.servicios h2{

    text-align:center;

    font-size:42px;

    color:#005BBB;

    margin-bottom:15px;

}

.subtitulo{

    text-align:center;

    font-size:20px;

    color:#666;

    margin-bottom:50px;

}

.grid-servicios{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}

.card{

    background:#F7FBFF;

    border:1px solid #D8ECFF;

    border-radius:15px;

    padding:35px;

    text-align:center;

}

.icono{

    font-size:50px;

    margin-bottom:20px;

}

.card h3{

    color:#005BBB;

    margin-bottom:15px;

}

.card p{

    color:#666;

    line-height:28px;

}