/* ====== SUA PALETA DE CORES ====== */
:root {
    --cor-1: rgb(236 45 77);
    --cor-1-esc: rgb(167 32 55);
    --cor-2: rgb(241 177 57);
    --cor-2-cla: rgb(255 255 255);
    --cor-2-cla2: rgb(243 247 250);
}
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: var(--gradient-primary);
        z-index: 9999;
        transition: width 0.1s;
    }

    /* Back to Top */
    .btn-back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: var(--transicao);
        box-shadow: var(--sombra-media);
        z-index: 1000;
    }

    .btn-back-to-top.visible {
        background: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-2) 100%);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .btn-back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--sombra-forte);
    }

/* ====== VARIÁVEIS DO HEADER ====== */
.header-premium {
    --header-bg: var(--cor-2-cla);
    --header-topbar-bg: var(--cor-1-esc);
    --header-nav-bg: var(--cor-1);
    --header-accent: var(--cor-2);
    --header-gradient: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-1-esc) 100%);
    --header-gradient-gold: linear-gradient(135deg, var(--cor-2) 0%, rgb(255, 200, 80) 100%);
    --header-text: #333;
    --header-text-light: var(--cor-2-cla);
    --header-shadow: 0 4px 20px rgba(167, 32, 55, 0.15);
    --header-shadow-strong: 0 8px 30px rgba(167, 32, 55, 0.25);
}

/* ====== ESTRUTURA ====== */
.header-premium {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1050;
    background: var(--header-bg);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
}

.header-premium.scrolled {
    box-shadow: var(--header-shadow-strong);
}

/* ====== TOPBAR ====== */
.header-topbar {
    background: var(--header-topbar-bg);
    color: var(--header-text-light);
    padding: 8px 0;
    font-size: 0.82rem;
    position: relative;
    overflow: hidden;
}

.header-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(241, 177, 57, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(241, 177, 57, 0.1) 100%);
    pointer-events: none;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.info-item:hover {
    color: var(--cor-2);
}

.info-item i {
    color: var(--cor-2);
    font-size: 0.8rem;
}

.info-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Acessibilidade */
.accessibility {
    display: flex;
    gap: 4px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-access {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cor-2-cla);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-access:hover {
    background: var(--cor-2);
    color: var(--cor-1-esc);
    transform: translateY(-2px);
}

/* Redes Sociais Topbar */
.topbar-social {
    display: flex;
    gap: 6px;
}

.social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cor-2-cla);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--cor-2);
    color: var(--cor-1-esc);
    transform: translateY(-2px) scale(1.1);
}

/* ====== HEADER PRINCIPAL ====== */
.header-main {
    padding: 18px 0;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(167, 32, 55, 0.08);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ====== LOGO ====== */
.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--header-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-2-cla);
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(236, 45, 77, 0.35);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cor-1-esc);
    letter-spacing: -1px;
    background: var(--header-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-slogan {
    font-size: 0.78rem;
    color: #777;
    font-weight: 500;
    margin-top: 2px;
}

/* ====== BUSCA ====== */
.header-search {
    flex: 1;
    max-width: 420px;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border-radius: 50px;
    border: 2px solid rgba(167, 32, 55, 0.15);
    background: var(--cor-2-cla2);
    font-size: 0.9rem;
    color: var(--header-text);
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--cor-1);
    background: var(--cor-2-cla);
    box-shadow: 0 0 0 4px rgba(236, 45, 77, 0.1);
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-gradient);
    border: none;
    color: var(--cor-2-cla);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(236, 45, 77, 0.4);
}

/* ====== AÇÕES ====== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid rgba(167, 32, 55, 0.15);
    color: var(--cor-1-esc);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--cor-1);
    color: var(--cor-2-cla);
    border-color: var(--cor-1);
    transform: translateY(-2px);
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 50px;
    background: var(--header-gradient);
    color: var(--cor-2-cla);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(236, 45, 77, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--header-gradient-gold);
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-cta:hover::before {
    left: 0;
}

.btn-cta:hover {
    color: var(--cor-1-esc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 177, 57, 0.4);
}

.btn-cta i, .btn-cta span {
    position: relative;
    z-index: 1;
}

/* ====== MENU HAMBÚRGUER ====== */
.hamburger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: transparent;
    border: 2px solid rgba(167, 32, 55, 0.15);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 22px;
    height: 2.5px;
    background: var(--cor-1-esc);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active {
    background: var(--cor-1);
    border-color: var(--cor-1);
}

