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

:root {
    --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --font-display: "Oswald", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;

    --bg: #07080b;
    --bg-2: #0c0d13;
    --surface: rgba(15, 16, 20, 0.72);
    --surface-solid: #0e0f14;
    --surface-2: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);

    --text: rgba(255, 255, 255, 0.92);
    --text-muted: rgba(255, 255, 255, 0.66);

    --accent: #e50914;
    --accent-2: #00d4ff;
    --accent-3: #baff29;
    --primary-color: var(--accent);
    --secondary-color: rgba(255, 255, 255, 0.12);

    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.55);
    --shadow-md: 0 14px 38px rgba(0, 0, 0, 0.42);
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background:
        radial-gradient(900px 600px at 10% -10%, rgba(0, 212, 255, 0.18), transparent 60%),
        radial-gradient(800px 520px at 90% 0%, rgba(229, 9, 20, 0.20), transparent 55%),
        radial-gradient(1000px 700px at 50% 120%, rgba(186, 255, 41, 0.10), transparent 60%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    min-height: 100vh;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    border: 1px solid var(--border);
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        120deg,
        rgba(229, 9, 20, 0.55),
        rgba(0, 212, 255, 0.38),
        rgba(186, 255, 41, 0.22),
        rgba(229, 9, 20, 0.55)
    );
    background-size: 300% 300%;
    animation: gradientShift 16s ease infinite;
    filter: blur(18px);
    opacity: 0.65;
    pointer-events: none;
    z-index: -1;
}

.logo {
    font-family: var(--font-display);
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a.btn-chat,
.nav a.btn-login {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.86);
}

.nav a.btn-login {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.95), rgba(229, 9, 20, 0.75));
    border-color: rgba(255, 255, 255, 0.14);
}

.nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav a:hover,
.nav a.active {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.95), rgba(0, 212, 255, 0.55));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.14);
}

.main {
    text-align: center;
}

/* Seção Hero */
.hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.hero h2 {
    font-family: var(--font-display);
    font-size: 3em;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3em;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.98), rgba(229, 9, 20, 0.72));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(229, 9, 20, 0.34);
}

/* Seção Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 3em;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #ff6b6b;
}

.modal-content h2 {
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2em;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    display: block;
    opacity: 1;
    visibility: visible;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Estilos para perfis */
.profiles-header,
.search-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profiles-header h2,
.search-section h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profiles-header p,
.search-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.stats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.search-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.search-field input,
.search-field select {
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
}

.search-field small,
.form-group small[data-postal-help] {
    margin-top: 6px;
    color: #777;
    font-size: 0.82em;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
    padding: 0;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.profile-photo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.default-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5em;
}

.media-count {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    min-width: 24px;
    text-align: center;
}

.profile-info {
    text-align: center;
}

