/*--------------------------------------------------------------
# MAIN.CSS - TIKITO TATTOO - COMPLETO E ORGANIZADO
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# POPUP PROMOCIONAL RIFA - TIKITO TATTOO PREMIUM (COMPACTO)
--------------------------------------------------------------*/
/* Overlay escuro */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000; /* ✅ Camada mais alta - Popup */
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(15px);
}

/* Container principal - REDUZIDO */
.popup-container {
    background: var(--deep-black);
    border: 2px solid var(--primary-gold);
    border-radius: 2px;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.9),
        0 0 100px var(--shadow-gold),
        inset 0 0 100px rgba(201, 169, 97, 0.03);
    max-width: 480px;
    width: 90%;
    position: relative;
    transform: perspective(1000px) rotateY(90deg) scale(0.6);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.popup-overlay.active .popup-container {
    transform: perspective(1000px) rotateY(0) scale(1);
    opacity: 1;
}

/* Cantos decorativos dourados - MENORES */
.popup-container::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid var(--primary-gold);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* Linhas nos cantos - REDUZIDAS */
.popup-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 2px solid var(--primary-gold);
    pointer-events: none;
    z-index: 2;
}

.popup-corner.top-left {
    top: 6px;
    left: 6px;
    border-right: none;
    border-bottom: none;
}

.popup-corner.top-right {
    top: 6px;
    right: 6px;
    border-left: none;
    border-bottom: none;
}

.popup-corner.bottom-left {
    bottom: 6px;
    left: 6px;
    border-right: none;
    border-top: none;
}

.popup-corner.bottom-right {
    bottom: 6px;
    right: 6px;
    border-left: none;
    border-top: none;
}

/* Botão fechar - MENOR */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--charcoal);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    font-weight: 200;
    line-height: 1;
}

.close-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 25px var(--shadow-gold);
}

/* Conteúdo principal - PADDING REDUZIDO */
.popup-content {
    padding: 45px 35px 40px;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* Ícone central - MENOR */
.popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.popup-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--deep-black);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: -1;
}

.popup-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient-gold);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    opacity: 0.2;
    filter: blur(15px);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes iconGlow {
    from {
        opacity: 0.2;
        transform: scale(1);
    }
    to {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Badge superior - MENOR */
.highlight-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--deep-black);
    padding: 6px 20px;
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.highlight-badge::before,
.highlight-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--primary-gold);
}

.highlight-badge::before {
    left: -28px;
}

.highlight-badge::after {
    right: -28px;
}

/* Título - MENOR */
.popup-title {
    font-size: 36px;
    font-weight: 100;
    margin-bottom: 18px;
    color: var(--primary-gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    animation: titleShine 3s ease-in-out infinite;
    font-family: 'Cinzel', 'Georgia', serif;
}

.popup-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

@keyframes titleShine {
    0%, 100% {
        text-shadow: 0 0 20px var(--shadow-gold);
    }
    50% {
        text-shadow: 0 0 40px var(--primary-gold);
    }
}

/* Linha divisória - MENOR */
.popup-divider {
    width: 120px;
    height: 1px;
    background: var(--gradient-gold);
    margin: 18px auto;
    position: relative;
}

.popup-divider::before,
.popup-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.popup-divider::before {
    left: -12px;
}

.popup-divider::after {
    right: -12px;
}

/* Subtítulo - MENOR */
.popup-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
    color: var(--gray-medium);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão de ação - MENOR */
.popup-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 14px 40px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.popup-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-gold);
    transition: all 0.5s ease;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.popup-btn:hover {
    color: var(--deep-black);
    border-color: var(--light-gold);
    box-shadow: 
        0 0 30px var(--shadow-gold),
        0 8px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.05);
}

.popup-btn:hover::before {
    width: 300%;
    height: 500%;
}

.popup-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Partículas - MENORES */
.popup-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-80px) translateX(15px);
        opacity: 0;
    }
}

/* Brilho de fundo */
.popup-container::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(
        circle,
        transparent 40%,
        rgba(201, 169, 97, 0.03) 50%,
        transparent 60%
    );
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .popup-container {
        width: 92%;
        max-width: 92%;
    }
    
    .popup-content {
        padding: 40px 28px 35px;
    }
    
    .popup-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .popup-subtitle {
        font-size: 13px;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .popup-btn {
        padding: 12px 32px;
        font-size: 10px;
    }
    
    .highlight-badge {
        font-size: 8px;
        padding: 5px 16px;
    }
}
/* Destaque do nome do usuário */
.popup-title span {
    display: inline-block;
    animation: nameGlow 2s ease-in-out infinite alternate;
}

@keyframes nameGlow {
    from {
        color: var(--primary-gold);
        text-shadow: 0 0 20px var(--shadow-gold);
    }
    to {
        color: var(--light-gold);
        text-shadow: 0 0 40px var(--primary-gold);
    }
}

