/*
Theme Name: Acompanhantes Famosas Premium
Theme URI: https://www.acompanhantesfamosas.com.br/
Author: Compania Web
Description: Tema moderno, responsivo e otimizado para catálogo de perfis.
Version: 1.0.0
Text Domain: afp
*/

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.11), transparent 30%),
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.08), transparent 28%),
        #08080c;
    color: #f7f7fb;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

figure,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: min(100% - 32px, 1240px);
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
}

.section {
    padding: 36px 0 58px;
}

.section-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: #f472b6;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin-bottom: 6px;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.1;
}

.section-head p {
    margin-bottom: 0;
    color: #a9a9b6;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 12, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: auto;
    max-width: 240px;
    height: 54px;
    object-fit: contain;
}

.brand-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.main-nav {
    margin-left: auto;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.site-menu li {
    position: relative;
}

.site-menu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 13px;
    border-radius: 10px;
    color: #d8d8e0;
    font-size: 0.93rem;
    font-weight: 700;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
    background: rgba(236, 72, 153, 0.12);
    color: #fff;
}

.site-menu a:hover {
    transform: translateY(-1px);
}

.site-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: none;
    min-width: 220px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: #121219;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    list-style: none;
}

.site-menu li:hover > .sub-menu {
    display: block;
}

.site-menu .sub-menu a {
    min-height: 38px;
    white-space: nowrap;
}

.header-search {
    display: flex;
    flex: 0 1 220px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.header-search input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 12px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
}

.header-search input::placeholder {
    color: #777782;
}

.header-search button {
    width: 46px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #f472b6;
    font-size: 1rem;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 40px;
}

.hero::before {
    position: absolute;
    top: -190px;
    left: 50%;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: rgba(236, 72, 153, 0.09);
    filter: blur(90px);
    content: "";
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 42px;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.08);
    color: #f9a8d4;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ec4899;
    box-shadow: 0 0 12px #ec4899;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2.35rem, 6vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero p {
    max-width: 660px;
    margin-bottom: 26px;
    color: #b8b8c3;
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    box-shadow: 0 14px 36px rgba(236, 72, 153, 0.26);
    color: #fff;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(236, 72, 153, 0.34);
}

.hero-card {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.hero-stats {
    display: grid;
    gap: 12px;
}

.stat {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.035);
}

.stat strong {
    color: #fff;
    font-size: 1.9rem;
    line-height: 1;
}

.stat span {
    color: #9999a5;
    font-size: 0.92rem;
    text-align: right;
}

/* =========================================================
   REELS
========================================================= */

.reels-section {
    padding-top: 34px;
}

.reels-controls {
    display: flex;
    gap: 8px;
}

.reels-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.reels-arrow:hover {
    border-color: rgba(236, 72, 153, 0.35);
    background: rgba(236, 72, 153, 0.14);
    transform: translateY(-1px);
}

.reels-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 14px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(236, 72, 153, 0.5) rgba(255, 255, 255, 0.04);
    scroll-snap-type: x mandatory;
}

.reels-track::-webkit-scrollbar {
    height: 7px;
}

.reels-track::-webkit-scrollbar-track {
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.04);
}

.reels-track::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(236, 72, 153, 0.5);
}

.reel-card {
    position: relative;
    flex: 0 0 164px;
    width: 164px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 22px;
    background: #111118;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
    color: #fff;
    text-align: left;
    scroll-snap-align: start;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.reel-card:hover {
    border-color: rgba(236, 72, 153, 0.42);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    transform: translateY(-5px);
}

.reel-media {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #16161e;
}

.reel-media img {
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.reel-media img.is-loaded {
    opacity: 1;
}

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

.reel-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 7, 10, 0.9) 0%,
            rgba(7, 7, 10, 0.08) 52%,
            rgba(7, 7, 10, 0.12) 100%
        );
}

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(8, 8, 12, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 0.9rem;
    backdrop-filter: blur(9px);
    transform: translate(-50%, -50%);
}

