/*
   CAIO MARCIO - PROFESSIONAL BIOGRAPHICAL PORTFOLIO
   Design Theme: Modern, Elegant, High-Contrast Editorial (Black & White Canvas, Luxury Gold Accents)
   Color System: Off-white canvas, Deep Black blocks, Luxury Gold details, subtle Green highlights.
   Font System: Cinzel & Plus Jakarta Sans (Hosted locally)
*/

/* --- VARIABLES & DESIGN SYSTEM --- */
:root {
    /* Color Palette */
    --bg-light: #fcfbfa;       /* Warm editorial white */
    --bg-white: #ffffff;
    --bg-dark: #0a0a0a;        /* High-impact black block */
    --bg-card-light: #ffffff;
    --bg-card-dark: #121212;
    
    --primary: #cca352;        /* Elegant standard gold */
    --primary-light: #735626;  /* High-contrast bronze-gold for light background text */
    --primary-dark: #fde6a9;   /* Light luxury gold for dark background text */
    --primary-hover: #bfa15f;
    
    --green: #2ecc71;          /* Subtle active indicators */
    --green-dim: rgba(46, 204, 113, 0.12);
    
    --text-dark: #1d1d1f;      /* Primary dark text */
    --text-muted-dark: #515154;
    --text-dim-dark: #86868b;
    
    --text-light: #ffffff;     /* Primary light text */
    --text-muted-light: #a1a1a6;
    --text-dim-light: #949499; /* Increased contrast for readability in dark blocks */
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --max-width: 1300px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --padding-section: 7rem 6vw;
}

/* --- Accessibility utilities --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- RESET & ACCESSIBILITY DEFAULTS --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-light);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
}

main {
    display: block;
    min-height: 80vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.25;
}

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

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-light);
}

h2.center-title {
    text-align: center;
}

h2.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Skip Link for Keyboard Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background-color: var(--primary);
    color: #050505 !important;
    padding: 1rem 2rem;
    z-index: 10000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
    outline: 2px solid var(--green);
}

/* --- HELPER CLASSES & UTILITIES --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 6vw;
}

.text-gold { color: var(--primary-light); }
.text-green { color: var(--green); }

.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-light);
    background-color: rgba(143, 111, 54, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(143, 111, 54, 0.2);
}

.gold-badge {
    color: var(--primary-light);
    background-color: rgba(204, 163, 82, 0.08);
    border: 1px solid rgba(204, 163, 82, 0.2);
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 5rem 0;
}

.section-dark .divider {
    background-color: rgba(255, 255, 255, 0.08);
}

/* --- THEME SECTIONS (EDITORIAL BLACK & WHITE BALANCE) --- */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--text-light);
}

.section-dark h2::after {
    background-color: var(--primary-dark);
}

.section-dark p {
    color: var(--text-muted-light);
}

.section-dark .badge {
    color: var(--primary-dark);
    background-color: rgba(253, 230, 169, 0.1);
    border-color: rgba(253, 230, 169, 0.2);
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

/* --- BUTTONS (REDESIGNED FOR READABILITY & CONTRAST) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid transparent;
}

/* Solid gold buttons - completely readable, dark charcoal text */
.btn-primary {
    background-color: #d4af37; 
    color: #050505;
    border-color: #d4af37;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: #1d1d1f;
    color: #ffffff;
    border-color: #1d1d1f;
}

.section-dark .btn-primary {
    background-color: var(--primary-dark);
    color: #050505;
    border-color: var(--primary-dark);
}

.section-dark .btn-primary:hover {
    background-color: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

/* Outlined buttons */
.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
}

.section-dark .btn-secondary {
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.25);
}