/*--------------------------------------------------------------
# Bloco 1 - VARIÁVEIS GLOBAIS
--------------------------------------------------------------*/
:root {
    --primary-gold: #c9a961;
    --dark-gold: #b39654;
    --light-gold: #dbb76e;
    --deep-black: #0A0A0A;
    --charcoal: #1C1C1C;
    --soft-white: #F8F8F8;
    --pure-white: #FFFFFF;
    --gray-medium: #999999;
    --border-gold: rgba(201, 169, 97, 0.2);
    --muted-gold: rgba(201, 169, 97, 0.1);
    --shadow-gold: rgba(201, 169, 97, 0.3);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 50%, var(--primary-gold) 100%);
    --gradient-dark: linear-gradient(135deg, var(--deep-black) 0%, var(--charcoal) 100%);
    --gradient-card: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-black) 100%);
}

/*--------------------------------------------------------------
# Bloco 2 - RESET E BODY
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--gradient-dark);
    color: var(--soft-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Bloco 3 - HEADER
--------------------------------------------------------------*/
.header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 400; /* ✅ Camada base - Header */
}

.logo-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.main-logo {
    max-width: 180px;
    height: auto;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    margin: 0;
}

.brand-subtitle {
    font-size: 0.9rem;
    color: var(--soft-white);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
}

.header-decorative {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    margin: 25px 0;
}

/*--------------------------------------------------------------
# Bloco 4 - USER AREA & DROPDOWN DESKTOP (Premium Edition)
--------------------------------------------------------------*/
.user-area {
    position: relative;
    z-index: 1001;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.login-buttons {
    display: flex;
    gap: 10px;
}

/* === USER DROPDOWN === */
.user-dropdown {
    position: relative;
}

/* ✨ BOTÃO PRINCIPAL */
.user-dropdown-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.1));
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 50px;
    color: var(--soft-white);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Efeito de brilho animado no hover */
.user-dropdown-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    transition: left 0.6s ease;
}

.user-dropdown-btn:hover::before {
    left: 100%;
}

.user-dropdown-btn:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(201, 169, 97, 0.15));
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(201, 169, 97, 0.3),
        0 0 20px rgba(201, 169, 97, 0.2);
}

.user-dropdown-btn i:first-child {
    font-size: 1.3rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.5));
}

.user-dropdown-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.user-dropdown.active .user-dropdown-btn i:last-child {
    transform: rotate(180deg);
}

/* ✨ MENU DROPDOWN */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 20px;
    padding: 8px;
    min-width: 280px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(201, 169, 97, 0.15),
        inset 0 1px 0 rgba(201, 169, 97, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 700; /* ✅ Camada de Dropdowns */
    backdrop-filter: blur(20px);
}

/* Setinha do dropdown */
.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 2px solid rgba(201, 169, 97, 0.4);
    border-left: 2px solid rgba(201, 169, 97, 0.4);
    transform: rotate(45deg);
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ✨ HEADER DO MENU (Avatar + Nome) */
.dropdown-header {
    padding: 16px 18px;
    background: rgba(201, 169, 97, 0.08);
    border-radius: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.dropdown-user-info {
    flex: 1;
    min-width: 0;
}

.dropdown-user-name {
    font-weight: 700;
    color: var(--soft-white);
    font-size: 1rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-user-email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ✨ ITENS DO MENU */
.dropdown-item {
    padding: 14px 18px;
    color: var(--soft-white);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    margin: 2px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de slide no hover */
.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-gold), var(--light-gold));
    transform: translateX(-4px);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: translateX(0);
}

.dropdown-item:hover {
    background: rgba(201, 169, 97, 0.12);
    color: var(--primary-gold);
    padding-left: 24px;
    box-shadow: inset 0 0 20px rgba(201, 169, 97, 0.1);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.dropdown-item:hover i {
    transform: scale(1.2);
}

/* ✨ ITEM DE LOGOUT (especial) */
.dropdown-item.text-danger {
    color: #ff6b6b;
}

.dropdown-item.text-danger i {
    color: #ff6b6b;
}

.dropdown-item.text-danger::before {
    background: linear-gradient(180deg, #ff6b6b, #ff5252);
}

.dropdown-item.text-danger:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff5252;
}

/* ✨ DIVIDER */
.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    margin: 8px 12px;
}

/* ✨ ANIMAÇÃO DE ENTRADA */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown.active .dropdown-item {
    animation: dropdownFadeIn 0.3s ease forwards;
}

.user-dropdown.active .dropdown-item:nth-child(1) { animation-delay: 0.05s; }
.user-dropdown.active .dropdown-item:nth-child(2) { animation-delay: 0.1s; }
.user-dropdown.active .dropdown-item:nth-child(3) { animation-delay: 0.15s; }
.user-dropdown.active .dropdown-item:nth-child(4) { animation-delay: 0.2s; }
.user-dropdown.active .dropdown-item:nth-child(5) { animation-delay: 0.25s; }

