/* ==========================================================================
   FELIPPO (NABÉRIUS) AMARAL INK - LUXURY GOLD & CYBER-REALISM
   ========================================================================== */

/* RESET E CONFIGURAÇÕES DE BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Paleta de Cores Luxury Gold & Charcoal */
    --color-bg-deep: #070608;
    --color-bg-card: rgba(14, 13, 17, 0.75);
    --color-bg-glass: rgba(255, 255, 255, 0.02);
    
    /* Tons Dourados de Luxo e Ciano de Alta Tecnologia */
    --color-neon-gold: #d4af37;     /* Ouro Real */
    --color-neon-gold-dark: #b89047;/* Ouro Envelhecido */
    --color-neon-cyan: #06b6d4;     /* Ciano Realismo Célula */
    --color-neon-green: #10b981;    /* Verde Cicatrização */
    --color-neon-red: #ef4444;
    
    /* Cores de Texto */
    --color-text-primary: #f9fafb;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #4b5563;
    
    /* Efeitos de Borda e Sombras */
    --border-glass: 1px solid rgba(212, 175, 55, 0.12); /* Borda Dourada Translúcida */
    --border-glass-light: 1px solid rgba(255, 255, 255, 0.03);
    --shadow-neon-gold: 0 0 25px rgba(212, 175, 55, 0.2);
    --shadow-neon-cyan: 0 0 20px rgba(6, 182, 212, 0.2);
    --shadow-premium: 0 20px 45px rgba(0, 0, 0, 0.7);
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--color-bg-deep);
    background-image: 
        radial-gradient(at 0% 0%, rgba(184, 144, 71, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(6, 182, 212, 0.06) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(212, 175, 55, 0.03) 0px, transparent 60%);
    background-attachment: fixed;
    color: var(--color-text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 100px; /* Espaço para floating-nav */
}

/* Esconder Barra de Rolar Padrão */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon-gold);
}

/* Canvas de Partículas para Efeitos */
#canvas-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ==========================================================================
   COMPONENTES GLOBAIS
   ========================================================================== */

/* Cards de Efeito Vidro */
.card {
    border-radius: 24px;
    padding: 28px;
    background: var(--color-bg-card);
    border: var(--border-glass);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.glass-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.02), transparent);
    transform: rotate(30deg);
    pointer-events: none;
    transition: 0.9s;
}
.glass-card:hover::before {
    left: 100%;
}
.card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Títulos Glow */
.glow-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--color-neon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.25);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.glow-title.gold-glow {
    background: linear-gradient(135deg, #ffffff 20%, var(--color-neon-gold-dark) 50%, var(--color-neon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}
.glow-title.blue-glow {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(6, 182, 212, 0.3);
}

.subtitle {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-title-wrapper {
    margin-bottom: 36px;
}
.text-center {
    text-align: center;
}

/* Botões Customizados (Dourados e Cianos) */
.btn-primary-glow, .btn-success-glow {
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 14px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: black;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}
.btn-primary-glow {
    background: linear-gradient(135deg, var(--color-neon-gold-dark) 0%, var(--color-neon-gold) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    color: black;
}
.btn-primary-glow:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.45), 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-success-glow {
    background: linear-gradient(135deg, #059669 0%, var(--color-neon-green) 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    color: white;
}
.btn-success-glow:hover {
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}
.btn-primary-glow::after, .btn-success-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}
.btn-primary-glow:hover::after, .btn-success-glow:hover::after {
    left: 100%;
}

/* Efeito Pulso de Ouro */
.btn-gold-pulse {
    animation: gold-pulse-anim 2s infinite alternate;
}
@keyframes gold-pulse-anim {
    0% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25); }
    100% { box-shadow: 0 4px 28px rgba(212, 175, 55, 0.6), 0 0 12px rgba(212, 175, 55, 0.3); }
}

.w-100 {
    width: 100%;
}
.mt-4 {
    margin-top: 32px;
}
.hidden {
    display: none !important;
}

/* ==========================================================================
   HEADER PRINCIPAL (ESTILO BOUTIQUE REALISMO)
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    background: rgba(7, 6, 8, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo-container {
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1.5px;
}
.logo-neo {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.logo-ink {
    color: var(--color-neon-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    margin-left: 6px;
    font-weight: 400;
    font-size: 1.1rem;
}
.logo-studio {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    letter-spacing: 3px;
    margin-left: 10px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding-left: 10px;
    font-weight: 600;
}

.header-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 6px 14px;
    border-radius: 50px;
}
.badge-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-neon-gold);
    text-transform: uppercase;
}

/* ==========================================================================
   MENU DE NAVEGAÇÃO FLUTUANTE (FLOATING NAV)
   ========================================================================== */
.floating-nav {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 440px;
}
.nav-container {
    background: rgba(14, 13, 17, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: var(--border-glass);
    border-radius: 50px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.05);
}
.nav-item {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 8px 0;
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: 25px;
    position: relative;
}
.nav-item .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.nav-item .nav-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition-normal);
}
.nav-item.active {
    color: var(--color-neon-gold);
}
.nav-item.active .nav-icon {
    transform: translateY(-4px) scale(1.1);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}
