@font-face {
    font-family: 'JohnDoe';
    src: url('fonts/fonts/JohnDoe.eot');
    src: url('fonts/fonts/JohnDoe.eot?#iefix') format('embedded-opentype'),
        url('fonts/fonts/JohnDoe.woff2') format('woff2'),
        url('fonts/fonts/JohnDoe.woff') format('woff'),
        url('fonts/fonts/JohnDoe.ttf') format('truetype'),
        url('fonts/fonts/JohnDoe.svg#JohnDoe') format('svg');
}


body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #F4F4F4;
}

/* ============================================================
   HEADER — Precisava Escrever
   Cole no seu site.css (após o reset do Bootstrap)
   Remova as regras de body/html se já existirem no tema
============================================================ */

/* ═══════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --yellow: #FFD700;
    --yellowBlack: #F6CD00;
    --black: #000;
    --white: #ffffff;
    --radius: 999px;
    --font: 'Exo 2', sans-serif;
    --dur: 0.25s;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* body — já definido no tema */

/* ═══════════════════════════════════════
   HEADER WRAPPER
═══════════════════════════════════════ */
.site-header {
    width: 100%;
    max-width: 1280px;
    background: var(--yellowBlack);
    border-radius: var(--radius);
    padding: 10px 10px 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 100;
    margin: 30px auto;
}

/* ═══════════════════════════════════════
   LOGO
═══════════════════════════════════════ */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .logo-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.site-logo .logo-text {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.15;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.site-nav a,
.site-nav .hdr-dropdown>.hdr-nav-link {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    line-height: 1;
}

.site-nav a:hover,
.site-nav .hdr-dropdown:hover>.hdr-nav-link {
    background: rgba(0, 0, 0, 0.1);
}

/* seta dropdown */
.hdr-nav-link .arrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.65rem;
    transition: transform var(--dur) var(--ease);
}

/* ═══════════════════════════════════════
   DROPDOWN
═══════════════════════════════════════ */
.hdr-dropdown {
    position: relative;
}

.nav-submenu {
    display: block !important;
    position: absolute !important;
    top: calc(63% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white) !important;
    border-radius: 24px;
    padding: 20px 28px;
    min-width: 300px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    z-index: 9999;
    --arrow-size: 12px;
}

/* ponteiro triangular acima do dropdown */
.nav-submenu::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--arrow-size));
    left: 50%;
    transform: translateX(-50%);
    border: var(--arrow-size) solid transparent;
    border-top: 0;
    border-bottom-color: var(--white);
}

/* abrir no hover */
.hdr-dropdown:hover .nav-submenu,
.hdr-dropdown:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.hdr-dropdown:hover .hdr-nav-link .arrow {
    transform: rotate(180deg);
}

/* itens do dropdown */
.nav-submenu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: color var(--dur) var(--ease);
    border-radius: 0;
    background: transparent;
}

.nav-submenu a:last-child {
    border-bottom: none;
}

.nav-submenu a:hover {
    color: #b8960a;
    background: transparent;
}

/* ícone play amarelo */
.nav-submenu a .play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 13px;
    border-color: transparent transparent transparent var(--yellow);
    flex-shrink: 0;
    transition: border-color var(--dur) var(--ease);
}

.nav-submenu a:hover .play-icon {
    border-left-color: #b8960a;
}

/* ═══════════════════════════════════════
   LADO DIREITO — redes + whatsapp
═══════════════════════════════════════ */
.header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* cápsula preta única que engloba ícones + whatsapp */
.social-pill {
    display: flex;
    align-items: center;
    background: var(--black);
    border-radius: var(--radius);
    padding: 6px 6px 6px 8px;
    gap: 6px;
}

/* cada ícone social: círculo branco */
.social-pill a.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
    line-height: 1;
}

.social-pill a.social-icon:hover {
    transform: scale(1.1);
    background: #efefef;
}

/* botão WhatsApp: cápsula amarela dentro da preta */
.btn-whats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 7px 8px 7px 16px;
    border-radius: var(--radius);
    transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
    white-space: nowrap;
}

.btn-whats:hover {
    filter: brightness(0.92);
    transform: scale(1.03);
    color: #000;
}