.section-dark .btn-secondary:hover {
    background-color: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

/* Text link button styles */
.btn-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    padding: 0.3rem 0;
    border-bottom: 2px solid var(--primary-light);
    margin-top: 1rem;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-link svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

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

.section-dark .btn-link {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.section-dark .btn-link:hover {
    color: var(--text-light);
    border-color: var(--text-light);
}

/* --- HEADER & NAVIGATION (STICKY & MODERN BLUR) --- */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 93px; /* Exact fixed height matching hero margin-top */
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: #000000; /* Solid black background */
    border-bottom: 1px solid rgba(253, 230, 169, 0.08);
}

.header-wrapper.scrolled {
    background-color: #000000; /* Keep solid black on scroll */
    border-bottom: 1px solid rgba(204, 163, 82, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 6vw;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Prominent, large logo */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
}

.menu-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3.5rem;
}

.menu-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-dark);
    transition: var(--transition-fast);
}

.menu-link:hover {
    color: var(--primary-dark);
}

.menu-link:hover::after,
.menu-item.active .menu-link::after {
    width: 100%;
}

.menu-item.active .menu-link {
    color: var(--primary-dark);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-divider {
    color: rgba(253, 230, 169, 0.3);
    font-size: 1.1rem;
    margin: 0 0.5rem;
    user-select: none;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 26px;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: translateY(-2px);
}

.social-icon-link img {
    width: 25px;
    height: 26px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* --- MOBILE MENU CLOSE BUTTON ("X") --- */
.menu-close {
    display: none;
}

/* --- FOOTER (LUXURIOUS DARK SYSTEM) --- */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 3rem 0;
    font-family: var(--font-body);
    color: var(--text-light);
}

.footer h3 {
    color: var(--primary-dark);
}

.footer p {
    color: var(--text-muted-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    max-width: 320px;
    line-height: 1.7;
}

.footer-col h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.footer-links .text-gold {
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-dim-light);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--text-dim-light);
}

.footer-bottom a {
    color: var(--text-muted-light);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--primary-dark);
}

/* --- COMMON PAGE HERO SECTION --- */
.page-hero {
    padding: 12rem 0 6rem 0;
    background-image: linear-gradient(to bottom, rgba(5,5,5,0.9), rgba(5,5,5,0.95)), url('../images/Home/Vale%20noturno%20blurred.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid rgba(253, 230, 169, 0.1);
    color: var(--text-light);
}

.page-hero-title {
    max-width: 800px;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.page-hero-lead {
    font-size: 1.25rem;
    color: var(--text-muted-light);
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 0;
}

/* --- index.html (HOME & BIOGRAPHY) --- */
.hero-section {
    position: relative;
    margin-top: 93px;
    height: 660px;
    min-height: 660px;
    max-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background-color: #000000;
}

.hero-container-flex {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-text-col {
    width: 48%;
    z-index: 5;
    text-align: left;
    padding-top: 0; /* no longer needed since section has margin-top */
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-divider {
    height: 2px;
    background-color: var(--primary);
    margin: 1.5rem 0;
    width: 60px;
    transform-origin: left;
    opacity: 0;
    animation: expandWidth 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-subtitle-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #ffffff;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero-btns {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    padding: 1.1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-hero-outline:hover {
    background-color: var(--primary-dark);
    color: #000000;
    border-color: var(--primary-dark);
}

.btn-hero-outline svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.btn-hero-outline:hover svg {
    transform: translateX(4px);
}

.hero-image-col {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 4;
    display: block;
    opacity: 0;
    animation: fadeInScale 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: 25% top;
}

/* --- HERO ANIMATIONS KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Trajectory Biography Grid (Dual Column Editorial Layout) */
.bio-trajectory-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: var(--padding-section);
}

.bio-section-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
}

.bio-section-row.reversed {
    direction: rtl;
}

.bio-section-row.reversed .bio-text-block {
    direction: ltr;
}

.bio-text-block p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.bio-image-block {
    position: relative;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
    direction: ltr;
}

.bio-image-block img {
    box-shadow: 20px 20px 0px 0px rgba(204, 163, 82, 0.1);
    border: 1px solid rgba(204, 163, 82, 0.2);
    width: 100%;
    height: auto;
}

.bio-image-block::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 8px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--primary-light);
    z-index: 1;
    pointer-events: none;
}