.reel-title {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 2;
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 0.93rem;
    font-weight: 900;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   CARDS
========================================================= */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.profile-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 22px;
    background: linear-gradient(145deg, #121219, #0e0e14);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.profile-card:hover {
    border-color: rgba(236, 72, 153, 0.38);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-6px);
}

.profile-card > a {
    display: block;
    height: 100%;
}

.profile-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #17171f;
}

.profile-media img {
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition:
        opacity 0.4s ease,
        transform 0.45s ease;
}

.profile-media img.is-loaded {
    opacity: 1;
}

.profile-card:hover .profile-media img {
    transform: scale(1.045);
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 12, 0.42),
            transparent 45%
        );
    pointer-events: none;
}

.badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 999px;
    background: rgba(8, 8, 12, 0.56);
    color: #f9a8d4;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(9px);
}

.profile-body {
    padding: 17px;
}

.profile-title {
    margin-bottom: 8px;
    overflow: hidden;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
    color: #9797a3;
    font-size: 0.79rem;
}

.profile-meta span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-excerpt {
    display: -webkit-box;
    min-height: 44px;
    margin-bottom: 14px;
    overflow: hidden;
    color: #b8b8c2;
    font-size: 0.88rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f472b6;
    font-size: 0.83rem;
    font-weight: 900;
}

.profile-link strong {
    transition: transform 0.2s ease;
}

.profile-card:hover .profile-link strong {
    transform: translateX(4px);
}

/* =========================================================
   PAGINAÇÃO
========================================================= */

.pagination-wrap {
    margin-top: 34px;
}

.pagination {
    display: flex;
    justify-content: center;
}

.page-numbers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    list-style: none;
}