/* ícone whats: círculo preto com ícone amarelo */
.btn-whats .whats-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-whats .whats-icon i {
    font-size: 1.05rem;
    color: var(--yellow);
}


/* ═══════════════════════════════════════
   HEADER MOBILE — visível apenas em mobile
═══════════════════════════════════════ */

/* Esconde o header desktop em mobile */
@media (max-width: 768px) {
    .site-header {
        display: none;
    }
}

/* Esconde o header mobile em desktop */
.mob-header,
.mob-overlay {
    display: none;
}

@media (max-width: 768px) {

    /* ── Header bar ── */
    .mob-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: var(--yellow);
        padding: 12px 16px;
        position: sticky;
        top: 0;
        z-index: 500;
    }

    /* ── Logo ── */
    .mob-logo-link {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .mob-logo-img {
        height: 44px;
        width: auto;
    }

    /* ── Botão sanduíche ── */
    .mob-hamburger {
        width: 54px;
        height: 54px;
        background: var(--black);
        border: none;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        flex-shrink: 0;
        padding: 0;
    }

    .mob-hamburger span {
        display: block;
        width: 35px;
        height: 3px;
        background: var(--yellow);
        border-radius: 2px;
        transform-origin: center;
        transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
    }

    /* Animação → X quando aberto */
    .mob-hamburger.is-open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .mob-hamburger.is-open span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .mob-hamburger.is-open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    /* ── Overlay ── */
    .mob-overlay {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--yellow);
        z-index: 490;
        padding: 130px 28px 40px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1);
    }

    .mob-overlay.is-open {
        transform: translateX(0);
    }

    /* ── Nav links ── */
    .mob-nav {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .mob-nav-link {
        font-family: var(--font);
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--black);
        text-decoration: none;
        background: transparent;
        border: none;
        border-bottom: 1.5px solid rgba(0, 0, 0, 0.12);
        padding: 16px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
        letter-spacing: -0.01em;
        text-align: left;
        gap: 8px;
    }

    .mob-nav-link a:hover {
        color: #000;
    }

    .mob-nav-link a {
        color: #000;
    }

    .mob-nav-link svg {
        flex-shrink: 0;
        opacity: 0.4;
    }

    /* ── Dropdown ── */
    .mob-dropdown {
        display: flex;
        flex-direction: column;
    }

    .mob-drop-arrow {
        transition: transform 0.3s ease;
    }

    .mob-drop-btn.is-open .mob-drop-arrow {
        transform: rotate(180deg);
    }

    .mob-submenu {
        display: none;
        flex-direction: column;
        padding: 6px 0 14px 16px;
        gap: 0;
    }

    .mob-submenu.is-open {
        display: flex;
    }

    .mob-submenu a {
        font-family: var(--font);
        font-weight: 700;
        font-size: 1rem;
        color: var(--black);
        text-decoration: none;
        padding: 9px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0.75;
        border-bottom: none;
        justify-content: flex-start;
    }

    .mob-submenu a:hover {
        opacity: 1;
    }

    /* ícone play amarelo no submenu */
    .mob-play-icon {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 0 5px 9px;
        border-color: transparent transparent transparent var(--black);
        flex-shrink: 0;
    }

    /* ── Redes sociais ── */
    .mob-social {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 32px;
        flex-wrap: wrap;
    }

    .mob-social-icon {
        width: 46px;
        height: 46px;
        background: var(--black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--yellow);
        font-size: 1.2rem;
        text-decoration: none;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .mob-social-icon:hover {
        transform: scale(1.08);
    }

    /* ── Botão WhatsApp ── */
    .mob-whats-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--black);
        color: var(--yellow);
        font-family: var(--font);
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        padding: 10px 18px 10px 10px;
        border-radius: var(--radius);
        flex: 1;
        justify-content: center;
        transition: filter 0.2s ease;
    }

    .mob-whats-btn:hover {
        filter: brightness(0.85);
    }

    .mob-whats-icon {
        width: 32px;
        height: 32px;
        background: var(--yellow);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--black);
        font-size: 1.1rem;
    }

}

/* fim @media 768px */


