/* ============================================================
   sobre.css — Estilos específicos da página Sobre Nós
   Depende de: pages-shared.css
   ============================================================ */

.page-hero { background-image: url('../familia.png'); background-position: center 15%; }

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.image-block img {
    width: 100%; height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
    position: relative; z-index: 2;
}

.text-block { padding: 20px; }
.text-block p {
    font-size: 1.3rem;
    color: #fcfcfc;
    line-height: 2.2;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}
.text-block.white-text p { color: rgba(253,253,253,0.95); }
body.light-mode .text-block p { color: #090222; }
body.light-mode .text-block.white-text p { color: rgba(30,20,40,0.9); }

.story-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.story-block {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}
.story-block:nth-child(even) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.story-label {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(253,253,253,0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(82,178,223,0.9);
    padding-bottom: 5px;
}
body.light-mode .story-label { color: rgb(14,36,131); border-bottom-color: rgb(14,36,131); }

.story-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--pink-soft);
    margin-bottom: 25px;
    line-height: 1.3;
}
body.light-mode .story-block h2 { color: rgb(14,6,78); }

.story-block p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(253,253,253,0.9);
    margin-bottom: 20px;
    text-align: justify;
}
body.light-mode .story-block p { color: rgba(30,20,40,0.9); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: linear-gradient(135deg, rgba(45,10,78,0.5), rgba(6,57,122,0.4));
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(58,136,201,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(74,15,143,0.9);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(36,105,184,0.9);
    margin-bottom: 10px;
}
body.light-mode .stat-number { color: rgba(19,4,73,0.9); }

.stat-label { font-size: 1.1rem; color: var(--cream); line-height: 1.4; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: linear-gradient(135deg, rgba(45,10,78,0.4), rgba(139,63,168,0.3));
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(233,30,99,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45,10,78,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.value-card h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--pink-vibrant); margin-bottom: 15px; }
body.light-mode .value-card h3 { color: rgba(45,10,78,0.6); }
.value-card p { font-size: 1.05rem; line-height: 1.7; color: rgba(253,253,253,0.85); text-align: left; }

.quote-block {
    background: linear-gradient(135deg, rgba(47,3,92,0.5), rgba(12,26,104,0.3));
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid rgba(12,53,141,0.9);
    margin: 60px 0;
    backdrop-filter: blur(10px);
    position: relative;
}
.quote-block::before {
    content: '"';
    position: absolute;
    top: -20px; left: 20px;
    font-size: 120px;
    color: rgba(12,53,141,0.9);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}
.quote-block p {
    font-size: 1.5rem;
    line-height: 1.9;
    font-style: italic;
    color: rgba(215,212,218,0.9);
    text-align: center;
    margin-bottom: 20px;
}
body.light-mode .quote-block p { color: rgba(17,3,31,0.9); }

.quote-author { text-align: right; font-size: 1.1rem; color: rgba(132,150,190,0.9); font-weight: 600; }
body.light-mode .quote-author { color: rgba(12,53,141,0.9); }

@media (max-width: 968px) {
    .two-column-section { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .content-section { padding: 60px 20px; }
    .text-block p { font-size: 1.1rem; }
    .story-block h2 { font-size: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Cosmic Gold Refresh
   ============================================================ */

.content-section,
.story-section {
    max-width: 1240px;
}

.two-column-section {
    gap: 42px;
    margin-bottom: 42px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(11, 14, 28, 0.76), rgba(8, 10, 20, 0.88)),
        radial-gradient(circle at top right, rgba(188, 127, 255, 0.12), transparent 34%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

body.light-mode .two-column-section {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.86), rgba(242, 234, 219, 0.96));
    border-color: rgba(122, 92, 0, 0.16);
}

.image-block img {
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.text-block {
    padding: 0;
}

.text-block p,
.story-block p,
.value-card p {
    color: rgba(246, 237, 220, 0.82);
    text-shadow: none;
}

body.light-mode .text-block p,
body.light-mode .story-block p,
body.light-mode .value-card p {
    color: rgba(43, 33, 24, 0.84);
}

.story-block {
    padding: 34px 36px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(10, 12, 24, 0.68), rgba(9, 11, 20, 0.88));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
}

body.light-mode .story-block {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.9), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.12);
}

.story-label {
    color: rgba(233, 201, 136, 0.82);
    border-bottom-color: rgba(233, 201, 136, 0.58);
}

.story-block h2,
.value-card h3 {
    color: #f1d39d;
}

body.light-mode .story-block h2,
body.light-mode .value-card h3 {
    color: #7a5c00;
}

.stats-grid {
    gap: 24px;
}

.stat-card,
.value-card {
    background: linear-gradient(160deg, rgba(10, 13, 26, 0.74), rgba(8, 11, 20, 0.9));
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.stat-card:hover,
.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 215, 154, 0.34);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

body.light-mode .stat-card,
body.light-mode .value-card {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.14);
}