/* Purpose quote block */
.purpose-section {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 80% 20%, rgba(253, 230, 169, 0.04) 0%, transparent 60%);
    padding: var(--padding-section);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.purpose-content {
    max-width: 1000px;
    margin: 0 auto;
}

.purpose-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.5;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    font-style: italic;
}

.purpose-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.purpose-text p {
    color: rgba(255, 255, 255, 0.85);
}

/* Columns Section */
.timeline-section {
    padding: var(--padding-section);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.timeline-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3.5rem 2.5rem;
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.timeline-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--primary-light);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.timeline-card h3 {
    margin-bottom: 1rem;
}

.timeline-card p {
    margin-bottom: 0;
}

/* --- solucoes.html (PJ & PF SERVICES) --- */
.solutions-intro {
    padding: 5rem 6vw 2rem 6vw;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.solutions-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.tabs-container {
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 1rem;
    max-width: 600px;
    margin: 0 auto 5rem auto;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dim-dark);
    cursor: pointer;
    padding: 0.8rem 1.5rem;
    position: relative;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: var(--primary-light);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-light);
}

.tab-content {
    display: none;
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-content.active {
    display: block;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Service cards (Legible buttons, clean white boxes) */
.solution-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(204, 163, 82, 0.25);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.solution-card-top h3 {
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}

.solution-card-top p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.solution-card-icon {
    width: 44px;
    height: 44px;
    color: var(--primary-light);
}

.solution-card-btn {
    align-self: flex-start;
}

/* Detail drawer description inside service card */
.extended-desc {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Broad PJ Blocks */
.broad-solutions {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 8rem;
}

.broad-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.broad-card-reverse {
    direction: rtl;
}

.broad-card-reverse .broad-card-content {
    direction: ltr;
}

.broad-card-content {
    padding: 5rem 4vw;
}

.broad-card-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* --- insights.html (INSIGHTS & PUBLICAÇÕES) --- */
.insights-intro {
    text-align: center;
    max-width: 900px;
    margin: 6rem auto 5rem auto;
}

.books-section {
    padding: 2rem 0;
}

.books-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.book-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.book-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: rgba(204, 163, 82, 0.15);
}

.book-cover-3d {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover-inner {
    width: 180px;
    height: 260px;
    position: relative;
    transform: rotateY(-20deg) rotateX(10deg);
    transform-style: preserve-3d;
    box-shadow: 5px 5px 25px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
}

.book-card:hover .book-cover-inner {
    transform: rotateY(-10deg) rotateX(5deg) translateZ(10px);
}

.book-cover-inner img {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Prevent crop, display book cover fully */
}

.book-info h3 {
    margin-bottom: 0.5rem;
}

.book-info p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.book-action-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* eBooks downloaders */
.ebooks-section {
    margin-top: 6rem;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.ebook-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.ebook-card:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 163, 82, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.ebook-cover {
    width: 100%;
    height: 220px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.ebook-cover::before {
    content: 'E-BOOK';
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--primary-dark);
}

.ebook-card h3 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1.5rem;
    height: 48px;
    overflow: hidden;
}

/* Podcast (Deep Black high-impact visual room) */
.podcasts-section {
    margin-top: 6rem;
}

.podcast-main-card {
    background-color: #0c0c0c;
    border: 1px solid rgba(253, 230, 169, 0.15);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: center;
    color: var(--text-light);
}

.podcast-main-card h2, .podcast-main-card h3 {
    color: var(--text-light);
}

.podcast-main-card p {
    color: var(--text-muted-light);
}

.podcast-visual {
    background-color: #181818;
    height: 320px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.podcast-visual-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background-color: var(--green);
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.podcast-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
}

.podcast-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--green);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.4; }
}

