
    /* ===== LAYOUT GERAL ===== */
body {
    background: #0d0d0d;
    color: #ececec;
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* ===== TÍTULO PRINCIPAL ===== */
.page-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #ff4da6;
}

/* ===== TEXTO DE INTRODUÇÃO ===== */
.intro-box {
    background: #111;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 1px solid #222;
}

.intro-box p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* ===== GRID DAS MODELOS ===== */
.grid-girls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card-girl {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    transition: .3s;
}

.card-girl:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 0, 90, 0.4);
}

.card-girl img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-info {
    padding: 18px;
}

.card-info h3 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #ff69b4;
}

.card-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== BOTÃO FINAL ===== */
.button-18 {
    text-align: center;
    margin: 45px 0;
}

.button-18 a {
    background: #ff2e8a;
    padding: 15px 35px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    transition: .3s;
}

.button-18 a:hover {
    background: #ff4da6;
}



