/*
Theme Name: Gatas Class Tema Novo
Theme URI: https://www.gatasclass.com/
Author: Compania Web
Author URI: https://www.gatasclass.com/
Description: Tema escuro com destaque em roxo para site de acompanhantes.
Version: 1.3
Text Domain: gatasclass
*/





/* BOTÃO WHATSAPP FIXO - CORRIGIDO */
#link_whatsapp {
    position: fixed;
    bottom: 10px;
    left: 20px;
    z-index: 999999;   /* bem acima de tudo */
    display: block;
}

/* imagem dentro do link */
#link_whatsapp img {
    width: 150px;
    height: auto;
    display: block;
}


.botao_site{
    display: inline-block; 
    background: rgb(212, 0, 255); 
    color: rgb(255, 255, 255); 
    padding: 12px 28px; 
    font-size: 16px; 
    font-weight: bold; 
    text-transform: uppercase; 
    border-radius: 4px; 
    text-decoration: none;
    transition: 0.2s;
}
.botao_site:hover {
    background:#ff4dff;
    color:#fff;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    background: #000;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* ---------- LAYOUT BÁSICO ---------- */

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    color: #35a4ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================================================
   TOPO / LOGO / MENU
   ============================================================ */

.top-bar {
    background: #d400ff;
    height: 8px;
}

.site-header {
    border-bottom: 3px solid #d400ff;
    background: #111;
}

.main-menu-wrapper {
    background: #d400ff;
    position: relative;   /* importante pro efeito */
    z-index: 5;
}

/* serrilhado embaixo do menu */
.main-menu-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;          /* distância pra baixo */
    height: 6px;

    /* desenha os “dentinhos” em roxo */
    background:
      linear-gradient(-45deg, transparent 75%, #d400ff 75%) 0 0 / 10px 10px repeat-x,
      linear-gradient( 45deg, transparent 75%, #d400ff 75%) 0 0 / 10px 10px repeat-x;
}


/* NAV PRINCIPAL */
.main-menu {
    display: block;
}

/* LISTA PRINCIPAL */
.main-menu .menu-itens {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 10px 0;
}

/* ITEM PRINCIPAL */
.main-menu .menu-itens > li {
    position: relative; /* necessário pro submenu */
    list-style: none;
}

/* LINK PRINCIPAL */
.main-menu .menu-itens > li > a {
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.03em;
    font-size: 14px;
    padding: 6px 4px;
    display: inline-block;
    text-transform: uppercase;
}

.main-menu .menu-itens > li > a:hover {
    text-decoration: none;
    border-bottom: 2px solid #fff;
}

/* ---------- SUBMENU DROPDOWN ---------- */

.main-menu .menu-itens li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    list-style: none;
    background: #111;
    border-top: 2px solid #fff;
    padding: 8px 0;
    display: none; /* escondido por padrão */
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

/* MOSTRAR SUBMENU AO PASSAR O MOUSE */
.main-menu .menu-itens li:hover > ul.sub-menu {
    display: block;
}

/* ITENS DO SUBMENU */
.main-menu .menu-itens li ul.sub-menu li {
    position: relative;
}

/* LINKS DO SUBMENU */
.main-menu .menu-itens li ul.sub-menu li a {
    display: block;
    padding: 8px 15px;
    color: #fff;
    font-size: 13px;
    text-transform: none;
    text-align: left;
    white-space: nowrap;
}

.main-menu .menu-itens li ul.sub-menu li a:hover {
    background: #d400ff;
    text-decoration: none;
}

/* SUB-SUBMENUS (se tiver) */
.main-menu .menu-itens li ul.sub-menu li ul.sub-menu {
    top: 0;
    left: 100%;
}

/* LOGO / TÍTULO ABAIXO DO MENU */
.site-title-bar {
    padding: 20px 0 10px;
    text-align: center;
}

.site-title {
    color: #e356ff;
    font-size: 26px;
}

/* ============================================================
   TIPOGRAFIA / CONTEÚDO GERAL
   ============================================================ */

h1, h2, h3, h4 {
    color: #e356ff;
    margin-bottom: 15px;
    font-weight: bold;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 18px;
}

/* ---------- CONTEÚDO DA HOME ---------- */

.hero-text {
    margin-bottom: 20px;
    font-size: 15px;
}

.hero-text p {
    margin-bottom: 10px;
}

.hero-text ul {
    margin: 10px 0 10px 20px;
}

.hero-text li {
    margin-bottom: 5px;
}

/* ============================================================
   GRID DE ACOMPANHANTES (HOME / RELACIONADOS)
   ============================================================ */

.girls-section {
    margin: 35px 0 10px;
}

.girls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* CARD PADRÃO */
.girl-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    padding-bottom: 12px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

/* THUMB PADRONIZADA (MESMO TAMANHO) */
.girl-thumb {
    width: 100%;
    height: 320px;          /* altura fixa */
    object-fit: cover;      /* recorta pra ficar padrão */
    object-position: center;
    display: block;
    background: #222;
    border-bottom: 3px solid #d400ff;
}

/* BARRA COM O NOME */
.girl-name-bar {
    background: #d400ff;
    padding: 7px 8px;
    margin-top: 5px;
}

.girl-name-bar h3,
.girl-name-bar h1 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

/* CIDADE / COMPLEMENTO */
.girl-city {
    font-size: 13px;
    margin-top: 6px;
    color: #ddd;
}

/* ============================================================
   TEXTO INFORMATIVO / CONTEÚDO DO POST
   ============================================================ */

.info-text {
    margin: 30px auto 40px;
    font-size: 14px;
    max-width: 900px;
}

.info-text p {
    margin-bottom: 10px;
}

/* IMAGENS DENTRO DO CONTEÚDO DO POST */
.info-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px;     /* espaço entre as fotos */
    border-radius: 4px;
}

/* ============================================================
   FORMULÁRIOS / CONTATO
   ============================================================ */

/* Caixa geral do formulário dentro do conteúdo da página */
.info-text form {
    max-width: 500px;
    margin: 10px 0 40px;
}

/* Labels */
.info-text form label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

/* Inputs e textarea */
.info-text form input[type="text"],
.info-text form input[type="email"],
.info-text form input[type="tel"],
.info-text form input[type="number"],
.info-text form textarea {
    width: 100%;
    background: #000;
    border: 1px solid #d400ff;
    padding: 8px 10px;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.info-text form textarea {
    min-height: 130px;
    resize: vertical;
}

/* Foco nos campos */
.info-text form input[type="text"]:focus,
.info-text form input[type="email"]:focus,
.info-text form input[type="tel"]:focus,
.info-text form input[type="number"]:focus,
.info-text form textarea:focus {
    outline: none;
    border-color: #ff4dff;
    box-shadow: 0 0 6px rgba(255, 77, 255, 0.6);
}

/* Botão de envio */
.info-text form input[type="submit"],
.info-text form button[type="submit"] {
    background: #d400ff;
    border: none;
    color: #fff;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s ease;
}

.info-text form input[type="submit"]:hover,
.info-text form button[type="submit"]:hover {
    background: #ff4dff;
}

/* Mensagens de erro/sucesso (se algum plugin usar) */
.info-text .form-message,
.info-text .wpcf7-response-output {
    margin-top: 15px;
    font-size: 13px;
}

/* ============================================================
   RODAPÉ
   ============================================================ */

.site-footer {
    background: #050505;
    border-top: 3px solid #d400ff;
    padding: 20px 0;
    font-size: 13px;
    color: #ccc;
    text-align: center;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

@media (max-width: 992px) {
    .girls-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    /* menu vira 2 linhas, centralizado */
    .main-menu .menu-itens {
        flex-wrap: wrap;
        gap: 15px;
    }

    .girls-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .girls-grid {
        grid-template-columns: 1fr;
    }

    .main-menu .menu-itens {
        flex-direction: column;
        gap: 10px;
    }

    .main-menu .menu-itens li {
        width: 100%;
        text-align: center;
    }

    .main-menu .menu-itens li ul.sub-menu {
        position: static;
        box-shadow: none;
        border-top: 1px solid #333;
    }

    .main-menu .menu-itens li ul.sub-menu li a {
        text-align: center;
    }

    .info-text form {
        max-width: 100%;
    }
}






/* ============================================================
   MENU MOBILE - BOTÃO 3 PONTINHOS
   ============================================================ */

/* Container do menu (linha do botão + menu) */
.menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Botão 3 pontinhos (esconde no desktop) */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
}

/* Os 3 pontinhos */
.menu-toggle span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    margin: 3px 0;
}

/* Efeito quando o menu está aberto */
body.menu-open .menu-toggle span {
    background: #000;
}



/* MOBILE */
@media (max-width: 920px) {
    .container.logo-bar {
        text-align: center;
    }
    .logo-bar img {
        height: 70px;
    }
}



/* MOBILE */
@media (max-width: 768px) {

    /* Linha com botão + menu alinhados nas extremidades */
    .menu-bar {
        justify-content: space-between;
    }

    /* Mostra o botão no mobile */
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Menu começa escondido no mobile */
    .main-menu .menu-itens {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0 15px;
    }

    /* Quando o body tiver a classe menu-open, mostra o menu */
    body.menu-open .main-menu .menu-itens {
        display: flex;
    }

    /* Links ocupando linha cheia no mobile */
    .main-menu .menu-itens > li {
        width: 100%;
    }

    .main-menu .menu-itens > li > a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }

    /* Submenu no mobile: em coluna, sem posição absoluta */
    .main-menu .menu-itens li ul.sub-menu {
        position: static;
        box-shadow: none;
        border-top: 1px solid #333;
        margin-left: 10px;
        padding: 5px 0 5px 10px;
        display: none;
    }

    .main-menu .menu-itens li:hover > ul.sub-menu {
        display: block;
    }
}
/* ============================
   MENU MOBILE EMPILHADO
   ============================ */
