/* Sobre Nós — glass com cores do index */
.sobre-page {
    position: relative;
    overflow: hidden;
    padding-top: 26px;
}

.sobre-page::before {
    content: "";
    position: absolute;
    inset: -120px 0 auto 0;
    height: 620px;
    background:
        radial-gradient(circle at 14% 18%, rgba(242, 191, 77, .18), transparent 34%),
        radial-gradient(circle at 86% 14%, rgba(217, 153, 30, .12), transparent 30%),
        radial-gradient(circle at 50% 78%, rgba(125, 242, 197, .07), transparent 38%);
    pointer-events: none;
    filter: blur(3px);
}

.sobre-page .container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.sobre-hero,
.sobre-intro,
.sobre-card,
.sobre-path,
.sobre-values article,
.sobre-final {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(242, 191, 77, .15);
    background:
        linear-gradient(180deg, rgba(18, 22, 34, .70), rgba(7, 10, 16, .86));
    box-shadow:
        0 28px 90px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
}

.sobre-hero::after,
.sobre-intro::after,
.sobre-card::after,
.sobre-path::after,
.sobre-values article::after,
.sobre-final::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 232, 178, .42), transparent);
    pointer-events: none;
}

.sobre-hero {
    min-height: 440px;
    display: grid;
    place-items: center;
    text-align: center;
    border-radius: 34px;
    padding: clamp(34px, 6vw, 72px);
    background:
        radial-gradient(circle at 50% 0%, rgba(242, 191, 77, .24), transparent 36%),
        radial-gradient(circle at 18% 78%, rgba(125, 242, 197, .08), transparent 30%),
        radial-gradient(circle at 86% 76%, rgba(217, 153, 30, .16), transparent 34%),
        linear-gradient(180deg, rgba(18, 22, 34, .76), rgba(6, 9, 15, .90));
}

.sobre-hero::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, .055);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 45%, black 0 48%, transparent 76%);
    pointer-events: none;
}

.sobre-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.sobre-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(242, 191, 77, .34);
    background: rgba(242, 191, 77, .12);
    color: #ffe0a3;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
    box-shadow: 0 0 26px rgba(242, 191, 77, .10);
}

.sobre-hero h1 {
    margin: 18px 0 14px;
    color: #fff2d1;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: .9;
    letter-spacing: -.045em;
    font-family: Georgia, serif;
    text-shadow:
        0 22px 55px rgba(0,0,0,.56),
        0 0 34px rgba(242,191,77,.10);
}

.sobre-hero p,
.sobre-intro p,
.sobre-path p,
.sobre-final p,
.sobre-card p,
.sobre-values p {
    color: #ded0bb;
    line-height: 1.72;
}

.sobre-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.08rem;
}

.sobre-leaf,
.sobre-stone {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: .78;
}

.sobre-leaf {
    width: 112px;
    height: 62px;
    border-radius: 90% 20% 90% 20%;
    background: linear-gradient(135deg, rgba(242, 191, 77, .28), rgba(125, 242, 197, .08));
    border: 1px solid rgba(255, 232, 178, .16);
    box-shadow: 0 0 46px rgba(242,191,77,.10);
    animation: leafFloat 8s ease-in-out infinite;
}

.sobre-leaf::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 50%;
    height: 1px;
    background: rgba(255, 239, 205, .22);
    transform: rotate(-18deg);
}

.leaf-one {
    left: 9%;
    top: 19%;
}

.leaf-two {
    right: 10%;
    top: 25%;
    transform: rotate(24deg);
    animation-delay: -2.2s;
}

.sobre-stone {
    width: 74px;
    height: 74px;
    border-radius: 34% 66% 42% 58%;
    background: linear-gradient(145deg, rgba(217, 153, 30, .24), rgba(57, 38, 19, .16));
    border: 1px solid rgba(255, 226, 176, .12);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 18px 40px rgba(0,0,0,.18);
    animation: stoneFloat 9s ease-in-out infinite;
}

.stone-one {
    left: 18%;
    bottom: 13%;
}

.stone-two {
    right: 20%;
    bottom: 16%;
    width: 56px;
    height: 56px;
    animation-delay: -3.4s;
}

