/* ===== RESET & VARIÁVEIS GLOBAIS ===== */
:root {
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gold: #D4AF37;
    --gold-dark: #B59530;
    --gold-light: #F5D872;
    --red: #dc3545;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --pink: #FF1493;
    --pink-dark: #C71585;
    --telegram: #0088cc;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1em;
}

/* ===== LAYOUT GERAL ===== */
.container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 5px;
}
.logo-image {
    width: 88px;
    height: auto;
    margin-right: 0.5rem;
}

.section {
    padding: 60px 0;
}

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

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

/* ===== HEADER ===== */
.header {
    background-color: var(--black);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--gold);
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
    color: var(--gold);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ===== NAVEGAÇÃO PRINCIPAL ===== */
.main-nav {
    display: flex;
    align-items: center;
}

.search-container {
    position: relative;
    margin: 0 20px;
    width: 400px;
}

.search-bar {
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px;
    border-radius: 20px;
    border: none;
    background-color: var(--medium-gray);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.search-bar:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--gold);
}

.search-bar::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
}

.auth-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    border: 1px solid transparent;
}

.btn-login {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--gold);
}

.btn-login:hover {
    background-color: var(--gold);
    color: var(--black);
}

.btn-signup {
    background-color: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

.btn-signup:hover {
    background-color: var(--gold-light);
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: bold;
    background-color: var(--gold);
}

.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    width: 200px;
    overflow: hidden;
    display: none;
    z-index: 100;
}

.user-dropdown.active {
    display: block;
}