.nav-item.active .nav-text {
    opacity: 1;
    font-weight: 700;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-neon-gold);
    opacity: 0;
    transition: var(--transition-fast);
}
.nav-item.active::after {
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 8px var(--color-neon-gold);
}

/* ==========================================================================
   CONTEÚDO PRINCIPAL - ESTRUTURA DE ABAS
   ========================================================================== */
.content-container {
    padding: 40px 8%;
    max-width: 1300px;
    margin: 0 auto;
}
.tab-content {
    display: none;
    animation: fade-in-tab var(--transition-slow);
}
.tab-content.active {
    display: block;
}

@keyframes fade-in-tab {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ABA 1: ORÇAMENTO INTELIGENTE
   ========================================================================== */
.calculator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

/* Formulário de Input */
.form-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.input-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
}
.label-with-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge-value {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-neon-gold);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Upload de Imagem */
.upload-zone {
    border: 2px dashed rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--color-neon-gold);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.05);
}
.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.upload-icon {
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    transition: var(--transition-normal);
}
.upload-zone:hover .upload-icon {
    color: var(--color-neon-gold);
    transform: translateY(-4px);
}
.primary-text {
    font-size: 0.95rem;
    font-weight: 600;
}
.secondary-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.preview-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.btn-remove-image {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: var(--border-glass-light);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
}
.btn-remove-image:hover {
    background: var(--color-neon-red);
    transform: scale(1.1);
}

/* Animação Scanner Laser (Dourado/Ciano) */
.scanner-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-neon-cyan), transparent);
    box-shadow: 0 0 15px var(--color-neon-cyan);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}
.scanner-laser.scanning {
    animation: laser-move 2.5s ease-in-out infinite;
    opacity: 1;
}

@keyframes laser-move {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

/* Partes do Corpo */
.body-parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}
.body-part-card {
    background: rgba(255, 255, 255, 0.01);
    border: var(--border-glass-light);
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
    transition: var(--transition-normal);
}
.body-part-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(212, 175, 55, 0.2);
}
.body-part-card.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-neon-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}
.part-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}
.part-complexity {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
}

/* Custom Slider */
.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-neon-gold);
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 12px var(--color-neon-gold);
    transition: 0.15s;
}
.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Unidades do Estúdio */
.branch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.branch-card {
    background: rgba(255, 255, 255, 0.01);
    border: var(--border-glass-light);
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
}
.branch-card:hover {
    background: rgba(255, 255, 255, 0.03);
}
.branch-card.active {
    background: rgba(6, 182, 212, 0.05);
    border-color: var(--color-neon-cyan);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}
.branch-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 4px;
}
.led {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.pulsing-green {
    background-color: var(--color-neon-green);
    box-shadow: 0 0 8px var(--color-neon-green);
    animation: led-pulse 1.5s infinite alternate;
}
.branch-desc {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

@keyframes led-pulse {
    from { opacity: 0.5; }
    to { opacity: 1; box-shadow: 0 0 12px var(--color-neon-green); }
}

/* Coluna de Resultados */
.result-column-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.waiting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 32px;
    text-align: center;
    min-height: 380px;
}
.waiting-icon {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}
.waiting-card h3 {
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}
.waiting-card p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.pulsing {
    animation: pulse-icon 2s infinite alternate;
}
@keyframes pulse-icon {
    from { transform: scale(1); opacity: 0.6; }
    to { transform: scale(1.1); opacity: 1; color: var(--color-neon-gold); }
}

/* Card de Resultado Sucesso */
.result-card {
    animation: slide-up-card var(--transition-normal);
}
@keyframes slide-up-card {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.badge-result {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--color-neon-green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.price-range-wrapper {
    margin-bottom: 24px;
}
.price-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--color-neon-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    margin-top: 4px;
}

/* ADIÇÃO: Caixa de nota de orçamento final do artista */
.artist-final-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--color-neon-gold);
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 12px;
}
.notice-icon {
    font-size: 0.9rem;
}
.notice-text {
    font-size: 0.74rem;
    font-style: italic;
    color: var(--color-neon-gold);
    font-weight: 500;
}

