﻿
@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../fonts/IBMPlexSans-VariableFont_wdth,wght.ttf') format('truetype');
}

h1, h2, h3, h4, h5, h6 {
    font-family: IBMPlex;
}


h1, h2, h3, h4 {
    letter-spacing: -.02em;
    font-weight: 700;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.15rem;
}



a {
    text-decoration: underline;
    color: #006468;
    transition: all .5s;
}

    a:hover {
        text-decoration: none;
        color: #202020;
    }


.display-4.lh-display-4 {
    font-size: 4.5rem;
}

:root {
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13,110,253;
    --bs-secondary-rgb: 108,117,125;
    --bs-success-rgb: 25,135,84;
    --bs-info-rgb: 13,202,240;
    --bs-warning-rgb: 255,193,7;
    --bs-danger-rgb: 220,53,69;
    --bs-light-rgb: 248,249,250;
    --bs-dark-rgb: 33,37,41;
    --bs-white-rgb: 255,255,255;
    --bs-black-rgb: 0,0,0;
    --bs-body-color-rgb: 33,37,41;
    --bs-body-bg-rgb: 255,255,255;
    --bs-font-sans-serif: "Arimo",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

.gradient-hero {
    background: linear-gradient(to right, #35CCD5, #006468, #FF7941, #9C7150);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.gradient-title {
    background: linear-gradient(to right, #35CCD5, #23A8AF, #0E8085, #006468);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    --bs-btn-padding-x: 1.35rem;
    --bs-btn-padding-y: .65rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: .95rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #212529;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 16px;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}




.btn-primary {
    background-color: #ff6600;
    border: none;
    --bs-btn-color: #fff;
    border-radius: 25px;
    transition: all .5s;
}



    .btn-primary:hover {
        color: #fff;
        background-color: #a39489;
        border-color: #a39489;
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: #a39489;
        border-color: #a39489;
        box-shadow: 0 0 0 .25rem rgba(180,180,180,.5)
    }

    .btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #a39489;
        border-color: #a39489;
    }

        .btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(180,180,180,.5)
        }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }





.btn-outline-secondary {
    font-weight: 400;
    border-width: 1px;
    --bs-btn-color: #006468;
    --bs-btn-border-color: #006468;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #84adb1;
    border-radius: 25px;
    /*    --bs-btn-hover-border-color: #6c757d;
    --bs-btn-focus-shadow-rgb: 108,117,125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: --bs-body-color;
    --bs-btn-active-border-color: #212529;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #212529;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #212529;
    --bs-gradient: none;*/
    transition: all .5s;
}




    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #84adb1;
        border-color: #84adb1;
    }

    .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
        box-shadow: 0 0 0 .25rem rgba(105,190,190,.5);
    }

    .btn-check:active + .btn-outline-secondary, .btn-check:checked + .btn-outline-secondary, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show, .btn-outline-secondary:active {
        color: #fff;
        background-color: #84adb1;
        border-color: #84adb1;
    }

        .btn-check:active + .btn-outline-secondary:focus, .btn-check:checked + .btn-outline-secondary:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus, .btn-outline-secondary:active:focus {
            box-shadow: 0 0 0 .25rem rgba(105,190,190,.5);
        }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        color: #6c757d;
        background-color: transparent
    }




.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(0, 0, 0, 0.55);
    --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 1.125rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
    --bs-navbar-toggler-border-radius: 0.375rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    /*position: relative;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)
}


.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #3c3c3c;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}

    .nav-link:focus, .nav-link:hover {
        color: #ff6600;
    }

    .nav-link.active {
        font-weight: 700;
    }



.navbar-toggler:focus {
    box-shadow: none;
}


.navbar-dark .navbar-toggler {
    color: #3c3c3c;
    border-color: none;
}



.form-label {
    font-weight: 700;
    font-size: .9rem;
}






/*  Form */

.form-control, .form-select {
    padding: .8rem;
    font-size: .9rem;
    border: 1px solid #dcdcdc;
}

/**::placeholder {
color:#c2c2c2!important;
opacity: 1;
}*/

/*.form-control:focus {
  box-shadow: none;
  border-color:#4c4c4c;
}
*/


html.signin,
html.signin body {
    height: 100%;
}

    html.signin body {
        display: flex;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
        background-color: #f5f5f5;
    }