.dropdown-item {
    padding: 12px 15px;
    color: var(--dark-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
    color: var(--gold);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.online-counter {
    display: flex;
    align-items: center;
    background-color: var(--medium-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-left: 20px;
}

.online-counter i {
    margin-right: 8px;
    color: var(--whatsapp);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 250px;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-telegram {
    background-color: var(--telegram);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-telegram:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-telegram i {
    font-size: 20px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-nav-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* ===== STORIES SECTION ===== */
.stories-section {
    background-color: var(--black);
    padding: 15px 0;
    position: relative;
    border-bottom: 1px solid var(--gold);
}

.stories-container {
    padding: 0 15px;
}

.stories-container h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 5px;
}

.stories-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 5px 0 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.stories-grid::-webkit-scrollbar {
    display: none;
}

.story-item {
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
    text-decoration: none;
}

.story-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-flame {
    position: absolute;
    top: -5px;
    right: 0;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.story-author-name {
    margin-top: 8px;
    color: var(--white);
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.story-item.add-story .story-avatar {
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gold);
}

.story-item.add-story .story-avatar i {
    font-size: 24px;
    color: var(--gold);
}

.story-item.add-story:hover .story-avatar {
    background-color: var(--gold);
    border-color: var(--gold-light);
}

.story-item.add-story:hover .story-avatar i {
    color: var(--black);
}

/* ===== QUICK FILTERS ===== */
.quick-filters-container {
    background-color: var(--black);
    padding: 15px 0;
    margin-bottom: 30px;
}

.quick-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    font-size: 16px;
    white-space: nowrap;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.filter-btn:hover::after, 
.filter-btn.active::after {
    width: 100%;
}

.filter-btn.active {
    color: var(--gold);
}

.filter-btn i {
    margin-right: 8px;
}

/* ===== MODELS SECTION ===== */
.models-section {
    padding: 60px 0;
}

/* Model Card */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.model-card {
    background-color: var(--black);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}
/* Destaque */
.model-card.highlight {
    border: 3px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
    position: relative;
    overflow: hidden;
}

.model-card.highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(212, 175, 55, 0.3) 50%,
        transparent 55%
    );
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        transform: translateY(0) translateX(0);
    }
    100% {
        transform: translateY(100%) translateX(100%);
    }
}
.badge-destaque {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--gold);
    color: var(--black);
    padding: 6px 12px;
    font-size: 8px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.model-crown {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--gold);
    font-size: 24px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.model-gallery {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.model-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.model-slide.active {
    opacity: 1;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 1;
}

.gallery-nav-btn {
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-nav-btn.prev {
    left: 10px;
}

.gallery-nav-btn.next {
    right: 10px;
}

.gallery-nav-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.gallery-nav-btn.hidden {
    display: none;
}

.photo-counter {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    z-index: 2;
}

.model-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.model-name-age {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.model-name-age span {
    color: var(--white);
    font-weight: 400;
}

.model-city {
    font-size: 14px;
    color: var(--gold-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.model-city i {
    font-size: 12px;
}

.model-services {
    margin: 10px 0;
}

.service-tag {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.model-description {
    font-size: 14px;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 15px;
    /* Garante o corte em 3 linhas em todos os navegadores: */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* 3 linhas * 1.5 line-height */
    min-height: 4.5em; /* Mantém altura consistente */
    word-break: break-word; /* Evita que palavras longas quebrem o layout */
}

.model-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.model-btn {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-view {
    background-color: var(--gold);
    color: var(--black);
}

.btn-view:hover {
    background-color: var(--gold-light);
}

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

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
}

.model-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--whatsapp);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    border: 1px solid var(--black);
}

.model-status.offline {
    background-color: var(--medium-gray);
    color: var(--gold);
    border: 1px solid var(--gold);
}

/* ===== NO MODELS MESSAGE ===== */
.no-models {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.no-models i {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.no-models p {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-item {
    list-style: none;
}

.page-link {
    display: block;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: var(--transition);
}

.page-link:hover {
    background-color: var(--gold);
    color: var(--black);
}

.page-link.active {
    background-color: var(--gold);
    color: var(--black);
    font-weight: bold;
}

.page-link.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ===== STORY MODAL ===== */
.story-modal {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    padding: 10px;
    box-sizing: border-box;
}

.story-modal-content {
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    background-color: var(--black);
    border-radius: 10px;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.story-media {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    background-color: var(--black);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
}

.story-viewer {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-info {
    padding: 15px;
    background-color: var(--dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
}

.author-name {
    color: var(--white);
    font-weight: 600;
}

.story-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.like-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.like-btn.liked {
    color: var(--red);
}

.view-count {
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.delete-btn {
    background: var(--red);
    border: none;
    color: var(--white);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

/* ===== STORY UPLOAD MODAL ===== */
.story-upload-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.story-upload-content {
    background-color: var(--black);
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--gold);
}

.story-upload-content h3 {
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    background-color: var(--medium-gray);
    color: var(--white);
}

.btn-upload {
    background-color: var(--gold);
    color: var(--black);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: var(--transition);
}

.btn-upload:hover {
    background-color: var(--gold-light);
}

.preview-container {
    margin: 20px 0;
    text-align: center;
}

.preview-container img,
.preview-container video {
    max-width: 100%;
    max-height: 300px;
    border-radius: 5px;
    display: none;
}

.upload-progress {
    margin-top: 15px;
    color: var(--white);
    text-align: center;
}

.progress-bar {
    height: 5px;
    background-color: var(--gold);
    width: 0%;
    transition: width 0.3s;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-column a i {
    font-size: 12px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Breadcrumb para SEO */
.breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
    color: var(--medium-gray);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .search-container {
        width: 300px;
    }
    
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .hero {
        height: 350px;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 60px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        transition: var(--transition);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .search-container {
        width: 100%;
        margin: 20px 0;
    }
    
    .auth-section {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 10px;
    }
    
    .online-counter {
        margin: 20px 0 0 0;
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn-telegram {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }

    .quick-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .story-item {
        width: 70px;
    }
    
    .story-viewer {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .model-gallery {
        height: 350px;
    }

    .quick-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    #storyModal .story-modal-content {
        max-width: 96vw;
    }
    
    .story-item {
        width: 65px;
    }
    
    .story-avatar {
        width: 60px;
        height: 60px;
    }
    
    .story-flame {
        width: 20px;
        height: 20px;
    }
    
    .story-author-name {
        font-size: 0.7rem;
    }
    
    .story-modal .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .hero-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}
.verified-badge {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
}

.verified-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.verified-text {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-text::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('/assets/icones/verificado.png');
    background-size: contain;
    background-repeat: no-repeat;
}