*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#f5f7fb;

}

/* NAVBAR */

.navbar{

background:#18206F !important;

}

.navbar-brand img{

height:55px;

}

.nav-link{

color:white !important;

font-weight:500;

transition:.3s;

}

.nav-link:hover{

color:#d9b36a !important;

}

/* HERO */

.hero{

padding:90px 0;

background:linear-gradient(135deg,#18206F,#3246a8);

color:white;

}

.hero h1{

font-size:52px;

font-weight:700;

margin-bottom:20px;

}

.hero p{

font-size:22px;

margin-bottom:30px;

}

.hero-logo{

max-width:350px;

animation:flotar 4s infinite;

}

.btn-warning{

background:#B78A42;

border:none;

padding:14px 40px;

font-weight:bold;

border-radius:50px;

}

.btn-warning:hover{

background:#c79c57;

}

@keyframes flotar{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}
/*==========================
SERVICIOS
==========================*/

.services{

background:#f7f8fc;

}

.services h2{

color:#18206F;

font-weight:700;

}

.service-card{

background:white;

border-radius:20px;

padding:35px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.service-card .icon{

width:90px;

height:90px;

margin:auto;

background:#18206F;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.service-card i{

font-size:42px;

color:white;

}

.service-card h4{

color:#18206F;

margin-bottom:15px;

font-weight:600;

}

.service-card p{

color:#666;

line-height:1.7;

}