/* ============================================================
   CASA DO JULGAMENTO THEME - Judgement House Style
   Matches judgementhouse.org design exactly
   ============================================================ */

/* === CSS VARIABLES (Judgement House Color Scheme from site.css) === */
:root {
    /* Core colors from Judgement House */
    --jh-accent-hsl: 0, 100%, 37%;
    --jh-accent: hsl(0, 100%, 37%);           /* #bf0000 dark red */
    --jh-accent-hover: hsl(0, 100%, 30%);
    --jh-black: #000000;
    --jh-white: #ffffff;
    --jh-dark: #1a1a1a;
    --jh-light-accent: #c8c8c8;
    --jh-text: #333333;
    --jh-text-light: #666666;
    --jh-bg-light: #f5f5f5;
    
    /* Typography - matching Judgement House */
    --jh-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --jh-font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout */
    --jh-header-height: 90px;
    --jh-header-height-mobile: 70px;
    --jh-container-max: 1300px;
    --jh-gutter: 50px;
    --jh-gutter-mobile: 20px;
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box !important;
}

/* AGGRESSIVE RESET for navigation - override ALL browser defaults */
.jh-header ul,
.jh-header ol,
.jh-nav ul,
.jh-nav ol,
nav ul,
nav ol,
header ul,
header ol,
ul.jh-nav-list,
.jh-nav-list,
.jh-nav-folder-content {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-inline-start: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    -webkit-padding-start: 0 !important;
}

.jh-header li,
.jh-nav li,
nav li,
header li,
.jh-nav-item,
.jh-nav-folder-item {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    display: block !important;
}

html {
    font-size: 16px !important;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
html body,
body.home,
body.page,
body.single {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400;
    line-height: 1.8;
    color: #333333 !important;
    background: #ffffff !important;
}

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

a {
    color: #bf0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #990000;
}

/* Exclude buttons from generic link color */
a.jh-btn,
a.jh-btn:hover {
    color: inherit;
}

/* === TYPOGRAPHY (Matching Judgement House) === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin: 0 0 1em !important;
    color: #111111 !important;
}

h1 { 
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

h2 { 
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 { 
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1.5em;
}

/* === CONTAINER === */
.jh-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 767px) {
    .jh-container {
        padding: 0 20px;
    }
}

/* ============================================================
   HEADER - Judgement House Style
   ============================================================ */
header.jh-header,
.jh-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    height: 90px !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: block !important;
}

.jh-header.scrolled {
    background: hsla(0, 0%, 100%, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.jh-header .jh-header-inner,
.jh-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 0 50px !important;
}

@media (max-width: 767px) {
    header.jh-header,
    .jh-header {
        height: 70px !important;
    }
    .jh-header-inner {
        padding: 0 20px !important;
    }
}

/* === LOGO === */
.jh-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.jh-logo a {
    display: block;
    line-height: 0;
}

.jh-logo-img {
    height: 90px;
    width: auto;
}

@media (max-width: 767px) {
    .jh-logo-img {
        height: 80px;
    }
}

/* ============================================================
   NAVIGATION - Judgement House Style
   ============================================================ */
.jh-nav-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.jh-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Reset and style nav list - override browser defaults */
ul.jh-nav-list,
.jh-nav-list {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-inline-start: 0 !important;
    height: 100%;
    gap: 0;
}

/* Nav items - ensure proper display */
.jh-nav-list > .jh-nav-item,
.jh-nav-item {
    position: relative;
    height: 100%;
    display: flex !important;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jh-nav-link,
.jh-nav-folder-title {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 18px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #111111 !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.jh-nav-link:hover,
.jh-nav-folder-title:hover {
    color: #bf0000 !important;
}

/* === DROPDOWN / FOLDER === */
.jh-nav-folder {
    position: relative;
}

.jh-nav-folder-content {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 200px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 12px 0 !important;
    list-style: none !important;
}

.jh-nav-folder:hover .jh-nav-folder-content,
.jh-nav-folder.is-open .jh-nav-folder-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jh-nav-folder-item {
    display: block;
}

.jh-nav-folder-item a {
    display: block;
    padding: 10px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    transition: all 0.2s ease;
}

.jh-nav-folder-item a:hover {
    color: #bf0000;
    background: #f5f5f5;
}

/* === HEADER ACTIONS (Social + Donate) === */
.jh-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 30px;
}

.jh-social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jh-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #333333;
    transition: color 0.2s ease;
}

.jh-social-icon:hover {
    color: #bf0000;
}

.jh-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* === PRIMARY BUTTON (Donate style) === */
.jh-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 28px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    background: #bf0000 !important;
    border: 2px solid #bf0000 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.jh-btn-primary:hover {
    background: transparent !important;
    color: #bf0000 !important;
}

