.elementor-191 .elementor-element.elementor-element-ceab66b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-191 .elementor-element.elementor-element-a8e2e86{--display:flex;}.elementor-191 .elementor-element.elementor-element-6db0cb8{--spacer-size:50px;}.elementor-191 .elementor-element.elementor-element-3944311{--display:flex;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--margin-top:0px;--margin-bottom:20px;--margin-left:0px;--margin-right:0px;}.elementor-191 .elementor-element.elementor-element-169caac{text-align:center;}.elementor-191 .elementor-element.elementor-element-169caac .elementor-heading-title{font-family:"Open Sans", Sans-serif;font-size:clamp(1.5rem, 3vw + 0.5rem, 2.5rem);font-weight:900;color:var( --e-global-color-secondary );}.elementor-191 .elementor-element.elementor-element-1695122{text-align:center;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-secondary );}.elementor-191 .elementor-element.elementor-element-fab9c26{--spacer-size:50px;}.elementor-191 .elementor-element.elementor-element-rcmig3a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:992px){.elementor-191 .elementor-element.elementor-element-6db0cb8{--spacer-size:25px;}.elementor-191 .elementor-element.elementor-element-fab9c26{--spacer-size:25px;}}/* Start custom CSS */.elementor-191{--e-global-color-primary:#45C1C6!important;--e-global-color-secondary:#09344C!important;--e-global-color-text:#025A7C!important;--e-global-color-accent:#475569!important;}
.section-card {
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0; /* slate-200 */
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05), 0 1px 2px -1px rgb(0 0 0 / 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tooltip-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.tooltip-icon {
    cursor: help;
    margin-left: 8px;
    color: #94a3b8; /* slate-400 */
    border: 1px solid #cbd5e1; /* slate-300 */
    border-radius: 9999px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.2s;
}
.tooltip-icon:hover {
    background-color: #e2e8f0;
}
.tooltip-text {
    visibility: hidden;
    width: 240px;
    background-color: #002D3D; /* brand-blue */
    color: #fff;
    text-align: left;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    margin-left: -120px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.875rem;
    line-height: 1.4;
    pointer-events: none;
}
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0; /* slate-200 */
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
input[type="range"]:hover {
    opacity: 1;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #00F0C9; /* brand-turquesa */
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #00F0C9; /* brand-turquesa */
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}/* End custom CSS */