.metrics-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: var(--border-glass-light);
    border-bottom: var(--border-glass-light);
    padding: 20px 0;
    margin-bottom: 24px;
}
.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.metric-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}
.metric-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

/* Captura de Leads */
.lead-form-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: white;
}
.lead-form-box p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.4;
}
.form-group {
    margin-bottom: 12px;
}
.custom-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: var(--border-glass-light);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    outline: none;
    transition: var(--transition-fast);
}
.custom-input:focus {
    border-color: var(--color-neon-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background: rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   INTERATIVO: EXPANSAO DE TINTA (Virtual needle wash)
   ========================================================================== */
.ink-expansion-card {
    padding: 20px;
    border-color: rgba(212, 175, 55, 0.1);
}
.ink-card-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}
.ink-card-header h5 {
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: white;
}
.ink-card-sub {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
}
.canvas-ink-container {
    width: 100%;
    height: 180px;
    background: #040305;
    border-radius: 14px;
    border: var(--border-glass-light);
    position: relative;
    overflow: hidden;
}
#canvas-ink-expansion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.cartridge-stylus {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
    transition: top 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.cartridge-stylus.dipped {
    top: 10px;
}
.btn-clean-ink {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-neon-gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    width: 100%;
    transition: var(--transition-fast);
}
.btn-clean-ink:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-neon-gold);
}

/* ==========================================================================
   ABA 2: JORNADA E CONCEITO
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 12px;
}

/* Perfil e Biografia */
.profile-bio-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.profile-header-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: var(--border-glass-light);
    padding-bottom: 24px;
    position: relative;
}
.profile-badge-crown {
    font-size: 2.2rem;
    margin-bottom: 8px;
    animation: float-crown 2.5s ease-in-out infinite alternate;
}
@keyframes float-crown {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-6px) scale(1.05); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
}
.profile-header-box h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
}
.profile-subtitle {
    font-size: 0.9rem;
    color: var(--color-neon-gold);
    font-weight: 600;
    margin-top: 4px;
}

.bio-bullets-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bio-bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.01);
    border: var(--border-glass-light);
    padding: 16px;
    border-radius: 16px;
    transition: var(--transition-fast);
}
.bio-bullet-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}
.bullet-icon {
    font-size: 1.4rem;
}
.bio-bullet-item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.bio-bullet-item strong {
    color: white;
}

.portfolio-link-box {
    border-top: var(--border-glass-light);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}
.cta-bullet-text {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Tecnologias de Sessão */
.tech-intro-card h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 6px;
    font-size: 1.3rem;
}
.tech-intro-card .desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}
.tech-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.tech-detail-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.015);
    border: var(--border-glass-light);
    padding: 20px;
    border-radius: 18px;
    transition: var(--transition-normal);
}
.tech-detail-card:hover {
    background: rgba(6, 182, 212, 0.03);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}
.tech-card-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3));
}
.tech-detail-card:nth-child(even):hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.3);
}
.tech-detail-card:nth-child(even) .tech-card-icon {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}
.tech-card-info h5 {
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: white;
    margin-bottom: 4px;
}
.tech-card-info p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   ABA 3: AGENDAMENTO E PORTFÓLIO (IMAGENS REAIS DE FELIPPO)
   ========================================================================== */
.scheduling-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: start;
}

/* Galeria de Portfólio */
.portfolio-card h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}
.portfolio-card .desc {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}
.font-small {
    font-size: 0.85rem;
}
.portfolio-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/13;
    border: var(--border-glass);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7, 6, 8, 0.95) 0%, rgba(7, 6, 8, 0.8) 40%, transparent 100%);
    padding: 24px 16px 16px 16px;
    opacity: 0;
    transition: var(--transition-normal);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: white;
}
.gallery-overlay p {
    font-size: 0.78rem;
    color: var(--color-neon-gold);
    margin-top: 4px;
    font-weight: 500;
}