.profile-info h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.location {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.location i {
    color: #ff6b6b;
}

.description {
    color: #777;
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
    padding: 0 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a .fa-whatsapp {
    color: #25D366;
}

.social-links a:hover .fa-whatsapp {
    color: #128C7E;
}

.social-links a[href*="telegram"] {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-view {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pagination a:hover {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pagination .current {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border-color: rgba(255, 107, 107, 0.3);
}

/* Estados vazios */
.no-profiles,
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    margin-top: 30px;
    grid-column: 1 / -1;
}

.empty-state i,
.no-profiles i {
    font-size: 4em;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3,
.no-profiles h3 {
    font-size: 1.5em;
    color: #666;
    margin-bottom: 10px;
}

.empty-state p,
.no-profiles p {
    color: #888;
    margin-bottom: 20px;
}

.results-count {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 40px 20px;
    }
    
    .hero h2 {
        font-size: 2.2em;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profiles-header,
    .search-section {
        padding: 30px 20px;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 2em;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .profile-photo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 1.8em;
    }
    
    .profile-info h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* Estilos para perfil individual */
.profile-header {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
}

.profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

.default-photo-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4em;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-details .location,
.profile-details .phone {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details .location i,
.profile-details .phone i {
    color: #ff6b6b;
    width: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    margin: 15px 0;
}

.status-badge.pending {
    background: linear-gradient(45deg, #ffa726, #ffcc02);
    color: white;
}

.status-badge.published {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
}

.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin-top: 15px;
}

.btn-publish:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.profile-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-description h2 {
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

.profile-map-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-map-section h2 {
    margin-bottom: 12px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-map-summary,
.profile-map-note {
    color: #666;
    margin-bottom: 16px;
}

.profile-map {
    width: 100%;
    min-height: 340px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.profile-map-empty {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #666;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(78, 205, 196, 0.08));
}

.profile-map-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.profile-map-marker-fallback {
    color: #fff;
    font-size: 1.4rem;
}

/* Estilos do Carrossel */
.profile-gallery {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-gallery h2 {
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsividade do carrossel */
@media (max-width: 768px) {
    .carousel-container {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Responsividade para perfil */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-photo-large {
        width: 150px;
        height: 150px;
    }
    
    .profile-details h1 {
        font-size: 2em;
    }
    
    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .profile-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .profile-details h1 {
        font-size: 1.8em;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .btn-publish {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 1.8em;
    }
    
    .profile-info h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* Estilos para perfil individual */
.profile-header {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
}

.profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

.default-photo-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4em;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-details .location,
.profile-details .phone {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details .location i,
.profile-details .phone i {
    color: #ff6b6b;
    width: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    margin: 15px 0;
}

.status-badge.pending {
    background: linear-gradient(45deg, #ffa726, #ffcc02);
    color: white;
}

.status-badge.published {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
}

.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin-top: 15px;
}

.btn-publish:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.profile-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-description h2 {
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.profile-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Responsividade para perfil */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-photo-large {
        width: 150px;
        height: 150px;
    }
    
    .profile-details h1 {
        font-size: 2em;
    }
    
    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .profile-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .profile-details h1 {
        font-size: 1.8em;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .btn-publish {
        padding: 12px 20px;
        font-size: 1em;
    }
}

/* ===== FOOTER STYLES ===== */
footer {
    background: linear-gradient(135deg, #06060a, #121320, #06060a);
    background-size: 300% 300%;
    animation: gradientShift 18s ease infinite;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px 240px at 20% 0%, rgba(229, 9, 20, 0.18), transparent 60%),
        radial-gradient(640px 260px at 80% 0%, rgba(0, 212, 255, 0.14), transparent 60%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 600;
    letter-spacing: 0.02em;
    order: 2;
}

.footer-links {
    order: 1;
}

.footer-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.footer-links ul li a:hover {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.95), rgba(0, 212, 255, 0.55));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.14);
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-links ul {
        gap: 20px;
    }
    
    .footer-links ul li a {
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-links ul {
        gap: 15px;
    }
    
    .footer-links ul li a {
        padding: 5px 10px;
        font-size: 13px;
    }
}


@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 1.8em;
    }
    
    .profile-info h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* Estilos para perfil individual */
.profile-header {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
}

.profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

.default-photo-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4em;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-details .location,
.profile-details .phone {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details .location i,
.profile-details .phone i {
    color: #ff6b6b;
    width: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    margin: 15px 0;
}

.status-badge.pending {
    background: linear-gradient(45deg, #ffa726, #ffcc02);
    color: white;
}

.status-badge.published {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
}

.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin-top: 15px;
}

.btn-publish:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.profile-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-description h2 {
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Responsividade para perfil */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-photo-large {
        width: 150px;
        height: 150px;
    }
    
    .profile-details h1 {
        font-size: 2em;
    }
    
    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .profile-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .profile-details h1 {
        font-size: 1.8em;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .btn-publish {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 1.8em;
    }
    
    .profile-info h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* Estilos para perfil individual */
.profile-header {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
}

.profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

.default-photo-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4em;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-details .location,
.profile-details .phone {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details .location i,
.profile-details .phone i {
    color: #ff6b6b;
    width: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    margin: 15px 0;
}

.status-badge.pending {
    background: linear-gradient(45deg, #ffa726, #ffcc02);
    color: white;
}

.status-badge.published {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
}

.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin-top: 15px;
}

.btn-publish:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.profile-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-description h2 {
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Responsividade para perfil */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-photo-large {
        width: 150px;
        height: 150px;
    }
    
    .profile-details h1 {
        font-size: 2em;
    }
    
    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .profile-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .profile-details h1 {
        font-size: 1.8em;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .btn-publish {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 1.8em;
    }
    
    .profile-info h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* Estilos para perfil individual */
.profile-header {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
}

.profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

.default-photo-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4em;
}

.profile-details {
    flex: 1;
}

.profile-details h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-details .location,
.profile-details .phone {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-details .location i,
.profile-details .phone i {
    color: #ff6b6b;
    width: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #229ed9);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #e4405f, #f77737, #fcaf45);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    margin: 15px 0;
}

.status-badge.pending {
    background: linear-gradient(45deg, #ffa726, #ffcc02);
    color: white;
}

.status-badge.published {
    background: linear-gradient(45deg, #4caf50, #8bc34a);
    color: white;
}

.btn-publish {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    margin-top: 15px;
}

.btn-publish:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    color: white;
}

.profile-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-description h2 {
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

/* Responsividade para perfil */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .profile-photo-large {
        width: 150px;
        height: 150px;
    }
    
    .profile-details h1 {
        font-size: 2em;
    }
    
    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .profile-photo-large {
        width: 120px;
        height: 120px;
    }
    
    .profile-details h1 {
        font-size: 1.8em;
    }
    
    .social-btn {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    
    .btn-publish {
        padding: 12px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8em;
    }
    
    .profiles-header h2,
    .search-section h2 {
        font-size: 1.8em;
    }
    
    .profile-info h3 {
        font-size: 1.2em;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1em;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 36px;
    }
}

/* Estilos para perfil individual */
.profile-header {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    align-items: center;
}

.profile-photo-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

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

/* Card de Formulário */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header i {
    font-size: 2.5em;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 1.8em;
    color: #333;
}

.card-content {
    padding: 20px 0;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #333;
}

.form-group label i {
    color: #ff6b6b;
    width: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert.error {
    background: #fff5f5;
    color: #ff6b6b;
    border: 1px solid #ffd7d7;
}

.alert.success {
    background: #f0fff4;
    color: #48bb78;
    border: 1px solid #c6f6d5;
}

.btn-primary {
    width: 100%;
    margin-top: 10px;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-footer a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    color: #ff8787;
}

/* Estilos para a página de edição */
.edit-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.preview-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 0.5rem;
}

.preview-photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    margin-bottom: 0.5rem;
}

.preview-photo-placeholder i {
    font-size: 2rem;
    color: white;
}

.preview-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.edit-profile-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header i {
    font-size: 1.2rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-content {
    padding: 1.5rem;
}

.current-photo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.current-photo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.remove-photo-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #dc3545;
    cursor: pointer;
    font-size: 0.9rem;
}

.file-input {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.media-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.remove-media input {
    display: none;
}

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

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-danger {
    background: #dc3545;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
    }
    
    .current-photo {
        flex-direction: column;
        text-align: center;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Botão WhatsApp */
.social-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.social-btn.whatsapp:hover {
    background: linear-gradient(45deg, #128C7E, #075E54);
    transform: translateY(-2px);
}

/* Para garantir que funcione em ambas as páginas */
.social-links .social-btn.whatsapp,
.social-links-large .social-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
}

.social-links .social-btn.whatsapp:hover,
.social-links-large .social-btn.whatsapp:hover {
    background: linear-gradient(45deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Carrossel na página de edição */
.form-card .carousel {
    margin-top: 1rem;
    max-height: 400px;
}

.form-card .carousel-container {
    height: 350px;
}

.remove-media-carousel {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 15;
}

.remove-media-carousel:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.05);
}

.remove-media-carousel input {
    display: none;
}

.remove-media-carousel input:checked + i {
    color: #ffeb3b;
}

/* Responsividade para carrossel na edição */
@media (max-width: 768px) {
    .form-card .carousel-container {
        height: 300px;
    }
    
    .remove-media-carousel {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Estilos do Carrossel */
.profile-gallery {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.profile-gallery h2 {
    margin-bottom: 25px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Carousel item styles are already defined above */

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsividade do carrossel */
@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9em;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}
/* Adicionar ao final do arquivo */
.media-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #6c757d;
    height: 200px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

.profile-photo img, .profile-photo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Gallery Image Styles */
.gallery-image {
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Lightbox Modal - Correção de sobreposição e posicionamento */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999; /* Z-index muito alto para sobrepor tudo */
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    /* Garantir que o modal cubra toda a viewport */
    margin: 0;
    border: none;
    outline: none;
}

.lightbox-modal.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Garantir que o body não role e que o modal tenha prioridade total */
body.lightbox-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Container do conteúdo centralizado */
.lightbox-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    z-index: 1000000; /* Z-index ainda maior para o conteúdo */
}

/* Imagem com proporções corretas */
.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

/* Botão de fechar - posicionamento absoluto no modal */
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Controles de navegação - posicionamento absoluto no modal */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Contador - posicionamento absoluto no modal */
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Animação do modal */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Garantir que outros elementos tenham z-index baixo */
.profile-gallery,
.carousel,
.carousel-container,
.container,
main,
header,
nav {
    position: relative;
    z-index: 1;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 25px;
    }
    
    .lightbox-next {
        right: 25px;
    }
}

/* Responsividade para smartphones */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98vw;
        max-height: 80vh;
        border-radius: 8px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .lightbox-content {
        max-width: 100vw;
        max-height: 75vh;
        border-radius: 6px;
    }
    
    .lightbox-image {
        max-height: 65vh;
    }
    
    .lightbox-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .lightbox-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-counter {
        bottom: 10px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Animação suave e proporcional */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Garantir que outros elementos não interfiram */
.profile-gallery {
    position: relative;
    z-index: 1;
}

.carousel {
    position: relative;
    z-index: 1;
}

.carousel-container {
    position: relative;
    z-index: 1;
}

/* Container principal com z-index baixo */
.container {
    position: relative;
    z-index: 1;
}

/* Modal de Imagem - Implementação Simples */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.image-modal img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
}

.image-modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.image-modal-close:hover {
    color: #ccc;
}

/* Modal de Imagem Sobreposta na Galeria */
.profile-gallery {
    position: relative;
}

.gallery-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 100;
    justify-content: center;
    align-items: center;
}

.gallery-overlay.show {
    display: flex;
}

.overlay-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.overlay-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.overlay-close {
    position: absolute;
    top: -30px;
    right: -30px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
}

.overlay-close:hover {
    background: #f0f0f0;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 90vw;
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
    
    .lightbox-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .lightbox-image {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 65vh;
    }
    
    .lightbox-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .lightbox-prev {
        left: 16px;
    }
    
    .lightbox-next {
        right: 16px;
    }
    
    .lightbox-counter {
        bottom: 12px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

/* Animações otimizadas */
@keyframes fadeIn {
    from { 
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to { 
        opacity: 1;
        backdrop-filter: blur(2px);
    }
}

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

/* Gallery Modal - Sistema completo de galeria */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-modal.show {
    display: flex;
}

body.gallery-open {
    overflow: hidden;
}

.gallery-content {
    background: white;
    border-radius: 12px;
    max-width: 95vw;
    max-height: 95vh;
    width: 1200px;
    height: 800px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: galleryZoomIn 0.3s ease;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.gallery-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.gallery-close {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    background: #f8f9fa;
}

.gallery-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    padding: 20px 25px;
    background: white;
    border-radius: 0 0 12px 12px;
    overflow-x: auto;
    border-top: 1px solid #eee;
    max-height: 120px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    border-color: #007bff;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

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

/* Responsividade */
@media (max-width: 1024px) {
    .gallery-content {
        width: 90vw;
        height: 85vh;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-content {
        width: 95vw;
        height: 90vh;
    }
    
    .gallery-header {
        padding: 15px 20px;
    }
    
    .gallery-title {
        font-size: 18px;
    }
    
    .gallery-main {
        padding: 15px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .gallery-prev {
        left: 15px;
    }
    
    .gallery-next {
        right: 15px;
    }
    
    .gallery-thumbnails {
        padding: 15px 20px;
        max-height: 100px;
    }
    
    .gallery-thumb {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .gallery-content {
        width: 98vw;
        height: 95vh;
    }
    
    .gallery-header {
        padding: 12px 15px;
    }
    
    .gallery-title {
        font-size: 16px;
    }
    
    .gallery-main {
        padding: 10px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-thumbnails {
        padding: 12px 15px;
        max-height: 80px;
        gap: 8px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
}

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

/* Complete Profile Styles */
.complete-profile-hero {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 2rem;
}

.completion-status {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.status-item.completed {
    background: rgba(76, 175, 80, 0.3);
}

.status-item.pending {
    background: rgba(255, 193, 7, 0.3);
}

.complete-form .form-card {
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.current-photo, .no-photo-placeholder {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 2px dashed #ddd;
    border-radius: 8px;
}

.current-photo-img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.no-photo-placeholder i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.media-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

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

.remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(244, 67, 54, 0.9);
    color: white;
    padding: 0.25rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.required {
    color: #f44336;
}

.optional {
    color: #757575;
    font-weight: normal;
}

@media (max-width: 768px) {
    .completion-status {
        gap: 1rem;
    }
    
    .status-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

.muted-text {
    color: var(--text-muted);
}

.form-card,
.complete-form .form-card {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.card-header i {
    color: rgba(255, 255, 255, 0.86);
}

.card-header h3 {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-display);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.complete-form .form-group label,
.edit-form .form-group label {
    color: rgba(255, 255, 255, 0.82);
}

.complete-form .form-group label i,
.edit-form .form-group label i {
    color: rgba(0, 212, 255, 0.85);
}

.complete-form .form-group input,
.complete-form .form-group select,
.complete-form .form-group textarea,
.edit-form .form-group input,
.edit-form .form-group select,
.edit-form .form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}

.complete-form .form-group input::placeholder,
.complete-form .form-group textarea::placeholder,
.edit-form .form-group input::placeholder,
.edit-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.complete-form .form-group input:focus,
.complete-form .form-group select:focus,
.complete-form .form-group textarea:focus,
.edit-form .form-group input:focus,
.edit-form .form-group select:focus,
.edit-form .form-group textarea:focus {
    border-color: rgba(0, 212, 255, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.14);
}

.complete-form .alert.error,
.edit-form .alert.error {
    background: rgba(229, 9, 20, 0.12);
    color: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(229, 9, 20, 0.22);
}

.complete-form .alert.success,
.edit-form .alert.success {
    background: rgba(34, 197, 94, 0.12);
    color: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(34, 197, 94, 0.22);
}

.complete-form .alert.info,
.edit-form .alert.info {
    background: rgba(0, 212, 255, 0.12);
    color: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(0, 212, 255, 0.22);
}

.current-photo,
.no-photo-placeholder {
    border: 1px dashed rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.04);
}

.no-photo-placeholder i {
    color: rgba(255, 255, 255, 0.32);
}

.media-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.optional {
    color: rgba(255, 255, 255, 0.62);
}

.profile-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(186, 255, 41, 0.22), rgba(0, 212, 255, 0.18));
    border: 1px solid rgba(186, 255, 41, 0.32);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.9em;
    font-weight: 700;
}

.profile-rank-badge-large {
    margin-bottom: 16px;
}

.profile-social-section,
.profile-comments-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    margin-top: 30px;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.profile-social-section h2,
.profile-comments-section h2 {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.94);
}

.profile-social-note,
.comments-count,
.admin-inline-note {
    color: var(--text-muted);
}

.profile-reactions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.profile-reaction-form {
    margin: 0;
}

.reaction-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reaction-button:hover,
.reaction-button.active {
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.42);
    background: rgba(0, 212, 255, 0.10);
}

.reaction-emoji {
    font-size: 1.4rem;
}

.reaction-label {
    flex: 1;
    font-weight: 700;
    text-align: left;
}

.reaction-count {
    min-width: 36px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    font-weight: 700;
}

.profile-comments-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-comment-form {
    margin-bottom: 24px;
}

.profile-comment-form .form-group label {
    color: rgba(255, 255, 255, 0.88);
}

.profile-comment-form .form-group input,
.profile-comment-form .form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
}

.profile-comment-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.profile-comment-form .form-group input::placeholder,
.profile-comment-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.profile-comments-list {
    display: grid;
    gap: 16px;
}

.profile-comment-card {
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92em;
}

.profile-comment-card p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}

.profile-comment-delete {
    margin-top: 14px;
}

.btn-link-danger {
    padding: 0;
    border: 0;
    background: transparent;
    color: #ff8a8a;
    cursor: pointer;
    font-weight: 700;
}

.btn-link-danger:hover {
    color: #ffb3b3;
}

.profile-comment-empty {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.profile-comment-empty i {
    display: block;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .profile-comments-header {
        flex-direction: column;
    }

    .profile-social-section,
    .profile-comments-section {
        padding: 22px 18px;
    }

    .reaction-button {
        padding: 12px 14px;
    }
}