/* ═══════════════════════════════════════
   DEMO SPACER (só para visualização)
═══════════════════════════════════════ */
.demo-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font);
    font-size: 0.8rem;
    margin-top: 20px;
}


/* ═══════════════════════════════════════
   CONTEUDO HERO
═══════════════════════════════════════ */
.conteudoHero {
    background: #FFD700;
    padding: 180px 0 60px 0;
    margin: -140px 0 0 0;
}

.contentPeNoTeatro .fraseHome {
    margin-bottom: 0;
    margin-top: 0;
    padding: 80px 0 0 0;
}

.fraseHome {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 900px;
    margin-bottom: 50px;
}

.fraseHome h1 {
    font-family: 'JohnDoe';
    font-size: 30px;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 900px) {
    .fraseHome {
        flex-direction: column;
        gap: 8px;
        width: auto;
    }
}


@media (max-width: 768px) {
    .fraseHome {
        flex-direction: column;
        gap: 8px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .fraseHome {
        flex-direction: column;
        gap: 8px;
        width: auto;
    }
}

.divisorCurvo {
    background-image: url(../images/iconDw.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 77px;
    margin: -39px 0 0 0;
    position: relative;
    z-index: 10;
}


/*****************************/
.contentPageHome {
    padding: 185px 0;
}

.contentPageHome .wp-post-image {
    width: 96%;
    height: auto;
    border-radius: 25px;
}

.contentPageHome h2 {
    font-family: 'JohnDoe';
    font-size: 45px;
}

.contentPageHome p {
    color: #666;
    text-align: justify;
    line-height: 184%;
    margin: 20px 0 0 0;
}

/* ═══════════════════════════════════════
   SEÇÃO NO TEATRO
═══════════════════════════════════════ */

.contentPeNoTeatro {
    background: var(--yellow);
}


.pe-teatro-section {
    width: 100%;
    background: var(--yellow);
    padding: 60px 0 48px;
    overflow: hidden;
    position: relative;
}

.pe-teatro-track-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.pe-teatro-track {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    padding: 10px 0;
}

.pe-teatro-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

/* ── Cada slide ── */
.pe-teatro-slide {
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    transition:
        width 0.55s cubic-bezier(0.77, 0, 0.18, 1),
        height 0.55s cubic-bezier(0.77, 0, 0.18, 1),
        opacity 0.4s ease,
        box-shadow 0.4s ease;

    width: 439px;
    height: 505px;
    opacity: 1;
}

.pe-teatro-slide.is-active {
    width: 758px;
    height: 505px;
}

.pe-teatro-slide a,
.pe-teatro-slide>div {
    display: block;
    width: 100%;
    height: 100%;
}

.pe-teatro-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    pointer-events: none;
}

.pe-teatro-no-img {
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

/* ── Dots ── */
.pe-teatro-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.pe-teatro-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #fff;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, width 0.25s ease;
}

.pe-teatro-dot.active {
    width: 38px;
    background: var(--black);
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .pe-teatro-section {
        padding: 36px 0 32px;
    }

    .pe-teatro-slide {
        width: 54vw;
        height: 36vw;
        border-radius: 14px;
    }

    .pe-teatro-slide.is-active {
        width: 72vw;
        height: 48vw;
    }
}

@media (max-width: 480px) {
    .pe-teatro-slide {
        width: 52vw;
        height: 35vw;
        border-radius: 12px;
    }

    .pe-teatro-slide.is-active {
        width: 68vw;
        height: 46vw;
    }

    .pe-teatro-dot {
        width: 24px;
        height: 8px;
    }

    .pe-teatro-dot.active {
        width: 36px;
    }
}



/* ═══════════════════════════════════════
   CARROSSEL INFINITO — INFLUENCERS
═══════════════════════════════════════ */
.boxInfluencers {
    padding: 60px 0 0 0;
}

.boxInfluencers p {
    margin: 0 0 0 0;
}

.boxInfluencers .fraseHome {
    margin-bottom: 0;
}

.pe-inf-section {
    width: 100%;
    padding: 56px 0 40px;
    overflow: hidden;
}

/* ── Wrapper: os dois tracks side by side ── */
.pe-inf-wrapper {
    display: flex;
    width: max-content;
    gap: 0;
}

/* ── Cada faixa ── */
.pe-inf-track {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 7px;
    /* metade do gap nas bordas para loop perfeito */
    animation: pe-inf-scroll 28s linear infinite;
    will-change: transform;
}

/* ── Pausa ao hover ── */
.pe-inf-section:hover .pe-inf-track {
    animation-play-state: paused;
}

/* ── Animação ── */
@keyframes pe-inf-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ── Cada foto ── */
.pe-inf-slide {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.pe-inf-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;

    /* ── Filtro preto e branco ── */
    filter: grayscale(100%) contrast(1.05) brightness(0.97);
    transition: filter 0.35s ease, transform 0.35s ease;
}

/* Coloriza ao hover */
.pe-inf-slide:hover img {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.04);
}

