.elementor-443 .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-443 .elementor-element.elementor-element-a8e2e86{--display:flex;}.elementor-443 .elementor-element.elementor-element-6db0cb8{--spacer-size:50px;}.elementor-443 .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-443 .elementor-element.elementor-element-169caac{text-align:center;}.elementor-443 .elementor-element.elementor-element-169caac .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-secondary );}.elementor-443 .elementor-element.elementor-element-1695122{text-align:center;font-family:var( --e-global-typography-6d3bed7-font-family ), Sans-serif;font-weight:var( --e-global-typography-6d3bed7-font-weight );color:var( --e-global-color-secondary );}.elementor-443 .elementor-element.elementor-element-fab9c26{--spacer-size:50px;}.elementor-443 .elementor-element.elementor-element-rcmig6a{--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-443 .elementor-element.elementor-element-6db0cb8{--spacer-size:25px;}.elementor-443 .elementor-element.elementor-element-fab9c26{--spacer-size:25px;}}/* Start custom CSS */.elementor-443{--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: #09344C;
    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: #45C1C6;
    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: #45C1C6;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}
/* Novo estilo para inputs de moeda */
.currency-input-container {
    border-bottom: 2px solid #e2e8f0;
    transition: border-color 0.2s;
    display: flex;
    align-items: baseline;
    padding-bottom: 0.5rem;
}
.currency-input-container:focus-within {
    border-color: #45C1C6;
}
.currency-symbol {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-right: 0.5rem;
}
.currency-input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
    font-weight: bold;
    color: #09344C;
    padding: 0;
    text-align: left;
    transition: font-size 0.2s ease-in-out;
}/* End custom CSS */