:root {
    --bg: #0b0b0d;
    --surface: #151519;
    --text: #f7f7f8;
    --muted: #b8b8c0;
    --accent: #ff3f7f;
    --line: rgba(255,255,255,.12);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(11, 11, 13, .72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .18em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-size: 14px;
    color: var(--muted);
    transition: color .2s ease;
}

.nav a:hover {
    color: var(--text);
}

.header-cta {
    padding: 13px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: .2s ease;
}

.header-cta:hover {
    background: var(--text);
    color: var(--bg);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 60px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(52px, 7vw, 98px);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 500;
}

.hero h1 strong {
    display: block;
    color: var(--accent);
    font-weight: 800;
}

.hero-content > p {
    max-width: 590px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-secondary {
    border: 1px solid var(--line);
    color: var(--text);
}

.hero-image {
    position: relative;
    min-height: 680px;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    top: 12%;
    left: -12%;
    border-radius: 50%;
    background: rgba(255, 63, 127, .22);
    filter: blur(85px);
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 36px;
}

@media (max-width: 900px) {
    .nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        min-height: auto;
    }

    .hero-image img {
        height: min(115vw, 680px);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 68px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(44px, 15vw, 66px);
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-image img {
        border-radius: 24px;
    }
}

/* Refinamento do hero */
.hero {
    min-height: 100svh;
    padding: 118px 0 36px;
}

.hero-grid {
    gap: 56px;
}

.hero h1 {
    font-size: clamp(48px, 5.6vw, 82px);
    line-height: .92;
    letter-spacing: -.045em;
}

.hero-content > p {
    margin-top: 24px;
    max-width: 560px;
}

.hero-actions {
    margin-top: 30px;
}

.hero-image,
.hero-image img {
    height: 610px;
    min-height: 0;
}

.hero-image img {
    object-position: center 18%;
}

@media (max-width: 900px) {
    .hero-image,
    .hero-image img {
        height: auto;
    }

    .hero-image img {
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }
}

.hero h1 strong {
    font-size: .88em;
    line-height: .96;
}

@media (max-width: 560px) {
    .hero h1 strong {
        font-size: .92em;
    }
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    max-width: 640px;
}

.consultoria {
    padding: 120px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 63, 127, .08), transparent 34%),
        var(--bg);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 64px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 500;
}

.section-heading h2 strong {
    display: block;
    color: var(--accent);
    font-weight: 800;
}

.section-heading > p {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.consultoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.consultoria-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,.025);
    overflow: hidden;
}

.consultoria-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% auto;
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 63, 127, .09);
    filter: blur(45px);
}

.card-number {
    display: block;
    margin-bottom: 70px;
    color: rgba(255,255,255,.22);
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.consultoria-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    max-width: 260px;
    font-size: 25px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.consultoria-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .consultoria {
        padding: 90px 0;
    }

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

    .consultoria-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 40px;
    }
}

.consultoria-card {
    min-height: 320px;
    padding: 30px 34px;
}

.card-number {
    margin-bottom: 48px;
}

.consultoria-card h3 {
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    .consultoria-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 28px;
    }
}

.planos {
    padding: 120px 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0)),
        var(--bg);
}

.planos-heading {
    margin-bottom: 64px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.plano-card {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,.025);
}

.plano-destaque {
    border-color: rgba(255, 63, 127, .55);
    background:
        linear-gradient(180deg, rgba(255,63,127,.10), rgba(255,255,255,.02));
    transform: translateY(-12px);
}

.plano-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.plano-tag {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.plano-card h3 {
    margin: 0 0 28px;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -.03em;
}

.plano-preco {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.plano-preco span {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.plano-preco strong {
    font-size: 54px;
    line-height: .9;
    letter-spacing: -.05em;
}

.plano-preco small {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 13px;
}

.plano-periodo {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 14px;
}

.plano-card ul {
    display: grid;
    gap: 14px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.plano-card li {
    position: relative;
    padding-left: 22px;
    color: #d9d9df;
    font-size: 14px;
    line-height: 1.55;
}

.plano-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 800;
}

.plano-card .btn {
    width: 100%;
}

@media (max-width: 900px) {
    .planos {
        padding: 90px 0;
    }

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

    .plano-destaque {
        transform: none;
    }
}

.plano-card {
    padding-top: 38px;
    padding-bottom: 32px;
}

.plano-card:nth-child(3) .plano-preco strong {
    font-size: 48px;
}

.programacao {
    padding: 120px 0;
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 63, 127, .07), transparent 30%),
        var(--bg);
}

.programacao-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.programacao-card {
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.045));
    overflow: hidden;
}

