:root{
  --wa-green: #25D366;
  --wa-dark:  #075E54;
  --wa-light: #DCF8C6;
  --insuba-black4: #b4161b!important;
  --insuba-black5: #5c5c5c!important;
}
.active {
    color: #b4161b!important;
}
.mobile-nav__content {
    background-color: #222!important 
}
.page-header__title {
    color: #5c5c5c!important;
}

.preloader { background-color: #FFFFFF!important; }
.preloader__image { background-size: 100px auto!important; }
.contact__call { background-color: var(--wa-dark)!important; }
.contact__call--whatsapp{
    background: linear-gradient(135deg, rgba(37,211,102,0.12) 0%, rgba(7,94,84,0.10) 100%);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 6px 24px rgba(7,94,84,0.08);
}
.contact__call--whatsapp .contact__call__icon{
    width: 65px; height: 65px; min-width: 44px;
    border-radius: 999px;
    display: grid; place-items: center;
    color: #fff;
    background: radial-gradient(circle at 30% 30%, var(--wa-green) 0%, #1ebe5b 70%);
    box-shadow: 0 6px 14px rgba(37,211,102,0.35);
}
.contact__call--whatsapp .contact__call__icon .wa-icon{ width: 22px; height: 22px; }
.contact__call--whatsapp .contact__call__title { margin: 0 0 2px; font-weight: 700; color: #FFF; }
.contact__call--whatsapp .contact__call__number {
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all .2s ease;
}
.contact__call--whatsapp:hover .contact__call__number { color: var(--wa-green); border-bottom-color: rgba(37,211,102,.4); }
.contact__call--whatsapp:hover .contact__call__icon { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,211,102,0.45); }
.contact__call--whatsapp .contact__call__icon .fa-whatsapp { font-size: 30px; line-height: 1; }
.contact__call.contact__call--whatsapp{
    display: flex; 
    align-items: center; 
    gap: 14px;
    text-decoration: none; 
    color: inherit; 
}
.contact__call--whatsapp .fa-whatsapp { font-size: 22px; line-height: 1; }
.contact__call--whatsapp:focus-visible { outline: 3px solid rgba(37,211,102,.55); outline-offset: 3px; border-radius: 14px; }
.contact__call--whatsapp:hover .contact__call__number{ color: var(--wa-green); border-bottom-color: rgba(37,211,102,.4); }

.hero-slider {  position: relative; width: 100%; overflow: hidden; }
.hero-slide{
    width: 100%;
    height: clamp(56vh, 68vw, 88vh); /* altura se adapta ao viewport */
    min-height: 540px;               /* presença mínima em telas menores */
    background-size: cover;          /* preenche (pode cortar) */
    background-position: center;     /* foco central por padrão */
    background-repeat: no-repeat;
    background-color: #000;          /* cor de fundo quando usar contain */
}
@media (max-aspect-ratio: 3/4) {
    .hero-slide { background-size: contain; }
}
@media (max-width: 575.98px){
    .hero-slide { height: 58vh; min-height: 360px; background-size: contain; }
}
.hero-slide.is-top    { background-position: center top; }
.hero-slide.is-bottom { background-position: center bottom; }
.hero-slide.is-left   { background-position: left center; }
.hero-slide.is-right  { background-position: right center; }
.hero-slider .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.hero-slider .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(var(--insuba-base-rgb, 225, 27, 34), .35);
    transition: all .25s ease;
}
.hero-slider .owl-dot.active span,
.hero-slider .owl-dot:hover span { background: rgba(var(--insuba-base-rgb, 225, 27, 34), 1); transform: scale(1.1); }
.owl-carousel { display: block; }
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item { height: 100%; }
.hero-slider .owl-item .hero-slide { height: 100%; }
.hero-slider::after {
    /* content: "";
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.35) 0%,
        rgba(0,0,0,0) 45%,
        rgba(0,0,0,0) 100%
    );
    pointer-events: none; */
}
.hero-caption{
    position:absolute; inset:0;
    display:grid; place-items:center;
    z-index:5; pointer-events:none;
    padding:0 4vw;
}
.hero-caption__text{
    font-family: var(--insuba-heading-font, "Gibson", "Roboto", sans-serif);
    font-weight:600; text-align:center; line-height:1.2;
    font-size: clamp(22px, 4.6vw, 56px);
    letter-spacing:.02em; color:#fff;
    text-shadow:0 2px 12px rgba(0,0,0,.45), 0 8px 28px rgba(0,0,0,.35);
    position:relative; padding-right:.22em;
}
.hero-caption__text::after{
    content:""; position:absolute; right:-0.02em; top:0; bottom:0; width:2px;
    background: rgba(var(--insuba-base-rgb,225,27,34),1);
    animation: caretBlink 1s steps(1) infinite;
}
.hero-slider .owl-nav {
    position: absolute; inset: 0;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 0 14px; 
    z-index: 6; 
    pointer-events: none;
}
.hero-slider .owl-nav button {
    pointer-events: auto;  
    width: 44px; height: 44px; border-radius: 999px;
    display: grid; place-items: center;
    background: rgba(0,0,0,.35) !important;
    color: #fff !important;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    border: 0;
}
.hero-slider .owl-nav button i { font-size: 16px; line-height: 1; }
.hero-slider .owl-nav button:hover { background: rgba(var(--insuba-base-rgb, 225,27,34), .95) !important; box-shadow: 0 6px 20px rgba(0,0,0,.25);  transform: translateY(-1px); }
.hero-slider .owl-nav .owl-prev { margin-left: 2px; }
.hero-slider .owl-nav .owl-next { margin-right: 2px; }
@media (max-width: 575.98px){
  .hero-slider .owl-nav button { width: 40px; height: 40px; }
  .hero-slider .owl-nav .owl-prev { margin-left: 0; }
  .hero-slider .owl-nav .owl-next { margin-right: 0; }
}
@keyframes caretBlink{ 0%,49%{opacity:1} 50%,100%{opacity:0} }
.main-menu .main-menu__list > li > a,
.contact__form .bootstrap-select .dropdown-menu > li > a,
.footer-widget__links li,
.contact__form .bootstrap-select > .dropdown-toggle { text-transform: unset!important; }
.why-choose-one__tab-box .tab-buttons .tab-btn { width: 33%!important; text-transform: unset!important; }
.main-footer__top { padding-top: 25px!important; padding-bottom: 25px!important; background: #f5f5f5;}
.footer-widget__about,
.footer-widget__info li,
.footer-widget__title, 
.footer-widget__info__icon,
.footer-widget__links li { color: #e11b22!important; }
.social-links a { background-color: #e11b22!important; }
.main-footer__bg,
.main-footer { background: #E6E6E6!important; }
.social-links a { background-color: #e11b22!important; }
.social-links a:hover { background-color: #777!important; }
.main-footer__bottom { background: #eeeeee!important; }
.main-footer__copyright { color: #111!important; }
.scroll-to-top.show { bottom: 130px!important; }
.contact__tab-content, 
.why-choose-one__image__shape { background: #E6E6E6!important; }
.insurance-policy__bg::after { background: #E6E6E6!important; }
.insurance-policy__list-box { width: 500px!important; }
.insurance-policy__content { width: 100%!important; }
.insurance-policy__image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 233px;
    height: 233px;
    --ring: 6px; 
    --gap: 10px;
    border: var(--ring) solid var(--insuba-base, #e11b22);
    border-radius: 50%;
    background-color: var(--insuba-white, #ffffff);
    padding: var(--gap);
    box-sizing: border-box;  
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.insurance-policy__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 50%;   
}
.sec-title__tagline { text-transform: unset!important; }



/** HOME */
.static-hero {
    position: relative;
    width: 100%;
    height: 50vh; /* Metade da altura da viewport */
    min-height: 400px; /* Altura mínima para telas pequenas */
    max-height: 600px; /* Altura máxima para telas muito grandes */
    overflow: hidden;
}

.static-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.static-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.static-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.static-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    margin: 0;
    letter-spacing: 1px;
}

.typing-text {
    display: inline-block !important;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
}

.typing-cursor {
    display: inline-block;
    color: #ffffff;
    animation: blink 0.8s infinite;
    margin-left: 3px;
    font-weight: 400;
}

.typing-cursor.finished {
    animation: none;
    opacity: 0;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsividade para tablets */
@media (max-width: 992px) {
    .static-hero {
        height: 45vh;
        min-height: 350px;
        max-height: 500px;
    }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .static-hero {
        height: 40vh;
        min-height: 300px;
        max-height: 450px;
    }
    
    .static-hero__title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .static-hero {
        height: 35vh;
        min-height: 280px;
    }
}

.contact-simple {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-simple__wrapper {
    margin-top: 50px;
}

.contact-simple__card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-simple__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #e11b22;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-simple__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(225, 27, 34, 0.2);
}

.contact-simple__card:hover::before {
    transform: scaleY(1);
}

.contact-simple__card__icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-simple__card--whatsapp .contact-simple__card__icon {
    background: linear-gradient(135deg, #e11b22 0%, #b91419 100%);
}

.contact-simple__card--email .contact-simple__card__icon {
    background: linear-gradient(135deg, #e11b22 0%, #b91419 100%);
}

.contact-simple__card:hover .contact-simple__card__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(225, 27, 34, 0.3);
}

.contact-simple__card__content {
    flex: 1;
}

.contact-simple__card__title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.contact-simple__card:hover .contact-simple__card__title {
    color: #e11b22;
}

.contact-simple__card__number {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px 0;
    display: block;
}

.contact-simple__card__label {
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

/* Responsivo */
@media (max-width: 991px) {
    .contact-simple {
        padding: 60px 0;
    }
    
    .contact-simple__wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .contact-simple__card {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
    
    .contact-simple__card__icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .contact-simple__card__title {
        font-size: 20px;
    }
    
    .contact-simple__card__number {
        font-size: 16px;
    }
}

/** Políticas */
.insurance-sidebar__btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    transition: all .3s ease;
}

.insurance-sidebar__btn:hover {
    background: var(--insuba-base, #e11b22);
    color: #fff;
    border-color: var(--insuba-base, #e11b22);
}
.insurance-sidebar__btn::after {
    display: none;
}
.politica-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}
.politica-box h3 {
    color: var(--insuba-base, #e11b22);
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}
.politica-box p {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
}
.politica-box ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
.politica-box li {
    margin-bottom: 8px;
    font-size: 16px;
}
.politica-box a {
    color: var(--insuba-base, #e11b22);
    text-decoration: none;
}
.politica-box a:hover {
    text-decoration: underline;
}

/* === GRADE DE DOWNLOADS === */
.downloads-title {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--insuba-black3, #241214);
}
.download-card {
    background: var(--insuba-white3, #f1f6f7);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}
.download-card:hover {
    background: #fff;
    border-color: var(--insuba-base, #e11b22);
    box-shadow: 0 8px 20px rgba(225,27,34,0.1);
    transform: translateY(-4px);
}
.download-card__icon {
    font-size: 48px;
    color: var(--insuba-base, #e11b22);
    margin-bottom: 15px;
}
.download-card__title {
    font-size: 18px;
    color: var(--insuba-black3, #241214);
    margin-bottom: 5px;
}
.download-card__size {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.download-card__btn {
    display: inline-block;
    background: var(--insuba-base, #e11b22);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.download-card__btn:hover {
    background: #b9141a;
}

/* Mobile */
@media (max-width: 768px) {
    .politica-box { padding: 30px 25px; }
    .downloads-title { font-size: 20px; margin-bottom: 25px; }
}

/** SAC */
.file-upload {
    position: relative;
    border: 2px dashed var(--insuba-gray4, #dbdbdb);
    border-radius: 8px;
    background-color: var(--insuba-white3, #f1f6f7);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.file-upload:hover {
    border-color: var(--insuba-base, #e11b22);
    background-color: rgba(var(--insuba-base-rgb, 225, 27, 34), 0.05);
}
.file-upload input[type="file"] { display: none; }
.file-upload label {
    display: inline-block;
    cursor: pointer;
    color: var(--insuba-base, #e11b22);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid var(--insuba-base, #e11b22);
    transition: all 0.3s ease;
}
.file-upload label:hover {
    background-color: var(--insuba-base, #e11b22);
    color: #fff;
}
.file-upload small {
    display: block;
    color: var(--insuba-text-gray, #767676);
    font-size: 14px;
    margin-top: 8px;
}
.file-upload .file-list {
    margin-top: 15px;
    font-size: 14px;
    color: var(--insuba-black3, #241214);
}
.file-upload .file-list span {
    display: block;
    background: var(--insuba-white, #fff);
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 5px;
    border: 1px solid var(--insuba-gray4, #dbdbdb);
}

/** Trabalhe Conosco */
.service-card-two__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card-two__link:hover .service-card-two {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-card-two {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

/** Vagas */
.vaga-detalhe__titulo {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--insuba-black3, #241214);
}
.vaga-detalhe__tags {
    margin-bottom: 25px;
}
.vaga-detalhe__tags span {
    display: inline-block;
    background: var(--insuba-white3, #f1f6f7);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 14px;
    margin-right: 10px;
    color: #555;
}
.vaga-detalhe h4 {
    font-size: 20px;
    color: var(--insuba-base, #e11b22);
    margin-bottom: 12px;
    margin-top: 25px;
}
.vaga-detalhe p {
    line-height: 1.7;
    color: #444;
}
.vaga-detalhe__requisitos {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.vaga-detalhe__requisitos li {
    margin-bottom: 10px;
    color: #333;
}
.vaga-detalhe__requisitos i {
    color: var(--insuba-base, #e11b22);
    margin-right: 8px;
}
.vaga-detalhe__cta {
    margin-top: 35px;
    text-align: center;
}

/* === OUTRAS VAGAS === */
.outras-vagas {
    background: var(--insuba-white3, #f1f6f7);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.outras-vagas__titulo {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--insuba-black3, #241214);
    text-align: center;
    position: relative;
}
.outras-vagas__titulo::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--insuba-base, #e11b22);
    margin: 8px auto 0;
    border-radius: 3px;
}
.outras-vagas__lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.outras-vagas__card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.outras-vagas__card:hover {
    transform: translateY(-2px);
    border-color: var(--insuba-base, #e11b22);
    box-shadow: 0 5px 14px rgba(225,27,34,0.1);
}
.outras-vagas__card h5 {
    font-size: 16px;
    color: var(--insuba-black3, #241214);
    margin-bottom: 6px;
}
.outras-vagas__card p {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
}
.outras-vagas__card .ver-detalhes {
    font-size: 13px;
    color: var(--insuba-base, #e11b22);
    font-weight: 500;
}
.outras-vagas__card .ver-detalhes i {
    margin-left: 4px;
    font-size: 13px;
}

.career-list {
    max-width: 800px;
    margin: 0 auto;
}

.career-list__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-list__item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--insuba-white3, #f1f6f7);
    border: 1px solid transparent;
}

.career-list__item:hover {
    border-color: var(--insuba-base, #e11b22);
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.career-list__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--insuba-text, #333);
    padding: 18px 25px;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.career-list__title {
    flex: 1;
}

.career-list__icon {
    color: var(--insuba-base, #e11b22);
    font-size: 20px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.career-list__link:hover .career-list__icon {
    transform: translateX(3px);
}

.career-list__link:hover {
    color: var(--insuba-base, #e11b22);
}

/** Currículo */
/* === Campo de data com estilo personalizado === */
.styled-date {
    height: 61px;
    width: 100%;
    border: none;
    background-color: var(--insuba-white3, #f1f6f7);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--insuba-text, #636363);
    font-family: var(--insuba-font, "Roboto", sans-serif);
    display: block;
    line-height: normal;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 400ms ease;
}
.styled-date:focus {
    border-color: var(--insuba-base, #e11b22);
    background-color: #fff;
}

/* === Campo de upload (mantido igual ao SAC) === */
.file-upload {
    position: relative;
    border: 2px dashed var(--insuba-gray4, #dbdbdb);
    border-radius: 8px;
    background-color: var(--insuba-white3, #f1f6f7);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.file-upload:hover {
    border-color: var(--insuba-base, #e11b22);
    background-color: rgba(var(--insuba-base-rgb, 225, 27, 34), 0.05);
}
.file-upload input[type="file"] { display: none; }
.file-upload label {
    display: inline-block;
    cursor: pointer;
    color: var(--insuba-base, #e11b22);
    font-weight: 600;
    font-size: 16px;
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid var(--insuba-base, #e11b22);
    transition: all 0.3s ease;
}
.file-upload label:hover {
    background-color: var(--insuba-base, #e11b22);
    color: #fff;
}
.file-upload small {
    display: block;
    color: var(--insuba-text-gray, #767676);
    font-size: 14px;
    margin-top: 8px;
}
.file-upload .file-list {
    margin-top: 15px;
    font-size: 14px;
    color: var(--insuba-black3, #241214);
}
.file-upload .file-list span {
    display: block;
    background: var(--insuba-white, #fff);
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 5px;
    border: 1px solid var(--insuba-gray4, #dbdbdb);
}

.ui-autocomplete {
    z-index: 99999 !important;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: var(--insuba-font, "Roboto", sans-serif);
}

.ui-menu-item-wrapper {
    padding: 10px 15px;
    cursor: pointer;
}

.ui-menu-item-wrapper:hover {
    background-color: var(--insuba-base, #e11b22);
    color: #fff;
}

/** Orientações */
/** Footer */

/*--------------------------------------------------------------
# Popup (seguindo padrão Insuba)
--------------------------------------------------------------*/
.insuba-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
}

.insuba-popup.show {
  display: flex;
}

.insuba-popup__overlay {
  position: absolute;
  inset: 0;
  background: RGBA(var(--insuba-black3-rgb, 36, 18, 20), 0.85);
  z-index: 1;
  animation: fadeIn 0.4s ease forwards;
}

.insuba-popup__content {
  position: relative;
  z-index: 2;
  background-color: var(--insuba-white, #ffffff);
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 10px 40px RGBA(var(--insuba-black-rgb, 26, 11, 12), 0.25);
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: popupZoom 0.4s ease forwards;
}

.insuba-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: var(--insuba-base, #e11b22);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
.insuba-popup__close:hover {
  color: var(--insuba-black3, #241214);
}

.insuba-popup__title {
  font-family: var(--insuba-heading-font);
  color: var(--insuba-black3, #241214);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.insuba-popup__text {
  color: var(--insuba-text, #555555);
  font-size: 16px;
  margin-bottom: 25px;
}

@keyframes popupZoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

            
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: rgba(225, 27, 34, 0.7);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsivo */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

.page-header {
    padding-top: 100px!important;
    padding-bottom: 70px!important;
}
.page-header__title,
.insuba-breadcrumb li,
.checkout-page__control label {
    text-transform: unset!important;
}
:root {
    --insuba-white3: #f1f1f1!important;
} 

.checkout-page__control textarea::placeholder,
.checkout-page__control select::placeholder,
.checkout-page__control input::placeholder {
    color: #bbb;
}
.checkout-page__control select {
    height: 61px;
    width: 100%;
    border: none;
    background-color: var(--insuba-white3, #f1f6f7);
    padding: 20px;
    outline: none;
    font-size: 16px;
    color: var(--insuba-text, #636363);
    font-family: var(--insuba-font, "Roboto", sans-serif);
    display: block;
    line-height: normal;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 400ms ease;
}
.checkout-page__control textarea {
    height: 150px;
    width: 100%;
    border: none;
    background-color: var(--insuba-white3, #f1f6f7);
    padding: 20px;
    outline: none;
    font-size: 16px;
    color: var(--insuba-text, #636363);
    font-family: var(--insuba-font, "Roboto", sans-serif);
    display: block;
    line-height: normal;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all 400ms ease;
}





/** FOOTER CLEAN NEW */
.footer-osler {
    background: #ffffff;
    border-top: 1px solid #f1f1f1;
    padding: 45px 0 25px;
    font-family: "Roboto", sans-serif;
    color: #444;
}

.footer-osler__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 50px;
    align-items: start;
}

.footer-osler__logo img {
    max-width: 200px;
    height: auto;
}

.footer-osler__desc {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* TITULOS */
.footer-osler__col h4 {
    font-size: 20px;
    font-weight: 700;
    color: #e11b22;
    margin-bottom: 12px;
}

/* LINKS */
.footer-osler__col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-osler__col ul li {
    margin-bottom: 8px;
}

.footer-osler__col ul li a {
    color: #666;
    font-size: 14px;
    transition: .2s;
}

.footer-osler__col ul li a:hover {
    color: #e11b22;
}

/* INFO COM ÍCONES */
.footer-osler__info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-osler__info i {
    color: #e11b22;
}

/* SOCIAL */
.footer-osler__social {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.footer-osler__social a {
    width: 36px;
    height: 36px;
    background: #f7f7f7;
    color: #e11b22;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .2s;
    font-size: 15px;
}

.footer-osler__social a:hover {
    background: #e11b22;
    color: #fff;
}

/* BOTTOM */
.footer-osler__bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.footer-osler__bottom a {
    color: #e11b22;
    font-weight: 600;
}

.footer-osler__bottom a:hover {
    opacity: .7;
}

@media (max-width:480px) {
    .footer-osler {
        padding: 35px 0 20px;
    }
}








/* ============================
   MOBILE MENU OSLER - LIGHT VERSION
   Estético, limpo e sem riscos
============================ */

/* FUNDO CLARO */
.mobile-nav__content {
    background: #ffffff !important;
    padding: 30px 25px !important;
    color: #444 !important;
}

/* OVERLAY mais suave */
.mobile-nav__overlay {
    background: rgba(0,0,0,0.20) !important;
}

/* LOGO */
.logo-retina img {
    /* max-width: 170px !important;
    margin-bottom: 25px !important; */
}

/* LINKS */
.mobile-nav__container ul li {
    border-bottom: 1px solid #e5e5e5 !important;
}

.mobile-nav__container ul li a {
    display: block !important;
    padding: 14px 0 !important;
    font-size: 16px !important;
    color: #444 !important;
    font-weight: 500 !important;
    transition: .2s !important;
}

.mobile-nav__container ul li a:hover {
    color: #e11b22 !important;
}

/* TÍTULOS DE SEÇÃO OPCIONAL (caso queira usar depois) */
.mobile-nav__title {
    font-size: 14px !important;
    text-transform: uppercase !important;
    color: #999 !important;
    margin: 20px 0 10px !important;
}

/* CONTATO */
.mobile-nav__contact li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.mobile-nav__contact__icon {
    width: 36px !important;
    height: 36px !important;
    background: #f5f5f5 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mobile-nav__contact__icon i {
    color: #e11b22 !important;
    font-size: 14px !important;
}

.mobile-nav__contact a {
    font-size: 15px !important;
    color: #555 !important;
}

/* SOCIAL */
/* SOCIAL */
.mobile-nav__social {
    display: flex !important;
    gap: 12px !important;
    margin-top: 25px !important;
}

.mobile-nav__social a {
    width: 38px !important;
    height: 38px !important;

    background: #e11b22 !important;      /* CINZA LEVE PARA FICAR VISÍVEL */
    border-radius: 50% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #e11b22 !important;           /* VERMELHO OSLER */
    font-size: 16px !important;

    transition: 0.25s !important;
}

.mobile-nav__social a:hover {
    background: #e11b22 !important;  /* VERMELHO PREENCHIDO */
    color: #fff !important;
    border-color: #e11b22 !important;
}

