@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --primary-color: #ff1493;
    --primary-dark: #c71585;
    --secondary-color: #000000;
    --pink-gradient: linear-gradient(135deg, #ff1493, #ff69b4, #000000);
    --pink-gradient-reverse: linear-gradient(135deg, #000000, #ff69b4, #ff1493);
    --success-color: #48bb78;
    --danger-color: #f56565;
    --warning-color: #ed8936;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-color: #f7fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(255, 20, 147, 0.2);
    --shadow-lg: 0 10px 25px rgba(255, 20, 147, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(to bottom, #fce4ec, #f7fafc);
    position: relative;
}

/* Fonte glamorosa para títulos e labels */
h1, h2, h3, h4, h5, h6, label, .form-group label {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
}

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

/* Loading Spinner Padronizado */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 3rem;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 20, 147, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

.loading-text::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Loading alternativo com logo */
.loading-logo {
    width: 80px;
    height: 80px;
    background: var(--pink-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.loading-logo::before {
    content: '♥';
    font-size: 40px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-brand a {
    color: var(--white);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff1493, #ff69b4);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(255, 20, 147, 0.1);
    color: #ff69b4;
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a.active {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.1));
    color: #ff69b4;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
}

.nav-menu a.active::before {
    width: 80%;
}

/* User Email in Navbar */
.user-email-nav {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Botões de cadastro no nav */
.btn-nav-register {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-nav-register:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #ff1493, #ff69b4);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a::before {
        display: none;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: var(--white);
    }

    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .user-email-nav {
        width: calc(100% - 4rem);
        margin: 0 2rem 1rem;
        padding: 0.75rem 1rem;
        text-align: center;
        font-size: 0.85rem;
        order: -1;
    }

    .btn-nav-register {
        border: 2px solid rgba(255, 255, 255, 0.5);
        margin: 0.5rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }

    .btn-nav-register:hover {
        transform: none;
    }
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: var(--pink-gradient);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--pink-gradient-reverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary:focus,
.btn-primary:active {
    background: var(--pink-gradient);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.3);
}

.btn-secondary {
    background-color: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #5a6c7d;
}

.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--text-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 108, 125, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

.btn-outline:focus,
.btn-outline:active {
    background-color: transparent;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background-color: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background-color: #e53e3e;
}

.btn-danger:focus,
.btn-danger:active {
    background-color: var(--danger-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Hero Section */
.hero {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================
   Stories Section
   ============================ */
.stories-section {
    padding: 2rem 0 1.5rem;
    background: linear-gradient(180deg, rgba(255,105,180,0.06) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,105,180,0.12);
}

.stories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stories-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff1493;
    margin: 0;
    letter-spacing: 0.3px;
}

.stories-header a {
    font-size: 0.8rem;
    color: #ff69b4;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.stories-header a:hover { opacity: 1; }

.stories-track-wrapper {
    position: relative;
}

.stories-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.stories-track::-webkit-scrollbar { display: none; }

.story-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.story-item:hover { transform: translateY(-3px); }

.story-ring {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #ff69b4, #c2185b, #ff8c00);
    box-shadow: 0 0 0 2px rgba(255,105,180,0.25);
    position: relative;
}

.story-ring.story-boosted {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #ff69b4);
    box-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.story-ring.story-verified {
    background: linear-gradient(135deg, #00bcd4, #ff69b4, #c2185b);
}

.story-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1a1a2e;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 1.5px solid #ff69b4;
}

.story-name {
    font-size: 0.72rem;
    color: #ff1493;
    text-align: center;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.stories-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26,26,46,0.9);
    border: 1px solid rgba(255,105,180,0.4);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 2;
    transition: background 0.2s;
    padding: 0;
}
.stories-scroll-btn:hover { background: rgba(255,105,180,0.3); }
.stories-scroll-btn.left { left: -16px; }
.stories-scroll-btn.right { right: -16px; }

@media (max-width: 768px) {
    .stories-scroll-btn { display: none; }
    .story-ring { width: 60px; height: 60px; }
    .story-name { max-width: 62px; font-size: 0.68rem; }
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 20, 147, 0.3);
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: var(--pink-gradient);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Auth Section */
.auth-section {
    padding: 4rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 20, 147, 0.1);
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid rgba(255, 20, 147, 0.1);
    transition: all 0.3s ease;
}

.auth-box:hover {
    box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 20, 147, 0.2);
    border-color: rgba(255, 20, 147, 0.3);
}

.auth-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-links a:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group select {
    appearance: none;
    background-image: linear-gradient(135deg, var(--primary-color), #ff69b4);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 2.5rem;
    cursor: pointer;
    background-image: 
        linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
        linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: 
        calc(100% - 15px) center,
        calc(100% - 10px) center;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-group select:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 20, 147, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1), 0 0 20px rgba(255, 20, 147, 0.2);
    transform: translateY(-2px);
    background-color: var(--white);
}

.form-group input[type="file"] {
    border: 2px dashed var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-error {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #fc8181;
}

.alert-success {
    background-color: #c6f6d5;
    color: #2f855a;
    border: 1px solid #68d391;
}

.alert-warning {
    background-color: #feebc8;
    color: #c05621;
    border: 1px solid #f6ad55;
}

/* Dashboard */
.dashboard {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.profiles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
}

.profile-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 20, 147, 0.1);
    width: 100%;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 20, 147, 0.3);
}

.profile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.profile-card-header h3 {
    flex: 1;
    min-width: 150px;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

.review-stars {
    font-size: 0.9rem;
    line-height: 1;
}

.review-info {
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4af37;
}


.profile-card-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid;
    border-image: var(--pink-gradient) 1;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
}

.profile-card:hover .profile-card-photo {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.profile-card-info h3 {
    font-size: 1.25rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.profile-card-body {
    margin-bottom: 1rem;
}

.profile-card-body p {
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-card-footer {
    display: flex;
    gap: 0.5rem;
}

.profile-card-footer .btn {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge-pending {
    background: linear-gradient(135deg, #feebc8, #fed7aa);
    color: #c05621;
}

.badge-approved {
    background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
    color: #2f855a;
}

.badge-rejected {
    background: linear-gradient(135deg, #fed7d7, #fc8181);
    color: #c53030;
}

.badge-blocked {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    color: #4a5568;
}

.badge-success {
    background: linear-gradient(135deg, var(--success-color), #38a169);
    color: var(--white);
}

/* Loading */
/* Removido - usando .loading-container agora */

/* Barra de Progresso Global (topo da página) */
.global-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.global-progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #ff1493, #ff69b4, #ff1493);
    background-size: 200% 100%;
    animation: progressBarMove 1.5s linear infinite, progressBarGrow 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 20, 147, 0.5);
}

.global-progress-bar.active {
    opacity: 1;
}

@keyframes progressBarGrow {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 95%; }
}

@keyframes progressBarMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 20, 147, 0.3);
    animation: loadingFadeIn 0.3s ease;
}

@keyframes loadingFadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-spinner-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 105, 180, 0.2);
    border-top-color: #ff1493;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

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

.loading-message {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Form Section */
.form-section {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.form-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.form-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

/* Image Preview */
.image-preview {
    margin-top: 1rem;
}

.image-preview img {
    max-width: 200px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.current-photo img {
    max-width: 200px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

/* Photos Gallery */
.photos-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    max-width: 100%;
}

.photo-item {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background: #f0f0f0;
}

.photo-item img,
.photo-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.photo-item-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--danger-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* Public Profile - Estilo Rede Social */
.public-profile-social {
    background: #f0f2f5;
    min-height: 100vh;
    padding-bottom: 2rem;
}

/* Foto de Capa */
.profile-cover {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff1493, #ff69b4, #000000);
    overflow: hidden;
}

.profile-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* Container do Cabeçalho */
.profile-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateY(-60px);
}

.profile-header {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

/* Avatar do Perfil */
.profile-avatar-wrapper {
    position: relative;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    overflow: hidden;
    background: var(--bg-color);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #1da1f2;
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Informações do Header */
.profile-info-header h1 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.location-header {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-header::before {
    content: '📍';
}

/* Botão de Contato */
.profile-actions {
    display: flex;
    gap: 1rem;
}

.btn-contact {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 20, 147, 0.4);
}

/* Conteúdo do Perfil */
.profile-content-wrapper {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px;
}

.profile-content {
    display: grid;
    gap: 1.5rem;
}

/* Seções do Perfil */
.profile-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

/* Bio Content */
.bio-content {
    line-height: 1.8;
    color: var(--text-color);
}

.bio-content strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Galeria Grid Responsivo */
.photos-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.photos-gallery-grid > div {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f2f5;
    aspect-ratio: 1;
}

.photos-gallery-grid img,
.photos-gallery-grid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photos-gallery-grid > div:hover img,
.photos-gallery-grid > div:hover video {
    transform: scale(1.05);
}

/* Media Item Styles */
.media-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 20, 147, 0.95);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.85;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.media-item:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 20, 147, 1);
}

.play-overlay svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.verification-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(40, 167, 69, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

/* Modal Styles */
.modal-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10002;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.modal-close-btn svg {
    width: 24px;
    height: 24px;
}

/* Controles de Vídeo Customizados */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.video-control-btn:hover {
    transform: scale(1.2);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.3);
    height: 5px;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    transition: transform 0.2s;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
}

/* Loading e Messages */
/* Removido - usando .loading-container agora */

/* Responsivo Mobile */
@media (max-width: 768px) {
    .profile-cover {
        height: 250px;
    }
    
    .profile-header-container {
        transform: translateY(-40px);
        padding: 0 15px;
    }
    
    .profile-header {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .profile-avatar-wrapper {
        margin: 0 auto;
    }
    
    .profile-avatar {
        width: 140px;
        height: 140px;
    }
    
    .profile-info-header h1 {
        font-size: 1.5rem;
    }
    
    .profile-actions {
        justify-content: center;
    }
    
    .btn-contact {
        width: 100%;
        justify-content: center;
    }
    
    .profile-content-wrapper {
        margin-top: -20px;
        padding: 0 15px;
    }
    
    .profile-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .photos-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .profile-cover {
        height: 200px;
    }
    
    .profile-avatar {
        width: 120px;
        height: 120px;
        border: 4px solid var(--white);
    }
    
    .verified-badge {
        width: 30px;
        height: 30px;
        border: 2px solid var(--white);
    }
    
    .verified-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .profile-info-header h1 {
        font-size: 1.25rem;
    }
    
    .btn-contact {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .photos-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .play-overlay {
        width: 60px;
        height: 60px;
    }
    
    .play-overlay svg {
        width: 36px;
        height: 36px;
    }
    
    .modal-close-btn {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
}

/* Manter estilos antigos para compatibilidade */
.public-profile {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.profile-hero {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.profile-photo-large {
    flex-shrink: 0;
    max-width: 200px;
}

.profile-photo-large img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    max-width: 100%;
}

.profile-info h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.bio {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 1.5rem;
}

.gallery-section {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.gallery-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.photos-gallery-public {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.photos-gallery-public img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    max-height: 400px;
}

.photos-gallery-public video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    background: #000;
    max-height: 400px;
}

.photos-gallery-public img:hover,
.photos-gallery-public video:hover {
    transform: scale(1.05);
}

/* Vídeo de Verificação */
.verification-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;

}

.verification-video-container video {
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Admin Dashboard */
.admin-dashboard {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.admin-dashboard h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.admin-tabs::-webkit-scrollbar {
    display: none;
}

.tab-button {
    padding: 0.875rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s;
    white-space: nowrap;
    position: relative;
    flex-shrink: 0;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(139, 69, 19, 0.05);
    border-radius: 8px 8px 0 0;
}

.tab-content {
    display: none;
}

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

.admin-filters {
    margin-bottom: 1.5rem;
}

.admin-filters select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.admin-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.admin-item-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    flex: 1 1 auto;
    min-width: 110px;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
}

.close {
    color: var(--text-light);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--text-color);
}

/* Danger Zone */
.danger-zone {
    border: 2px solid var(--danger-color);
}

.danger-zone h3 {
    color: var(--danger-color);
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-info h1 {
        font-size: 2rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-header .btn {
        width: 100%;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .auth-box {
        padding: 2rem 1.5rem;
    }
    
    .form-box {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .admin-tabs {
        gap: 0.25rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.75rem;
    }
    
    .tab-button {
        padding: 0.65rem 0.875rem;
        font-size: 0.82rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* Animações de Entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Aplicar animações */
.feature-card,
.profile-card,
.auth-box {
    animation: fadeInUp 0.6s ease-out;
}

.btn-primary {
    background-size: 200% auto;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    animation: gradient 3s ease infinite;
}

.hero {
    background-size: 200% auto;
    animation: gradient 8s ease infinite;
}

.navbar {
    background-size: 200% auto;
    animation: gradient 10s ease infinite;
}

/* Estilos para modal de detalhes de cliente */
.profile-detail-section {
    padding: 1rem 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.detail-item {
    padding: 1rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff1493;
}

.detail-item strong {
    display: block;
    color: #ff1493;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Marca d'água em vídeos - também visível em tela cheia */
video::backdrop {
    background: rgba(0, 0, 0, 0.9);
}

video::-webkit-media-controls-panel {
    z-index: 998 !important;
}

/* Ocultar botão de tela cheia */
video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

video::-moz-media-controls-fullscreen-button {
    display: none !important;
}

/* Garantir que a marca d'água fique visível */
.photos-gallery-public video,
.photo-item video {
    position: relative;
    z-index: 1;
}

.detail-item span {
    display: block;
    color: var(--text-color);
    font-size: 1rem;
}

/* ========================================
   PÁGINA DE UPGRADE DE PLANO
   ======================================== */

/* Container principal */
.upgrade-container {
    padding: 2rem 0 4rem;
    max-width: 1200px;
}

/* Cabeçalho da página */
.upgrade-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
}

.upgrade-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.upgrade-header p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* Card de Plano Atual */
.current-plan-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.current-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 20, 147, 0.3);
}

.current-plan-content {
    width: 100%;
}

.current-plan-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-plan-content p {
    color: var(--text-light);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* Grade de Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards de Pricing */
.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-premium {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff, #fff5f9);
}

.pricing-card-premium:hover {
    box-shadow: 0 10px 40px rgba(255, 20, 147, 0.3);
}

/* Badge Popular */
.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--pink-gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}

/* Header do Pricing */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-card-premium .pricing-header {
    border-bottom-color: rgba(255, 20, 147, 0.2);
}

.pricing-header h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-card-premium .pricing-header h2 {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Preço */
.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.pricing-card-premium .price .amount {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
}

/* Features List */
.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.feature-item.disabled {
    opacity: 0.5;
}

.feature-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Botões dos cards */
.pricing-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    margin-top: auto;
}

.btn-outline-secondary {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
}

.btn-upgrade {
    font-size: 1.1rem;
    padding: 1.125rem;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

/* Seção de Pagamento */
.payment-section {
    display: none;
    margin-top: 3rem;
    animation: fadeInUp 0.5s ease;
}

.payment-section.show {
    display: block;
}

.payment-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.payment-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-header p {
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* Steps de Pagamento */
.payment-steps {
    display: grid;
    gap: 2rem;
}

.payment-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--pink-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* QR Code Container */
.qr-code-container {
    background: var(--white);
    border: 3px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* PIX Key Section */
.pix-key-section {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.pix-key-section.show {
    display: block;
}

.pix-key-section p {
    margin-bottom: 0.75rem;
}

.pix-key-container {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.pix-key-code {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    word-break: break-all;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
}

.btn-copy {
    flex-shrink: 0;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
}

/* Payment Info Box */
.payment-info-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e6f7ff, #f0f9ff);
    border-radius: 12px;
    border: 2px solid #91d5ff;
    margin-top: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content p {
    margin: 0 0 0.5rem;
    color: var(--text-color);
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-detail {
    font-size: 0.9rem;
    color: var(--text-light) !important;
}

.price-highlight {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Pending Card */
.pending-card {
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff4e6, #fff9f0);
    border-radius: 16px;
    border: 2px solid #ffd591;
    box-shadow: var(--shadow);
}

.pending-card.show {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: fadeInUp 0.5s ease;
}

.pending-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.pending-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.pending-content p {
    color: var(--text-light);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* Current Plan Info Grid */
.plan-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #fff, #fafafa);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 20, 147, 0.3);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.1);
}

.info-card h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-card p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.plan-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-badge.free {
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    color: #424242;
}

.plan-badge.premium {
    background: var(--pink-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.4);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--pink-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .upgrade-container {
        padding: 1.5rem 0 3rem;
    }

    .upgrade-header {
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .current-plan-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .plan-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .badge-popular {
        top: -10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .payment-step {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin: 0 auto;
    }

    .qr-code-container {
        padding: 1.5rem;
        min-height: 250px;
    }

    .pix-key-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .payment-info-box {
        flex-direction: column;
        padding: 1rem;
    }

    .pending-card.show {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .upgrade-header h1 {
        font-size: 1.75rem;
    }

    .upgrade-header p {
        font-size: 0.95rem;
    }

    .current-plan-content h3 {
        font-size: 1.35rem;
    }

    .pending-icon {
        font-size: 2.5rem;
    }

    .pricing-header h2 {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .price .currency,
    .price .period {
        font-size: 1rem;
    }

    .feature-item {
        padding: 0.75rem 0;
    }

    .feature-icon {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .pricing-card .btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .payment-header h2 {
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .info-card {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }

    .info-card h4 {
        font-size: 0.875rem;
    }

    .info-card p {
        font-size: 1.5rem;
    }

    .plan-badge {
        font-size: 1rem;
        padding: 0.6rem 1.25rem;
    }
}

/* ===== ESTILOS PARA GERENCIAMENTO DE ADMINISTRADORES ===== */

/* Card genérico para formulários */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 20, 147, 0.1);
}

.card h4 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Grid de formulário responsivo */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Grid de permissões */
.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

/* Hint do formulário */
.form-hint {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
}

/* Botão block (largura total) */
.btn-block {
    width: 100%;
    display: block;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .permissions-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        padding: 1rem;
        gap: 0.75rem;
    }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    .card {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .card h4 {
        font-size: 1.1rem;
    }
    
    .permissions-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .checkbox-label {
        padding: 0.75rem;
    }
    
    .checkbox-label span {
        font-size: 0.9rem;
    }
}

/* ============================================
   MODAL DE PESQUISA DE CIDADE
   ============================================ */

.city-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.city-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.city-search-content {
    position: relative;
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
    animation: slideUp 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.city-search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.2s;
    z-index: 1;
}

.city-search-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.city-search-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #fce4ec, #fff);
}

.city-search-header svg {
    margin-bottom: 1rem;
}

.city-search-header h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.city-search-header p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-style: normal;
}

/* Input de pesquisa */
.city-search-input-wrapper {
    position: relative;
    padding: 0 2rem;
    margin-bottom: 1rem;
}

.city-search-input-wrapper .search-icon {
    position: absolute;
    left: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.city-search-input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.city-search-input-wrapper input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.city-search-loading {
    position: absolute;
    right: 2.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.mini-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Sugestões de cidades */
.city-suggestions {
    flex: 1;
    overflow-y: auto;
    padding: 0 1rem 1rem;
    max-height: 350px;
}

.city-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    margin: 0.5rem;
    border-radius: 12px;
    background: var(--bg-color);
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.city-suggestion-item:hover,
.city-suggestion-item.selected {
    background: linear-gradient(135deg, #fce4ec, #fff);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.city-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.city-info svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.city-info div {
    display: flex;
    flex-direction: column;
}

.city-info strong {
    font-size: 1rem;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.city-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Estados vazios e erros */
.no-results,
.error-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.no-results svg,
.error-message svg {
    margin-bottom: 1rem;
}

.no-results p,
.error-message p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.no-results small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer do modal */
.city-search-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-color);
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
}

.city-search-footer button {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.city-search-footer .btn-secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.city-search-footer .btn-secondary:hover {
    background: var(--bg-color);
    border-color: var(--text-color);
}

.city-search-footer .btn-primary {
    background: var(--pink-gradient);
    color: white;
    box-shadow: var(--shadow);
}

.city-search-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsividade */
@media (max-width: 768px) {
    .city-search-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .city-search-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .city-search-header h2 {
        font-size: 1.5rem;
    }
    
    .city-search-input-wrapper {
        padding: 0 1.5rem;
    }
    
    .city-search-footer {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }
    
    .city-suggestion-item {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 480px) {
    .city-search-header h2 {
        font-size: 1.25rem;
    }
    
    .city-search-header p {
        font-size: 0.875rem;
    }
    
    .city-info strong {
        font-size: 0.95rem;
    }
    
    .city-info span {
        font-size: 0.8rem;
    }
}

/* ============================================
   BADGE DE FILTRO ATIVO
   ============================================ */

.active-filter-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fce4ec, #fff);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    animation: slideDown 0.3s ease;
}

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

.filter-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.filter-info svg {
    color: var(--primary-color);
}

.filter-info span {
    font-size: 0.95rem;
}

.filter-info strong {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

.clear-filter-btn {
    background: rgba(255, 20, 147, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.2s;
}

.clear-filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* ========================================
   SISTEMA DE AVALIAÇÕES (REVIEWS)
   ======================================== */

/* Seção de Reviews */
.profile-reviews-section {
    margin-top: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-review {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
}

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.4);
}

/* Estatísticas de Reviews */
.review-stats {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.1));
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.stats-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-large {
    font-size: 3rem;
    font-weight: 700;
    color: #ff1493;
}

.stars-large {
    font-size: 1.5rem;
    color: #ffd700;
}

.review-count {
    font-size: 0.95rem;
    color: #666;
}

/* Lista de Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.85rem;
    color: #718096;
}

.review-rating {
    font-size: 1.2rem;
    color: #ffd700;
}

.review-rating .star {
    display: inline-block;
    margin: 0 1px;
}

.review-rating .star.filled {
    color: #ffd700;
}

.review-rating .star.empty {
    color: #e2e8f0;
}

.review-rating .star.half {
    background: linear-gradient(90deg, #ffd700 50%, #e2e8f0 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.review-comment {
    margin-top: 0.75rem;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Modal de Avaliação */
.modal-review {
    max-width: 500px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    font-size: 1.35rem;
    color: #2d3748;
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    color: #718096;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #ff1493;
}

.modal-body {
    padding: 1.5rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.review-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: block;
}

/* Stars Input (clicável) */
.stars-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2.5rem;
    cursor: pointer;
}

.stars-input .star {
    color: #e2e8f0;
    transition: all 0.2s ease;
}

.stars-input .star:hover,
.stars-input .star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.stars-input .star:hover ~ .star {
    color: #e2e8f0;
}

/* Textarea do comentário */
.review-textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.review-textarea:focus {
    outline: none;
    border-color: #ff1493;
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: #718096;
    margin-top: -0.5rem;
}

/* Ações do Modal */
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-cancel {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #718096;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.btn-submit {
    padding: 0.75rem 1.5rem;
    border: none;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 20, 147, 0.4);
}

/* Modal Backdrop */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-review {
        width: 100%;
        text-align: center;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .rating-large {
        font-size: 2.5rem;
    }
    
    .stars-input {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

/* Form de opções de tempo */
.time-option-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: flex-end;
}

/* ============================================
   ADMIN PANEL — RESPONSIVIDADE
   ============================================ */

/* Cabeçalho do painel (título + botão "Gerenciar Admins") */
.admin-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-panel-header h2 {
    margin: 0;
    flex: 1 1 auto;
}

/* Stats grid: 2 colunas em tablet, 1 em mobile pequeno */
@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-card {
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 380px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Item do painel admin em mobile */
@media (max-width: 640px) {
    .admin-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-panel-header > .btn {
        width: 100%;
        justify-content: center;
    }

    .admin-item {
        padding: 1rem;
    }

    .admin-item-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-item-header > div:first-child {
        width: 100%;
    }

    .admin-item-actions {
        width: 100%;
        justify-content: stretch;
    }

    .admin-item-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.85rem;
        padding: 0.6rem 0.5rem;
    }

    /* Subscription cards */
    .subscription-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .subscription-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .subscription-actions {
        flex-direction: column;
    }

    .subscription-actions button {
        flex: none;
        width: 100%;
    }

    /* Form de criar admin */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Tab de opções de tempo com 4 colunas → empilhar */
    .time-option-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .admin-dashboard {
        padding: 1.5rem 0;
    }

    .admin-dashboard h2 {
        font-size: 1.5rem;
    }

    .subscription-details {
        grid-template-columns: 1fr;
    }

    .time-option-form {
        grid-template-columns: 1fr;
    }
}