.hamburger.active .hamburger-line {
    background: var(--cor-2-cla);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ====== BUSCA MOBILE ====== */
.mobile-search {
    max-height: 0;
    overflow: hidden;
    background: var(--cor-2-cla2);
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.mobile-search.active {
    max-height: 100px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(167, 32, 55, 0.08);
}

/* ====== NAVEGAÇÃO ====== */
.header-nav {
    background: var(--header-gradient);
    position: relative;
    overflow: visible;
}

.header-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(241, 177, 57, 0.15) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(241, 177, 57, 0.15) 100%);
    pointer-events: none;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: var(--cor-2-cla);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--cor-2);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cor-2);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 60%;
}

.nav-link i {
    font-size: 0.85rem;
}

.dropdown-arrow {
    font-size: 0.65rem !important;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* ====== DROPDOWN ====== */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--cor-2-cla);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 15px 40px rgba(167, 32, 55, 0.2);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--cor-2);
    z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    margin: 0;
}

.dropdown-menu-custom a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    color: var(--header-text);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu-custom a i {
    color: var(--cor-1);
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.dropdown-menu-custom a:hover {
    background: var(--cor-2-cla2);
    color: var(--cor-1-esc);
    border-left-color: var(--cor-2);
    padding-left: 25px;
}

.dropdown-menu-custom a:hover i {
    color: var(--cor-2);
    transform: scale(1.15);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    
    .btn-cta span {
        display: none;
    }
    
    .btn-cta {
        padding: 11px 14px;
    }
    
    .header-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .header-nav.active {
        max-height: 800px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 14px 20px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::before {
        display: none;
    }
    
    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background: rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.has-dropdown.open .dropdown-menu-custom {
        max-height: 500px;
        padding: 5px 0;
    }
    
    .dropdown-menu-custom a {
        color: var(--cor-2-cla);
        padding-left: 40px;
    }
    
    .dropdown-menu-custom a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--cor-2);
    }
    
    .dropdown-menu-custom a i {
        color: var(--cor-2);
    }
}

@media (max-width: 768px) {
    .header-main {
        padding: 14px 0;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .logo-name {
        font-size: 1.4rem;
    }
    
    .logo-slogan {
        font-size: 0.7rem;
    }
    
    .topbar-actions {
        justify-content: flex-end;
    }
    
    .accessibility {
        padding-right: 10px;
        margin-right: 5px;
    }
}

@media (max-width: 576px) {
    .accessibility {
        display: none;
    }
    
    .topbar-social {
        margin-left: auto;
    }
}

/* ====== ANIMAÇÕES ====== */
.header-premium {
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Efeito de scroll */
.header-premium.scrolled .header-main {
    padding: 12px 0;
}

.header-premium.scrolled .logo-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
}

.header-premium.scrolled .logo-name {
    font-size: 1.5rem;
}


/* ====== VARIÁVEIS DO FOOTER ====== */
.footer-premium {
    --footer-bg: var(--cor-1-esc);
    --footer-bg-deep: rgb(110 20 35);
    --footer-accent: var(--cor-1);
    --footer-accent-hover: var(--cor-2);
    --footer-gradient: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-2) 100%);
    --footer-gradient-soft: linear-gradient(135deg, rgba(236, 45, 77, 0.15) 0%, rgba(241, 177, 57, 0.15) 100%);
    --footer-text: rgba(255, 255, 255, 0.8);
    --footer-text-light: var(--cor-2-cla);
    --footer-border: rgba(255, 255, 255, 0.12);
}