/* Calendário */
.calendar-booking-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.calendar-wrapper {
    background: rgba(0, 0, 0, 0.3);
    border: var(--border-glass-light);
    border-radius: 16px;
    padding: 16px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.calendar-header h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.calendar-nav button {
    background: transparent;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--transition-fast);
}
.calendar-nav button:hover {
    color: white;
}
.calendar-grid-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}
.calendar-grid-numbers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--color-text-secondary);
}
.calendar-day:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}
.calendar-day.active {
    background: var(--color-neon-gold);
    color: black;
    font-weight: 800;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.calendar-day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}
.calendar-day.today {
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Slots de Horários */
.time-slots-wrapper h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
    margin-top: 12px;
}
.time-slot {
    background: rgba(255, 255, 255, 0.01);
    border: var(--border-glass-light);
    border-radius: 8px;
    padding: 8px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--color-text-secondary);
}
.time-slot:hover:not(.taken) {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
}
.time-slot.active {
    background: var(--color-neon-gold);
    color: black;
    font-weight: 700;
    border-color: var(--color-neon-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.time-slot.taken {
    opacity: 0.2;
    background: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Confirmação */
.confirm-booking-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 16px;
    animation: fade-in-tab var(--transition-fast);
}
.booking-summary-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}
.booking-summary-text strong {
    color: white;
}

/* ==========================================================================
   MODAL DE VOUCHER - PARABÉNS 3 MINIS POR R$ 150
   ========================================================================== */
.voucher-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.voucher-overlay.active {
    opacity: 1;
}
.voucher-overlay.hidden {
    display: none !important;
}

.voucher-content {
    background: linear-gradient(145deg, rgba(20, 18, 25, 0.95) 0%, rgba(30, 25, 15, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    padding: 40px 36px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.12),
        inset 0 1px 2px rgba(255, 255, 255, 0.06);
    transform: scale(0.85) translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.voucher-content.animate-in {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.voucher-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}
.voucher-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: var(--color-neon-red);
    transform: rotate(90deg);
}

.voucher-badge-crown {
    font-size: 3.5rem;
    margin-bottom: 12px;
    animation: voucher-bounce 1s ease-out;
}
@keyframes voucher-bounce {
    0% { transform: scale(0) rotate(-20deg); }
    50% { transform: scale(1.3) rotate(10deg); }
    70% { transform: scale(0.9) rotate(-5deg); }
    100% { transform: scale(1) rotate(0); }
}

.voucher-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #ffffff 20%, var(--color-neon-gold) 60%, #f5c842 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.voucher-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.voucher-card-inner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 144, 71, 0.04) 100%);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 28px 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.voucher-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.04), transparent, rgba(212, 175, 55, 0.04), transparent);
    animation: voucher-shimmer 8s linear infinite;
}
@keyframes voucher-shimmer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.voucher-stamp {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 4px 14px;
    border-radius: 50px;
    transform: rotate(8deg);
}
.voucher-stamp-text {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-neon-gold);
}

.voucher-deal {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.voucher-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.voucher-old-price {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}
.voucher-new-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-neon-green) 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(16, 185, 129, 0.25);
}

.voucher-detail {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.voucher-code-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}
.voucher-code-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.voucher-code-value {
    font-family: 'Outfit', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-neon-gold);
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.voucher-cta {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 1rem;
    padding: 18px 28px;
    animation: voucher-pulse-cta 2s infinite alternate;
}
@keyframes voucher-pulse-cta {
    0% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2); }
    100% { box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5), 0 0 15px rgba(16, 185, 129, 0.2); }
}

.voucher-fine-print {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVIDADE E ADAPTAÇÕES DE TELA
   ========================================================================== */
@media (max-width: 1024px) {
    .content-container {
        padding: 24px 6%;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .result-column-wrapper {
        position: static;
    }
    .waiting-card {
        min-height: auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .scheduling-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .portfolio-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }
    .main-header {
        padding: 16px 5%;
    }
    .content-container {
        padding: 20px 4%;
    }
    .glow-title {
        font-size: 2rem;
    }
    .body-parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-nav {
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .body-parts-grid {
        grid-template-columns: 1fr;
    }
    .branch-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }
    .metrics-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
