/* ============================================
   CAROL FERREIRA - CANTORA MINEIRA
   Tema: Rosa / Elegante / Artístico
   ============================================ */

/* ====== VARIÁVEIS CSS ====== */
:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --rose-800: #9f1239;
    --rose-900: #881337;
    --rose-950: #4c0519;
    
    --gold-300: #fcd34d;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    
    --dark-900: #0a0a0a;
    --dark-800: #141414;
    --dark-700: #1a1a2e;
    --dark-600: #252540;
    
    --white: #ffffff;
    --white-90: rgba(255,255,255,0.9);
    --white-70: rgba(255,255,255,0.7);
    --white-50: rgba(255,255,255,0.5);
    --white-20: rgba(255,255,255,0.2);
    --white-10: rgba(255,255,255,0.1);
    
    --gradient-rose: linear-gradient(135deg, var(--rose-500), var(--rose-700));
    --gradient-rose-gold: linear-gradient(135deg, var(--rose-400), var(--gold-400));
    --gradient-dark: linear-gradient(180deg, var(--dark-900), var(--dark-700));
    --gradient-hero: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(136,19,55,0.6) 50%, rgba(10,10,10,0.95) 100%);
    
    --shadow-sm: 0 2px 10px rgba(244,63,94,0.1);
    --shadow-md: 0 4px 20px rgba(244,63,94,0.15);
    --shadow-lg: 0 10px 40px rgba(244,63,94,0.2);
    --shadow-xl: 0 20px 60px rgba(244,63,94,0.3);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Great Vibes', cursive;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* ====== RESET & BASE ====== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-900);
    color: var(--white-90);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    background: transparent;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--rose-500);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--rose-600);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose-500);
}

/* ====== UTILITY CLASSES ====== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.highlight {
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== PRELOADER ====== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-900);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.rose-loader {
    font-size: 60px;
    animation: roseFloat 1.5s ease-in-out infinite;
}

.preloader-logo {
    height: 120px;
    width: auto;
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 1; }
}

.preloader-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--rose-400);
    margin-top: 20px;
    animation: fadeInUp 1s ease 0.3s both;
}

@keyframes roseFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes roseSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== PÉTALAS FLUTUANTES ====== */
#petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--rose-400);
    border-radius: 50% 0 50% 50%;
    opacity: 0;
    animation: petalFall linear forwards;
    filter: blur(0.5px);
}

.petal::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(45deg) scale(0.8);
    opacity: 0.7;
}

@keyframes petalFall {
    0% {
        opacity: 0;
        transform: translateY(-10vh) rotate(0deg) scale(0.5);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(105vh) rotate(720deg) scale(0.3);
    }
}

/* ====== NAVEGAÇÃO ====== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 20px 0;
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(244, 63, 94, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    transition: var(--transition-normal);
}

#header.scrolled .nav-logo-img {
    height: 38px;
}

.logo-rose {
    font-size: 1.5rem;
    animation: roseFloat 3s ease-in-out infinite;
}

.logo-text {
    background: var(--gradient-rose-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-70);
    border-radius: 50px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-rose);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.cta-btn {
    background: var(--gradient-rose);
    color: var(--white) !important;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ====== HERO SECTION ====== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1.2) translateY(-2%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose-300);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
    background: linear-gradient(135deg, var(--white) 0%, var(--rose-200) 50%, var(--gold-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 20px rgba(244,63,94,0.3));
}

.hero-tagline {
    font-family: var(--font-script);
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    color: var(--rose-200);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-rose);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    border: 2px solid var(--rose-400);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--rose-500);
    border-color: var(--rose-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Social */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 1s both;
}

.hero-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-10);
    color: var(--white-70);
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--white-10);
    transition: var(--transition-normal);
}

.hero-social a:hover {
    background: var(--rose-500);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll-indicator a {
    color: var(--white-50);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-text {
    display: block;
    margin-bottom: 8px;
}

.hero-scroll-indicator i {
    display: block;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ====== SECTION HEADERS ====== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose-400);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.title-decoration {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    isolation: isolate;
}

.title-decoration span {
    display: inline-block;
    animation: roseFloat 3s ease-in-out infinite;
}

.section-logo-icon {
    height: 24px;
    width: auto;
    opacity: 0.35;
    transition: var(--transition-normal);
}

.section-logo-icon:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--white-50);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== WAVE DIVIDERS ====== */
.rose-divider {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: var(--dark-900);
}

.rose-divider.top {
    top: -1px;
}

.rose-divider svg {
    width: 100%;
    height: 60px;
}

/* ====== SOBRE SECTION ====== */
.about-section {
    background: var(--dark-800);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244,63,94,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    inset: 0;
    border: 3px solid var(--rose-400);
    border-radius: var(--border-radius-lg);
    opacity: 0.3;
    transform: translate(15px, 15px);
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: var(--gradient-rose);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--dark-800);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--white-70);
    font-size: 1rem;
}

.about-content strong {
    color: var(--rose-300);
    font-weight: 600;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 24px 0;
    border-top: 1px solid var(--white-10);
    border-bottom: 1px solid var(--white-10);
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--rose-400);
    margin-bottom: 8px;
    display: block;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white-50);
    margin-top: 4px;
}