.sobre-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    align-items: center;
    border-radius: 30px;
    padding: clamp(24px, 4vw, 38px);
    margin-top: 22px;
}

.sobre-intro::before,
.sobre-path::before,
.sobre-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(242, 191, 77, .09), transparent 28%),
        radial-gradient(circle at 92% 84%, rgba(125, 242, 197, .055), transparent 30%);
    pointer-events: none;
}

.sobre-intro > *,
.sobre-path > *,
.sobre-final > * {
    position: relative;
    z-index: 1;
}

.sobre-intro h2,
.sobre-path h2,
.sobre-final h2 {
    margin: 14px 0 10px;
    color: #fff0ce;
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    line-height: 1.06;
    font-family: Georgia, serif;
}

.sobre-intro p,
.sobre-path p,
.sobre-final p {
    margin: 0;
}

.sobre-scroll-card {
    min-height: 190px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(242, 191, 77, .16);
    background:
        radial-gradient(circle at 50% 16%, rgba(242,191,77,.18), transparent 40%),
        rgba(255,255,255,.045);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 0 34px rgba(242,191,77,.06);
}

.sobre-scroll-card strong {
    display: block;
    color: #f2bf4d;
    font-size: 2.2rem;
    font-family: Georgia, serif;
    text-shadow: 0 0 26px rgba(242,191,77,.14);
}

.sobre-scroll-card span {
    display: block;
    max-width: 250px;
    margin-top: 8px;
    color: #d9c9aa;
    line-height: 1.5;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
    margin-top: 22px;
}

.sobre-card {
    min-height: 230px;
    border-radius: 26px;
    padding: 24px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sobre-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -48% -30%;
    height: 170px;
    background: radial-gradient(circle, rgba(242,191,77,.12), transparent 68%);
    pointer-events: none;
}

.sobre-card:hover,
.sobre-values article:hover {
    transform: translateY(-6px);
    border-color: rgba(242,191,77,.32);
    box-shadow:
        0 34px 92px rgba(0,0,0,.38),
        0 0 36px rgba(242,191,77,.09),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.sobre-card span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(242, 191, 77, .11);
    border: 1px solid rgba(242, 191, 77, .22);
    color: #ffe2a8;
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sobre-card h3,
.sobre-values h3 {
    margin: 16px 0 9px;
    color: #fff1ce;
    line-height: 1.14;
}

.sobre-card p,
.sobre-values p {
    margin: 0;
}

.sobre-path {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: center;
    border-radius: 30px;
    padding: clamp(24px, 4vw, 40px);
    margin-top: 22px;
}

.sobre-steps {
    display: grid;
    gap: 12px;
}

.sobre-steps div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 5px 14px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(242,191,77,.13);
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.sobre-steps div:hover {
    transform: translateX(5px);
    border-color: rgba(242,191,77,.30);
    background: rgba(242,191,77,.055);
}

.sobre-steps b {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #1b1207;
    background: linear-gradient(135deg, #f2bf4d, #d9991e);
    box-shadow: 0 14px 28px rgba(242,191,77,.16);
}

.sobre-steps strong {
    color: #fff1ce;
}

.sobre-steps span {
    color: #d1c2a7;
    line-height: 1.45;
}

.sobre-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 16px;
    margin-top: 22px;
}

.sobre-values article {
    min-height: 170px;
    border-radius: 24px;
    padding: 20px;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sobre-values article:nth-child(1) { border-color: rgba(125,242,197,.16); }
.sobre-values article:nth-child(2) { border-color: rgba(242,191,77,.23); }
.sobre-values article:nth-child(3) { border-color: rgba(217,153,30,.22); }
.sobre-values article:nth-child(4) { border-color: rgba(255,232,178,.18); }

.sobre-values h3 {
    color: #f2bf4d;
}

.sobre-final {
    border-radius: 30px;
    padding: clamp(28px, 4vw, 46px);
    margin-top: 22px;
    text-align: center;
    background:
        radial-gradient(circle at 50% -10%, rgba(242,191,77,.20), transparent 42%),
        linear-gradient(180deg, rgba(18,22,34,.70), rgba(7,10,16,.88));
}

.sobre-final p {
    max-width: 720px;
    margin: 0 auto;
}

.sobre-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.sobre-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.060);
    color: #f4ead8;
    font-weight: 950;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.sobre-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(242,191,77,.38);
    background: rgba(242,191,77,.11);
    box-shadow: 0 18px 34px rgba(242,191,77,.10);
}