.stat-number {
    color: #f4d79a;
}

.stat-label {
    color: rgba(246, 237, 220, 0.76);
}

body.light-mode .stat-label {
    color: rgba(43, 33, 24, 0.76);
}

.quote-block {
    background: linear-gradient(160deg, rgba(13, 16, 30, 0.76), rgba(8, 10, 20, 0.92));
    border-left: 1px solid rgba(212, 175, 55, 0.32);
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.quote-block::before {
    color: rgba(233, 201, 136, 0.18);
}

.quote-block p {
    color: rgba(246, 237, 220, 0.88);
}

.quote-author {
    color: rgba(233, 201, 136, 0.72);
}

body.light-mode .quote-block {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.16);
}

@media (max-width: 968px) {
    .two-column-section {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .story-block,
    .two-column-section,
    .quote-block {
        padding: 24px 20px;
        border-radius: 24px;
    }

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

/* ============================================================
   Editorial Polish
   ============================================================ */

.hero-content > div[style*="justify-content: center"] {
    display: none !important;
}

.page-hero {
    background-position: center 18%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(244, 215, 154, 0.18);
    background: rgba(8, 11, 20, 0.36);
    color: rgba(244, 215, 154, 0.86);
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-emblem-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2px;
}

.hero-emblem {
    width: min(420px, 82vw);
    height: auto;
    filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.56));
}

@media (min-width: 769px) {
    .hero-emblem {
        width: min(378px, 82vw);
    }
}

.page-hero h1 {
    margin-bottom: 0;
}

.hero-description {
    max-width: 720px;
    padding: 18px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 9, 18, 0.16), rgba(7, 9, 18, 0.28));
    border: 1px solid rgba(244, 215, 154, 0.1);
}

.about-intro-band {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: -72px auto 0;
    padding: 0 40px;
}

.intro-band-shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 20px;
    border-radius: 32px;
    background:
        linear-gradient(160deg, rgba(11, 14, 28, 0.8), rgba(8, 10, 20, 0.92)),
        radial-gradient(circle at top center, rgba(188, 127, 255, 0.12), transparent 40%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 30px 64px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.intro-band-card {
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 15, 27, 0.6), rgba(9, 11, 22, 0.88));
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.intro-band-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #f4d79a;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.intro-band-card p {
    color: rgba(246, 237, 220, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(244, 215, 154, 0.08);
    border: 1px solid rgba(244, 215, 154, 0.16);
    color: rgba(244, 215, 154, 0.84);
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.16;
    letter-spacing: 0.04em;
    color: #f4d79a;
    margin-bottom: 14px;
    text-wrap: balance;
}

.section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(246, 237, 220, 0.76);
    font-size: 1.08rem;
    line-height: 1.9;
}

.content-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(244, 215, 154, 0.84);
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.content-chip::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(244, 215, 154, 0.9), transparent);
}

.spotlight-section {
    background:
        linear-gradient(160deg, rgba(14, 17, 32, 0.82), rgba(8, 10, 20, 0.92)),
        radial-gradient(circle at top right, rgba(188, 127, 255, 0.16), transparent 36%);
}

.image-block {
    position: relative;
}

.image-block::after {
    content: '';
    position: absolute;
    inset: auto 8% -12px;
    height: 36px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(244, 215, 154, 0.16), transparent 70%);
    filter: blur(16px);
    pointer-events: none;
}

.image-block img {
    aspect-ratio: 4 / 4.9;
    object-fit: cover;
}

.text-block p {
    font-size: clamp(1.08rem, 1.55vw, 1.24rem);
    line-height: 1.95;
}

.stats-grid {
    margin: 26px 0 44px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(244, 215, 154, 0.08), transparent 55%);
    pointer-events: none;
}

.stat-number {
    font-size: clamp(2.5rem, 3vw, 3.3rem);
}

.story-section {
    padding-top: 18px;
}

.story-heading {
    margin-bottom: 36px;
}

.story-block h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.7rem);
    margin-bottom: 18px;
}

.story-block p {
    font-size: clamp(1.05rem, 1.45vw, 1.18rem);
    line-height: 1.9;
}

.quote-block {
    padding: 58px 52px 44px;
    border-radius: 30px;
}

.quote-block p {
    font-size: clamp(1.28rem, 2vw, 1.7rem);
    line-height: 1.8;
}

.values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(244, 215, 154, 0.06), transparent 40%);
    pointer-events: none;
}

.value-card h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 1rem;
}

body.light-mode .intro-band-shell,
body.light-mode .intro-band-card,
body.light-mode .hero-description,
body.light-mode .spotlight-section,
body.light-mode .story-block,
body.light-mode .quote-block {
    box-shadow: none;
}

body.light-mode .intro-band-shell,
body.light-mode .intro-band-card {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.14);
}

body.light-mode .hero-kicker,
body.light-mode .section-kicker,
body.light-mode .content-chip {
    color: #7a5c00;
}