/* Genre Tags */
.about-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.genre-tag {
    padding: 6px 18px;
    background: var(--white-10);
    border: 1px solid var(--white-10);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--rose-300);
    transition: var(--transition-normal);
}

.genre-tag:hover {
    background: var(--rose-500);
    color: var(--white);
    border-color: var(--rose-500);
    transform: translateY(-2px);
}

/* ====== MÚSICA SECTION ====== */
.music-section {
    background: var(--dark-900);
    position: relative;
}

.music-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at center bottom, rgba(244,63,94,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Music Player */
.music-player-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
    border-radius: var(--border-radius-xl);
    padding: 30px;
    border: 1px solid var(--white-10);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.music-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-rose);
}

.player-artwork {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.vinyl-disc {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #333 0%, #111 40%, #333 42%, #111 44%, #333 46%, #111 70%, #222 100%);
    border-radius: 50%;
    z-index: -1;
    transition: transform 0.3s ease;
}

.vinyl-disc.spinning {
    animation: vinylSpin 3s linear infinite;
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--rose-500);
    border-radius: 50%;
    border: 4px solid var(--dark-900);
}

@keyframes vinylSpin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.player-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.player-song-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.player-artist {
    color: var(--rose-400);
    font-size: 0.95rem;
}

/* Progress Bar */
.player-progress {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--white-10);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-rose);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.progress-handle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.5);
    opacity: 0;
    transition: var(--transition-fast);
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--white-50);
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-70);
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.control-btn:hover {
    color: var(--white);
    background: var(--white-10);
}

.play-btn {
    width: 64px;
    height: 64px;
    background: var(--gradient-rose) !important;
    color: var(--white) !important;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Volume */
.volume-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.volume-slider {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--white-10);
    border-radius: 10px;
    outline: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--rose-400);
    border-radius: 50%;
    cursor: pointer;
}

/* Music List */
.music-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.music-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--dark-800);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.music-item:hover {
    background: var(--dark-700);
    border-color: var(--white-10);
    transform: translateX(5px);
}

.music-item.playing {
    background: linear-gradient(145deg, rgba(244,63,94,0.1), rgba(244,63,94,0.05));
    border-color: var(--rose-500);
}

.music-item-number {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-50);
    min-width: 30px;
}

.music-item.playing .music-item-number {
    color: var(--rose-400);
}

.music-item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.music-item-info p {
    font-size: 0.8rem;
    color: var(--white-50);
}

.music-item-duration {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--white-50);
}

.music-item-play {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--rose-400);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.music-item-play:hover {
    background: var(--rose-500);
    color: var(--white);
}

/* Music Platforms */
.music-platforms {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--white-10);
}

.platforms-text {
    font-size: 1rem;
    color: var(--white-50);
    margin-bottom: 20px;
}

.platform-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition-normal);
}

.platform-btn.spotify {
    background: #1DB954;
}

.platform-btn.youtube-music {
    background: #FF0000;
}

.platform-btn.apple-music {
    background: linear-gradient(135deg, #fc3c44, #d92d77);
}

.platform-btn.deezer {
    background: #A238FF;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ====== GALERIA SECTION ====== */
.gallery-section {
    background: var(--dark-800);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(136, 19, 55, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.gallery-info p {
    font-size: 0.85rem;
    color: var(--white-70);
}

.gallery-expand {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-20);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.gallery-expand:hover {
    background: var(--rose-500);
    transform: scale(1.1);
}

/* ====== LIGHTBOX ====== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    z-index: 10;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--rose-500);
}

/* ====== VIDEOS SECTION ====== */
.videos-section {
    background: var(--dark-900);
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
}

.video-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    transition: var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--rose-500);
    box-shadow: var(--shadow-lg);
}

.video-card.main-video {
    grid-row: span 2;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-card.main-video .video-placeholder {
    aspect-ratio: auto;
    height: 100%;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-placeholder img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-normal);
}

.video-card:hover .video-play-overlay {
    background: rgba(136, 19, 55, 0.6);
}

.play-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(244, 63, 94, 0.5);
    transition: var(--transition-normal);
}

.video-card:hover .play-circle {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(244, 63, 94, 0.7);
}

.video-play-overlay p {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.video-info {
    padding: 16px 20px;
}

.video-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--white-50);
}

.videos-cta {
    text-align: center;
    margin-top: 40px;
}

/* ====== RELEASE SECTION ====== */
.release-section {
    background: var(--dark-800);
    position: relative;
}

.release-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(244,63,94,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(251,191,36,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.release-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, var(--dark-900), var(--dark-700));
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--white-10);
    overflow: hidden;
    position: relative;
}

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-rose-gold);
}

.release-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 40px;
    border-bottom: 1px solid var(--white-10);
}

.release-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.3rem;
}

.release-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.release-body {
    padding: 30px 40px;
}

.release-body p {
    color: var(--white-70);
    margin-bottom: 16px;
    line-height: 1.8;
}

.release-intro {
    font-size: 1.05rem;
}