@media (max-width: 768px) {

    .main-menu-wrapper {
        width: 100%;
    }

    .menu-itens,
    .menu-itens li {
        width: 100% !important;
        display: block !important;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .menu-itens li a {
        display: block;
        width: 100%;
        padding: 15px 0;
        background: #d400ff;
        color: #fff;
        font-weight: bold;
        border-bottom: 3px solid #000;
        text-decoration: none;
    }

    .menu-itens li:last-child a {
        border-bottom: none;
    }

    /* Hover opcional */
    .menu-itens li a:hover {
        background: #ff4dff;
    }
}






/* CARD PADRÃO */
.girl-card {
    background: #000;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s ease;
    border: 2px solid #222;
    position: relative;
}

/* IMAGEM */
.girl-card .girl-thumb {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .35s ease;
}

/* HOVER – efeito bonitinho 
.girl-card:hover {
    border-color: #d400ff;
    box-shadow: 0 0 12px #d400ff66, 0 0 25px #d400ff44;
    transform: translateY(-4px);
}*/

/* Zoom suave na imagem */
.girl-card:hover .girl-thumb {
    transform: scale(1.06);
}

/* Nome */
.girl-name-bar {
    background: #d400ff;
    padding: 7px 0;
    text-align: center;
    transition: background .3s ease;
}

/*.girl-card:hover .girl-name-bar {
    background: #a600cc;
}*/

/* Cidade */
.girl-city {
    text-align: center;
    color: #bbb;
    margin-top: 4px;
    margin-bottom: 10px;
    font-size: 14px;
}








/* ===== GALERIA SINGLE – DESKTOP ===== */
.wp-block-gallery.columns-default figure {
    width: 31%;
    margin: 1%;
}

/* ===== GALERIA SINGLE – IMAGENS ===== */
.wp-block-gallery.columns-default figure img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* ===== MOBILE: 1 IMAGEM POR LINHA ===== */
@media (max-width: 768px) {

    /* Cada imagem vira um bloco 100% */
    .wp-block-gallery.columns-default {
        display: block !important;
    }

    .wp-block-gallery.columns-default figure {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
        display: block !important;
    }

    .wp-block-gallery.columns-default figure img {
        width: 100% !important;
        height: auto !important;
    }
}