.page-numbers-list .page-numbers,
.pagination-wrap > .page-numbers {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: #d6d6df;
    font-weight: 800;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.page-numbers-list .page-numbers:hover,
.pagination-wrap > .page-numbers:hover {
    border-color: rgba(236, 72, 153, 0.35);
    background: rgba(236, 72, 153, 0.12);
    color: #fff;
}

.page-numbers-list .current,
.pagination-wrap > .current {
    border-color: transparent;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: #fff;
}

/* =========================================================
   ESTADO VAZIO
========================================================= */

.empty-state {
    padding: 48px 24px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    color: #aaaab5;
    text-align: center;
}

.empty-state h3 {
    margin-bottom: 8px;
    color: #fff;
}

/* =========================================================
   MODAL DO REEL
========================================================= */

html.reel-open,
body.reel-open {
    overflow: hidden;
}

.reel-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reel-modal.is-open {
    display: flex;
}

.reel-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.reel-modal-content {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(100%, 480px);
    max-height: calc(100vh - 40px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: #0c0c11;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.66);
    animation: reelModalIn 0.25s ease both;
}

@keyframes reelModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.reel-modal-media {
    position: relative;
    display: grid;
    max-height: calc(100vh - 145px);
    place-items: center;
    overflow: hidden;
    background: #050507;
}

.reel-modal-image,
.reel-modal-video {
    display: block;
    width: 100%;
    max-height: calc(100vh - 145px);
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: #050507;
}

.reel-modal-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reel-modal-title {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reel-modal-link {
    flex: 0 0 auto;
    color: #f472b6;
    font-size: 0.82rem;
    font-weight: 900;
}

.reel-modal-close {
    position: absolute;
    z-index: 5;
    top: 12px;
    right: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(8, 8, 12, 0.64);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    backdrop-filter: blur(9px);
}

.reel-modal-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 43px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(8, 8, 12, 0.62);
    color: #fff;
    font-size: 1.8rem;
    backdrop-filter: blur(9px);
    transform: translateY(-50%);
}

.reel-modal-prev {
    left: 12px;
}

.reel-modal-next {
    right: 12px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #09090d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 34px;
    padding-top: 52px;
    padding-bottom: 44px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-logo img {
    width: auto;
    max-width: 230px;
    height: 52px;
    object-fit: contain;
}

.footer-title {
    display: inline-flex;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-description {
    max-width: 380px;
    margin-bottom: 0;
    color: #9696a2;
    font-size: 0.92rem;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 0.98rem;
}

.footer-menu,
.footer-categories,
.footer-links {
    display: grid;
    gap: 9px;
    list-style: none;
}

.footer-menu a,
.footer-categories a,
.footer-links a {
    color: #9d9da8;
    font-size: 0.89rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-menu a:hover,
.footer-categories a:hover,
.footer-links a:hover {
    color: #f472b6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #777784;
    font-size: 0.82rem;
}

.back-to-top {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #f472b6;
    font-size: 1.15rem;
}

/* =========================================================
   CONTEÚDO DE PÁGINAS E POSTS
========================================================= */

.page-content,
.single-content,
.archive-content {
    padding: 46px 0 68px;
}

.entry-card {
    padding: clamp(20px, 4vw, 40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: #111118;
}

.entry-title {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.entry-content {
    color: #c5c5cf;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 1.8em;
    color: #fff;
}

.entry-content p {
    margin-bottom: 1.2em;
}

.entry-content a {
    color: #f472b6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.entry-content img {
    border-radius: 18px;
}

.entry-content blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 4px solid #ec4899;
    border-radius: 0 14px 14px 0;
    background: rgba(236, 72, 153, 0.08);
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 1100px) {
    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
    }
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 70px;
        gap: 12px;
    }

    .brand img {
        max-width: 210px;
        height: 48px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        display: none;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        background: #111118;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
    }

    .main-nav.is-open {
        display: block;
    }

    .site-menu {
        display: grid;
        gap: 3px;
    }

    .site-menu a {
        width: 100%;
        min-height: 46px;
        padding: 10px 12px;
    }

    .site-menu .sub-menu {
        position: static;
        display: block;
        margin: 0 0 6px 10px;
        padding: 0 0 0 10px;
        border: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .header-search {
        display: none;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 620px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, 1240px);
    }

    .section {
        padding: 28px 0 44px;
    }

    .site-header {
        position: sticky;
    }

    .brand img {
        max-width: 175px;
        height: 43px;
    }

    .hero {
        padding: 38px 0 22px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-card {
        padding: 12px;
        border-radius: 20px;
    }

    .stat {
        min-height: 72px;
        padding: 14px;
    }

    .stat strong {
        font-size: 1.5rem;
    }

    .section-head {
        align-items: flex-start;
    }

    .reels-controls {
        display: none;
    }

    .reel-card {
        flex-basis: 140px;
        width: 140px;
        border-radius: 19px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .profile-card {
        border-radius: 16px;
    }

    .profile-body {
        padding: 12px;
    }

    .profile-title {
        margin-bottom: 6px;
        font-size: 0.98rem;
    }

    .profile-meta {
        margin-bottom: 0;
        font-size: 0.7rem;
    }

    .profile-meta span:last-child {
        display: none;
    }

    .profile-excerpt {
        display: none;
    }

    .profile-link {
        margin-top: 8px;
        font-size: 0.74rem;
    }

    .badge {
        top: 8px;
        left: 8px;
        min-height: 25px;
        padding: 0 8px;
        font-size: 0.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 40px;
    }

    .footer-bottom-inner {
        padding: 16px 0;
    }

    .footer-bottom p {
        max-width: 280px;
    }

    .reel-modal {
        padding: 0;
    }

    .reel-modal-content {
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    .reel-modal-media {
        max-height: calc(100vh - 76px);
    }

    .reel-modal-image,
    .reel-modal-video {
        max-height: calc(100vh - 76px);
    }

    .reel-modal-info {
        min-height: 76px;
        padding: 12px 16px;
    }

    .reel-modal-arrow {
        width: 38px;
        height: 48px;
        border-radius: 12px;
    }

    .reel-modal-prev {
        left: 8px;
    }

    .reel-modal-next {
        right: 8px;
    }
}

@media (max-width: 390px) {
    .cards-grid {
        gap: 8px;
    }

    .profile-body {
        padding: 10px;
    }

    .profile-title {
        font-size: 0.9rem;
    }

    .profile-meta {
        font-size: 0.66rem;
    }

    .profile-link {
        font-size: 0.69rem;
    }
}



.single-page {
    min-height: 60vh;
}

.single-header {
    padding: 42px 0 28px;
}

.single-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #8f8f9b;
    font-size: 0.84rem;
}

.single-breadcrumb a {
    color: #f472b6;
}

.single-title-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.single-title {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    line-height: 1;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #9b9ba7;
    font-size: 0.9rem;
}

.single-content-section {
    padding: 10px 0 64px;
}

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 28px;
}

.single-main {
    min-width: 0;
}

.single-featured-image,
.single-fixed-image {
    margin: 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: #111118;
}

.single-featured-image img,
.single-fixed-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.single-fixed-gallery {
    display: grid;
    gap: 18px;
}

.single-entry-content {
    margin-top: 26px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: #111118;
    color: #c5c5cf;
}

.single-entry-content h2,
.single-entry-content h3,
.single-entry-content h4 {
    color: #fff;
}

.single-entry-content a {
    color: #f472b6;
}

.single-sidebar {
    position: sticky;
    top: 100px;
}

.single-info-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: #111118;
}

.single-info-card h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1.25rem;
}

.single-info-card ul {
    display: grid;
    gap: 14px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.single-info-card li {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.single-info-card strong {
    color: #fff;
    font-size: 0.84rem;
}

.single-info-card span {
    color: #9b9ba7;
    font-size: 0.9rem;
}

.single-contact-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: #fff;
    font-weight: 900;
}

.single-contact-button.full {
    width: 100%;
}

.related-section {
    padding-top: 10px;
}

@media (max-width: 900px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .single-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .single-title-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .single-contact-button {
        width: 100%;
    }

    .single-entry-content {
        padding: 18px;
        border-radius: 18px;
    }

    .single-featured-image,
    .single-fixed-image {
        border-radius: 18px;
    }
}




/* =========================================================
   MELHORIAS DE CONTRASTE E ACESSIBILIDADE
========================================================= */

:root {
    --afp-bg: #08080c;
    --afp-card: #111118;
    --afp-text: #f7f7fb;
    --afp-text-secondary: #c7c7d1;
    --afp-text-muted: #aaaab7;
    --afp-pink: #f472b6;
    --afp-pink-strong: #ec4899;
    --afp-border: rgba(255, 255, 255, 0.14);
}

/* Textos principais e secundários */

body {
    color: var(--afp-text);
}

.hero p,
.section-head p,
.profile-excerpt,
.entry-content,
.single-entry-content,
.footer-description {
    color: var(--afp-text-secondary);
}

.profile-meta,
.single-meta,
.single-info-card span,
.single-breadcrumb,
.footer-bottom p {
    color: var(--afp-text-muted);
}

/* Placeholder precisava de mais contraste */

.header-search input::placeholder {
    color: #aaaab5;
    opacity: 1;
}

/* Campos de formulário */

.header-search,
input,
textarea,
select {
    border-color: var(--afp-border);
}

input,
textarea,
select {
    color: #ffffff;
    background-color: #14141c;
}

input::placeholder,
textarea::placeholder {
    color: #aaaab5;
    opacity: 1;
}

/* Links */

.entry-content a,
.single-entry-content a,
.footer-menu a:hover,
.footer-categories a:hover,
.footer-links a:hover {
    color: #ff8bc7;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Botões principais */

.hero-button,
.single-contact-button {
    background: #d91d75;
    color: #ffffff;
    border: 2px solid transparent;
}

.hero-button:hover,
.single-contact-button:hover {
    background: #b91461;
    color: #ffffff;
}

/* Botões e controles secundários */

.menu-toggle,
.reels-arrow,
.reel-modal-arrow,
.reel-modal-close,
.back-to-top {
    border-color: rgba(255, 255, 255, 0.24);
    background-color: #1b1b24;
    color: #ffffff;
}

/* Foco visível para teclado */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #f9a8d4;
    outline-offset: 3px;
}

/* Não depender apenas da cor para identificar links */

.entry-content a,
.single-entry-content a {
    text-decoration: underline;
}

/* Melhor leitura de textos pequenos */

.profile-meta,
.footer-bottom p,
.footer-menu a,
.footer-categories a,
.footer-links a,
.single-breadcrumb {
    font-size: max(0.875rem, 14px);
}

/* Selo sobre fotos com fundo mais sólido */

.badge {
    background: rgba(8, 8, 12, 0.88);
    color: #ff9bce;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Títulos dos reels sobre imagens */

.reel-title {
    padding: 16px 8px 4px;
    color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 1),
        0 2px 8px rgba(0, 0, 0, 0.95);
}

/* Navegação */

.site-menu a {
    color: #e5e5ec;
}

.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
    color: #ffffff;
    background: rgba(236, 72, 153, 0.22);
}

/* Contraste para seleção de texto */

::selection {
    background: #d91d75;
    color: #ffffff;
}



/* =========================================================
   PAGE.PHP MODERNO
========================================================= */

.modern-page {
    min-height: 70vh;
}

.modern-page-hero {
    position: relative;
    display: flex;
    min-height: 390px;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(236, 72, 153, 0.2),
            transparent 34%
        ),
        #0b0b10;
}

.modern-page-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: saturate(0.8);
    transform: scale(1.02);
}

.modern-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            #08080c 0%,
            rgba(8, 8, 12, 0.82) 38%,
            rgba(8, 8, 12, 0.58) 100%
        );
}

