/* ===============================
   RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a12, #111122);
    color: #fff;
    min-height: 100vh;
}

/* ===============================
   HEADER
================================ */
.main-header {
    width: 100%;
    background: rgba(20, 20, 30, 0.95);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.main-header .logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff2d95;
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-link img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff2d95;
    transition: transform 0.3s;
}

.avatar-link img:hover {
    transform: scale(1.1);
}

.btn-login {
    padding: 8px 18px;
    background: linear-gradient(135deg, #ff2d95, #ff5bbd);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 45, 149, 0.45);
}

/* ===============================
   NAV MENU
================================ */
.main-nav {
    display: flex;
    gap: 15px;
}

.main-nav a {
    color: #ccc;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    background: linear-gradient(135deg, #ff2d95, #ff5bbd);
    color: #fff;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: rgba(20, 20, 30, 0.97);
        flex-direction: column;
        padding-top: 80px;
        padding-left: 20px;
        gap: 20px;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
        z-index: 1500;
    }

    .main-nav.open {
        display: flex;
        transform: translateX(0);
    }

    .hamburger {
        display: block;
        font-size: 1.8rem;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .hamburger:hover {
        transform: rotate(90deg);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1400;
        transition: opacity 0.3s;
    }

    .menu-overlay.show {
        display: block;
    }
}

/* ===============================
   FILTROS / FORM
================================ */
.filtro-bar {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.filtro-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filtro-form select,
.filtro-form button {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #2c2c3a;
    background: #111118;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filtro-form select:focus,
.filtro-form button:hover {
    border-color: #ff2d95;
    box-shadow: 0 0 10px rgba(255, 45, 149, 0.5);
}

/* ===============================
   ACOMPANHANTES GRID
================================ */
.acompanhantes-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card-acompanhante {
    background: linear-gradient(135deg, #1c1c2a, #25253a);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.card-acompanhante:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 45, 149, 0.35);
}

.card-foto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-info {
    padding: 15px 20px;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #ff2d95;
}

.card-info .local {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 10px;
}

.card-info .descricao {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 12px;
}

.btn-ver {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff2d95, #ff5bbd);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ver:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 149, 0.45);
}

/* BADGES */
.badge.prata {
    background: #888;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin: 8px;
}

.badge.ouro {
    background: linear-gradient(135deg, #ffd700, #c9a400);
    color: #1a1200;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin: 8px;
}

/* ===============================
   PACKS MENSAGEM
================================ */
.packs-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: linear-gradient(135deg, #1c1c2a, #25253a);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.packs-container h1 {
    font-size: 2.2rem;
    color: #ff2d95;
    margin-bottom: 15px;
}

.packs-container h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.packs-container p {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 12px;
}

.packs-container .highlight {
    color: #ff5bbd;
    font-weight: 700;
}

/* ===============================
   FOOTER
================================ */
.footer-18 {
    background: linear-gradient(135deg, #111118, #1c1c2a);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-warning {
    font-weight: 700;
    color: #ff2d95;
    margin-bottom: 10px;
}

.footer-text {
    color: #bbb;
    margin-bottom: 15px;
}

.footer-copy {
    color: #888;
    font-size: 0.85rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .packs-container {
        margin: 30px 15px;
        padding: 20px;
    }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 30px;
}

.card-acompanhante {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
}

.card-acompanhante:hover {
    transform: translateY(-6px);
    border: 1px solid rgba(255, 0, 140, 0.4);
    box-shadow: 0px 15px 40px rgba(255, 0, 140, 0.15);
}

.card-foto {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.card-acompanhante:hover img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    color: white;
}

.badge.ouro {
    background: linear-gradient(90deg, #ffcc00, #ff8800);
}

.badge.prata {
    background: linear-gradient(90deg, #bbbbbb, #777777);
}

.card-info {
    padding: 18px;
    color: white;
}

.card-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ff4db8;
}

.card-info .local {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 10px;
}

.card-info .descricao {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
}

.contato {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.link-contato {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: 0.3s;
}

.link-contato:hover {
    background: rgba(255, 0, 140, 0.15);
    border: 1px solid rgba(255, 0, 140, 0.4);
    transform: translateX(4px);
}

.btn-ver {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #ff0080, #ff4db8);
    transition: 0.3s ease;
}

.btn-ver:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 18px rgba(255, 0, 140, 0.5);
}