.release-body strong {
    color: var(--rose-300);
}

.release-quote {
    margin: 30px 0;
    padding: 24px 30px;
    border-left: 4px solid var(--rose-500);
    background: rgba(244, 63, 94, 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.release-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--rose-200);
    margin-bottom: 10px !important;
}

.release-quote cite {
    color: var(--white-50);
    font-style: normal;
    font-size: 0.9rem;
}

.release-footer {
    padding: 24px 40px;
    border-top: 1px solid var(--white-10);
    background: rgba(0,0,0,0.2);
}

.release-footer h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.download-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ====== CONTATO SECTION ====== */
.contact-section {
    background: var(--dark-900);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
    border-radius: var(--border-radius-xl);
    padding: 30px;
    border: 1px solid var(--white-10);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid var(--white-10);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: var(--white);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--rose-400);
}

.contact-social h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.social-links-big {
    display: flex;
    gap: 12px;
}

.social-links-big a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: 12px;
    color: var(--white-70);
    font-size: 1.3rem;
    transition: var(--transition-normal);
}

.social-links-big a:hover {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, var(--dark-800), var(--dark-700));
    border-radius: var(--border-radius-xl);
    padding: 40px;
    border: 1px solid var(--white-10);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-70);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-900);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-normal);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose-500);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-50);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb7185' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
}

.form-group select option {
    background: var(--dark-800);
    color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark-800);
    position: relative;
    padding-top: 60px;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    color: var(--dark-900);
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--white-10);
}

.footer-logo {
    font-family: var(--font-script);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-brand p {
    color: var(--white-50);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-10);
    border-radius: 10px;
    color: var(--white-70);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--rose-500);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white-50);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--rose-400);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--white-50);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-900);
    border: 1px solid var(--white-10);
    border-radius: 10px 0 0 10px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--rose-500);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-rose);
    border-radius: 0 10px 10px 0;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    color: var(--white-50);
    font-size: 0.8rem;
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 100px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .music-player-container {
        grid-template-columns: 1fr;
    }
    
    .player-artwork {
        width: 100%;
        height: 250px;
    }
    
    .player-artwork img {
        width: 100%;
        height: 100%;
        border-radius: var(--border-radius);
    }
    
    .vinyl-disc {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card.main-video {
        grid-row: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding: 40px;
        transition: var(--transition-slow);
        border-left: 1px solid var(--white-10);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hero Mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* About Stats */
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .image-frame img {
        height: 400px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social,
    .social-links-big {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 350px;
        margin: 0 auto;
    }
    
    /* Player Controls */
    .player-controls {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .volume-control {
        margin-left: 0;
    }
    
    /* Release */
    .release-header,
    .release-body,
    .release-footer {
        padding: 20px;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .back-to-top {
        right: 90px;
        bottom: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-social a {
        width: 42px;
        height: 42px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .music-player-container {
        padding: 20px;
    }
    
    .platform-links {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ====== ANIMAÇÕES ESPECIAIS ====== */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(244, 63, 94, 0.3); }
    50% { box-shadow: 0 0 40px rgba(244, 63, 94, 0.6); }
}

.music-item.playing {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Efeito de brilho nas imagens */
.gallery-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

/* Efeito parallax suave para seções */
.about-section::after,
.music-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('../images/carol-ferreira-show-sorrindo.jpg') center/contain no-repeat;
    opacity: 0.02;
    right: -30px;
    bottom: -30px;
    pointer-events: none;
    border-radius: 50%;
}

/* ====== VIDEO EMBED ====== */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-card.main-video .video-embed {
    padding-bottom: 0;
    height: 100%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

/* ====== FORM MESSAGE ====== */
.form-message {
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--border-radius) !important;
    animation: fadeInUp 0.3s ease;
}

/* ====== ADMIN STYLES ====== */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--dark-800);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    border: 1px solid var(--white-10);
}

.admin-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-nav a {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--white-70);
    transition: var(--transition-normal);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--rose-500);
    color: var(--white);
}

.admin-card {
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 20px;
}

.admin-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--white);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--white-10);
    font-size: 0.9rem;
}

.admin-table th {
    color: var(--rose-400);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.admin-table td img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.admin-actions {
    display: flex;
    gap: 6px;
}

.admin-actions a,
.admin-actions button {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.btn-edit {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-delete {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-edit:hover { background: #3b82f6; color: white; }
.btn-delete:hover { background: #ef4444; color: white; }

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--dark-800);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.login-card h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--white);
}

.login-card p {
    color: var(--white-50);
    margin-bottom: 24px;
}

.login-logo {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--dark-700);
    border: 1px solid var(--white-10);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--rose-400);
    margin-bottom: 8px;
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.stat-card .stat-name {
    font-size: 0.8rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Focus styles para acessibilidade */
*:focus-visible {
    outline: 2px solid var(--rose-400);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    #header, .whatsapp-float, .back-to-top, #petals-container, #preloader {
        display: none !important;
    }
    
    body {
        background: white;
        color: #333;
    }
    
    .section {
        padding: 30px 0;
    }
}