/* ── Dots decorativos ── */
.pe-inf-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.pe-inf-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.45;
    display: inline-block;
}

.pe-inf-dot.active {
    width: 36px;
    border-radius: 999px;
    background: var(--black);
    opacity: 1;
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .pe-inf-section {
        padding: 36px 0 28px;
    }

    .pe-inf-slide {
        width: 120px;
        height: 120px;
        border-radius: 14px;
    }

    .pe-inf-track {
        gap: 10px;
        padding: 0 5px;
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .pe-inf-slide {
        width: 96px;
        height: 96px;
        border-radius: 12px;
    }

    .pe-inf-track {
        gap: 8px;
        animation-duration: 16s;
    }
}




/* ---------- Seção ---------- */
.livros-pe-section {
    background-color: #F5C800;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

/* ---------- Swiper ---------- */
.livros-pe-swiper {
    padding: 20px 10px 30px !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* ---------- Card ---------- */
.livro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

/* ---------- Capa ---------- */
.livro-capa-wrapper {
    perspective: 900px;
    width: 160px;
    height: 220px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.livro-card:hover .livro-capa-wrapper {
    transform: translateY(-8px);
}

.livro-capa {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px 6px 6px 3px;
    box-shadow:
        -6px 6px 0 0 rgba(0, 0, 0, .15),
        -3px 3px 8px rgba(0, 0, 0, .25),
        4px 8px 20px rgba(0, 0, 0, .30);
    transform: rotateY(-8deg);
    transition: box-shadow .3s ease, transform .3s ease;
    display: block;
}

.livro-card:hover .livro-capa {
    transform: rotateY(-14deg);
    box-shadow:
        -10px 10px 0 0 rgba(0, 0, 0, .12),
        -5px 5px 12px rgba(0, 0, 0, .22),
        8px 12px 28px rgba(0, 0, 0, .28);
}

.livro-capa-placeholder {
    background: linear-gradient(135deg, #1a1a1a, #333);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.livro-capa-placeholder span {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
}

/* ---------- Título ---------- */
.livro-titulo {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- Botão Comprar ---------- */
.livro-btn-comprar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 50px;
    transition: background .25s ease, transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.livro-btn-comprar:hover {
    background-color: #333;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
    color: #fff;
    text-decoration: none;
}

.livro-btn-icon {
    width: 22px;
    height: 22px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

/* ---------- Navegação ---------- */
.livros-prev,
.livros-next {
    color: #1a1a1a !important;
    background: rgba(255, 255, 255, .35);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: background .2s ease;
}

.livros-prev:hover,
.livros-next:hover {
    background: rgba(255, 255, 255, .6);
}

.livros-prev::after,
.livros-next::after {
    font-size: 18px !important;
    font-weight: 700;
}

/* ---------- Responsivo ---------- */
@media (max-width: 768px) {
    .livros-pe-section {
        padding: 40px 20px;
    }

    .livro-capa-wrapper {
        width: 130px;
        height: 180px;
    }
}


/* ═══════════════════════════════════════
   SEÇÃO LIVROS PE
═══════════════════════════════════════ */
.pe-livros-section {
    width: 100%;
    background: var(--yellow);
    padding: 64px 40px 72px;
}

.pe-livros-sectionWhite {
    width: 100%;
    background: #F4F4F4;
    padding: 64px 40px 72px;
}

/* ── Cabeçalho ornamentado ── */
.pe-livros-heading {
    display: flex;
    align-items: center;
    justify-content: center;
}


.pe-livros-ornament {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* ── Grade ── */
.pe-livros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── Card do livro ── */
.pe-livro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 160px;
}

/* ── Capa ── */
.pe-livro-capa {
    position: relative;
    width: 160px;
    flex-shrink: 0;
}

.pe-livro-capa img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}


.pe-livro-sem-capa {
    width: 160px;
    height: 220px;
    background: var(--black);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
}

/* ── Badge ── */
.pe-livro-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--black);
    color: var(--yellow);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* ── Nome do livro ── */
.pe-livro-nome {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--black);
    text-align: center;
    line-height: 1.35;
    margin: 0;
    height: 49px;
    width: 120px;
}

/* ── Botão Comprar ── */
.pe-livro-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 10px 10px 10px 18px;
    border-radius: 999px;
    width: 74%;
    transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.pe-livro-cta:hover {
    filter: brightness(0.82);
    transform: scale(1.04);
    color: #fff;
}

.pe-livro-cta-icon {
    width: 20px;
    height: 20px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .pe-livros-section {
        padding: 48px 24px 56px;
    }

    .pe-livros-ornament {
        display: none;
    }

    .pe-livros-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .pe-livros-heading {
        margin-bottom: 40px;
    }

    .pe-livros-grid {
        gap: 28px 16px;
    }

    .pe-livro-card {
        width: 140px;
    }

    .pe-livro-capa {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .pe-livros-section {
        padding: 36px 16px 48px;
    }

    .pe-livros-grid {
        gap: 24px 12px;
    }

    .pe-livro-card {
        width: calc(50% - 8px);
        max-width: 160px;
    }

    .pe-livro-capa {
        width: 100%;
    }

    .pe-livro-capa img {
        transform: perspective(600px) rotateY(5deg);
    }

    .pe-livro-cta {
        font-size: 0.8rem;
        padding: 8px 8px 8px 14px;
    }

    .pe-livro-cta-icon {
        width: 26px;
        height: 26px;
    }
}

/*******************/
.peNoInstragram {
    padding: 100px 0;
}

.peNoInstragram .dadosInsta {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.peNoInstragram .dadosInsta p {
    margin: 0;
    padding: 0;
}

.peNoInstragram .dadosInsta span {
    background: var(--yellow);
    padding: 5px 10px;
    margin: -3px 0 0 0;
    border-radius: 6px;
}



/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.pe-footer {
    background: var(--black);
    width: 100%;
}

/* ── Linha superior ── */
.pe-footer-top {
    display: grid;
    grid-template-columns: 220px 1fr 1fr auto;
    gap: 48px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 40px 56px;
}

/* ── Logo ── */
.pe-footer-logo {
    display: inline-block;
}

.pe-footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}

/* ── Nav ── */
.pe-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pe-footer-nav a {
    font-family: var(--font);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
    line-height: 1;
}

.pe-footer-nav a:hover {
    color: var(--yellow);
}

/* ── Título da coluna ── */
.pe-footer-col-title {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    margin: 0 0 18px;
    line-height: 1;
}

/* ── Lista de serviços ── */
.pe-footer-services {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pe-footer-services a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--font);
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    transition: color var(--dur) var(--ease);
    text-decoration: none;
}

.pe-footer-services a:hover {
    color: var(--white);
}

.pe-footer-play {
    display: flex;
    align-items: center;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── Coluna social ── */
.pe-footer-social-col {
    display: flex;
    align-items: flex-start;
}

.pe-footer-social-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

/* Ícones sociais */
.pe-footer-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pe-footer-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.pe-footer-icon:hover {
    transform: scale(1.1);
    background: var(--yellow);
    color: #000;
}

/* Botão WhatsApp */
.pe-footer-whats {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 10px 12px 10px 20px;
    border-radius: var(--radius);
    transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
    white-space: nowrap;
}

.pe-footer-whats:hover {
    filter: brightness(0.9);
    transform: scale(1.03);
    color: #000;
}

.pe-footer-whats-icon {
    width: 36px;
    height: 36px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--yellow);
}

/* ── Linha inferior ── */
.pe-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 40px;
    text-align: center;
}

.pe-footer-bottom p {
    font-family: var(--font);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .pe-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
        padding: 48px 24px 40px;
    }

    .pe-footer-logo-col {
        grid-column: 1 / -1;
    }

    .pe-footer-social-col {
        grid-column: 1 / -1;
    }

    .pe-footer-social-wrap {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .pe-footer-top {
        grid-template-columns: 1fr;
        padding: 40px 20px 32px;
        gap: 32px;
    }

    .pe-footer-logo-col,
    .pe-footer-social-col {
        grid-column: 1;
    }

    .pe-footer-logo img {
        width: 140px;
    }

    .pe-footer-bottom {
        padding: 20px;
    }
}


/* ═══════════════════════════════════════
   SINGLE — O QUE ESCREVEMOS
═══════════════════════════════════════ */

.bradcrumbsSingle {
    background: #FFD400;
    background: linear-gradient(180deg, rgba(255, 212, 0, 1) 54%, rgba(233, 194, 0, 1) 100%);
    padding: 170px 0 0px 0;
    display: flex;
    justify-content: center;
    margin: -140px 0 0 0;
}

.bradcrumbsSingle span {
    background: #fff;
    padding: 7px 15px;
    border-radius: 12px;
    margin: 0 0 -20px 0;
    position: relative;
    z-index: 1;
}

/* ── Hero amarelo ── */
.oqe-hero {
    background: var(--yellow);
    width: 100%;
    position: relative;
}

.oqe-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    text-align: center;
}

.oqe-title {
    font-family: 'JohnDoe';
    font-weight: 400;
    font-size: 36px;
    color: var(--black);
    margin: 0 0 32px;
    letter-spacing: 0.02em;
}

/* Subtítulo com ornamentos */
.oqe-subtitulo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.oqe-subtitulo {
    font-family: 'JohnDoe';
    font-size: 23px;
    color: var(--black);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
    text-align: center;
}

.oqe-ornament {
    flex-shrink: 0;
}

/* Conteúdo de texto */
.oqe-conteudo {
    text-align: left;
    font-family: Inter;
    font-size: 17px;
    line-height: 1.8;
    color: var(--black);
    text-align: justify;
}

.oqe-conteudo p {
    margin: 0 0 1.2em;
}

/* ── Divisor côncavo ── */
.oqe-divisor {
    position: relative;
    height: 0;
}

.oqe-divisor-btn {
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

/* ── Galeria / Carrossel ── */
.oqe-galeria-section {
    padding: 80px 0 48px;
    overflow: hidden;
}

.oqe-galeria-track-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.oqe-galeria-track {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    padding: 10px 0;
}

.oqe-galeria-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

/* Todos os slides com o mesmo tamanho */
.oqe-galeria-slide {
    flex-shrink: 0;
    width: 450px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.65;
    transition: opacity 0.4s ease;
}

.oqe-galeria-slide.is-active {
    opacity: 1;
}

.oqe-galeria-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

/* Dots galeria */
.oqe-galeria-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.oqe-galeria-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--yellow);
    opacity: 0.4;
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, opacity 0.25s ease, border-radius 0.25s ease;
}

.oqe-galeria-dot.active {
    width: 36px;
    border-radius: 999px;
    background: var(--black);
    opacity: 1;
}

/* ── Relacionados ── */
.oqe-relacionados {
    background: #f0f0f0;
    padding: 56px 0 64px;
}

.oqe-relacionados-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.oqe-relacionados-title {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 400;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--black);
    text-align: center;
    margin: 0 0 48px;
    letter-spacing: 0.02em;
}

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