.modern-page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 48px;
}

.modern-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #c2c2cd;
    font-size: 0.88rem;
}

.modern-breadcrumb a {
    color: #ff8bc7;
    font-weight: 700;
}

.modern-breadcrumb a:hover {
    color: #ffffff;
}

.modern-page-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border: 1px solid rgba(244, 114, 182, 0.32);
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.14);
    color: #ff9dce;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modern-page-title {
    max-width: 950px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.modern-page-description {
    max-width: 740px;
    margin: 18px 0 0;
    color: #d0d0d9;
    font-size: 1.05rem;
}

.modern-page-section {
    padding: 46px 0 76px;
}

.modern-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 28px;
}

.modern-page-article {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background: #111118;
    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
}

.modern-page-featured {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #17171f;
}

.modern-page-featured img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.modern-page-entry {
    padding: clamp(22px, 5vw, 46px);
    color: #d1d1da;
    font-size: 1rem;
    line-height: 1.8;
}

.modern-page-entry > *:first-child {
    margin-top: 0;
}

.modern-page-entry > *:last-child {
    margin-bottom: 0;
}

.modern-page-entry p {
    margin-bottom: 1.4em;
}

.modern-page-entry h2 {
    margin: 2em 0 0.75em;
    color: #ffffff;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.2;
}

