/* ===========================
   RESET & BASE
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #0b0b0b;
    color: #fff;
}

img {
    max-width: 100%;
    display: block;
}

/* ===========================
   MODAL +18
=========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: #141414;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    max-width: 360px;
}

.modal-box h2 {
    margin-bottom: 12px;
}

.modal-box button {
    margin-top: 16px;
    padding: 12px 26px;
    background: #ff3b7f;
    border: none;
    border-radius: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* ===========================
   HEADER
=========================== */
.main-header {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ff3d7f;
    cursor: pointer;
}

/* MENU */
.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    opacity: 0.85;
    transition: 0.3s;
}

.main-nav a:hover {
    color: #ff3d7f;
    opacity: 1;
}

/* LOGIN (ESPELHADO DA LOGO) */
.header-login {
    display: flex;
    align-items: center;
}

.btn-login {
    padding: 10px 22px;
    background: #ff3d7f;
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-login:hover {
    background: #ff5d95;
    box-shadow: 0 0 14px rgba(255, 61, 127, 0.5);
}

.main-header {
    background: linear-gradient(135deg, #0b0b0f, #111);
    padding: 12px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: #ff2d95;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    background: #ff2d95;
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.avatar-link img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff2d95;
}

/* MOBILE */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0b0b0f;
        padding: 15px;
    }

    .main-nav.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* ===========================
   CARROSSEL PREMIUM
=========================== */

/* ===========================
   CARROSSEL FULL IMAGE
=========================== */

.carousel-container {
    position: relative;
    max-width: 1200px;
    height: 420px;
    margin: 40px auto;
    overflow: hidden;

    border-radius: 18px;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* slides */
.carousel-slide {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
}

/* imagem ocupa tudo */
.carousel-slide img {
    min-width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

/* botões */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    font-size: 22px;
    color: #fff;

    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);

    opacity: 0;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: linear-gradient(45deg, #ff0055, #ff6699);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.left {
    left: 16px;
}

.carousel-btn.right {
    right: 16px;
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

/* responsivo */
@media (max-width: 768px) {

    .carousel-container {
        height: 260px;
        border-radius: 12px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}


/* ===========================
   ADS
=========================== */
.ads {
    display: flex;
    justify-content: center;
    margin: 28px 0;
}

.ads-placeholder {
    width: 100%;
    max-width: 970px;
    min-height: 90px;
    background: #111;
    border: 1px dashed #333;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
}

/* ===========================
   AVISO 18
=========================== */
.notice-18 {
    text-align: center;
    font-size: 14px;
    color: #aaa;
    margin: 24px 12px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    background: #0e0e0e;
    text-align: center;
    padding: 14px;
    font-size: 13px;
    color: #777;
}

/* ===========================
   MOBILE FIRST
=========================== */
@media (max-width: 768px) {

    .header-container {
        padding: 14px 16px;
    }

    .main-nav {
        display: none;
        /* futuro menu hamburguer */
    }

    .logo {
        font-size: 22px;
    }

    .btn-login {
        padding: 8px 16px;
        font-size: 14px;
    }

    .carousel-container {
        height: 220px;
        margin: 24px 12px;
    }

    .carousel-slide img {
        height: 220px;
    }

    .ads-placeholder {
        max-width: 320px;
        min-height: 100px;
    }
}

/* ===========================
   HEADER ACTIONS (LOGIN + HAMBÚRGUER)
=========================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* BOTÃO HAMBÚRGUER */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* ===========================
   MOBILE MENU
=========================== */
@media (max-width: 768px) {

    .hamburger {
        display: block;
        z-index: 101;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        /* altura do header */
        left: 0;
        width: 100%;
        background: #0b0b0b;

        flex-direction: column;
        display: none;

        z-index: 1000;
        /* MUITO IMPORTANTE */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    .main-nav a {
        padding: 18px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 17px;
    }

    .main-nav.active {
        display: flex;
    }
}

body.menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

/* ===========================
   HAMBÚRGUER ATIVO (X)
=========================== */
.hamburger.active {
    font-size: 28px;
}

.hamburger.active::before {
    content: "✕";
}

.hamburger.active {
    color: #ff3d7f;
}

/* ===========================
   OVERLAY DO MENU
=========================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

.age-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.age-box {
    background: #111;
    color: #fff;
    max-width: 420px;
    width: 90%;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.age-box h2 {
    margin-bottom: 15px;
    color: #ff3366;
}

.age-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-actions button {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
}

#confirmAge {
    background: #ff3366;
    color: #fff;
}

#denyAge {
    background: #333;
    color: #ccc;
}

/* ===================================== */
/* HOME — ACOMPANHANTES EM DESTAQUE */
/* ===================================== */

.destaques-home {
    padding: 70px 20px;
    background: linear-gradient(to bottom, #0f0f12, #141419);
    text-align: center;
}

.titulo-home {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

/* GRID MODERNO */
.cards-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* CARD */
.card-acompanhante {
    background: #1b1b21;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.card-acompanhante:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 0, 120, 0.25);
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 25px;
    z-index: 2;
}

.badge.ouro {
    background: linear-gradient(45deg, #ffd700, #ffae00);
    color: #000;
}

.badge.prata {
    background: linear-gradient(45deg, #cfcfcf, #9e9e9e);
    color: #000;
}

/* FOTO */
.card-foto {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-acompanhante:hover img {
    transform: scale(1.08);
}

/* INFO */
.card-info {
    padding: 18px;
    text-align: left;
}

.card-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.card-info .local {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.card-info .descricao {
    font-size: 14px;
    color: #bbb;
    line-height: 1.4;
    min-height: 40px;
    margin-bottom: 15px;
}

/* BOTÃO */
.btn-ver {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(45deg, #ff2ea6, #ff0077);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-ver:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 120, 0.7);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .titulo-home {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .card-foto {
        height: 200px;
    }

    .cards-grid {
        gap: 20px;
    }
}