/* Outline button variant */
.jh-btn-outline {
    background: transparent !important;
    color: #bf0000 !important;
    border: 2px solid #bf0000 !important;
}

.jh-btn-outline:hover {
    background: #bf0000 !important;
    color: #ffffff !important;
}

/* White button for dark sections */
.jh-btn-white {
    background: #ffffff !important;
    color: #111111 !important;
    border: 2px solid #ffffff !important;
}

.jh-btn-white:hover {
    background: transparent !important;
    color: #ffffff !important;
}

/* Header CTA button */
.jh-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    background: #bf0000 !important;
    border: 2px solid #bf0000 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.jh-cta-btn:hover {
    background: transparent !important;
    color: #bf0000 !important;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.jh-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.jh-hamburger-line {
    display: block;
    width: 22px;
    height: 1px;
    background: #111111;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.jh-hamburger.is-active .jh-hamburger-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.jh-hamburger.is-active .jh-hamburger-line:nth-child(2) {
    opacity: 0;
}

.jh-hamburger.is-active .jh-hamburger-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 991px) {
    .jh-hamburger {
        display: flex;
    }
    
    .jh-nav-wrapper {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        padding: 30px 50px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    
    .jh-nav-wrapper.is-open {
        transform: translateX(0);
    }
    
    .jh-nav {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    
    ul.jh-nav-list,
    .jh-nav-list {
        flex-direction: column !important;
        align-items: stretch !important;
        height: auto;
    }
    
    .jh-nav-list > .jh-nav-item,
    .jh-nav-item {
        height: auto;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .jh-nav-link,
    .jh-nav-folder-title {
        height: auto;
        padding: 16px 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .jh-nav-folder-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: #f5f5f5;
        transition: max-height 0.3s ease;
    }
    
    .jh-nav-folder.is-open .jh-nav-folder-content {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .jh-nav-folder-item a {
        padding: 12px 20px;
    }
    
    .jh-header-actions {
        margin: 30px 0 0;
        flex-direction: column;
        gap: 20px;
    }
    
    .jh-btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    @media (max-width: 767px) {
        .jh-nav-wrapper {
            top: 70px;
            padding: 20px 20px;
        }
    }
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
main.jh-main,
.jh-main {
    margin-top: 90px !important;
    display: block !important;
}

@media (max-width: 767px) {
    main.jh-main,
    .jh-main {
        margin-top: 70px !important;
    }
}

/* ============================================================
   HERO SECTION - Judgement House Style (Video/Image background)
   ============================================================ */
section.jh-hero,
.jh-hero {
    position: relative !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #000000 !important;
    overflow: hidden;
}

.jh-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.jh-hero-bg img,
.jh-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jh-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.jh-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
}

.jh-hero-logo {
    max-width: 350px;
    margin: 0 auto 40px;
}

@media (max-width: 767px) {
    .jh-hero-logo {
        max-width: 250px;
    }
}

.jh-hero h1,
.jh-hero h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

.jh-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.jh-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}

.jh-hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin: 0 0 40px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.jh-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.jh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.jh-btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
}

.jh-btn-secondary:hover {
    background: #ffffff !important;
    color: #111111 !important;
}

.jh-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.jh-scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* === SECTION GRID (Two columns - content + media) === */
.jh-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .jh-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.jh-section-content h2 {
    margin-bottom: 20px;
}

.jh-section-content p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.jh-section-media {
    position: relative;
}

.jh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #bf0000;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.jh-section-dark .jh-link-arrow {
    color: #ffffff;
}

.jh-link-arrow:hover {
    gap: 12px;
}

.jh-link-arrow svg {
    transition: transform 0.3s ease;
}

.jh-link-arrow:hover svg {
    transform: translateX(4px);
}

/* === VIDEO PLACEHOLDER === */
.jh-video-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.jh-video-placeholder img {
    width: 100%;
    display: block;
}

/* === IMAGE CONTAINER === */
.jh-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.jh-image-container img {
    width: 100%;
    display: block;
}

.jh-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #bf0000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.jh-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #990000;
}

