@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

:root {
    --center: 1950px;
    --page-sides: 20px;
    --font-cal-sans: "Cal Sans", sans-serif;
    --font-inter: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 400;


    
}

html {
    scroll-behavior: smooth;
}

/* CENTER */
.center {
    max-width: var(--center);
    margin: 0 auto;
}

/* .center > .slider > .slide > .content, */
.center-r {
    max-width: calc(var(--center) - 190px * 4);
    margin: 0 auto;
}

/* SOCIAL */
.social-list {
    display: flex;
    gap: 10px;
    list-style-type: none;
    position: relative;
}

.social-list li a {
    display: block;

    & img {
        width: 100%;
        height: 100%;
    }
}

/* BANNER */
.banner {
    /*height: 478px;*/
    position: relative;
}
/*
.banner::after {
    content: "";
    width: 100%;
    height: 298px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0) 8.65%,
        rgba(8, 61, 41, 0.22) 28.41%,
        rgba(8, 61, 41, 0.625) 56.45%,
        rgba(8, 61, 41, 0.75) 79.59%);
}*/

.banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}
/* END-BANNER */

/* SERVICES DESCRIPTION  */
.sd-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    margin-bottom: 20px;
    text-align: center;

    & h2 {
        font-size: 35px;
        color: #083d29;
    }

    & p {
        max-width: 835px;
        font-size: 20px;
        color: #3e4851;
    }

    & a {
        width: 137px;
    }
}



/* BUTTON */
.green-button {
    --gb-height: 40px;
    /* --- */
    display: block;
    height: var(--gb-height);
    border-radius: 5px;
    background-color: #56A694;
    line-height: var(--gb-height);
    font-family: var(--font-inter);
    /* font-weight: 400 !important; */
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #f5f5f5;
    transition: background-color 0.4s ease;
    user-select: none;
    cursor: pointer;
}

.green-button-2 {
    --gb-height: 40px;
    /* --- */
    display: block;
    height: var(--gb-height);
    border-radius: 5px;
    border: 1px solid #02542D;
    line-height: var(--gb-height);
    font-family: var(--font-inter);
    /* font-weight: 400 !important; */
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #f5f5f5;
    transition: background-color 0.4s ease;
    margin-top:20px;
}

.green-button:hover{
    background-color: #000000;
}

.white-button{
    --gb-height: 40px;
    /* --- */
    display: block;
    height: var(--gb-height);
    border-radius: 5px;
    background-color: white;
    border: 1px solid #02542D;
    line-height: var(--gb-height);
    font-weight: bold !important; 
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #5E6865;
    transition: background-color 0.4s ease;
    font-family:'Lato',sans-serif;


}

.white-button:hover{
    background-color: #000000;
}

/* fonts class */
.font-inter {
    & a, button, label, input, p, select {
        font-family: var(--font-inter);
        font-weight: 700;
    }
}

.font-inter-tag {
    font-family: var(--font-inter);
    font-weight: 700;
}

/* BODY */
header {
    background-color: #F5F7FA;
}

main {
    background-color: #ffffff;
}

footer {
    position: relative;
}

.numero{
    color: white;
    position: relative;
    right: 15px;
    top:5px;
    background-color: black;
    border-radius: 15px;
    padding: 0 3px;
    
}

.ocultar{
    display: none;
    
}

/* END-BODY */


@media(max-width:768px){
    .sd-section{
        display: flex;

        & p{
            font-size: 12px;
            line-height: 1.2;

        }

        & h2{
            font-size: 20px;

        }

    }
    .monitoreos .sd-section a {
        --gb-height: 30px;
        font-size: 10px;
        width: 77px;
    }
}

.nuevo{
    color:blue
}

.nuevo2{
    color:red
}

