/* ================================================
   MODERN MENU - UAMI CARE
   Design baseado na referência fornecida
   ================================================ */

/* ------------------------------------------------
   Top Bar - Barra Superior BRANCA com linha amarela em baixo
   ------------------------------------------------ */
.modern-topbar {
    background: #fff;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 3px solid #F5A623;
}


.modern-topbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Hide Bootstrap pseudo-elements that interfere with flexbox */
.modern-topbar .container::before,
.modern-topbar .container::after,
.modern-navbar .container::before,
.modern-navbar .container::after {
    display: none !important;
}

.topbar-left {
    display: flex !important;
    align-items: center !important;
    gap: 30px;
}

.topbar-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
}

.topbar-item:hover {
    color: #F5A623;
    text-decoration: none;
}

.topbar-item i {
    font-size: 14px;
    color: #F5A623;
}

.topbar-right {
    display: flex !important;
    align-items: center !important;
    gap: 20px;
}

.topbar-search {
    position: relative;
}

.topbar-search-btn {
    background: none;
    border: none;
    color: #555;
    font-size: 15px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.topbar-search-btn:hover {
    color: #F5A623;
}

.topbar-social {
    display: flex !important;
    align-items: center !important;
    gap: 15px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

.topbar-social a {
    color: #F5A623;
    font-size: 14px;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    color: #214378;
    text-decoration: none;
}

/* ------------------------------------------------
   Main Navigation - Navegação Principal BRANCA
   ------------------------------------------------ */
.modern-navbar {
    background: #fff !important;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.modern-navbar>.container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    max-width: 1170px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
}


/* Logo */
.modern-navbar-brand {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 0;
    flex-shrink: 0;
}

.modern-navbar-brand img {
    max-height: 45px;
    width: auto;
}

/* Nav Wrapper - Container for menu + auth */
.modern-nav-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 1;
    gap: 0;
    margin-left: 40px;
}

/* Navigation Links */
.modern-nav {
    display: flex !important;
    align-items: center !important;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.modern-nav>li {
    position: relative;
    display: inline-block !important;
}

.modern-nav>li>a {
    display: inline-block !important;
    padding: 22px 20px;
    color: #444;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.modern-nav>li>a:hover,
.modern-nav>li.active>a {
    color: #f5a422;
    text-decoration: none;
}

/* Dropdown Menu */
.modern-nav li.dropdown .dropdown-menu {
    border: none;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    margin-top: 0;
    min-width: 180px;
}

.modern-nav li.dropdown .dropdown-menu li a {
    padding: 8px 16px;
    font-size: 13px;
    color: #555;
}

.modern-nav li.dropdown .dropdown-menu li a:hover {
    background: rgba(245, 166, 35, 0.1);
    color: #F5A623;
}

/* Auth Buttons */
.modern-nav-auth {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.btn-modern-login {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 8px 16px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.btn-modern-login i {
    font-size: 15px;
}

.btn-modern-login:hover {
    color: #F5A623;
    text-decoration: none;
}

.btn-modern-register {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 10px 22px;
    background: #F5A623;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-modern-register:hover {
    background: #E8971F;
    color: #fff;
    text-decoration: none;
}

/* Mobile Toggle - Hidden on desktop, shown on mobile via media query */

/* ------------------------------------------------
   Search Dropdown
   ------------------------------------------------ */
.topbar-search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 12px;
    width: 280px;
    display: none;
    z-index: 1001;
    margin-top: 8px;
}

.topbar-search-dropdown.active {
    display: block;
}

.topbar-search-dropdown .input-group {
    display: flex;
}

.topbar-search-dropdown .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 13px;
}

.topbar-search-dropdown .btn {
    border-radius: 0 4px 4px 0;
    background: #F5A623;
    border-color: #F5A623;
    color: #fff;
    padding: 8px 12px;
}

.topbar-search-dropdown .btn:hover {
    background: #E8971F;
    border-color: #E8971F;
}

/* ------------------------------------------------
   Override existing site styles
   ------------------------------------------------ */
.header-full,
#header-full-top {
    display: none !important;
}

.navbar-header-full {
    display: none !important;
}

/* Fix main content spacing */
.main-header {
    margin-top: 0;
}

.sb-site-container {
    padding-top: 0 !important;
}

/* ------------------------------------------------
   Dropdown Icon Styling
   ------------------------------------------------ */
.dropdown-icon {
    font-size: 11px !important;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown controlado por JS */
.modern-nav li.dropdown .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.modern-nav li.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Override Bootstrap dropdown styles */
.modern-nav li.dropdown:hover .dropdown-menu {
    display: none;
}

.modern-nav li.dropdown.open:hover .dropdown-menu {
    display: block;
}

/* ------------------------------------------------
   Mobile Toggle Button Animation (Hamburger)
   ------------------------------------------------ */
.modern-navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 44px;
    height: 44px;
    z-index: 1001;
}

.modern-navbar-toggle i {
    transition: all 0.3s ease;
}

.modern-navbar-toggle.active i::before {
    content: "\f00d";
    /* Font Awesome X icon */
}

/* ------------------------------------------------
   Responsive Design - Improved
   ------------------------------------------------ */
@media (max-width: 991px) {

    /* Top Bar Mobile - Layout em linha única */
    .modern-topbar {
        padding: 8px 0;
    }

    .modern-topbar .container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px;
        padding: 5px 15px;
    }

    .topbar-left {
        flex: 0 0 auto;
        justify-content: flex-start;
        gap: 12px;
    }

    .topbar-item {
        padding: 5px;
    }

    .topbar-item span {
        display: none;
    }

    .topbar-item i {
        font-size: 16px;
    }

    .topbar-right {
        flex: 0 0 auto;
        gap: 8px;
    }

    .topbar-search {
        order: 1;
    }

    .topbar-search-btn {
        padding: 5px 8px;
    }

    .topbar-social {
        border-left: none;
        padding-left: 0;
        gap: 10px;
        order: 2;
    }

    .topbar-social a {
        font-size: 15px;
    }

    /* Navbar Mobile */
    .modern-navbar>.container {
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        position: relative;
    }

    .modern-navbar-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .modern-nav-wrapper {
        display: none !important;
        width: 100%;
        flex-direction: column !important;
        background: #fff;
        padding: 0;
        border-top: 1px solid #eee;
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .modern-nav-wrapper.active {
        display: flex !important;
    }

    .modern-nav {
        flex-direction: column !important;
        width: 100%;
    }

    .modern-nav>li {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .modern-nav>li:last-child {
        border-bottom: none;
    }

    .modern-nav>li>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        font-size: 15px;
    }

    /* Dropdown Mobile */
    .modern-nav li.dropdown .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .modern-nav li.dropdown.open .dropdown-menu {
        display: block;
    }

    .modern-nav li.dropdown .dropdown-menu li a {
        padding: 12px 20px 12px 40px;
        border-bottom: 1px solid #eee;
        display: block;
    }

    .modern-nav li.dropdown .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    /* Auth Buttons Mobile */
    .modern-nav-auth {
        flex-direction: column !important;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding: 15px 20px;
        gap: 10px;
        background: #f8f9fa;
        border-top: 1px solid #eee;
    }

    .btn-modern-login,
    .btn-modern-register {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .btn-modern-login {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
}

@media (max-width: 576px) {
    .modern-topbar {
        padding: 6px 0;
    }

    .modern-topbar .container {
        padding: 4px 10px;
        gap: 8px;
    }

    .topbar-left {
        gap: 10px;
    }

    .topbar-item {
        padding: 4px;
    }

    .topbar-item i {
        font-size: 15px;
    }

    .topbar-right {
        gap: 6px;
    }

    .topbar-search-btn {
        padding: 4px 6px;
        font-size: 14px;
    }

    .topbar-social {
        gap: 8px;
    }

    .topbar-social a {
        font-size: 14px;
    }

    .modern-navbar-brand img {
        max-height: 38px;
    }

    .modern-nav>li>a {
        padding: 14px 15px;
        font-size: 14px;
    }

    .modern-nav li.dropdown .dropdown-menu li a {
        padding: 12px 15px 12px 35px;
        font-size: 13px;
    }
}

/* ------------------------------------------------
   Smooth Scrolling & Overlay
   ------------------------------------------------ */
body.menu-open {
    overflow: hidden;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* ------------------------------------------------
   Hide Bootstrap Caret
   ------------------------------------------------ */
.modern-nav .dropdown-toggle::after {
    display: none !important;
}

.modern-nav .caret {
    display: none !important;
}

/* ================================================
   MODERN FOOTER - UAMI CARE
   ================================================ */

/* ------------------------------------------------
   Newsletter Section - Seção Amarela
   ------------------------------------------------ */
.modern-newsletter {
    background: #F5A623;
    padding: 50px 0;
    text-align: center;
}

.newsletter-title {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: none;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 14px;
    outline: none;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: #fff;
    border: none;
    padding: 15px 35px;
    color: #F5A623;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 1px solid #eee;
}

.newsletter-btn:hover {
    background: #f8f8f8;
    color: #e8971f;
}

/* ------------------------------------------------
   Main Footer - Rodapé Principal Preto
   ------------------------------------------------ */
.modern-footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* Footer About Column */
.footer-about {
    padding-right: 30px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Footer Titles */
.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #F5A623;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #aaa;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #F5A623;
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.footer-contact li i {
    color: #F5A623;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #F5A623;
}

/* Footer Social Buttons */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Footer Hours */
.footer-hours {
    color: #aaa;
    font-size: 13px;
}

.footer-hours i {
    color: #F5A623;
    margin-right: 8px;
}

/* Copyright Bar */
.footer-copyright {
    background: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-copyright p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

.footer-copyright a {
    color: #F5A623;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #fff;
}

/* ------------------------------------------------
   Footer Responsive
   ------------------------------------------------ */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        display: inline-block;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column {
        text-align: center;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .modern-newsletter {
        padding: 35px 15px;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-input-group {
        flex-direction: column;
        border-radius: 10px;
    }

    .newsletter-input {
        text-align: center;
        padding: 12px 20px;
    }

    .newsletter-btn {
        border-left: none;
        border-top: 1px solid #eee;
        padding: 12px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .modern-footer {
        padding-top: 40px;
    }

    .footer-title {
        font-size: 15px;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* ================================================
   MODERN ADESÃO MODAL STYLES
   ================================================ */

/* Modal Container */
#modalAderirPlano .modal-dialog {
    max-width: 900px;
}

#modalAderirPlano .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

/* Modal Header - Dark gradient like hero section */
#modalAderirPlano .modal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #151c2c 100%);
    border-bottom: 3px solid #F5A623;
    padding: 20px 25px;
    position: relative;
}

#modalAderirPlano .modal-header .modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

#modalAderirPlano .modal-header .modal-title span {
    color: #F5A623;
}

#modalAderirPlano .modal-header .close {
    color: #fff;
    opacity: 0.8;
    font-size: 28px;
    text-shadow: none;
    margin-top: -5px;
    transition: all 0.3s ease;
}

#modalAderirPlano .modal-header .close:hover {
    opacity: 1;
    color: #F5A623;
}

/* Modal Body */
#modalAderirPlano .modal-body {
    padding: 25px 30px;
    background: #fff;
}

/* Wizard Tabs */
#modalAderirPlano #rootwizardIN>ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    gap: 5px;
    border-bottom: none;
}

#modalAderirPlano #rootwizardIN>ul>li {
    flex: 0 0 auto;
}

#modalAderirPlano #rootwizardIN>ul>li>a {
    display: inline-block;
    padding: 10px 25px;
    background: #e9ecef;
    color: #666;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
    border: none;
}

#modalAderirPlano #rootwizardIN>ul>li>a:hover {
    background: #dee2e6;
    color: #1e3a5f;
}

#modalAderirPlano #rootwizardIN>ul>li.active>a,
#modalAderirPlano #rootwizardIN>ul>li>a:focus {
    background: #1e3a5f;
    color: #fff;
}