.sobre-btn.primary {
    background: linear-gradient(135deg, #f2bf4d, #d9991e);
    color: #171108;
    border-color: rgba(242,191,77,.50);
    box-shadow: 0 18px 34px rgba(242,191,77,.16);
}

@keyframes leafFloat {
    0%,100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-13px) rotate(5deg); }
}

@keyframes stoneFloat {
    0%,100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

@media (max-width: 940px) {
    .sobre-intro,
    .sobre-grid,
    .sobre-path,
    .sobre-values {
        grid-template-columns: 1fr;
    }

    .sobre-scroll-card {
        min-height: 150px;
    }
}

@media (max-width: 620px) {
    .sobre-hero,
    .sobre-intro,
    .sobre-card,
    .sobre-path,
    .sobre-values article,
    .sobre-final {
        border-radius: 22px;
    }

    .sobre-hero {
        min-height: auto;
        padding: 32px 20px;
    }

    .sobre-intro,
    .sobre-card,
    .sobre-path,
    .sobre-values article,
    .sobre-final {
        padding: 20px;
    }

    .sobre-steps div {
        grid-template-columns: 1fr;
    }

    .sobre-steps b {
        grid-row: auto;
    }

    .sobre-actions {
        display: grid;
    }

    .sobre-leaf,
    .sobre-stone {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sobre-leaf,
    .sobre-stone {
        animation: none !important;
    }

    .sobre-card:hover,
    .sobre-values article:hover,
    .sobre-btn:hover,
    .sobre-steps div:hover {
        transform: none;
    }
}


/* Ajuste final: estilo dinossauros + glass com cores do index */
.sobre-hero {
    isolation: isolate;
}

.sobre-hero::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,.020) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.016) 1px, transparent 1px),
        radial-gradient(circle at 50% 78%, rgba(242,191,77,.075), transparent 42%) !important;
    background-size: 64px 64px, 64px 64px, auto !important;
}

.sobre-footprint {
    position: absolute;
    z-index: 1;
    width: 82px;
    height: 118px;
    opacity: .20;
    pointer-events: none;
    filter: drop-shadow(0 0 18px rgba(242,191,77,.18));
    animation: footprintFloat 8.5s ease-in-out infinite;
}

.sobre-footprint::before,
.sobre-footprint::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,226,176,.28);
    background: rgba(242,191,77,.075);
    backdrop-filter: blur(5px);
}

.sobre-footprint::before {
    left: 18px;
    top: 44px;
    width: 44px;
    height: 58px;
    border-radius: 60% 46% 58% 46%;
    transform: rotate(-12deg);
}

.sobre-footprint::after {
    left: 12px;
    top: 18px;
    width: 58px;
    height: 34px;
    border-radius: 999px;
    box-shadow:
        -18px 28px 0 -10px rgba(242,191,77,.075),
        18px 28px 0 -10px rgba(242,191,77,.075),
        0 42px 0 -12px rgba(242,191,77,.075);
}

.footprint-one {
    left: 7%;
    bottom: 12%;
    transform: rotate(-20deg);
}

.footprint-two {
    right: 8%;
    bottom: 14%;
    transform: rotate(18deg);
    animation-delay: -3.4s;
}

.sobre-fossil-ring {
    position: absolute;
    z-index: 1;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    border: 1px solid rgba(255,226,176,.18);
    background:
        radial-gradient(circle, transparent 48%, rgba(242,191,77,.075) 49%, rgba(242,191,77,.075) 54%, transparent 55%),
        radial-gradient(circle at 42% 36%, rgba(255,232,178,.16), transparent 8%),
        radial-gradient(circle at 62% 54%, rgba(255,232,178,.12), transparent 7%);
    box-shadow:
        0 0 46px rgba(242,191,77,.10),
        inset 0 1px 0 rgba(255,255,255,.04);
    opacity: .46;
    pointer-events: none;
    animation: fossilFloat 10s ease-in-out infinite;
}

