/* =============================================
   ESTILOS ESPECÍFICOS - MODELOS v2
============================================= */

.models-hero {
    background-color: #111; 
    padding: 160px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid #222;
}

.models-hero h1 { font-size: 3.5rem; color: var(--cor-dourado); margin-bottom: 10px; }
.models-hero p { color: var(--cor-cinza-texto); font-size: 1.2rem; }

/* --- Seções --- */
.models-list-section {
    padding: 60px 0;
    background-color: var(--cor-preto);
}

.section-casa {
    background-color: #0f0f0f; /* Ligeiramente diferente para destaque */
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--cor-branco);
    margin-bottom: 10px;
}

.gold-title {
    color: var(--cor-dourado) !important;
}

.section-header p { color: var(--cor-cinza-texto); }

.models-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
}

/* --- Card --- */
.model-card {
    background-color: #141414;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

/* Destaque visual para planos VIP/Casa */
.model-card.house_star,
.model-card.vip {
    border-color: #333;
}

.model-card.house_star:hover,
.model-card.vip:hover {
    border-color: var(--cor-dourado);
    transform: translateY(-5px);
}

.model-image-wrapper {
    position: relative;
    padding-top: 125%; 
    background-color: #000;
    overflow: hidden;
}

.model-image-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

/* Badges */
.status-badge {
    position: absolute;
    top: 10px; right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.house-badge {
    background-color: var(--cor-dourado);
    color: #000;
}

.vip-badge {
    background-color: #333;
    color: var(--cor-dourado);
    border: 1px solid var(--cor-dourado);
}

/* Content */
.model-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

.model-header {
    display: flex; justify-content: space-between; align-items: start;
    margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #222;
}

.model-header h3 { font-size: 1.6rem; color: #fff; margin: 0; }

.model-meta { display: flex; align-items: center; gap: 10px; }
.model-age { color: #888; font-weight: bold; }

.social-link { color: #fff; font-size: 1.2rem; transition: color 0.3s; }
.social-link:hover { color: #E1306C; } /* Cor do Instagram */

.model-bio { font-size: 0.9rem; color: #aaa; line-height: 1.5; margin-bottom: 15px; flex-grow: 1; }

.model-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px; }
.model-tags span {
    background: #222; color: #ccc; font-size: 0.75rem; padding: 4px 8px; border-radius: 4px;
}

.model-btn { width: 100%; justify-content: center; gap: 8px; }

/* CTA Final */
.be-a-model-cta {
    text-align: center; padding: 40px;
    background: linear-gradient(45deg, #111, #1a1a1a);
    border: 1px solid #333; border-radius: 8px; margin-top: 60px;
}
.be-a-model-cta h3 { color: var(--cor-dourado); margin-bottom: 10px; font-size: 2rem; }
.be-a-model-cta p {
    margin-bottom: 30px;
    color: #ccc;
    font-size: 1.1rem;
}

/* Responsivo */
@media (min-width: 576px) { .models-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .models-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .models-grid { grid-template-columns: repeat(4, 1fr); } }