.modern-page-entry h3 {
    margin: 1.7em 0 0.7em;
    color: #ffffff;
    font-size: clamp(1.25rem, 2.6vw, 1.65rem);
    line-height: 1.25;
}

.modern-page-entry h4,
.modern-page-entry h5,
.modern-page-entry h6 {
    color: #ffffff;
}

.modern-page-entry a {
    color: #ff8bc7;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.modern-page-entry a:hover {
    color: #ffffff;
}

.modern-page-entry ul,
.modern-page-entry ol {
    display: grid;
    gap: 9px;
    margin: 0 0 1.5em;
    padding-left: 24px;
}

.modern-page-entry li::marker {
    color: #f472b6;
}

.modern-page-entry blockquote {
    margin: 28px 0;
    padding: 20px 22px;
    border-left: 4px solid #ec4899;
    border-radius: 0 16px 16px 0;
    background: rgba(236, 72, 153, 0.09);
    color: #ededf2;
}

.modern-page-entry img {
    height: auto;
    border-radius: 18px;
}

.modern-page-entry figure {
    margin: 28px 0;
}

.modern-page-entry figcaption {
    margin-top: 9px;
    color: #aaaab5;
    font-size: 0.83rem;
    text-align: center;
}

.modern-page-entry table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.modern-page-entry th,
.modern-page-entry td {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.modern-page-entry th {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.modern-page-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 18px;
}

.modern-sidebar-card {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: #111118;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.modern-sidebar-label {
    display: block;
    margin-bottom: 7px;
    color: #ff8bc7;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modern-sidebar-card h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 1.18rem;
}

.modern-sidebar-menu {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.modern-sidebar-menu li {
    margin: 0;
}

.modern-sidebar-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: #dedee6;
    font-size: 0.87rem;
    font-weight: 700;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.modern-sidebar-menu a:hover {
    border-color: rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.12);
    color: #ffffff;
    transform: translateX(3px);
}

.modern-sidebar-menu strong {
    flex: 0 0 auto;
    color: #ff8bc7;
}

.modern-sidebar-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.modern-sidebar-info h2 {
    margin-bottom: 7px;
}

.modern-sidebar-info p {
    margin: 0;
    color: #bdbdc7;
    font-size: 0.86rem;
    line-height: 1.55;
}

.modern-sidebar-icon {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 13px;
    background: rgba(236, 72, 153, 0.14);
    color: #ff8bc7;
    font-size: 1.1rem;
    font-weight: 900;
}

.page-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.page-links a,
.page-links > span:not(:first-child) {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(236, 72, 153, 0.15);
    color: #ffffff;
}

@media (max-width: 920px) {
    .modern-page-layout {
        grid-template-columns: 1fr;
    }

    .modern-page-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .modern-page-hero {
        min-height: 320px;
    }

    .modern-page-hero-content {
        padding-top: 58px;
        padding-bottom: 34px;
    }

    .modern-page-title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .modern-page-section {
        padding: 28px 0 52px;
    }

    .modern-page-article {
        border-radius: 19px;
    }

    .modern-page-entry {
        padding: 20px 17px;
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .modern-page-featured img {
        max-height: 420px;
    }

    .modern-page-sidebar {
        grid-template-columns: 1fr;
    }

    .modern-sidebar-card {
        padding: 18px;
        border-radius: 18px;
    }
}


/* =========================================================
   CORREÇÃO DAS IMAGENS DA SINGLE
   Mantém a proporção original, sem esticar
========================================================= */

.single-featured-image,
.single-fixed-image {
    display: flex;
    width: 100%;
    margin: 0 0 18px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: #0d0d12;
}

/* Imagem destacada */
.single-featured-image img {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 850px;
    margin: 0 auto;
    object-fit: contain !important;
    object-position: center;
}

/* Imagens fixas abaixo */
.single-fixed-image img {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 950px;
    margin: 0 auto;
    object-fit: contain !important;
    object-position: center;
}

/* Grade das imagens */
.single-fixed-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px;
}

/* Imagens inseridas diretamente no conteúdo */
.single-entry-content img,
.single-entry-content .gallery img,
.single-entry-content figure img,
.single-entry-content .wp-block-image img {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain !important;
}

/* Remove alturas que o WordPress possa colocar inline */
.single-page img[height] {
    height: auto !important;
}

@media (max-width: 700px) {
    .single-fixed-gallery {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .single-featured-image,
    .single-fixed-image {
        border-radius: 16px;
    }

    .single-featured-image img,
    .single-fixed-image img {
        width: 100% !important;
        max-height: none;
        height: auto !important;
    }
}