/* =========================================
   🎨 VARIÁVEIS & CORES
   ========================================= */
:root {
    --primary: #00ff88;
    --secondary: #ff006e;
    --accent: #00d4ff;
    --bg-dark: #0a0a0b;
    --bg-card: rgba(20, 20, 22, 0.7); 
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-secondary: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(255, 255, 255, 0.15);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
    text-transform: uppercase !important; 
    letter-spacing: 0.5px;
}

body {
    background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 50%, #0f3460 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 16px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.container { 
    width: 100%; 
    max-width: 480px; 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    position: relative; 
    z-index: 10; 
    padding-bottom: 40px;
}

/* =========================================
   ANIMAÇÕES APRIMORADAS
   ========================================= */
@keyframes fadeInUp { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

@keyframes glow { 
    0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 30px rgba(255, 0, 110, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px var(--primary), inset 0 0 8px rgba(255,255,255,0.5); }
    50% { box-shadow: 0 0 25px var(--primary), inset 0 0 12px rgba(255,255,255,0.8); }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.anim { animation: fadeInUp 0.6s ease-out backwards; }
.d-1 { animation-delay: 0.1s; } 
.d-2 { animation-delay: 0.2s; } 
.d-3 { animation-delay: 0.3s; }

/* =========================================
   HEADER APRIMORADO
   ========================================= */
.profile-header {
    display: flex; 
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 0, 110, 0.05) 100%);
    border: 2px solid var(--border-bright);
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.15);
    position: relative;
    overflow: hidden;
}

.profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.avatar-container { 
    position: relative; 
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.avatar-container::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(from 0deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    border-radius: 50%;
    animation: spin 8s linear infinite;
    z-index: -1;
}

.avatar {
    width: 70px; 
    height: 70px;
    border-radius: 50%; 
    object-fit: cover;
    border: 3px solid var(--bg-dark);
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.profile-info { 
    flex: 1; 
    min-width: 0; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    padding-top: 4px;
    position: relative;
    z-index: 2;
}

.profile-info h1 {
    font-size: 19px; 
    font-weight: 800; 
    color: var(--text-main);
    display: flex; 
    align-items: center; 
    gap: 6px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.verified { 
    color: var(--primary); 
    flex-shrink: 0;
    animation: glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px var(--primary));
}

.profile-info p {
    font-size: 12px; 
    font-weight: 600;
    background: linear-gradient(135deg, var(--text-secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
}

/* =========================================
   STATUS APRIMORADO
   ========================================= */
.status-badge {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    margin-top: 14px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 110, 0.08));
    padding: 6px 12px; 
    border-radius: 50px;
    width: fit-content;
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.status-dot { 
    width: 8px; 
    height: 8px; 
    border-radius: 50%; 
}

.status-dot.open { 
    background: var(--primary); 
    box-shadow: 0 0 15px var(--primary), inset 0 0 8px rgba(255,255,255,0.5);
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.closed { 
    background: #ef4444; 
    box-shadow: 0 0 15px #ef4444; 
}

.status-text { 
    font-size: 10px; 
    font-weight: 800; 
    letter-spacing: 1px; 
}

/* =========================================
   HERO APRIMORADO
   ========================================= */
.hero-grid { 
    display: grid; 
    grid-template-columns: 1.8fr 1fr; 
    gap: 10px; 
    height: 160px; 
}

.hero-img { 
    width: 100%; 
    height: 100%; 
    border-radius: 20px; 
    overflow: hidden; 
    border: 2px solid var(--primary);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 255, 136, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.hero-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-img:hover img {
    transform: scale(1.05);
}

.hero-stats { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}

.stat-box { 
    flex: 1; 
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 0, 110, 0.05));
    border: 1.5px solid var(--primary);
    border-radius: 16px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    border-color: var(--accent);
}

.stat-val { 
    font-size: 18px; 
    font-weight: 900; 
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-lbl { 
    font-size: 9px; 
    color: var(--text-secondary); 
    margin-top: 2px; 
    font-weight: 700; 
}

/* =========================================
   BENTO APRIMORADO
   ========================================= */
.bento-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
}

.bento-item {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 0, 110, 0.03));
    border: 1.5px solid var(--border-bright);
    border-radius: 18px; 
    padding: 16px; 
    text-decoration: none;
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    height: 100px; 
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bento-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

.bento-item:hover { 
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(255, 0, 110, 0.08));
}

.bento-item:active { 
    transform: scale(0.96) translateY(-6px);
}

.bento-icon { 
    color: var(--primary); 
    margin-bottom: 8px;
    filter: drop-shadow(0 0 8px var(--primary));
    position: relative;
    z-index: 2;
}

.bento-item h3 { 
    font-size: 12px; 
    color: var(--text-main); 
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.bento-item p { 
    font-size: 9px; 
    color: var(--text-secondary); 
    margin-top: 2px; 
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.bento-full { 
    grid-column: span 2; 
    height: auto; 
    min-height: 70px; 
    flex-direction: row; 
    align-items: center; 
    gap: 14px; 
}

/* =========================================
   GALERIA - CARROSSEL APRIMORADO
   ========================================= */
.gallery-box { 
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), rgba(255, 0, 110, 0.04));
    border: 2px solid var(--border-bright);
    border-radius: 20px; 
    padding: 14px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.gal-head { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 10px; 
    padding: 0 4px; 
}

.gal-head h2 { 
    font-size: 11px; 
    letter-spacing: 1.5px; 
    color: var(--text-secondary); 
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gal-head i {
    color: var(--primary);
    filter: drop-shadow(0 0 8px var(--primary));
}

.gal-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gal-container::-webkit-scrollbar {
    display: none;
}

.gal-grid { 
    display: flex; 
    gap: 8px;
    min-width: min-content;
}

.gal-img { 
    aspect-ratio: 1; 
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 12px; 
    overflow: hidden; 
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(255, 0, 110, 0.1));
    cursor: pointer; 
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

.gal-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gal-img:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
}

.gal-img:hover::before {
    opacity: 1;
}

.gal-img:active {
    transform: scale(0.95);
}

.gal-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.gal-img:hover img {
    transform: scale(1.1);
}

/* =========================================
   BOTÕES SOCIAIS APRIMORADOS
   ========================================= */
.social-btns { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-top: 8px; 
}

.btn {
    width: 100%; 
    height: 54px; 
    border-radius: 27px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px;
    text-decoration: none; 
    color: #fff; 
    border: none; 
    cursor: pointer;
    font-weight: 900; 
    font-size: 14px; 
    letter-spacing: 1.5px; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.btn::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: shimmer 2s infinite;
}

.btn:hover { 
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 0, 110, 0.5);
}

.btn:active { 
    transform: scale(0.97) translateY(-4px);
}

.btn-zap { 
    background: linear-gradient(135deg, #25D366, #0f7a6e);
    border: 1.5px solid rgba(37, 211, 102, 0.5);
}

.btn-insta { 
    background: linear-gradient(135deg, #E1306C, #9a2cb3);
    border: 1.5px solid rgba(225, 48, 108, 0.5);
}

/* =========================================
   FOOTER & MODAL
   ========================================= */
.footer { 
    text-align: center; 
    font-size: 10px; 
    color: var(--text-secondary); 
    margin-top: 20px; 
    opacity: 0.6;
    letter-spacing: 1px; 
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal { 
    display: none; 
    position: fixed; 
    inset: 0; 
    z-index: 999; 
    background: rgba(0,0,0,0.98); 
    align-items: center; 
    justify-content: center; 
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal.active { 
    display: flex; 
    animation: fadeIn 0.3s;
}

.modal img { 
    max-width: 100%; 
    max-height: 85vh; 
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.4);
    border: 2px solid var(--primary);
    animation: scaleIn 0.3s ease;
}

.modal-close { 
    position: absolute; 
    top: 24px; 
    right: 24px; 
    color: white; 
    background: rgba(255,255,255,0.1); 
    border-radius: 50%; 
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.modal-close:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px var(--primary);
}

/* =========================================
   MODAL DE AVALIAÇÃO
   ========================================= */
.modal-avaliacao {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-avaliacao.active {
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

.avaliacao-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.12), rgba(255, 0, 110, 0.08));
    border: 2px solid var(--primary);
    border-radius: 28px;
    padding: 32px 28px;
    width: 100%;
    max-width: 360px;
    backdrop-filter: blur(24px);
    box-shadow: 0 25px 80px rgba(0, 255, 136, 0.4), 0 0 60px rgba(255, 0, 110, 0.2);
    animation: modalScaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.avaliacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes modalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.avaliacao-header h2 {
    font-size: 15px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.avaliacao-close {
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.avaliacao-close:hover {
    background: var(--primary);
    color: var(--bg-dark);
    transform: rotate(90deg);
    box-shadow: 0 0 20px var(--primary);
}

.avaliacao-close:active {
    transform: scale(0.9) rotate(90deg);
}

.avaliacao-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.4px;
    position: relative;
    z-index: 2;
}

.estrelas-container {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.estrela {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1);
    filter: drop-shadow(0 0 0px transparent);
}

.estrela:hover {
    color: rgba(0, 255, 136, 0.4);
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.estrela:active {
    transform: scale(0.9);
}

.estrela.ativa {
    color: var(--primary);
    filter: drop-shadow(0 0 12px var(--primary));
    animation: starPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes starPop {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.4) rotate(10deg);
    }
    60% {
        transform: scale(1.3) rotate(-10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.btn-enviar-avaliacao {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, var(--primary), #00cc70);
    border: 2px solid var(--primary);
    border-radius: 27px;
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-enviar-avaliacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-enviar-avaliacao:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.btn-enviar-avaliacao:hover::before {
    left: 100%;
}

.btn-enviar-avaliacao:active {
    transform: translateY(0) scale(0.97);
}

@keyframes fadeIn { 
    from { opacity: 0; } 
    to { opacity: 1; } 
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (min-width: 600px) {
    .container { max-width: 550px; }
    .hero-grid { height: 200px; }
    .profile-header { padding: 30px; }
    .avatar { width: 80px; height: 80px; }
    .profile-info h1 { font-size: 24px; }
    .gal-img { width: 130px; height: 130px; }
    
    .avaliacao-card {
        max-width: 400px;
        padding: 40px 36px;
    }
    
    .avaliacao-header h2 {
        font-size: 16px;
    }
    
    .estrelas-container {
        gap: 18px;
    }
    
    .btn-enviar-avaliacao {
        height: 56px;
        font-size: 15px;
    }
}