/* REDESIGNED ARTICLE SECTION: 3-column cohesive grid (no empty categories) */
.articles-section {
    margin-top: 8rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.article-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 163, 82, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.article-image {
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-meta {
    font-size: 0.75rem;
    color: var(--text-dim-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.article-title:hover {
    color: var(--primary-light);
}

/* Masterclasses & Videos */
.videos-section {
    margin-top: 8rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.video-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.video-thumb {
    height: 200px;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(253, 230, 169, 0.95);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 3;
    border: none;
    cursor: pointer;
}

.video-play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.video-card:hover .video-play-btn {
    transform: scale(1.1);
    background-color: #ffffff;
}

.video-content {
    padding: 1.5rem;
}

.video-content h3 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.5;
}

/* --- ARTICLE DETAIL TEMPLATE --- */
.article-detail-header {
    padding: 12rem 0 5rem 0;
    text-align: center;
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.article-detail-header h1 {
    color: var(--text-light);
    max-width: 900px;
    margin: 1.5rem auto;
    font-weight: 300;
}

.article-detail-body {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.article-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 6vw;
}

.article-detail-container p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: #222222;
}

.article-detail-container h3 {
    font-size: 1.5rem;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.article-inline-image {
    margin: 4rem 0;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.article-inline-image figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim-dark);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- contato.html (FIXED FORM & DETAILS) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    padding: 5rem 0;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-intro p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-channel-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-channel-details h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 0.3rem;
}

.contact-channel-details p {
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* QR Code Display Grid */
.qr-container {
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 3rem;
}

.qr-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.qr-grid {
    display: flex;
    gap: 3rem;
}

.qr-card {
    text-align: center;
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.8rem;
    border-radius: 4px;
    width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.qr-card img {
    width: 100%;
    margin-bottom: 1.2rem;
    background-color: #fff;
    padding: 8px;
    border: 1px solid rgba(0,0,0,0.04);
}

.qr-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dim-dark);
}

/* Redesigned Contact Form */
.contact-form-container {
    background-color: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.form-control {
    width: 100%;
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.1rem 1.3rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(143, 111, 54, 0.06);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-feedback {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 1rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 3px solid var(--green);
    color: #27ae60;
}

.form-feedback.error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 3px solid #e74c3c;
    color: #c0392b;
}

/* --- WAITLIST MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-white);
    border: 1px solid rgba(143, 111, 54, 0.2);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-container .form-group {
    margin-bottom: 1.2rem;
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--text-dim-dark);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary-light);
}

.modal-feedback {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 1rem;
    display: none;
}

.modal-feedback.success {
    display: block;
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 3px solid var(--green);
    color: #27ae60;
}

/* --- NAVIGATION CARDS SECTION (BELOW HERO) --- */
.nav-cards-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 0;
}

.nav-card {
    background-color: var(--bg-white);
    border: 1px solid rgba(143, 111, 54, 0.12);
    border-radius: 4px;
    padding: 2.8rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 280px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(143, 111, 54, 0.12);
    border-color: var(--primary-light);
}

.nav-card-icon-wrapper {
    margin-bottom: 1.8rem;
}

.nav-card-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.card-icon {
    width: 24px;
    height: 24px;
}

.nav-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.nav-card-info h3::after {
    display: none !important;
}

.nav-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.nav-card-arrow {
    margin-top: 1.8rem;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.nav-card:hover .arrow-icon {
    transform: translateX(6px);
}

/* --- HORIZONTAL QUOTE BAR --- */
.horizontal-quote-bar {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(253, 230, 169, 0.15);
    border-bottom: 1px solid rgba(253, 230, 169, 0.15);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.quote-bar-text {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    color: var(--primary-dark);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
    :root {
        --padding-section: 5rem 6vw;
    }
    
    .bio-section-row,
    .solutions-grid,
    .articles-grid,
    .videos-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .nav-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-section {
        margin-top: 93px;
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column-reverse;
    }
    
    .hero-container-flex {
        display: block;
        height: auto;
    }
    
    .hero-text-col {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        padding-bottom: 4rem;
    }
    
    .hero-divider {
        margin: 1.5rem auto;
        transform-origin: center;
    }
    
    .hero-image-col {
        position: relative;
        width: 100%;
        height: 380px;
        display: block;
    }
    
    .hero-banner-img {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 0;
        box-shadow: none;
        object-fit: cover;
        object-position: 25% top;
    }
    
    .bio-section-row.reversed {
        direction: ltr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .broad-card {
        grid-template-columns: 1fr;
    }
    
    .broad-card-reverse {
        direction: ltr;
    }
    
    .broad-card-image img {
        height: 360px;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
    }
    
    .book-card {
        padding: 3rem;
    }
    
    .podcast-main-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
        color: var(--primary-dark);
    }
    
    .header-wrapper.scrolled .menu-toggle {
        color: var(--primary-dark);
    }
    
    /* Sliding menu drawer */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-dark); /* Dark drawer for impact */
        box-shadow: -15px 0 40px rgba(0,0,0,0.4);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        padding: 8rem 3rem 3rem 3rem;
        transition: var(--transition-smooth);
        visibility: hidden;
    }
    
    .main-nav.open {
        right: 0;
        visibility: visible;
    }
    
    .menu-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }
    
    .menu-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        color: var(--text-muted-light);
    }
    
    .menu-item.active .menu-link {
        color: var(--primary-dark);
    }
    
    /* Mobile close button visible inside the drawer */
    .menu-close {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        font-size: 2.5rem;
        color: var(--text-light);
        cursor: pointer;
        line-height: 1;
        transition: var(--transition-fast);
    }
    
    .menu-close:hover {
        color: var(--primary-dark);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ebooks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .nav-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-image-col {
        height: 280px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 2.5rem 1.8rem;
    }
    
    .book-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-action-row {
        justify-content: center;
    }
    
    .ebooks-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .qr-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Wide Modal Styles & Form Grid */
.modal-container.modal-wide {
    max-width: 850px;
    width: 80%;
}

.form-grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-grid-2-cols {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .modal-container.modal-wide {
        width: 95%;
        padding: 2rem 1.5rem;
    }
}

/* --- VIDEO MODAL & PLAYBACK --- */
.modal-container.video-modal-container {
    max-width: 1200px !important; /* Cinema size */
    width: 90% !important;
    padding: 0 !important; /* No padding around the video */
    background: transparent !important; /* Fully transparent wrapper */
    border: none !important; /* Remove container borders */
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.95); /* High contrast shadow */
    overflow: hidden;
}

#video-modal .modal-close {
    position: fixed;
    top: 1.5rem;
    right: 2.2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 3.8rem !important;
    z-index: 10002;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

#video-modal .modal-close:hover {
    color: var(--gold) !important;
    transform: scale(1.1);
}

.video-modal-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    text-align: center;
    background-color: #111;
    color: var(--text-light);
    border: 1px dashed rgba(253, 230, 169, 0.3);
}

.video-coming-soon h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.video-coming-soon p {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0;
}

/* --- MISSION, VISION & VALUES SECTION --- */
.mission-vision-values-section {
    padding: var(--padding-section);
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.values-split-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 5vw;
}

.left-values-col {
    display: flex;
    flex-direction: column;
}

.section-title-values {
    margin-bottom: 2.5rem;
}

.mv-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mv-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mv-icon-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.mv-accent-dot {
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.mv-block h3 {
    margin-bottom: 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.mv-block p {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    line-height: 1.8;
    margin-bottom: 0;
}

.right-values-col {
    display: flex;
    flex-direction: column;
}

.valores-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
}

.valor-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.valor-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-light);
    line-height: 1;
    font-weight: 400;
    opacity: 0.9;
}

.valor-content h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.valor-content p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .values-split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 600px) {
    .valores-list-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