/* ====== ESTRUTURA PRINCIPAL ====== */
.footer-premium {
    position: relative;
    background: var(--footer-bg);
    color: var(--footer-text);
    overflow: hidden;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Efeito de brilho sutil no fundo */
.footer-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(236, 45, 77, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(241, 177, 57, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(236, 45, 77, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-premium > * {
    position: relative;
    z-index: 1;
}

/* ====== ONDA DECORATIVA ====== */
.footer-wave {
    color: var(--footer-bg);
    margin-bottom: -2px;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

/* ====== CONTEÚDO PRINCIPAL ====== */
.footer-main {
    width: 85%;
    margin: 0 auto;
    padding: 60px 0 40px;
    background: transparent;
}

/* ====== LOGO / MARCA ====== */
.footer-brand {
    margin-bottom: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    background: var(--footer-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(241, 177, 57, 0.4));
}

.footer-logo span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--footer-text-light);
    letter-spacing: -0.5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--footer-text);
    margin-bottom: 25px;
    max-width: 380px;
}

/* ====== ÍCONES SOCIAIS ====== */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--footer-border);
    color: var(--footer-text-light);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--footer-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 45, 77, 0.5);
}

.social-icon:hover::before {
    opacity: 1;
}

/* ====== TÍTULOS ====== */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--footer-text-light);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--footer-gradient);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.footer-title:hover::after {
    width: 70px;
}

/* ====== LINKS ====== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a i {
    font-size: 0.6rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--cor-2);
}

.footer-links a:hover {
    color: var(--cor-2);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ====== NEWSLETTER ====== */
.newsletter-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--footer-text);
}

.footer-newsletter .input-group {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--footer-border);
    transition: all 0.3s ease;
}

.footer-newsletter .input-group:focus-within {
    border-color: var(--cor-2);
    box-shadow: 0 0 0 3px rgba(241, 177, 57, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    color: var(--footer-text-light);
    padding: 14px 18px;
    font-size: 0.9rem;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    outline: none;
}

.btn-newsletter {
    background: var(--footer-gradient);
    border: none;
    color: #fff;
    padding: 14px 22px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(241, 177, 57, 0.5);
    filter: brightness(1.1);
}

/* ====== CONTATO ====== */
.footer-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--footer-text);
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--footer-text-light);
}

.contact-item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 45, 77, 0.2);
    color: var(--cor-2);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: var(--footer-gradient);
    color: #fff;
    transform: scale(1.1);
}

/* ====== BARRA INFERIOR ====== */
.footer-bottom {
    background: var(--footer-bg-deep);
    padding: 20px 0;
    border-top: 1px solid var(--footer-border);
}

.copyright-text {
    margin: 0;
    font-size: 0.85rem;
    color: var(--footer-text);
}

.copyright-text strong {
    background: var(--footer-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--footer-gradient);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--cor-2);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ====== BOTÃO VOLTAR AO TOPO ====== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--footer-gradient);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(236, 45, 77, 0.5);
    z-index: 9999;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 35px rgba(241, 177, 57, 0.6);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-wave svg {
        height: 50px;
    }
    
    .footer-logo span {
        font-size: 1.3rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .btn-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

/* ====== ANIMAÇÃO DE ENTRADA ====== */
.footer-premium .col-lg-4,
.footer-premium .col-lg-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-premium .col-lg-4:nth-child(1) { animation-delay: 0.1s; }
.footer-premium .col-lg-2:nth-child(2) { animation-delay: 0.2s; }
.footer-premium .col-lg-2:nth-child(3) { animation-delay: 0.3s; }
.footer-premium .col-lg-4:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


<!-- ============================================== -->
<!-- 🎨 ESTILOS DA PÁGINA DE RECUPERAÇÃO            -->
<!-- ============================================== -->
<style>
/* ====== WRAPPER ÚNICO ====== */
.auth-wrapper-single {
    grid-template-columns: 1fr !important;
    max-width: 550px;
}

/* ====== ÍCONE ESPECÍFICO ====== */
.icon-key {
    background: linear-gradient(135deg, var(--cor-2), rgb(255, 200, 80));
    box-shadow: 0 10px 30px rgba(241, 177, 57, 0.4);
}

.icon-key i {
    color: var(--cor-1-esc);
}

/* ====== STEPPER ====== */
.auth-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.step-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    transition: color 0.3s ease;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    margin: 0 8px;
    margin-bottom: 22px;
    max-width: 60px;
    transition: background 0.4s ease;
}

.step.active .step-circle {
    background: linear-gradient(135deg, var(--cor-1), var(--cor-1-esc));
    color: var(--cor-2-cla);
    box-shadow: 0 4px 15px rgba(236, 45, 77, 0.35);
    transform: scale(1.1);
}

.step.active .step-label {
    color: var(--cor-1-esc);
    font-weight: 700;
}