.programacao-content {
    max-width: 460px;
}

.programacao-content > span {
    display: block;
    margin-bottom: 120px;
    color: rgba(255,255,255,.20);
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -.05em;
}

.programacao-card h3 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.035em;
}

.programacao-card p {
    margin: 0;
    max-width: 420px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.programacao-card:first-child {
    background:
        radial-gradient(circle at 15% 20%, rgba(255,63,127,.14), transparent 34%),
        rgba(255,255,255,.025);
}

.programacao-card:last-child {
    background:
        radial-gradient(circle at 85% 20%, rgba(255,63,127,.10), transparent 34%),
        rgba(255,255,255,.025);
}

@media (max-width: 900px) {
    .programacao {
        padding: 90px 0;
    }

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

    .programacao-card {
        min-height: 320px;
    }

    .programacao-content > span {
        margin-bottom: 70px;
    }
}

.programacao-card {
    min-height: 360px;
}

.programacao-content > span {
    margin-bottom: 82px;
}

@media (max-width: 900px) {
    .programacao-card {
        min-height: 300px;
    }

    .programacao-content > span {
        margin-bottom: 54px;
    }
}

.sobre {
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255,63,127,.07), transparent 32%),
        var(--bg);
}

.sobre-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.sobre-image::before {
    content: "";
    position: absolute;
    inset: 10% auto auto -10%;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,63,127,.14);
    filter: blur(70px);
}

.sobre-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
}

.sobre-content h2 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 500;
}

.sobre-content h2 strong {
    display: block;
    margin-top: 6px;
    color: var(--accent);
    font-weight: 800;
}

.sobre-content > p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.sobre-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.sobre-meta span {
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #e7e7eb;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .sobre {
        padding: 90px 0;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sobre-image {
        max-width: 620px;
        margin-inline: auto;
    }

    .sobre-content {
        text-align: center;
    }

    .sobre-content > p {
        margin-inline: auto;
    }

    .sobre-meta {
        justify-content: center;
    }
}

.sobre-grid {
    grid-template-columns: .82fr 1.18fr;
}

.sobre-image img {
    max-height: 585px;
}

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

    .sobre-image img {
        max-height: none;
    }
}

.resultados {
    padding: 120px 0;
    background:
        radial-gradient(circle at 70% 15%, rgba(255,63,127,.08), transparent 28%),
        var(--bg);
}

.resultados-heading {
    margin-bottom: 64px;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.resultado-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,.025);
}

.resultado-mark {
    color: var(--accent);
    font-size: 72px;
    line-height: .8;
    font-weight: 800;
}

.resultado-card p {
    margin: 38px 0 30px;
    color: #e8e8ec;
    font-size: 17px;
    line-height: 1.7;
}

.resultado-card strong {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

@media (max-width: 900px) {
    .resultados {
        padding: 90px 0;
    }

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

    .resultado-card {
        min-height: 240px;
    }
}

.faq {
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,63,127,.06), transparent 30%),
        var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.faq-intro h2 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 500;
}

.faq-intro h2 strong {
    display: block;
    color: var(--accent);
    font-weight: 800;
}

.faq-intro p {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    padding: 28px 48px 28px 0;
    cursor: pointer;
    list-style: none;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 28px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: -4px 0 28px;
    padding-right: 50px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .faq {
        padding: 90px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-intro {
        text-align: center;
    }

    .faq-intro p {
        margin-inline: auto;
    }
}

.faq-intro h2 {
    font-size: clamp(40px, 4.5vw, 64px);
}

.contato {
    padding: 120px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,63,127,.10), transparent 32%),
        var(--bg);
}

.contato-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.contato-copy h2 {
    margin: 0;
    max-width: 640px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 500;
}

.contato-copy h2 strong {
    display: block;
    color: var(--accent);
    font-weight: 800;
}

.contato-copy p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.contato-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255,255,255,.025);
}

.form-group {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.form-group label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #d9d9df;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}

.form-group input {
    min-height: 52px;
    padding: 0 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    padding: 15px 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255,63,127,.70);
    background: rgba(255,255,255,.05);
}

.contato-form .btn {
    width: 100%;
    margin-top: 6px;
    border: 0;
    cursor: pointer;
}