.oqe-rel-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    min-height: 160px;
}

.oqe-rel-nome {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
    margin: 0;
    line-height: 1.35;
}

.oqe-rel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 9px 10px 9px 16px;
    border-radius: 999px;
    width: fit-content;
    transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.oqe-rel-btn:hover {
    filter: brightness(0.9);
    transform: scale(1.03);
}

.oqe-rel-btn-icon {
    width: 28px;
    height: 28px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oqe-rel-btn-icon svg polygon {
    fill: var(--yellow);
}

/* Dots relacionados */
.oqe-rel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.oqe-rel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.45;
    display: inline-block;
}

.oqe-rel-dot.active {
    opacity: 1;
}

.oqe-rel-dot.active-long {
    width: 36px;
    border-radius: 999px;
    background: var(--black);
    opacity: 1;
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .oqe-relacionados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oqe-galeria-slide {
        width: 54vw;
        height: 36vw;
        border-radius: 14px;
    }

    .oqe-galeria-slide.is-active {
        width: 72vw;
        height: 48vw;
    }

    .oqe-subtitulo-wrap {
        flex-direction: column;
        gap: 8px;
    }

    .oqe-ornament {
        display: none;
    }
}

@media (max-width: 480px) {
    .oqe-hero-inner {
        padding: 48px 20px 72px;
    }

    .oqe-relacionados-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .oqe-rel-card {
        padding: 20px 16px;
        min-height: 130px;
    }

    .oqe-galeria-slide {
        width: 52vw;
        height: 34vw;
        border-radius: 12px;
    }

    .oqe-galeria-slide.is-active {
        width: 72vw;
        height: 48vw;
    }
}