.step.completed .step-circle {
    background: linear-gradient(135deg, var(--cor-2), rgb(255, 200, 80));
    color: var(--cor-1-esc);
}

.step.completed .step-circle::before {
    content: '✓';
}

.step.completed .step-circle span {
    display: none;
}

.step-line.active {
    background: linear-gradient(90deg, var(--cor-2), var(--cor-1));
}

/* ====== CONTEÚDO DAS ETAPAS ====== */
.step-content {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ====== INFO BOX ====== */
.info-box {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(241, 177, 57, 0.1), rgba(236, 45, 77, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--cor-2);
    margin: 5px 0 15px;
}

.info-box i {
    color: var(--cor-2);
    font-size: 1.2rem;
    margin-top: 2px;
}

.info-box strong {
    color: var(--cor-1-esc);
    display: block;
    margin-bottom: 3px;
    font-size: 0.88rem;
}

.info-box p {
    margin: 0;
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
}

/* ====== OTP INPUTS ====== */
.code-info {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--cor-2-cla2);
    border-radius: 14px;
}

.code-info i {
    font-size: 2rem;
    color: var(--cor-1);
    margin-bottom: 10px;
}

.code-info p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}

.code-info strong {
    color: var(--cor-1-esc);
}

.otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.otp-input {
    width: 50px;
    height: 58px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: var(--cor-2-cla2);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-1-esc);
    outline: none;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: var(--cor-1);
    background: var(--cor-2-cla);
    box-shadow: 0 0 0 4px rgba(236, 45, 77, 0.1);
    transform: scale(1.05);
}

.otp-input.filled {
    border-color: var(--cor-2);
    background: linear-gradient(135deg, rgba(241, 177, 57, 0.1), rgba(236, 45, 77, 0.05));
}