.jh-play-btn svg {
    margin-left: 5px;
}

/* === STATS SECTION === */
.jh-section-stats {
    background: #bf0000 !important;
    padding: 60px 0 !important;
}

.jh-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    text-align: center !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100vw - 100px) !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.jh-stats-grid-5-itens{	
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 1200px) {
    .jh-stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .jh-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .jh-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

.jh-stat-item {
    color: #ffffff !important;
}

.jh-stat-number {
    display: block !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #ffffff !important;
}

.jh-stat-label {
    font-size: 14px !important;
    opacity: 0.9 !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
}

/* === CTA SECTION === */
.jh-section-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.jh-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.jh-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jh-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.jh-section-cta .jh-container {
    position: relative;
    z-index: 3;
}

.jh-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.jh-cta-content h2 {
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.jh-cta-content p {
    color: rgba(255,255,255,0.9) !important;
    margin-bottom: 30px !important;
    font-size: 1.1rem !important;
}

/* === TESTIMONIALS SECTION === */
.jh-section-testimonials {
    background: #f5f5f5 !important;
    padding: 100px 0 !important;
}

.jh-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.jh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .jh-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .jh-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.jh-testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jh-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.jh-testimonial-quote {
    color: #bf0000;
    margin-bottom: 20px;
}

.jh-testimonial-card p {
    font-style: italic;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.jh-testimonial-author {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
}

.jh-section-cta-link {
    text-align: center;
    margin-top: 50px;
}

/* === PAGE HERO (for inner pages) === */
.jh-page-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.jh-page-hero-bg {
    position: absolute;
    inset: 0;
}

.jh-page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jh-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.jh-page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.jh-page-hero .jh-page-title {
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ============================================================
   PAGE SECTIONS - Judgement House Style
   ============================================================ */
.jh-section {
    padding: 40px 0;
}

@media (max-width: 767px) {
    .jh-section {
        padding: 60px 0;
    }
}

/* Light section (default) */
.jh-section-light {
    background: #ffffff;
    color: #333333;
}

/* Dark section */
.jh-section-dark {
    background: #111111;
    color: #ffffff;
}

.jh-section-dark h1,
.jh-section-dark h2,
.jh-section-dark h3,
.jh-section-dark h4 {
    color: #ffffff !important;
}

.jh-section-dark p,
.jh-section-dark .jh-content-block p,
.jh-section-dark .jh-lead {
    color: #ffffff !important;
}

.jh-section-dark a {
    color: #ffffff;
}

.jh-section-dark a:hover {
    opacity: 0.8;
}

/* Gray section */
.jh-section-gray {
    background: #f5f5f5;
    color: #333333;
}

/* Accent section */
.jh-section-accent {
    background: #bf0000;
    color: #ffffff;
}

.jh-section-accent h1,
.jh-section-accent h2,
.jh-section-accent h3 {
    color: #ffffff;
}

/* Section with background image */
.jh-section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
}

.jh-section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.jh-section-bg > .jh-container {
    position: relative;
    z-index: 1;
}

/* === SECTION LAYOUT - 3 Column Cards like Judgement House === */
.jh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    .jh-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .jh-card-grid {
        grid-template-columns: 1fr;
    }
}

.jh-card {
    background: #ffffff;
    text-align: center;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.jh-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.jh-card p {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 20px;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.jh-page-content {
    padding: 80px 0;
}

@media (max-width: 767px) {
    .jh-page-content {
        padding: 50px 0;
    }
}

.jh-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.jh-page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0;
}

.jh-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.9;
}

.jh-content h2 {
    margin-top: 50px;
}

.jh-content ul,
.jh-content ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.jh-content li {
    margin-bottom: 0.5em;
}

.jh-content img {
    margin: 30px 0;
}

/* ============================================================
   FOOTER - Judgement House Style
   ============================================================ */
footer.jh-footer,
.jh-footer {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 80px 0 40px !important;
    display: block !important;
}

.jh-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .jh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .jh-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.jh-footer-col {
    text-align: center;
}

.jh-footer-logo {
    max-width: 180px;
    margin: 0 auto 20px;
}

.jh-footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 15px;
}

.jh-footer-col h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.jh-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.jh-footer-col li {
    margin-bottom: 12px;
}

.jh-footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s ease;
}