/*--------------------------------------------------------------
# Bloco 5 - BOTÕES GERAIS
--------------------------------------------------------------*/
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border: none;
    color: var(--pure-white);
    box-shadow: 0 4px 12px var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
    color: var(--pure-white);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
}

/*--------------------------------------------------------------
# Bloco 6 - SCROLL INDICATOR (POSIÇÃO CORRIGIDA)
--------------------------------------------------------------*/
.scroll-indicator {
    position: relative;
    margin: 40px auto 20px;
    text-align: center;
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
    display: block;
    width: fit-content;
}

.scroll-indicator i {
    font-size: 2.5rem;
    color: #c9a961;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/*--------------------------------------------------------------
# Bloco 7 - CURSOS SOLO (Layout Original + Cores Premium)
--------------------------------------------------------------*/
.cursos-solo-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    padding: 20px 0;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 769px) {
    .curso-card-solo {
        opacity: 0;
        transform: translateX(-100px);
        animation: slideInFromLeft 0.8s ease forwards;
    }
    
    .curso-card-solo:nth-child(1) { animation-delay: 0.1s; }
    .curso-card-solo:nth-child(2) { animation-delay: 0.2s; }
    .curso-card-solo:nth-child(3) { animation-delay: 0.3s; }
}

@media (max-width: 768px) {
    .curso-card-solo {
        opacity: 0;
        transform: translateY(120px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }
    
    .curso-card-solo.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

.curso-layout-solo {
    display: flex;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
    border-radius: 15px;
    max-height: 220px;
    position: relative;
    border: 2px solid rgba(201, 169, 97, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.curso-layout-solo:hover {
    border: 2px solid rgba(201, 169, 97, 0.7);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(201, 169, 97, 0.4);
    transform: translateY(-5px);
}

.curso-layout-solo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.3), rgba(201, 169, 97, 0.15), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 10;
}

.curso-layout-solo:hover::before {
    left: 100%;
}

.curso-imagem-box-solo {
    flex: 0 0 40%;
    width: 40%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    position: relative;
}

.curso-imagem-solo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.curso-layout-solo:hover .curso-imagem-solo {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

/* Overlay com gradiente na imagem */
.curso-imagem-box-solo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 100%
    );
    pointer-events: none;
}

.curso-info-box-solo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.98));
    border-radius: 0 15px 15px 0;
}