.fossil-one {
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
}

.sobre-dino-mark {
    width: 88px;
    height: 88px;
    margin: 0 auto 12px;
    border-radius: 24px;
    border: 1px solid rgba(242,191,77,.18);
    background:
        radial-gradient(circle at 36% 32%, rgba(242,191,77,.26), transparent 12%),
        radial-gradient(circle at 60% 46%, rgba(255,232,178,.18), transparent 10%),
        linear-gradient(145deg, rgba(242,191,77,.12), rgba(255,255,255,.035));
    box-shadow:
        0 18px 42px rgba(0,0,0,.22),
        0 0 34px rgba(242,191,77,.08),
        inset 0 1px 0 rgba(255,255,255,.05);
    position: relative;
}

.sobre-dino-mark::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 28px;
    width: 42px;
    height: 30px;
    border: 2px solid rgba(255,232,178,.45);
    border-left: 0;
    border-bottom: 0;
    border-radius: 50% 60% 0 0;
    transform: rotate(-8deg);
}

.sobre-dino-mark::after {
    content: "";
    position: absolute;
    left: 30px;
    top: 55px;
    width: 34px;
    height: 10px;
    border-radius: 999px;
    background: rgba(242,191,77,.18);
    box-shadow: 0 0 18px rgba(242,191,77,.18);
}

.sobre-scroll-card {
    min-height: 220px !important;
}

.sobre-card {
    background:
        radial-gradient(circle at 20% 0%, rgba(242,191,77,.09), transparent 32%),
        linear-gradient(180deg, rgba(18,22,34,.70), rgba(7,10,16,.86)) !important;
}

.sobre-card::after {
    opacity: .9;
}

.sobre-card h3::before,
.sobre-values h3::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f2bf4d, #d9991e);
    box-shadow: 0 0 16px rgba(242,191,77,.25);
    vertical-align: middle;
}

.sobre-path {
    background:
        radial-gradient(circle at 88% 18%, rgba(242,191,77,.10), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(125,242,197,.055), transparent 32%),
        linear-gradient(180deg, rgba(18,22,34,.70), rgba(7,10,16,.86)) !important;
}

.sobre-final {
    padding-bottom: clamp(34px, 5vw, 58px) !important;
}

.sobre-final::before {
    background:
        radial-gradient(circle at 50% -10%, rgba(242,191,77,.20), transparent 42%),
        radial-gradient(circle at 20% 100%, rgba(125,242,197,.06), transparent 34%) !important;
}

.sobre-final::after {
    opacity: .85;
}

.sobre-actions {
    display: none !important;
}

@keyframes footprintFloat {
    0%, 100% { opacity: .16; transform: translateY(0) rotate(var(--r, -16deg)); }
    50% { opacity: .28; transform: translateY(-8px) rotate(var(--r, -16deg)); }
}

@keyframes fossilFloat {
    0%, 100% { opacity: .36; transform: translateX(-50%) translateY(0) rotate(-8deg); }
    50% { opacity: .58; transform: translateX(-50%) translateY(-10px) rotate(7deg); }
}

@media (max-width: 620px) {
    .sobre-footprint,
    .sobre-fossil-ring {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sobre-footprint,
    .sobre-fossil-ring {
        animation: none !important;
    }
}


/* Melhorias leves: logo + efeitos básicos */
.sobre-kicker-logo {
    gap: 9px;
    padding-left: 7px !important;
}

.sobre-kicker-logo img {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255, 232, 178, .24);
    background: rgba(255,255,255,.06);
    box-shadow:
        0 0 18px rgba(242,191,77,.16),
        inset 0 1px 0 rgba(255,255,255,.08);
    animation: sobreLogoPulse 3.8s ease-in-out infinite;
}

.sobre-hero-inner::after {
    content: "";
    display: block;
    width: min(360px, 70%);
    height: 1px;
    margin: 26px auto 0;
    background: linear-gradient(90deg, transparent, rgba(242,191,77,.52), transparent);
    box-shadow: 0 0 22px rgba(242,191,77,.16);
}

