
@font-face{
    font-family: 'Roboto';
    src: url('../tipografias/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
}

@font-face{
    font-family: 'Roboto';
    src: url('../tipografias/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face{
    font-family: 'Roboto';
    src: url('../tipografias/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face{
    font-family: 'Roboto';
    src: url('../tipografias/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}
body{
    margin: 0;
    padding: 0;
    background-color: #f3f4ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
header{
    height: 100px;
    background-color: #27187E;
    display: flex;
    flex-direction: row;
    border-bottom: 1px #372a85 solid;
}
#logotipoIMG{
    height: 80%;
    margin: 10px 50px;
}
#icoMenu{
    display: none;
    
}
#btnContacto{
    height: 45px;
    font-size: 14px;
    border-radius: 50px;
    background-color: #a5c107;
    border: 0px;
    color: #0f0f0f;
    font-family: 'Roboto';
    font-weight: 500;
}
nav ul,nav ul li a{
    list-style: none;
    text-decoration: none;
    color: white;
    font-family: 'Roboto';
    font-weight: 500;
    cursor: pointer;
}
nav ul li a:hover{
    border-bottom: 1px #e9e9e9 solid;
    padding: 10px 0;
}
.nav-selected{
    border-bottom: 2px #93c251 solid;
    padding: 10px 0;
}
section{
    width: 100%;
    background-color: #27187E;
    font-family: 'Roboto';
    color: white;
}
.green{
    color: #a5c107;
}
.blue{
    color: #27187E;
}
.btnServicios {
    height: 58px;
    font-size: 16px;
    border-radius: 10px;
    background-color: #a5c107;
    border: 0px;
    color: #0f0f0f;
    font-family: 'Roboto';
    font-weight: 600;
}
.btnServiciosDiv {
    height: 58px;
    font-size: 16px;
    border-radius: 10px;
    background-color: rgba(0,0,0,0.00);
    border: 0px;
    color: #0f0f0f;
    font-family: 'Roboto';
    font-weight: 600;
    border: 1px black solid;
}
.responsive-text{
    font-size: clamp(18px, 2vw, 25px);
    max-width: 650px;
    font-family: 'Roboto';
    font-weight: 300;
}
#titleSection{
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
}
.spanAgencia{
    letter-spacing: 6px;
}
.heroImage{
    width: 100%;
    max-width: 1000px;
}
.text-Roboto{
    font-family: 'Roboto';
}
.serviceBox{
    background-color: white;
    border: 1px solid #e9e9e9;
    padding: 30px;
    border-radius: 12px;
    min-height: 260px;
    height: 100%;
    transition: 0.3s ease;
}

.serviceBox:hover{
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
}
.backgroundBlue{
    background-color: #27187E;
}
.backgroundGreenDark{
    background-color: #004643;
}
.backgroundCherry{
    background-color: #e30b5c;
}
.backgroundPlum{
    background-color: #381932;
}
.backgroundBlueLight{
    background-color: #3944d6;
}
.backgroundGreenLight{
    background-color: #a5c107;
}
.icoServicios{
    width: 60px;
    height: 60px;
    color: white;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
footer{
    font-family: 'Roboto';
    font-weight: 300;
}
.footerBottom{
    font-size: 14px;
}
footer i{
    font-size: 20px;
}
@media screen and (max-width: 1024px){

    .recursoSection{
        display: none;
    }
    #titleSection{
        width: 75%;
    } 
    nav{
        position: fixed;
        right: -100%;
    }
    #btnContacto{
        width: auto;
        margin-right: 0px;
        float: right;
        font-size: 20px;
        font-weight: 400;
    }
    .spanAgencia{
        margin-top: 30px;
    }
    #icoMenu{
        display: flex;
        color: white;
        font-size: 50px;
        margin: 0 30px;
    }
    .infoSection{
        margin-top: 30px;
    }
    #titleSection{
        font-size: clamp(60px, 6vw, 70px);
    }
    .responsive-text{
        font-size: clamp(25px, 2vw, 25px);
        max-width: 500px;
        font-family: 'Roboto';
        font-weight: 300;
    }
    .btnServicios {
        height: 58px;
        font-size: 20px;
        border-radius: 10px;
        background-color: #a5c107;
        border: 0px;
        color: #0f0f0f;
        font-family: 'Roboto';
        font-weight: 600;
    }
    .btnServicios i{
        font-weight: 900;
    }
    .divPoliticas{
        font-size: 25px;
        font-family: 'Roboto';
        font-weight: 300;
    }
}