.jh-footer-col a:hover {
    color: #ffffff;
}

.jh-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   QUOTE / TESTIMONIAL SECTION
   ============================================================ */
.jh-quote-section {
    padding: 100px 0;
    background: #f5f5f5;
    text-align: center;
}

.jh-quote {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    color: #333333;
}

.jh-quote-author {
    margin-top: 30px;
    font-size: 1rem;
    font-style: normal;
    color: #666666;
}

/* ============================================================
   STATIC CONTENT FROM CASA DO JULGAMENTO
   ============================================================ */
.jh-static {
    padding: 40px 0;
}

.jh-static img {
    max-width: 100%;
    height: auto;
}

.jh-static--missing {
    padding: 30px;
    margin: 30px 0;
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    text-align: center;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================================
   WORDPRESS COMPATIBILITY
   ============================================================ */
.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.5rem;
}

/* ============================================================
   FORMS
   ============================================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    border: 1px solid #c8c8c8;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #bf0000;
}

/* ============================================================
   LEGACY CASA DO JULGAMENTO CONTENT STYLES
   ============================================================ */
.jh-content .mission_button,
.jh-content .button {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: #bf0000;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.jh-content .mission_button:hover,
.jh-content .button:hover {
    background: #990000;
}

.jh-content .widgettitle,
.jh-content .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #111111;
}

.jh-content .vc_row,
.jh-content .wpb_wrapper {
    max-width: 100%;
}

.jh-content .vc_column-inner {
    padding: 0;
}

/* Social icons in footer */
.jh-footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.jh-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.jh-footer-social a:hover {
    background: #bf0000;
}

.jh-footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
/* ============================================================
   PAGE STYLES - Judgement House Style
   ============================================================ */

/* Page Hero Section */
.jh-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 767px) {
    .jh-page-hero {
        min-height: 350px;
        background-attachment: scroll;
    }
}

.jh-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.jh-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.jh-page-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: #ffffff !important;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

/* Page Article Content */
.jh-page-article {
    background: #ffffff;
}

/* Section Styles */
.jh-section-white {
    background: #ffffff;
    color: #333333;
}

.jh-content-block {
    max-width: 1200px;
    margin: 0 auto;
}

.jh-content-block h1,
.jh-content-block h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #111111 !important;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.jh-content-block h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.jh-content-block h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #bf0000;
    border-radius: 2px;
}

.jh-content-block h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.jh-content-block h3,
.jh-content-block h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #111111 !important;
    margin: 2rem 0 1rem;
}

.jh-content-block p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 1.5rem;
}

.jh-content-block p:last-child {
    margin-bottom: 0;
}

.jh-content-block ul,
.jh-content-block ol {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.jh-content-block li {
    margin-bottom: 0.5rem;
}

.jh-content-block a {
    color: #bf0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.jh-content-block a:hover {
    color: #990000;
}

.jh-content-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.jh-content-block blockquote {
    border-left: 4px solid #bf0000;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555555;
}

/* CTA Bottom Section */
.jh-section-cta-bottom {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.jh-section-cta-bottom .jh-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.jh-section-cta-bottom .jh-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jh-section-cta-bottom .jh-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1;
}

.jh-section-cta-bottom .jh-cta-content {
    position: relative;
    z-index: 2;
}

.jh-section-cta-bottom h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 1rem;
}