/* Progress Bar */
#modalAderirPlano .progress {
    height: 8px;
    border-radius: 4px;
    background: #e9ecef;
    margin: 0 0 25px 0;
    overflow: hidden;
}

#modalAderirPlano .progress-bar {
    background: linear-gradient(45deg,
            #F5A623 25%,
            #e8971f 25%,
            #e8971f 50%,
            #F5A623 50%,
            #F5A623 75%,
            #e8971f 75%);
    background-size: 20px 20px;
    animation: progressStripes 1s linear infinite;
    border-radius: 4px;
    transition: width 0.4s ease;
}

@keyframes progressStripes {
    0% {
        background-position: 20px 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* Fieldset Legend */
#modalAderirPlano fieldset legend,
#modalAderirPlano #legParentes {
    font-size: 18px !important;
    font-weight: 700;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 20px !important;
    padding-bottom: 10px;
    border-bottom: 2px solid #F5A623;
}

/* Form Labels */
#modalAderirPlano .form-group label,
#modalAderirPlano .control-label {
    font-weight: 600;
    color: #333;
    font-size: 13px;
    margin-bottom: 6px;
}

/* Form Controls */
#modalAderirPlano .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#modalAderirPlano .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
    background: #fff;
}

#modalAderirPlano .form-control::placeholder {
    color: #999;
    font-size: 13px;
}