.postsRelacionados {
    padding: 90px 0;
}

.postsRelacionados h2 {
    font-family: 'JohnDoe';
    display: flex;
    justify-content: center;
}


/* ═══════════════════════════════════════
   RELACIONADOS — CARROSSEL DE CARDS
═══════════════════════════════════════ */
.oqe-rel-section {
    padding: 56px 0 64px;
}

.oqe-rel-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.oqe-rel-title {
    font-family: 'JohnDoe';
    font-weight: 400;
    font-size: 30px;
    color: var(--black);
    text-align: center;
    margin: 0 0 40px;
    letter-spacing: 0.02em;
}

/* ── Wrapper com overflow hidden ── */
.oqe-rel-track-wrap {
    overflow: hidden;
    width: 100%;
}

/* ── Faixa de cards ── */
.oqe-rel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.oqe-rel-track.is-dragging {
    cursor: grabbing;
    transition: none;
}

/* ── Card individual ── */
.oqe-rel-card {
    flex-shrink: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 160px;

    /* largura calculada pelo JS, mas definimos um fallback */
    width: calc((100% - 48px) / 3);
}

.oqe-rel-nome {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
    margin: 0;
    line-height: 1.35;
}

/* ── Botão Saiba mais ── */
.oqe-rel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    padding: 9px 10px 9px 16px;
    border-radius: 999px;
    width: fit-content;
    transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.oqe-rel-btn:hover {
    filter: brightness(0.9);
    transform: scale(1.03);
    color: #000;
}