.jh-section-cta-bottom p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Static Content Sections */
.cj-static {
    padding: 0;
}

.cj-static h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #111111 !important;
    margin: 0 0 2rem;
    position: relative;
    display: inline-block;
}

.cj-static h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #bf0000;
    border-radius: 2px;
}

.cj-static p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444444;
    margin: 0 0 1.5rem;
}

/* Two Column Layout */
.jh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 767px) {
    .jh-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Feature Cards */
.jh-feature-card {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.jh-feature-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.jh-feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 1rem;
}

.jh-feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #bf0000;
    margin: 0 0 0.5rem;
}

.jh-feature-card p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
}

/* Numbered List Sections */
.jh-numbered-section {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
}

.jh-numbered-section:last-child {
    border-bottom: none;
}

.jh-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #bf0000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.jh-numbered-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 0.5rem;
}

.jh-numbered-content p {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    line-height: 1.7;
}

/* Highlight Text */
.jh-highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(191, 0, 0, 0.2) 60%);
    padding: 0 2px;
}

/* Image Gallery */
.jh-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.jh-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.jh-gallery img:hover {
    transform: scale(1.02);
}

/* ============================================================
   STAT CARDS (Results Page)
   ============================================================ */
.jh-stat-card {
    background: #1a1a1a !important;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jh-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.jh-stat-card .jh-stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 10px;
}

.jh-stat-card .jh-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.jh-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .jh-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.jh-benefit-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-left: 4px solid #bf0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jh-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.jh-benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 15px;
}

.jh-benefit-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SCRIPTS/ROTEIROS GRID
   ============================================================ */
.jh-scripts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .jh-scripts-grid {
        grid-template-columns: 1fr;
    }
}

.jh-script-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jh-script-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #bf0000;
}

.jh-script-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #bf0000;
    margin: 0 0 15px;
}

.jh-script-card p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   FAQ ITEMS
   ============================================================ */
.jh-faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #eeeeee;
}

.jh-faq-item:first-of-type {
    padding-top: 0;
}

.jh-faq-item:last-of-type {
    border-bottom: none;
}

.jh-faq-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #bf0000;
    margin: 0 0 15px;
}

.jh-faq-item p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   TEAM GRID
   ============================================================ */
.jh-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .jh-team-grid {
        grid-template-columns: 1fr;
    }
}

.jh-team-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

.jh-team-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 10px;
}

.jh-team-card p {
    font-size: 1rem;
    color: #bf0000;
    font-weight: 500;
    margin: 0;
}

/* Team Card Images */
.jh-team-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */
.jh-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 767px) {
    .jh-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.jh-column-text {
    /* Text column styles */
}

.jh-column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ============================================================
   SCRIPT CARD IMAGES
   ============================================================ */
.jh-script-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin: -40px -30px 20px -30px;
    width: calc(100% + 60px);
}

/* ============================================================
   PRODUCT GRID (T-Shirts)
   ============================================================ */
.jh-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .jh-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .jh-products-grid {
        grid-template-columns: 1fr;
    }
}

.jh-product-card {
    background: #ffffff;
    padding: 20px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jh-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.jh-product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 15px;
}

.jh-product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111111;
    margin: 0;
}

/* ============================================================
   PAGE IMAGE CONTAINERS
   ============================================================ */
.jh-page-image {
    text-align: center;
}

.jh-page-image img {
    max-width: 100%;
    height: auto;
}


/* =========================
   Video Testimonials
   ========================= */

.jh-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
}