.sobre-card,
.sobre-values article,
.sobre-steps div,
.sobre-scroll-card {
    transform-style: preserve-3d;
}

.sobre-card::before,
.sobre-values article::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 0%, rgba(242,191,77,.11), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.055), transparent 38%);
    opacity: .62;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.sobre-card:hover::before,
.sobre-values article:hover::before {
    opacity: .95;
    transform: translateY(-2px);
}

.sobre-card::after,
.sobre-values article::after,
.sobre-path::after,
.sobre-intro::after {
    box-shadow: 0 0 18px rgba(242,191,77,.10);
}

.sobre-card h3,
.sobre-values h3,
.sobre-steps strong {
    position: relative;
    z-index: 1;
}

.sobre-card p,
.sobre-values p,
.sobre-steps span {
    position: relative;
    z-index: 1;
}

.sobre-scroll-card {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sobre-scroll-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242,191,77,.30);
    box-shadow:
        0 32px 80px rgba(0,0,0,.34),
        0 0 34px rgba(242,191,77,.10),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.sobre-scroll-card::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125,242,197,.22), transparent);
    pointer-events: none;
}

.sobre-steps div {
    position: relative;
    overflow: hidden;
}

.sobre-steps div::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.08) 48%, transparent 62% 100%);
    transform: translateX(-120%);
    transition: transform .55s ease;
    pointer-events: none;
}

.sobre-steps div:hover::after {
    transform: translateX(120%);
}

.sobre-final h2::after {
    content: "";
    display: block;
    width: 88px;
    height: 3px;
    border-radius: 999px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, #f2bf4d, #d9991e);
    box-shadow: 0 0 22px rgba(242,191,77,.18);
}

.sobre-leaf {
    box-shadow:
        0 0 46px rgba(242,191,77,.10),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.sobre-stone {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 18px 40px rgba(0,0,0,.18),
        0 0 22px rgba(217,153,30,.08);
}

@keyframes sobreLogoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 16px rgba(242,191,77,.12), inset 0 1px 0 rgba(255,255,255,.08);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 0 28px rgba(242,191,77,.25), inset 0 1px 0 rgba(255,255,255,.10);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sobre-kicker-logo img {
        animation: none !important;
    }

    .sobre-steps div::after {
        display: none;
    }
}


/* Logo grande no card Nossa essência */
.sobre-logo-card {
    min-height: 240px !important;
    display: grid !important;
    place-items: center !important;
    padding: 28px !important;
}

.sobre-logo-card img {
    width: min(210px, 72%);
    height: auto;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 24px 34px rgba(0,0,0,.42))
        drop-shadow(0 0 28px rgba(242,191,77,.18));
    animation: sobreLogoCardFloat 4.8s ease-in-out infinite;
}

.sobre-logo-card::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(242,191,77,.18), transparent 64%),
        radial-gradient(circle, rgba(125,242,197,.06), transparent 72%);
    pointer-events: none;
}

.sobre-logo-card > * {
    position: relative;
    z-index: 1;
}

.sobre-dino-mark {
    display: none !important;
}

@keyframes sobreLogoCardFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.035);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sobre-logo-card img {
        animation: none !important;
    }
}


/* Polimento final + lançamento */
.sobre-hero p strong,
.sobre-intro p strong,
.sobre-timeline strong,
.sobre-final p strong {
    color: #ffe1a2;
    font-weight: 950;
}

.sobre-launch-badge {
    width: min(420px, 100%);
    margin: 26px auto 0;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid rgba(242,191,77,.24);
    background:
        linear-gradient(135deg, rgba(242,191,77,.13), rgba(255,255,255,.035));
    box-shadow:
        0 18px 46px rgba(0,0,0,.22),
        0 0 28px rgba(242,191,77,.08),
        inset 0 1px 0 rgba(255,255,255,.055);
    backdrop-filter: blur(14px);
}