.resend-text {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.resend-timer {
    color: var(--cor-1);
    font-weight: 600;
    margin-left: 5px;
}

/* ====== BOTÃO VOLTAR ====== */
.btn-back-step {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-back-step:hover {
    border-color: var(--cor-1);
    color: var(--cor-1);
    background: rgba(236, 45, 77, 0.05);
}

/* ====== PASSWORD STRENGTH ====== */
.password-strength {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    flex: 1;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    background: #e5e7eb;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.strength-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    min-width: 70px;
    text-align: right;
}

/* ====== PASSWORD RULES ====== */
.password-rules {
    background: var(--cor-2-cla2);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.rules-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cor-1-esc);
    margin: 0 0 10px;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.rules-list li {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.rules-list li i {
    font-size: 0.5rem;
    transition: all 0.3s ease;
}

.rules-list li.valid {
    color: #10b981;
}

.rules-list li.valid i {
    color: #10b981;
    transform: scale(1.3);
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 576px) {
    .otp-input {
        width: 42px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .rules-list {
        grid-template-columns: 1fr;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
/* ====== VARIÁVEIS ====== */
#checklist-section {
    --cor-1: rgb(236, 45, 77);
    --cor-1-esc: rgb(167, 32, 55);
    --cor-2: rgb(241, 177, 57);
    --cor-2-cla: rgb(255, 255, 255);
    --cor-2-cla2: rgb(243, 247, 250);
    --cor-1-hover: rgb(214, 40, 70);
    --cor-2-hover: rgb(219, 160, 50);
    --cor-1-light: rgba(236, 45, 77, 0.08);
    --cor-2-light: rgba(241, 177, 57, 0.15);
    --sombra-suave: 0 4px 15px rgba(236, 45, 77, 0.08);
    --sombra-media: 0 8px 25px rgba(236, 45, 77, 0.12);
    --sombra-forte: 0 12px 35px rgba(236, 45, 77, 0.18);
    --transicao: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-1-esc) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--cor-2) 0%, var(--cor-2-hover) 100%);
    --gradient-success: linear-gradient(135deg, var(--cor-1-esc) 0%, var(--cor-1) 100%);
}

/* ====== BOTÃO IMPRIMIR ====== */
.btn-checklist-print {
    background: var(--gradient-primary);
    color: var(--cor-2-cla) !important;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transicao);
    box-shadow: 0 4px 15px rgba(236, 45, 77, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-checklist-print:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 45, 77, 0.4);
    color: var(--cor-2-cla) !important;
}

/* ====== BARRA DE PROGRESSO ====== */
.progress-wrapper {
    background: white;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: var(--sombra-suave);
    border-left: 4px solid var(--cor-1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.progress-label {
    font-weight: 700;
    color: var(--cor-1-esc);
    font-size: 1rem;
}

.progress-count {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.progress-bar-custom {
    width: 100%;
    height: 10px;
    background: var(--cor-2-cla2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ====== CARDS DO CHECKLIST ====== */
.checklist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: var(--transicao);
    height: 100%;
    border: 1px solid rgba(236, 45, 77, 0.08);
}

.checklist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-forte);
}

/* ====== CABEÇALHOS DOS CARDS ====== */
.checklist-header {
    padding: 20px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.checklist-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.header-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.header-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.header-text h5 {
    color: white !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradientes para cada categoria */
.header-planejamento {
    background: linear-gradient(135deg, var(--cor-1-esc) 0%, var(--cor-1) 100%);
}

.header-gestor {
    background: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-1-hover) 100%);
}

.header-secretaria {
    background: linear-gradient(135deg, var(--cor-2) 0%, var(--cor-2-hover) 100%);
    color: var(--cor-1-esc) !important;
}

.header-secretaria h5 {
    color: var(--cor-1-esc) !important;
}

.header-tecnicos {
    background: linear-gradient(135deg, var(--cor-1-esc) 0%, #8b1e35 100%);
}

.header-equipe {
    background: linear-gradient(135deg, var(--cor-2-hover) 0%, var(--cor-2) 100%);
    color: var(--cor-1-esc) !important;
}

.header-equipe h5 {
    color: var(--cor-1-esc) !important;
}

.header-finalizacao {
    background: linear-gradient(135deg, var(--cor-1) 0%, var(--cor-1-esc) 100%);
}

/* ====== CORPO DO CARD ====== */
.checklist-body {
    padding: 20px 25px;
}

.checklist-note {
    font-size: 0.82rem;
    color: var(--cor-1-esc);
    background: var(--cor-2-light);
    padding: 10px 14px;
    border-radius: 10px;
    border-left: 3px solid var(--cor-2);
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-item {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(236, 45, 77, 0.1);
    transition: var(--transicao);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-item:hover {
    background: var(--cor-1-light);
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

/* ====== CHECKBOX CUSTOMIZADO ====== */
.check-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    user-select: none;
    position: relative;
}

.check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.check-mark {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transicao);
    background: white;
    margin-top: 2px;
}

.check-mark i {
    font-size: 0.75rem;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: var(--transicao);
}

.check-input:checked ~ .check-mark {
    background: var(--gradient-primary);
    border-color: var(--cor-1);
    box-shadow: 0 3px 10px rgba(236, 45, 77, 0.3);
}

.check-input:checked ~ .check-mark i {
    opacity: 1;
    transform: scale(1);
}

.check-text {
    flex: 1;
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.5;
    transition: var(--transicao);
}

.check-input:checked ~ .check-text {
    color: #94a3b8;
    text-decoration: line-through;
}

.checklist-sublist {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.6;
}

.checklist-sublist span {
    display: block;
    padding-left: 5px;
}

/* Item concluído */
.checklist-item.completed {
    opacity: 0.65;
}

.checklist-item.completed .check-text {
    color: #94a3b8;
    text-decoration: line-through;
}

/* ====== ALERTA IMPORTANTE ====== */
.alert-checklist {
    background: linear-gradient(135deg, var(--cor-2-light) 0%, rgba(236, 45, 77, 0.05) 100%);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    gap: 20px;
    border: 2px solid var(--cor-2);
    box-shadow: var(--sombra-suave);
    position: relative;
    overflow: hidden;
}

.alert-checklist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-secondary);
}

.alert-checklist-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-1-esc);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-checklist-content {
    flex: 1;
}

.alert-checklist-content h5 {
    color: var(--cor-1-esc);
    margin-bottom: 10px;
}

.alert-checklist-content p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
    .checklist-header {
        padding: 16px 20px;
    }
    
    .checklist-body {
        padding: 16px 20px;
    }
    
    .header-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .header-text h5 {
        font-size: 0.9rem;
    }
    
    .alert-checklist {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .btn-checklist-print {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}