@media (max-width: 900px) {
    .contato {
        padding: 90px 0;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .contato-copy p {
        margin-inline: auto;
    }
}


.contato-copy h2 {
    font-size: clamp(40px, 4.4vw, 64px);
    max-width: 560px;
}

.contato-grid {
    grid-template-columns: .95fr 1.05fr;
}

.site-footer {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    background: #09090b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr auto auto;
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: .18em;
}

.site-footer p,
.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

.site-footer p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: #e7e7eb;
    font-size: 13px;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    display: grid;
    gap: 4px;
    text-align: right;
}

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

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

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

.footer-copy a {
    margin-top: 4px;
    color: #e7e7eb;
    font-size: 12px;
    transition: color .2s ease;
}

.footer-copy a:hover {
    color: var(--accent);
}

@media (max-width: 560px) {
    .hero-grid {
        gap: 30px;
    }

    .hero-actions {
        margin-top: 26px;
        gap: 12px;
    }

    .hero-image {
        margin-top: 6px;
    }
}

@media (max-width: 560px) {
    .consultoria {
        padding: 74px 0;
    }

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

    .section-heading h2 {
        font-size: clamp(38px, 12vw, 52px);
        line-height: .96;
    }

    .section-heading > p {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .consultoria-card {
        padding: 26px;
        border-radius: 22px;
    }

    .card-number {
        margin-bottom: 24px;
        font-size: 46px;
    }
}

@media (max-width: 560px) {
    .planos {
        padding-top: 88px;
    }

    .planos-heading {
        margin-bottom: 42px;
    }

    .plano-card {
        padding: 28px 24px;
        border-radius: 22px;
    }
}

@media (max-width: 560px) {
    .programacao {
        padding: 74px 0;
    }

    .programacao-card {
        min-height: 260px;
        padding: 26px;
        border-radius: 22px;
    }

    .programacao-content > span {
        margin-bottom: 38px;
        font-size: 48px;
    }

    .programacao-card h3 {
        font-size: 28px;
    }

    .programacao-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 560px) {
    .sobre {
        padding: 74px 0;
    }

    .sobre-content > p {
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.65;
    }

    .sobre-meta {
        margin-top: 28px;
    }
}

@media (max-width: 560px) {
    .resultados {
        padding: 74px 0;
    }

    .resultados-heading {
        margin-bottom: 38px;
    }

    .resultado-card {
        min-height: 220px;
        padding: 26px;
        border-radius: 22px;
    }

    .resultado-mark {
        font-size: 58px;
    }

    .resultado-card p {
        margin: 24px 0 22px;
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 560px) {
    .contato {
        padding: 74px 0;
    }

    .contato-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .contato-copy h2 {
        max-width: 100%;
        font-size: clamp(38px, 12vw, 52px);
    }

    .contato-copy p {
        max-width: 100%;
        margin-inline: auto;
        font-size: 16px;
        line-height: 1.6;
    }

    .contato-form {
        width: 100%;
        padding: 24px 20px;
        border-radius: 22px;
    }

    .contato-form .btn {
        white-space: normal;
        line-height: 1.3;
        padding: 16px 20px;
    }
}

@media (max-width: 560px) {
    .faq {
        padding-bottom: 56px;
    }

    .contato {
        padding-top: 56px;
    }

    .site-footer {
        padding: 38px 0;
    }
}

section[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 560px) {
    section[id] {
        scroll-margin-top: 78px;
    }
}

@media (max-width: 560px) {

    /* Consultoria mobile */
    .consultoria .section-heading {
        text-align: left;
    }

    .consultoria .section-heading h2 {
        font-size: 44px;
        line-height: .94;
        max-width: 430px;
    }

    .consultoria .section-heading h2 strong {
        display: inline;
    }

    .consultoria .section-heading > p {
        max-width: 430px;
    }

    .consultoria-card {
        min-height: 250px;
    }

    .consultoria-card h3 {
        font-size: 24px;
        max-width: 100%;
    }


    /* Sobre mobile */
    .sobre {
        scroll-margin-top: 78px;
    }

    .sobre-grid {
        gap: 34px;
    }

    .sobre-image {
        width: 100%;
        max-width: 100%;
    }

    .sobre-image img {
        width: 100%;
        aspect-ratio: 16 / 10;
        height: auto;
        object-fit: cover;
        object-position: center 45%;
        border-radius: 22px;
    }

    .sobre-content h2 {
        font-size: 42px;
        line-height: .96;
    }

    .sobre-content h2 strong {
        margin-top: 10px;
    }

    .sobre-content > p {
        max-width: 440px;
    }
}

/* ===== PREMIUM FINISH ===== */

body {
    background:
        radial-gradient(circle at 50% -10%, rgba(255,63,127,.035), transparent 35%),
        #0b0b0d;
}

::selection {
    background: var(--accent);
    color: #fff;
}

.site-header {
    background: rgba(9,9,11,.78);
    box-shadow: 0 1px 0 rgba(255,255,255,.035);
}

.brand,
.footer-brand {
    text-shadow: 0 0 28px rgba(255,255,255,.08);
}

.eyebrow {
    letter-spacing: .2em;
}

.btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.18);
}