.oqe-rel-btn-icon {
    width: 28px;
    height: 28px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Dots ── */
.oqe-rel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.oqe-rel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--yellow);
    opacity: 0.4;
    cursor: pointer;
    padding: 0;
    transition: width 0.25s ease, opacity 0.25s ease,
        border-radius 0.25s ease, background 0.25s ease;
}

.oqe-rel-dot.active {
    width: 36px;
    border-radius: 999px;
    background: var(--black);
    opacity: 1;
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 768px) {
    .oqe-rel-card {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 480px) {
    .oqe-rel-section {
        padding: 40px 0 48px;
    }

    .oqe-rel-inner {
        padding: 0 16px;
    }

    .oqe-rel-card {
        width: 100%;
        min-height: 130px;
        padding: 20px 16px;
    }
}




/************* CONTATO *******************/
/* ── Layout principal ── */
.pe-contato-section {
    background: #FFD700;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 0px 80px 80px;
}

/* ── Coluna info ── */
.pe-contato-info {
    flex: 0 0 380px;
    max-width: 380px;
    padding-top: 10px;
}

.pe-contato-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0 0 48px;
    letter-spacing: -0.5px;
}

.pe-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pe-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pe-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #111;
}

.pe-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 4px;
}

.pe-info-label {
    font-size: 13px;
    color: #333;
    font-family: inherit;
}