.curso-titulo-solo {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.curso-descricao-solo {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.curso-footer-solo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.selo-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 2px 8px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: pulse 2s infinite ease-in-out;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.selo-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: seloShine 3s infinite;
}

@keyframes seloShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.btn-comecar-solo {
    padding: 8px 16px;
    background: linear-gradient(135deg, #c9a961, #dbb76e);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.btn-comecar-solo:hover {
    background: linear-gradient(135deg, #dbb76e, #f4d47e);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.6);
    color: #000;
    transform: translateY(-2px);
}

/* Efeito de brilho no botão */
.btn-comecar-solo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-comecar-solo:hover::before {
    width: 300px;
    height: 300px;
}

/*--------------------------------------------------------------
# Bloco 8 - VER MAIS CURSOS
--------------------------------------------------------------*/
.ver-todos-cursos-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 2px 20px -15px 0;
}

.texto-mais-cursos {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 12px;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    box-shadow: 0 2px 8px var(--shadow-gold);
    cursor: pointer;
    text-decoration: none;
}

.btn-ver-todos-cursos {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.btn-ver-todos-cursos i {
    font-size: 1rem;
    color: var(--primary-gold);
    animation: bounceArrow 2.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/*--------------------------------------------------------------
# Bloco 9 - MENU DE NAVEGAÇÃO
--------------------------------------------------------------*/

.menu-sections {
    margin: 40px 0 0 0; /* Remove margem inferior */
    background: var(--gradient-card);
    padding: 25px 25px 20px 25px;
    border-radius: 15px 15px 0 0; /* Arredonda apenas topo */
    border: 2px solid var(--primary-gold);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3); /* Borda sutil */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Linha decorativa conectando menu e conteúdo */
.menu-sections::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.menu-items-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-items-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 769px) {
    .menu-items-container {
        cursor: grab;
        user-select: none;
    }
    
    .menu-items-container:active {
        cursor: grabbing;
    }
}

@media (max-width: 768px) {
    .menu-items-container {
        -webkit-overflow-scrolling: touch;
    }
}

.menu-item {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    background: transparent;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: left 0.5s ease;
    opacity: 0.1;
}

.menu-item:hover::before,
.menu-item.active::before {
    left: 100%;
}

.menu-item:hover,
.menu-item.active {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    background: var(--muted-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

/* Bloco 10 - SEÇÕES DE CONTEÚDO (UNIFICADO) */
.content-section {
    display: none;
    background: var(--gradient-card);
    padding: 30px 25px 25px 25px;
    border: 2px solid var(--primary-gold);
    border-top: none; /* Remove borda superior */
    border-radius: 0 0 15px 15px; /* Arredonda apenas parte inferior */
    min-height: 400px;
    position: relative;
    margin-bottom: 40px; /* Espaço antes do footer */
}

.content-section.active {
    display: block;
    animation: fadeInContent 0.4s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    color: var(--soft-white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.section-title i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.menu-items-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-items-container::-webkit-scrollbar {
    display: none;
}

@media (min-width: 769px) {
    .menu-items-container {
        cursor: grab;
        user-select: none;
    }
    
    .menu-items-container:active {
        cursor: grabbing;
    }
}

@media (max-width: 768px) {
    .menu-items-container {
        -webkit-overflow-scrolling: touch;
    }
}

.menu-item {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--soft-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    background: transparent;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: left 0.5s ease;
    opacity: 0.1;
}

.menu-item:hover::before,
.menu-item.active::before {
    left: 100%;
}

.menu-item:hover,
.menu-item.active {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    background: var(--muted-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

/*--------------------------------------------------------------
# Bloco 10 - SEÇÕES DE CONTEÚDO
--------------------------------------------------------------*/


.content-section.active {
    display: block;
}

.section-title {
    color: var(--soft-white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: left;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.section-title i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Bloco 11 - FILTROS
--------------------------------------------------------------*/
.filter-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--gradient-card);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gold);
}

.layout-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.layout-label {
    color: var(--soft-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.layout-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ✅ Botões com texto + ícone */
.layout-btn {
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    white-space: nowrap;
    font-weight: 600;
}

.layout-btn i {
    font-size: 1rem;
}

.layout-btn span {
    font-size: 0.85rem;
    font-weight: 600;
}

.layout-btn:hover,
.layout-btn.active {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.filter-search {
    position: relative;
}

.search-filter-btn {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filter-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.filter-dropdown.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.filter-tab {
    padding: 12px 16px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateX(5px);
}

/* ✅ RESPONSIVO MOBILE - Tudo na mesma linha */
@media (max-width: 768px) {
    .filter-container {
        padding: 12px;
    }
    
    .layout-controls {
        gap: 8px;
    }
    
    /* ✅ Esconde o label no mobile */
    .layout-label {
        display: none;
    }
    
    .layout-buttons {
        gap: 4px;
        flex: 1;
    }
    
    /* ✅ Botões compactos */
    .layout-btn {
        padding: 6px 8px;
        gap: 3px;
        font-size: 0.7rem;
        min-width: 0;
    }
    
    .layout-btn span {
        font-size: 0.65rem;
    }
    
    .layout-btn i {
        font-size: 0.8rem;
    }
    
    /* ✅ Lupa menor */
    .search-filter-btn {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .search-filter-btn i {
        font-size: 0.9rem;
    }
}

.footer-contato strong {
    display: block;
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-contato span,
.footer-contato a {
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contato a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    margin-top: 50px;
    padding: 25px 0;
}

.footer-copyright,
.footer-dev {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.footer-copyright strong,
.footer-dev strong {
    color: var(--primary-gold);
}

.footer-dev a {
    color: var(--gray-medium);
    transition: color 0.3s ease;
}

.footer-dev a:hover {
    color: var(--primary-gold);
}

/*--------------------------------------------------------------
# Bloco 20 - MOBILE NAV FIXO
--------------------------------------------------------------*/
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0A0A0A;
    border-top: 2px solid var(--primary-gold);
    padding: 12px 0;
    z-index: 750; 
    display: none;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.8);
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    min-height: calc(70px + env(safe-area-inset-bottom));
}

/* ✅ Adiciona suporte ao viewport seguro no HTML */
@supports (padding: max(0px)) {
    .mobile-nav {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
}

.mobile-nav-item {
    text-align: center;
    color: var(--soft-white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 4px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    background: none;
    border: none;
    width: 100%;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-gold);
    background: var(--muted-gold);
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.mobile-nav-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Bloco 21 - MOBILE USER DROPDOWN
--------------------------------------------------------------*/
.mobile-user-dropdown {
    position: relative;
    width: 100%;
}

.mobile-user-btn {
    cursor: pointer;
}

.mobile-user-menu {
    position: fixed;
    bottom: 70px;
    right: 10px;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 750; /* ✅ Acima do chatbot (4001), abaixo do popup (5000) */
}

.mobile-user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-user-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 12px;
    margin-bottom: 8px;
}

.mobile-user-header i {
    font-size: 1.5rem;
    color: #c9a961;
}

.mobile-user-header span {
    color: #F9FAFB;
    font-weight: 600;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    color: #E5E7EB;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-user-link:hover {
    background: rgba(201, 169, 97, 0.2);
    color: #c9a961;
}

.mobile-user-link i {
    width: 20px;
    text-align: center;
    color: #c9a961;
}

.mobile-user-link.text-danger {
    color: #EF4444 !important;
}

.mobile-user-link.text-danger i {
    color: #EF4444 !important;
}

.mobile-user-divider {
    height: 1px;
    background: rgba(201, 169, 97, 0.2);
    margin: 8px 0;
}


/*--------------------------------------------------------------
# Bloco 23 - RESPONSIVO MOBILE
--------------------------------------------------------------*/
@media (max-width: 768px) {
    /* ✅ CORREÇÃO IPHONE - Ajusta padding do body */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }

    .mobile-nav {
        display: block;
    }

    /* HEADER MOBILE */
    .header {
        padding: 50px 0 40px 0;
        min-height: auto;
    }

    .header .row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .logo-container {
        text-align: center;
        margin-bottom: 15px;
    }

    .main-logo {
        max-width: 200px;
        height: auto;
    }

    .brand-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 10px;
        letter-spacing: 2px;
    }

    .brand-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2.5px;
        opacity: 0.85;
    }

    .header-decorative {
        margin: 25px 0;
        height: 2px;
    }

    .user-area {
        display: none !important;
    }

    /* SCROLL INDICATOR */
    .scroll-indicator {
        margin: 35px auto 20px;
    }

    .scroll-indicator i {
        font-size: 2.5rem;
    }

    /* CURSOS */
    .cursos-solo-section {
        padding: 20px 0;
        margin-bottom: 45px;
    }

    .curso-layout-solo {
        max-height: 200px;
        margin-bottom: 30px;
    }

    .curso-imagem-box-solo {
        height: 200px;
    }

    .curso-titulo-solo {
        font-size: 1.1rem;
    }

    .curso-descricao-solo {
        font-size: 0.75rem;
    }

    .curso-info-box-solo {
        padding: 15px 20px;
    }

    .btn-comecar-solo {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* MENU MOBILE */
    .menu-item {
        font-size: 0.7rem;
        padding: 10px 8px;
        min-width: 110px;
    }

    /* GRID TATUAGENS MOBILE */
    .tatuagens-grid-index.columns-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tatuagens-grid-index.columns-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .play-overlay-index {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* PERFIL MOBILE */
    .perfil-fotos-grid {
        grid-template-columns: 1fr;
    }

    .perfil-video-item {
        flex: 0 0 200px;
    }

    /* SIDEBAR MOBILE */
    .info-sidebar {
        margin-top: 30px;
        padding: 20px;
    }

    /* FOOTER MOBILE */
    .footer-profissional {
        padding: 40px 0 0;
    }

    .footer-social {
        justify-content: center;
    }

    /* MOBILE NAV - ✅ Ajustes com safe-area para iPhone */
    .mobile-nav {
        padding: 10px 0;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .mobile-nav-item {
        min-height: 50px;
        padding: 6px 4px;
    }

    .mobile-nav-item i {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .mobile-nav-item span {
        font-size: 0.7rem;
    }

    /* AVALIAÇÕES MOBILE */
    .avaliacao-item-header {
        flex-wrap: wrap;
    }
    
    .avaliacao-nota-actions-wrapper {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    
    .btn-excluir-avaliacao {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .btn-excluir-avaliacao span {
        display: none;
    }
}

/*--------------------------------------------------------------
# Bloco 23 - EMPTY STATE
--------------------------------------------------------------*/
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-medium);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
    color: var(--primary-gold);
}

.empty-state h4 {
    margin-bottom: 10px;
    color: var(--soft-white);
    font-weight: 600;
    font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Bloco 24 - ANIMAÇÕES GLOBAIS
--------------------------------------------------------------*/
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# FIM DO CSS
--------------------------------------------------------------*/
}

.layout-btn:hover,
.layout-btn.active {
    background: var(--primary-gold);
    color: var(--deep-black);
}

.filter-search {
    position: relative;
}

.search-filter-btn {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-filter-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.filter-dropdown.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.filter-tab {
    padding: 12px 16px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Bloco 12 - GRID DE TATUAGENS
--------------------------------------------------------------*/
.tatuagens-grid-index {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    transition: all 0.5s ease;
}

.tatuagens-grid-index.columns-1 { grid-template-columns: 1fr; }
.tatuagens-grid-index.columns-2 { grid-template-columns: repeat(2, 1fr); }
.tatuagens-grid-index.columns-3 { grid-template-columns: repeat(3, 1fr); }
.tatuagens-grid-index.columns-4 { grid-template-columns: repeat(4, 1fr); }

.tattoo-card-index {
    background: var(--gradient-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gold);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tattoo-card-index.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tattoo-card-index:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-5px) scale(1.02);
}

.category-badge-index {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.85);
    color: var(--primary-gold);
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    text-transform: uppercase;
}

.tattoo-thumbnail-index {
    width: 100%;
    aspect-ratio: 9 / 16;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

.tattoo-thumbnail-index img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay-index {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 22px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.tattoo-card-index:hover .play-overlay-index {
    background: rgba(201, 169, 97, 0.95);
    color: var(--deep-black);
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Bloco 13 - MODAL VISUALIZAR (TATUAGENS E MÍDIAS)
--------------------------------------------------------------*/
.modal-visualizar-tatuagem {
    background: rgba(0, 0, 0, 0.95);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
}

.modal-visualizar-tatuagem .modal-body {
    padding: 0;
    background: #000;
    border-radius: 15px;
}

.btn-close-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: rotate(90deg) scale(1.1);
}

/* Container limpo para vídeos e imagens */
.modal-midia-perfil-clean {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.modal-video-perfil-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-imagem-perfil-full {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 80vh;
}

/*--------------------------------------------------------------
# Bloco 14 - SEÇÃO REGRAS
--------------------------------------------------------------*/
.regras-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.regra-secao {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 30px;
}

.regra-secao h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.regras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regras-list li {
    color: var(--soft-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gold);
    line-height: 1.6;
}

.regras-list li:last-child {
    border-bottom: none;
}

.regras-list strong {
    color: var(--primary-gold);
}

/*--------------------------------------------------------------
# Bloco 14 (CONTINUAÇÃO) - AVISO IMPORTANTE
--------------------------------------------------------------*/
.regra-secao.importante {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(201, 169, 97, 0.1) 100%);
    border: 2px solid #ff4444;
    position: relative;
    overflow: hidden;
}

.regra-secao.importante::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff4444, #ff6666);
}

.regra-secao.importante h3 {
    color: #ff4444;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.regra-secao.importante h3 i {
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
    0%, 100% {
        transform: scale(1);
        color: #ff4444;
    }
    50% {
        transform: scale(1.1);
        color: #ff6666;
    }
}

.aviso-importante {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #ff4444;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.aviso-importante p {
    color: var(--soft-white);
    line-height: 1.8;
    margin-bottom: 15px;
}

.aviso-importante p:last-child {
    margin-bottom: 0;
}

.aviso-importante strong {
    color: #ff6666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Bloco 15 - SEÇÃO CUIDADOS
--------------------------------------------------------------*/
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-price {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Bloco 16 - SEÇÃO AVALIAÇÕES
--------------------------------------------------------------*/
.avaliacoes-stats-box {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.media-geral-numero {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.rating-stars-box {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 10px 0;
}

.total-avaliacoes-text {
    color: var(--soft-white);
    font-size: 1rem;
    opacity: 0.8;
}

.form-avaliacao-container {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.form-avaliacao-container h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.rating-input-group {
    margin-bottom: 25px;
}

.rating-input-group label {
    display: block;
    color: var(--soft-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.stars-input-wrapper {
    display: flex;
    gap: 10px;
    font-size: 2.5rem;
}

.stars-input-wrapper i {
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-medium);
}

.stars-input-wrapper i:hover,
.stars-input-wrapper i.active {
    color: var(--primary-gold);
    transform: scale(1.15);
}

.form-group-avaliacao {
    margin-bottom: 20px;
}

.form-group-avaliacao label {
    display: block;
    color: var(--soft-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group-avaliacao textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    color: var(--soft-white);
    font-family: 'Inter', sans-serif;
    resize: vertical;
}

.form-group-avaliacao textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.char-counter {
    display: block;
    text-align: right;
    color: var(--gray-medium);
    font-size: 0.85rem;
    margin-top: 5px;
}

.login-required-box {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.login-required-box i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.avaliacoes-lista-container h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.avaliacoes-grid {
    display: grid;
    gap: 20px;
}

.avaliacao-item-card {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.avaliacao-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.avaliacao-item-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    position: relative;
}

.usuario-avatar-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-black);
    flex-shrink: 0;
}

.usuario-detalhes {
    flex: 1;
}

.usuario-detalhes h6 {
    color: var(--primary-gold);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.usuario-detalhes small {
    color: var(--gray-medium);
    font-size: 0.85rem;
    display: block;
}

.avaliacao-nota-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
}

.avaliacao-item-nota {
    color: var(--primary-gold);
    font-size: 1.2rem;
    display: flex;
    gap: 3px;
}

.avaliacao-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-excluir-avaliacao {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}

.btn-excluir-avaliacao:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: #ff4444;
    color: #ff6666;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.btn-excluir-avaliacao i {
    pointer-events: none;
    font-size: 0.85rem;
}

.avaliacao-item-texto {
    color: var(--soft-white);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .avaliacao-item-header {
        flex-wrap: wrap;
    }
    
    .avaliacao-nota-actions-wrapper {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    
    .btn-excluir-avaliacao {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .btn-excluir-avaliacao span {
        display: none;
    }
}

/*--------------------------------------------------------------
# Bloco 17 - SEÇÃO APRESENTAÇÃO/PERFIL
--------------------------------------------------------------*/
.apresentacao-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.apresentacao-text h3 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.apresentacao-text h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.apresentacao-text p {
    color: var(--soft-white);
    line-height: 1.8;
    margin-bottom: 20px;
}

.perfil-secao {
    margin-bottom: 3rem;
}

.perfil-subtitulo {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perfil-fotos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.perfil-foto-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--deep-black);
    transition: transform 0.3s ease;
    border: 2px solid var(--border-gold);
}

.perfil-foto-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.perfil-foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.perfil-foto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.perfil-foto-item:hover .perfil-foto-overlay {
    opacity: 1;
}

.perfil-foto-overlay i {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.perfil-videos-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) var(--charcoal);
}

.perfil-videos-grid::-webkit-scrollbar {
    height: 8px;
}

.perfil-videos-grid::-webkit-scrollbar-track {
    background: var(--charcoal);
    border-radius: 4px;
}

.perfil-videos-grid::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.perfil-videos-grid:active {
    cursor: grabbing;
}

.perfil-video-item {
    flex: 0 0 280px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid var(--border-gold);
}

.perfil-video-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
}

.perfil-video-thumbnail {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--deep-black);
}

.perfil-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.perfil-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.perfil-video-item:hover .perfil-video-play {
    background: rgba(0, 0, 0, 0.6);
}

.perfil-video-play i {
    font-size: 3rem;
    color: var(--primary-gold);
}

/*--------------------------------------------------------------
# Bloco 18 - SIDEBAR
--------------------------------------------------------------*/
.info-sidebar {
    background: var(--gradient-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

.info-title {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gold);
    color: var(--soft-white);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 20px;
}

.info-item strong {
    color: var(--primary-gold);
}

.contact-link {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-gold);
}

/*--------------------------------------------------------------
# Bloco 19 - FOOTER
--------------------------------------------------------------*/
.footer-profissional {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-top: 3px solid var(--primary-gold);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 80px;
    height: 80px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin: 0;
}

.footer-text {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--deep-black);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

.footer-title {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-links i {
    width: 20px;
    color: var(--primary-gold);
}

.footer-horarios {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-horarios li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.horario-dia {
    color: var(--soft-white);
    font-weight: 500;
}

.horario-hora {
    color: var(--primary-gold);
    font-weight: 600;
}

.footer-payment {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    color: var(--soft-white);
    font-weight: 600;
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: var(--light-gold);
    transform: translateY(-3px);
}

.footer-contato {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contato li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contato li:last-child {
    border-bottom: none;
}

.footer-contato i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    min-width: 25px;
    margin-top: 3px;
}

.footer-contato strong {
    color: var(--soft-white);
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-contato span,
.footer-contato a {
    color: var(--gray-medium);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contato a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-dev {
    margin: 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.footer-dev strong {
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.footer-dev a:hover strong {
    color: var(--light-gold);
}

@media (max-width: 768px) {
    .footer-profissional {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
    }
    
    .footer-brand {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        text-align: center !important;
    }
    
    .footer-copyright,
    .footer-dev {
        text-align: center !important;
        margin-bottom: 10px;
    }
}
/*--------------------------------------------------------------
# SCROLLBAR DOURADA GLOBAL - ADICIONE NO FINAL DO MAIN.CSS
# Essa versão sobrescreve o variables.css
--------------------------------------------------------------*/

/* ✅ SCROLLBAR PRINCIPAL (Vertical - Página Inteira) */
::-webkit-scrollbar {
    width: 12px !important;
}

::-webkit-scrollbar-track {
    background: #0a0a0a !important; /* Fundo escuro */
    border-radius: 10px !important;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c9a961, #dbb76e) !important; /* Gradiente dourado */
    border-radius: 10px !important;
    border: 2px solid #0a0a0a !important;
    transition: all 0.3s ease !important;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #dbb76e, #f4d47e) !important; /* Dourado mais claro no hover */
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.5) !important;
    transform: scale(1.05) !important;
}

::-webkit-scrollbar-thumb:active {
    background: #b39654 !important; /* Dourado escuro ao clicar */
}

/* ✅ FIREFOX */
html {
    scrollbar-width: thin !important;
    scrollbar-color: #c9a961 #0a0a0a !important; /* thumb / track */
}

body {
    scrollbar-width: thin !important;
    scrollbar-color: #c9a961 #0a0a0a !important;
}

/* ✅ MOBILE - Scrollbar mais fina */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px !important;
    }
    
    ::-webkit-scrollbar-track {
        background: transparent !important;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(201, 169, 97, 0.8) !important;
        border-radius: 3px !important;
        border: none !important;
    }
    
    ::-webkit-scrollbar-thumb:active {
        background: #c9a961 !important;
    }
}

/*--------------------------------------------------------------
# SCROLLBAR ESPECÍFICA - Grid de Vídeos (já existe no seu CSS)
--------------------------------------------------------------*/
.perfil-videos-grid::-webkit-scrollbar {
    height: 8px !important;
}

.perfil-videos-grid::-webkit-scrollbar-track {
    background: #1c1c1c !important;
    border-radius: 4px !important;
}

.perfil-videos-grid::-webkit-scrollbar-thumb {
    background: #c9a961 !important;
    border-radius: 4px !important;
}

.perfil-videos-grid::-webkit-scrollbar-thumb:hover {
    background: #dbb76e !important;
}

/*--------------------------------------------------------------
# SCROLLBAR - Outros elementos com scroll
--------------------------------------------------------------*/

/* Menu de navegação horizontal */
.menu-items-container::-webkit-scrollbar {
    height: 6px !important;
}

.menu-items-container::-webkit-scrollbar-track {
    background: transparent !important;
}

.menu-items-container::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.5) !important;
    border-radius: 3px !important;
}

.menu-items-container::-webkit-scrollbar-thumb:hover {
    background: #c9a961 !important;
}

/* Dropdowns e modais */
.dropdown-menu::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
    width: 6px !important;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
    background: #c9a961 !important;
    border-radius: 3px !important;
}
/*--------------------------------------------------------------
# SIDEBAR - CARD AÇÕES/RIFAS (PREMIUM)
--------------------------------------------------------------*/
.card-acoes-rifas {
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.15) 0%, 
        rgba(75, 0, 130, 0.15) 100%);
    border: 2px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(138, 43, 226, 0.2),
        0 0 40px rgba(138, 43, 226, 0.1) inset;
}

.card-acoes-rifas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1), transparent 70%);
    animation: pulseGlow 4s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.card-acoes-rifas:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.7);
    box-shadow: 
        0 15px 40px rgba(138, 43, 226, 0.4),
        0 0 60px rgba(138, 43, 226, 0.2) inset;
}

.acoes-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.acoes-header i {
    font-size: 1.8rem;
    color: #9370DB;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.6));
}

.acoes-header h4 {
    color: #E0B0FF;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.acoes-descricao {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.btn-acoes-participar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #8A2BE2, #9370DB);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    position: relative;
    z-index: 1;
}

.btn-acoes-participar:hover {
    background: linear-gradient(135deg, #9370DB, #BA55D3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
    color: #fff;
}

.acoes-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF1493, #FF69B4);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 20, 147, 0.5);
    animation: badgePulse 2s infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/*--------------------------------------------------------------
# SIDEBAR - CARD AÇÕES/RIFAS (PREMIUM DOURADO)
--------------------------------------------------------------*/
.card-acoes-rifas {
    background: linear-gradient(135deg, 
        rgba(201, 169, 97, 0.15) 0%, 
        rgba(179, 150, 84, 0.15) 100%);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(201, 169, 97, 0.2),
        0 0 40px rgba(201, 169, 97, 0.1) inset;
}

.card-acoes-rifas::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1), transparent 70%);
    animation: pulseGlow 4s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.card-acoes-rifas:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.7);
    box-shadow: 
        0 15px 40px rgba(201, 169, 97, 0.4),
        0 0 60px rgba(201, 169, 97, 0.2) inset;
}

.acoes-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.acoes-header i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 10px rgba(201, 169, 97, 0.6));
}

.acoes-header h4 {
    color: var(--light-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.5);
}

.acoes-descricao {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.btn-acoes-participar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    position: relative;
    z-index: 1;
}

.btn-acoes-participar:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
    color: #000;
}

.acoes-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c9a961, #dbb76e);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.5);
    animation: badgePulse 2s infinite;
    z-index: 2;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/*--------------------------------------------------------------
# SIDEBAR - CARD LOCALIZAÇÃO VISUAL (PREMIUM)
--------------------------------------------------------------*/
.card-localizacao-visual {
    background: var(--gradient-card);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card-localizacao-visual:hover {
    transform: translateY(-5px);
    border-color: var(--light-gold);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.localizacao-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.localizacao-header i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 8px rgba(201, 169, 97, 0.5));
}

.localizacao-header h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.localizacao-imagem-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
}

.localizacao-imagem-wrapper:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.localizacao-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.localizacao-imagem-wrapper:hover .localizacao-img {
    transform: scale(1.05);
}

.localizacao-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.localizacao-imagem-wrapper:hover .localizacao-overlay {
    opacity: 1;
}

.localizacao-overlay i {
    font-size: 3rem;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 15px rgba(201, 169, 97, 0.8));
}

.localizacao-info {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-gold);
}

.localizacao-info p {
    margin: 0;
    color: var(--soft-white);
    line-height: 1.6;
}

.localizacao-info i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.localizacao-info strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.btn-ver-mapa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.btn-ver-mapa:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
    color: #000;
}

/*--------------------------------------------------------------
# RESPONSIVO MOBILE - NOVOS CARDS
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .card-acoes-rifas,
    .card-localizacao-visual {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .acoes-header h4,
    .localizacao-header h4 {
        font-size: 1.1rem;
    }
    
    .acoes-descricao {
        font-size: 0.85rem;
    }
    
    .btn-acoes-participar,
    .btn-ver-mapa {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .localizacao-img {
        height: 180px;
    }
    
    .acoes-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

/*--------------------------------------------------------------
# IMPORTANTE: Este código deve estar NO FINAL do main.css
# para garantir que sobrescreva o variables.css
--------------------------------------------------------------*/