.sobre-launch-badge span {
    display: block;
    color: rgba(222,208,187,.74);
    font-size: .76rem;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.sobre-launch-badge strong {
    display: block;
    margin-top: 5px;
    color: #fff2d1;
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.sobre-timeline {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 150px minmax(0,1fr) 260px;
    gap: 20px;
    align-items: center;
    margin-top: 22px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: 30px;
    border: 1px solid rgba(242,191,77,.16);
    background:
        radial-gradient(circle at 14% 28%, rgba(242,191,77,.14), transparent 32%),
        radial-gradient(circle at 86% 76%, rgba(125,242,197,.055), transparent 32%),
        linear-gradient(180deg, rgba(18,22,34,.70), rgba(7,10,16,.86));
    box-shadow:
        0 28px 90px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(18px);
}

.sobre-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,232,178,.42), transparent);
}

.timeline-mark {
    position: relative;
    min-height: 128px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 24px;
    border: 1px solid rgba(242,191,77,.22);
    background:
        radial-gradient(circle, rgba(242,191,77,.20), transparent 62%),
        rgba(255,255,255,.045);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 0 34px rgba(242,191,77,.08);
}

.timeline-mark::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 1px dashed rgba(255,232,178,.18);
    pointer-events: none;
}

.timeline-mark span {
    color: rgba(222,208,187,.78);
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.timeline-mark strong {
    display: block;
    margin-top: 4px;
    color: #f2bf4d;
    font-family: Georgia, serif;
    font-size: 2.55rem;
    line-height: .9;
    text-shadow: 0 0 24px rgba(242,191,77,.18);
}

.timeline-copy h2 {
    margin: 0 0 9px;
    color: #fff0ce;
    font-family: Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.timeline-copy p {
    margin: 0;
    color: #ded0bb;
    line-height: 1.66;
}

.timeline-points {
    display: grid;
    gap: 10px;
}

.timeline-points span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
    color: #f1dec0;
    font-size: .88rem;
    font-weight: 850;
}

.timeline-points span::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-right: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f2bf4d, #d9991e);
    box-shadow: 0 0 16px rgba(242,191,77,.25);
}

.sobre-card,
.sobre-values article,
.sobre-scroll-card,
.sobre-timeline {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.sobre-timeline:hover {
    transform: translateY(-4px);
    border-color: rgba(242,191,77,.28);
    box-shadow:
        0 34px 92px rgba(0,0,0,.38),
        0 0 36px rgba(242,191,77,.09),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.sobre-hero {
    box-shadow:
        0 34px 110px rgba(0,0,0,.38),
        0 0 70px rgba(242,191,77,.055),
        inset 0 1px 0 rgba(255,255,255,.06) !important;
}

.sobre-card:nth-child(1)::before {
    background: radial-gradient(circle, rgba(125,242,197,.10), transparent 68%);
}

.sobre-card:nth-child(2)::before {
    background: radial-gradient(circle, rgba(242,191,77,.14), transparent 68%);
}

.sobre-card:nth-child(3)::before {
    background: radial-gradient(circle, rgba(217,153,30,.14), transparent 68%);
}

.sobre-card p,
.sobre-values p,
.sobre-steps span,
.timeline-copy p {
    color: #e1d2b8;
}

.sobre-final {
    min-height: 230px;
    display: grid;
    place-items: center;
    align-content: center;
}

@media (max-width: 940px) {
    .sobre-timeline {
        grid-template-columns: 1fr;
    }

    .timeline-mark {
        min-height: 104px;
    }

    .timeline-points {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

@media (max-width: 620px) {
    .sobre-timeline {
        border-radius: 22px;
        padding: 20px;
    }

    .timeline-points {
        grid-template-columns: 1fr;
    }

    .sobre-launch-badge {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sobre-timeline:hover {
        transform: none;
    }
}



/* Removido o box de lançamento do primeiro bloco */
.sobre-hero .sobre-launch-badge {
    display: none !important;
}


/* Removido bloco de pontos da timeline */
.timeline-points {
    display: none !important;
}
.sobre-timeline {
    grid-template-columns: 150px minmax(0,1fr) !important;
}
@media (max-width: 940px) {
    .sobre-timeline {
        grid-template-columns: 1fr !important;
    }
}