.pe-info-value {
    font-size: 15px;
    color: #111;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.5;
}

/* ── Coluna formulário ── */
.pe-contato-form-wrap {
    flex: 1;
    padding-top: 10px;
}

.pe-form-box {
    background: transparent;
}

.pe-form-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    font-family: inherit;
}

.pe-form-desc {
    font-size: 15px;
    color: #333;
    margin: 0 0 24px;
    font-family: inherit;
}

/* ── CF7 Estilização ── */
.pe-contato-section .wpcf7-form p {
    display: flex;
    gap: 16px;
    margin: 0 0 16px;
}

.pe-contato-section .wpcf7-form p:last-of-type {
    justify-content: flex-end;
    margin-top: 8px;
}

.pe-contato-section .wpcf7-form-control-wrap {
    flex: 1;
    display: block;
}

.pe-contato-section .wpcf7-form input[type="text"],
.pe-contato-section .wpcf7-form input[type="email"],
.pe-contato-section .wpcf7-form input[type="tel"],
.pe-contato-section .wpcf7-form textarea {
    width: 100%;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 15px;
    color: #111;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color .2s;
    -webkit-appearance: none;
}

.pe-contato-section .wpcf7-form input[type="text"]:focus,
.pe-contato-section .wpcf7-form input[type="email"]:focus,
.pe-contato-section .wpcf7-form input[type="tel"]:focus,
.pe-contato-section .wpcf7-form textarea:focus {
    border-color: #111;
}

.pe-contato-section .wpcf7-form input::placeholder,
.pe-contato-section .wpcf7-form textarea::placeholder {
    color: #999;
}

.pe-contato-section .wpcf7-form textarea {
    height: 140px;
    resize: none;
    width: 100%;
}

/* Linha do textarea ocupa largura total */
.pe-contato-section .wpcf7-form p:has(textarea) {
    display: block;
}

/* ── Botão Enviar ── */
.pe-contato-section .wpcf7-form input[type="submit"] {
    background: #111;
    color: #FFD700;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pe-contato-section .wpcf7-form input[type="submit"]:hover {
    background: #222;
    transform: scale(1.03);
}

/* Ícone play no botão via pseudo-element */
.pe-contato-section .wpcf7-submit-wrap,
.pe-contato-section p:has(input[type="submit"]) {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
}

/* reCAPTCHA alinhado à esquerda, botão à direita */
.pe-contato-section .wpcf7-form .g-recaptcha-wrap,
.pe-contato-section .wpcf7-form p:has(.g-recaptcha) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pe-contato-section .wpcf7-response-output {
    border-radius: 8px;
    margin-top: 8px;
    font-size: 14px;
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
    .pe-contato-section {
        padding: 48px 40px 60px;
        gap: 40px;
    }

    .pe-contato-info {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pe-contato-section {
        flex-direction: column;
        padding: 40px 24px 60px;
        gap: 40px;
    }

    .pe-contato-info {
        flex: none;
        max-width: 100%;
    }

    .pe-contato-section .wpcf7-form p {
        flex-direction: column;
        gap: 12px;
    }
}




/*********** LGPD **************/
.pe-lgpd-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 860px;
    background: #111;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 9999;
    box-sizing: border-box;
}

.pe-lgpd-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-lgpd-text {
    flex: 1;
    margin: 0;
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
}

.pe-lgpd-text a {
    color: #FFD700;
    text-decoration: underline;
}

.pe-lgpd-text strong {
    color: #fff;
}

.pe-lgpd-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.pe-lgpd-accept {
    background: #FFD700;
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.pe-lgpd-reject {
    background: transparent;
    color: #aaa;
    border: 1px solid #444;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}

@media (max-width: 600px) {
    .pe-lgpd-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        bottom: 0;
        border-radius: 16px 16px 0 0;
        width: 100%;
        left: 0;
        transform: none;
    }

    .pe-lgpd-actions {
        width: 100%;
    }

    .pe-lgpd-accept,
    .pe-lgpd-reject {
        flex: 1;
        text-align: center;
    }
}

.contentPages{
    padding: 50px;
}