#modalAderirPlano select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

/* Pager / Navigation Buttons */
#modalAderirPlano .pager.wizard {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0 0;
    margin: 25px 0 0 0;
    border-top: 1px solid #eee;
    list-style: none;
}

#modalAderirPlano .pager.wizard li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

#modalAderirPlano .pager.wizard li.previous a {
    background: #1e3a5f;
    color: #fff;
}

#modalAderirPlano .pager.wizard li.previous a:hover {
    background: #152a45;
    transform: translateX(-3px);
}

#modalAderirPlano .pager.wizard li.next a {
    background: #F5A623;
    color: #fff;
}

#modalAderirPlano .pager.wizard li.next a:hover {
    background: #e8971f;
    transform: translateX(3px);
}

/* Alert boxes */
#modalAderirPlano .alert-warning {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 1px solid #F5A623;
    border-radius: 8px;
    padding: 15px 20px !important;
}

#modalAderirPlano .alert-warning .checkbox label {
    font-weight: 500;
    color: #333;
}

#modalAderirPlano .alert-warning a {
    color: #F5A623;
    font-weight: 600;
}

/* Tab 3 - Completion step */
#modalAderirPlano #tab3 h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a5f !important;
    margin-bottom: 20px;
}

#modalAderirPlano #reciboInscricao .btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

#modalAderirPlano #btnHomeIns {
    background: #1e3a5f;
    border: none;
    color: #fff;
    margin-left: 10px;
}

#modalAderirPlano #btnHomeIns:hover {
    background: #152a45;
}

/* Validation states */
#modalAderirPlano .form-control.error {
    border-color: #dc3545;
    background: #fff5f5;
}

#modalAderirPlano label.error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    #modalAderirPlano .modal-dialog {
        margin: 10px;
    }

    #modalAderirPlano .modal-body {
        padding: 20px 15px;
    }

    #modalAderirPlano #rootwizardIN>ul {
        flex-wrap: wrap;
    }

    #modalAderirPlano #rootwizardIN>ul>li>a {
        padding: 8px 18px;
        font-size: 12px;
    }

    #modalAderirPlano .pager.wizard li a {
        padding: 10px 20px;
        font-size: 13px;
    }
}