body.light-mode .section-heading h2 {
    color: #7a5c00;
}

body.light-mode .section-heading p,
body.light-mode .intro-band-card p {
    color: rgba(43, 33, 24, 0.8);
}

@media (max-width: 1024px) {
    .intro-band-shell {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero-content > h1 {
        font-size: 2rem;
        letter-spacing: 0.1em;
    }

    .hero-kicker,
    .section-kicker,
    .content-chip,
    .intro-band-label {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .hero-description {
        padding: 14px 16px;
    }

    .about-intro-band {
        margin-top: -44px;
        padding: 0 18px;
    }

    .intro-band-shell {
        padding: 14px;
        border-radius: 24px;
    }

    .intro-band-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 1.7rem;
    }

    .section-heading p,
    .text-block p,
    .story-block p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .quote-block {
        padding: 42px 22px 28px;
    }
}

/* ============================================================
   Values Carousel
   ============================================================ */

.values-carousel {
    margin-top: 30px;
}

.values-carousel-viewport {
    overflow: hidden;
    border-radius: 28px;
}

.values-track {
    display: flex;
    transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.value-card.value-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding: 34px 38px;
    border-radius: 28px;
}

.value-card.value-slide:hover {
    transform: none;
}

.value-card.value-slide::before {
    background:
        radial-gradient(circle at 16% 24%, rgba(244, 215, 154, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(111, 201, 255, 0.08), transparent 26%);
}

.value-symbol-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    border-radius: 26px;
    border: 1px solid rgba(244, 215, 154, 0.14);
    background:
        radial-gradient(circle at center, rgba(244, 215, 154, 0.12), rgba(244, 215, 154, 0.04) 45%, transparent 72%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.value-symbol-wrap::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 22px;
    border: 1px dashed rgba(244, 215, 154, 0.16);
    pointer-events: none;
}

.value-symbol {
    font-family: 'Cinzel', serif;
    font-size: clamp(4.8rem, 9vw, 7rem);
    line-height: 1;
    color: #f4d79a;
    text-shadow: 0 0 28px rgba(244, 215, 154, 0.18);
}

.value-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.value-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(244, 215, 154, 0.1);
    border: 1px solid rgba(244, 215, 154, 0.18);
    color: rgba(244, 215, 154, 0.88);
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.value-card.value-slide h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 14px;
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-wrap: balance;
}

.value-card.value-slide p {
    font-size: clamp(1.02rem, 1.4vw, 1.16rem);
    line-height: 1.85;
    max-width: 42ch;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.values-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
}

.values-carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 215, 154, 0.18);
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(10, 13, 26, 0.74), rgba(8, 11, 20, 0.9));
    color: #f1d39d;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.values-carousel-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 215, 154, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.values-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.values-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(244, 215, 154, 0.24);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.values-carousel-dot.active {
    width: 34px;
    background: #f1d39d;
    box-shadow: 0 0 16px rgba(244, 215, 154, 0.34);
}

.values-carousel-btn:focus-visible,
.values-carousel-dot:focus-visible {
    outline: 2px solid rgba(244, 215, 154, 0.9);
    outline-offset: 3px;
}

body.light-mode .value-symbol-wrap {
    border-color: rgba(122, 92, 0, 0.14);
    background:
        radial-gradient(circle at center, rgba(122, 92, 0, 0.1), rgba(122, 92, 0, 0.04) 45%, transparent 72%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.18));
}

body.light-mode .value-symbol-wrap::after {
    border-color: rgba(122, 92, 0, 0.18);
}

body.light-mode .value-symbol {
    color: #7a5c00;
    text-shadow: 0 0 18px rgba(122, 92, 0, 0.1);
}

body.light-mode .value-kicker {
    background: rgba(122, 92, 0, 0.08);
    border-color: rgba(122, 92, 0, 0.16);
    color: #7a5c00;
}

body.light-mode .values-carousel-btn {
    background: linear-gradient(160deg, rgba(255, 250, 242, 0.92), rgba(242, 234, 219, 0.98));
    border-color: rgba(122, 92, 0, 0.16);
    color: #7a5c00;
}

body.light-mode .values-carousel-dot {
    background: rgba(122, 92, 0, 0.22);
}

body.light-mode .values-carousel-dot.active {
    background: #7a5c00;
    box-shadow: 0 0 16px rgba(122, 92, 0, 0.18);
}

@media (max-width: 1024px) {
    .value-card.value-slide {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 22px;
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .value-card.value-slide {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px;
    }

    .value-symbol-wrap {
        min-height: 170px;
    }

    .value-copy {
        text-align: center;
    }

    .value-card.value-slide h3 {
        font-size: clamp(1.45rem, 8vw, 1.95rem);
    }

    .value-card.value-slide p {
        max-width: 100%;
        font-size: 0.98rem;
        line-height: 1.72;
    }
}