.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}

    .form-signin .checkbox {
        font-weight: 400;
    }

    .form-signin .form-floating:focus-within {
        z-index: 2;
    }

    .form-signin input[type="email"] {
        margin-bottom: -1px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .form-signin input[type="password"] {
        margin-bottom: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }


.form-control:focus {
    color: #212529;
    background-color: #fff;
    outline: 0;
    border-color: #a39489;
    box-shadow: 0 0 0 .25rem rgba(180,180,180,.5)
}









/* Float */

.float {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 40px;
    font-size: 1.8em;
    border-radius: 50px;
    color: #FFF;
    box-shadow: rgba(153,153,153,0.5) 0px 5px 10px 0px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-whatsapp {
    bottom: 140px;
    background-color: #25d366;
}

.float-bot {
    bottom: 120px;
    background-color: #006468;
}

a.float-bot:hover {
    color: #4fe8b4;
}


.color-teal {
    color: #006468;
}


.bg-cover {
    background: url("../images/bg-hero.png") center top no-repeat;
    box-shadow: 0 0 2px 0 rgba(122, 243, 255, 0.17), 0 0 0 rgba(19, 150, 165, 0.17), inset 0 0 16px rgba(0, 103, 112, 0.34);
}

.bg-footer {
    background: url("../images/bg-footer.png") center top no-repeat;
}

    .bg-footer a, .bg-footer p, .bg-footer li, .bg-footer h5 {
        color: #fff;
    }

        .bg-footer a:hover {
            color: #093A3E;
        }

.bg-feature {
    background: linear-gradient(180deg,rgba(234, 245, 246, 1) 0%, rgba(216, 252, 255, 1) 35%, rgba(255, 255, 255, 1) 75%);
}

.bg-feature-alt {
    background: linear-gradient(180deg,rgba(234, 245, 246, 1) 0%, rgba(255, 255, 255, 1) 35%, rgba(255, 255, 255, 1) 75%);
}

.bg-platform {
    background: url("../images/bg-platform.png") center top no-repeat;    
}

.bg-platform-alt {
    background: url("../images/bg-platform-alt.png") center top no-repeat;
}

.bg-transp-g80 {
    background: linear-gradient(180deg,rgba(255, 255, 255, .80) 0%, rgba(255, 255, 255, 0) 70%);
}

/*{ background-color:rgba(255,255,255,0.60); }*/


.rounded-50 {
    border-radius: 50px;
}

.rounded-40 {
    border-radius: 40px;
}

.shadow-pill {
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.shadow-cta {
    box-shadow: 0px 5px 50px 10px rgba(0, 165, 173, 0.25), 0px 5px 25px 10px rgba(0, 165, 173, 0.3);
}

.shadow-cta-alt {
    box-shadow: rgba(73,104,126,0.16) 0px 16px 24px 0px;
}

.shadow-news {
    box-shadow: rgba(0,0,0,0.02) 0px 8px 16px 0px;
}

.shadow-footer {
    box-shadow: 0 0 2px 0 rgba(122, 243, 255, 0.17), 0 0 0 rgba(19, 150, 165, 0.17), inset 0 0 16px rgba(0, 103, 112, 0.34)
}

.shadow-wcard {
    box-shadow: 0 4px 30px 0 rgba(75,168,180,0.3);
}




.bg-nav {
    background-color: transparent;
}

.lh-display-4 {
    line-height: .8em;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.letter-spacing-sm {
    letter-spacing: -.03em;
}

.fs-sm {
    font-size: .85em;
}

.fs-md {
    font-size: 1.05em;
}



.bg-news {
    background: linear-gradient(180deg,rgba(224, 244, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.bg-news-alt {
    background: linear-gradient(180deg,rgba(209, 249, 255, 1) 0%, rgba(234, 245, 246, 1) 100%);
}


.scale-50 {
    height: auto;
    max-width: 50%;
}

.scale-40 {
    height: auto;
    max-width: 35%;
}

@media (max-width: 768px) {
    .bg-nav {
        background-color: #e6f3f3;
    }

    .scale-50 {
        height: auto;
        max-width: 100%;
    }

    .scale-40 {
        height: auto;
        max-width: 100%;
    }
}