/* 2 colunas em telas médias */
@media (min-width: 768px) {
  .jh-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 3 colunas em telas grandes */
@media (min-width: 1024px) {
  .jh-videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.jh-video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.jh-video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

/* Responsivo: mantém proporção 16:9 */
.jh-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.jh-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Texto do card */
.jh-video-meta {
  padding: 14px 14px 16px;
}

.jh-video-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.jh-video-subtitle {
  margin: 0;
  font-size: 14px;
  opacity: .8;
}


/* ======================================================
   Nossa Equipe (escopado) — NÃO conflita com o tema
   ====================================================== */
#cj-team-page{
  --cj-accent:#c1121f;
  --cj-text:#111827;
  --cj-muted:#6b7280;
  --cj-line:rgba(0,0,0,.10);
  --cj-card:#ffffff;
  --cj-shadow:0 18px 55px rgba(0,0,0,.12);
  --cj-radius:16px;
}

/* HERO */
#cj-team-page .cj-team-hero{
  padding: 6px 0 26px;
}
#cj-team-page .cj-team-kicker{
  margin: 0 0 10px;
  display: inline-block;
  font-weight: 800;
  font-size: .9rem;
  color: var(--cj-accent);
  letter-spacing: .02em;
  text-transform: uppercase;
}
#cj-team-page .cj-team-title{
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
}
#cj-team-page .cj-team-lead{
  margin: 0;
  max-width: 920px;
  color: var(--cj-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

/* BLOCO EXTRA DE CONTEÚDO */
#cj-team-page .cj-team-info{
  margin-top: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px){
  #cj-team-page .cj-team-info{
    grid-template-columns: 1.15fr .85fr;
    align-items: start;
  }
}

#cj-team-page .cj-team-box{
  background: var(--cj-card);
  border: 1px solid var(--cj-line);
  border-radius: var(--cj-radius);
  padding: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}
#cj-team-page .cj-team-box h3{
  margin: 0 0 10px;
  font-size: 1.05rem;
}
#cj-team-page .cj-team-box p{
  margin: 0 0 12px;
  color: var(--cj-muted);
  line-height: 1.75;
}
#cj-team-page .cj-team-box ul{
  margin: 0;
  padding-left: 18px;
  color: #374151;
  line-height: 1.85;
}

/* BOTÕES */
#cj-team-page .cj-team-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
#cj-team-page .cj-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--cj-line);
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  color: var(--cj-text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
#cj-team-page .cj-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.18);
}
#cj-team-page .cj-btn-primary{
  background: var(--cj-accent);
  color: #fff;
  border-color: rgba(193,18,31,.95);
}
#cj-team-page .cj-btn-primary:hover{
  box-shadow: 0 16px 34px rgba(193,18,31,.22);
  border-color: rgba(193,18,31,1);
}

/* GRID CARDS */
#cj-team-page .cj-team-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px){
  #cj-team-page .cj-team-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* CARD */
#cj-team-page .cj-team-card{
  background: var(--cj-card);
  border: 1px solid var(--cj-line);
  border-radius: var(--cj-radius);
  overflow: hidden;
  box-shadow: var(--cj-shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
#cj-team-page .cj-team-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
}

/* FOTO (sem depender de classes do tema) */
#cj-team-page .cj-team-photo{
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f3f4f6;
}
#cj-team-page .cj-team-photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* TEXTO DO CARD */
#cj-team-page .cj-team-body{
  padding: 16px 16px 18px;
}
#cj-team-page .cj-team-role{
  display: inline-block;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--cj-accent);
  margin-bottom: 8px;
}
#cj-team-page .cj-team-name{
  margin: 0 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
#cj-team-page .cj-team-text{
  margin: 0 0 12px;
  color: var(--cj-muted);
  line-height: 1.75;
}

/* CHIPS */
#cj-team-page .cj-team-meta{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--cj-line);
}
#cj-team-page .cj-chip{
  border: 1px solid var(--cj-line);
  border-radius: 12px;
  padding: 10px 10px;
  background: rgba(0,0,0,.02);
  color: #374151;
  line-height: 1.6;
}
#cj-team-page .cj-chip b{ color: var(--cj-text); }

/* QUOTE FINAL */
#cj-team-page .cj-team-quote{
  margin-top: 22px;
  border-left: 4px solid var(--cj-accent);
  padding-left: 14px;
  color: var(--cj-text);
  line-height: 1.8;
}
#cj-team-page .cj-team-quote p{
  margin: 0;
}
#cj-top {
  scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  #cj-top {
    scroll-margin-top: 90px;
  }
}