.btn-primary {
    box-shadow:
        0 12px 32px rgba(255,63,127,.20),
        inset 0 1px 0 rgba(255,255,255,.20);
}

.btn-primary:hover {
    box-shadow:
        0 16px 42px rgba(255,63,127,.30),
        inset 0 1px 0 rgba(255,255,255,.24);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,.30);
    background: rgba(255,255,255,.055);
}

.consultoria-card,
.plano-card,
.programacao-card,
.resultado-card,
.contato-form {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 24px 70px rgba(0,0,0,.12);
    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.consultoria-card:hover,
.programacao-card:hover,
.resultado-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,63,127,.28);
    background-color: rgba(255,255,255,.038);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 30px 80px rgba(0,0,0,.20);
}

.plano-card:hover {
    transform: translateY(-5px);
}

.plano-destaque:hover {
    transform: translateY(-17px);
}

.sobre-image img,
.hero-image img {
    box-shadow: 0 35px 90px rgba(0,0,0,.32);
}

.section-heading h2,
.sobre-content h2,
.faq-intro h2,
.contato-copy h2 {
    text-wrap: balance;
}

.hero-content > p,
.section-heading > p,
.sobre-content > p,
.faq-intro p,
.contato-copy p {
    text-wrap: pretty;
}

.faq-item summary {
    transition: color .2s ease;
}

.faq-item summary:hover {
    color: var(--accent);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(255,255,255,.22);
}

.footer-copy a,
.footer-links a {
    text-underline-offset: 4px;
}

@media (max-width: 900px) {
    .consultoria-card:hover,
    .programacao-card:hover,
    .resultado-card:hover,
    .plano-card:hover,
    .plano-destaque:hover {
        transform: none;
    }
}

.form-message {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.form-message.success {
    border: 1px solid rgba(76, 217, 100, .28);
    background: rgba(76, 217, 100, .08);
    color: #b8f7c2;
}

.form-message.error {
    border: 1px solid rgba(255, 82, 82, .28);
    background: rgba(255, 82, 82, .08);
    color: #ffb8b8;
}

.contato-form button:disabled {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.consultoria-gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr 1fr;
    gap: 18px;
    margin-top: 34px;
}

.consultoria-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: #151515;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.consultoria-gallery figure:nth-child(1) {
    aspect-ratio: 4 / 5;
}

.consultoria-gallery figure:nth-child(2) {
    aspect-ratio: 4 / 4.35;
    margin-top: 42px;
}

.consultoria-gallery figure:nth-child(3) {
    aspect-ratio: 4 / 5;
    margin-top: 12px;
}

.consultoria-gallery img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.consultoria-gallery figure:hover img {
    transform: scale(1.035);
}

@media (max-width: 800px) {
    .consultoria-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 26px;
    }

    .consultoria-gallery figure:nth-child(1) {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
    }

    .consultoria-gallery figure:nth-child(2),
    .consultoria-gallery figure:nth-child(3) {
        aspect-ratio: 4 / 5;
        margin-top: 0;
    }
}

@media (max-width: 520px) {
    .consultoria-gallery {
        grid-template-columns: 1fr;
    }

    .consultoria-gallery figure,
    .consultoria-gallery figure:nth-child(1),
    .consultoria-gallery figure:nth-child(2),
    .consultoria-gallery figure:nth-child(3) {
        aspect-ratio: 4 / 5;
        margin-top: 0;
        border-radius: 22px;
    }
}

/* Refinamento final da galeria */
.consultoria-gallery {
    align-items: end;
}

.consultoria-gallery figure:nth-child(1),
.consultoria-gallery figure:nth-child(2),
.consultoria-gallery figure:nth-child(3) {
    aspect-ratio: 4 / 5;
    margin-top: 0;
}

@media (min-width: 801px) {
    .consultoria-gallery figure:nth-child(2) {
        transform: translateY(18px);
    }
}

/* Refinamento final da seção Sobre */
.sobre-grid {
    align-items: center;
}

.sobre-image {
    max-width: 520px;
}

.sobre-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 800px) {
    .sobre-image {
        max-width: 100%;
    }

    .sobre-image img {
        aspect-ratio: 4 / 4.6;
    }
}
