:root {
    --bg: #f4f1ea;
    --bg-soft: #fbf9f4;
    --surface: rgba(255, 255, 255, 0.84);
    --surface-strong: #ffffff;
    --text: #111827;
    --muted: #566174;
    --line: rgba(15, 23, 42, 0.12);
    --line-strong: rgba(15, 23, 42, 0.2);
    --navy: #0f172a;
    --navy-soft: #16213c;
    --accent: #b68a52;
    --accent-soft: rgba(182, 138, 82, 0.14);
    --success: #0d8a5f;
    --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 32px rgba(15, 23, 42, 0.08);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(circle at top left, rgba(182, 138, 82, 0.12), transparent 24%),
        linear-gradient(180deg, #f8f5ef 0%, #f2efe7 100%);
    line-height: 1.7;
}

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

a {
    color: inherit;
    text-decoration: none;
    text-decoration-skip-ink: auto;
}

button,
input,
textarea {
    font: inherit;
}

[id] {
    scroll-margin-top: 6rem;
}

.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;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: var(--shadow-soft);
    transform: translateY(-180%);
    transition: transform var(--transition);
}

.skip-link:focus-visible {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #e58a3a;
    outline-offset: 3px;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

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

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.85));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(182, 138, 82, 0.16), transparent 26%),
        linear-gradient(180deg, #10172a 0%, #17233d 100%);
    color: #eef2ff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(248, 245, 239, 0.84);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    z-index: -1;
}

.site-header.is-scrolled::before {
    background: rgba(248, 245, 239, 0.94);
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
}

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

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.topbar-content p {
    margin: 0;
}

.topbar-content a {
    font-weight: 700;
    color: var(--navy);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    flex: 1 1 auto;
    min-width: 0;
}

.brand-mark {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-soft);
}

.brand-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.16));
}

.brand-mark-logo {
    width: 230px;
    height: 112px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark-logo img {
    width: auto;
    height: 100%;
    max-width: 100%;
    filter: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.brand-text strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--navy);
}

.brand-text small {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    position: relative;
}

.site-nav ul a {
    padding: 0.7rem 0.95rem;
    color: var(--muted);
    font-weight: 700;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition);
}

.site-nav ul a:hover,
.site-nav ul a.active {
    color: var(--navy);
    background: rgba(15, 23, 42, 0.06);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.06);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy);
    transition: transform var(--transition), opacity var(--transition);
}

.section-heading {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading.center {
    text-align: center;
    justify-items: center;
}

.section-heading h2,
.split-layout h2,
.cta-banner h2,
.about-card h2,
.contact-panel h2,
.form-card h2,
.pricing-card h2,
.highlight-panel h3,
.hero-panel h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-copy p,
.page-hero-content p,
.hero-copy p,
.feature-list p,
.pricing-intro,
.contact-panel p,
.form-card p {
    color: var(--muted);
    margin: 0;
}

.section-intro {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-section {
    padding: 5rem 0 4rem;
}

.hero-section-home {
    padding-top: 5.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.page-hero-content,
.about-card,
.highlight-panel,
.service-card,
.info-card,
.pricing-card,
.contact-panel,
.form-card,
.cta-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-copy {
    padding: 3.5rem;
    background:
        radial-gradient(circle at top left, rgba(182, 138, 82, 0.18), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #f6f2e8 100%);
    box-shadow: var(--shadow);
}

.hero-copy::after,
.hero-panel::after,
.page-hero-content::after,
.pricing-card::after,
.form-card::after,
.contact-panel::after {
    content: '';
    position: absolute;
    inset: auto -15% -30% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 138, 82, 0.16), transparent 70%);
    pointer-events: none;
}

.hero-copy h1,
.page-hero-content h1 {
    margin: 1rem 0;
    max-width: 12ch;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 62ch;
    font-size: 1.08rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    cursor: pointer;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line-strong);
    color: var(--navy);
}

.button-dark {
    background: rgba(15, 23, 42, 0.08);
    border-color: transparent;
    color: var(--navy);
}

.button-small {
    min-height: 46px;
    padding-inline: 1.2rem;
}

.button-full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.page-home .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats article,
.feature-list article,
.process-grid article,
.contact-meta article {
    padding: 1.2rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-sm);
}

.hero-stats strong,
.process-grid strong,
.feature-list h3,
.contact-meta h3 {
    display: block;
    margin-bottom: 0.4rem;
}

.hero-panel {
    padding: 2.25rem;
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.98) 0%, rgba(22, 33, 60, 0.96) 100%);
    color: #eef2ff;
    box-shadow: var(--shadow);
}

.panel-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.66);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-panel p {
    color: rgba(238, 242, 255, 0.78);
}

.hero-panel-stack {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.hero-panel-card {
    padding: 1rem 1.05rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel-card strong {
    display: block;
    margin-bottom: 0.35rem;
}

.hero-panel-card p {
    margin: 0;
    font-size: 0.95rem;
}

.hero-panel-actions {
    margin-top: 1.5rem;
}

.panel-list,
.footer-links,
.service-list,
.pricing-features {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.panel-list li,
.footer-links li,
.service-list li,
.pricing-features li {
    position: relative;
    padding-left: 1.4rem;
}

.panel-list li + li,
.footer-links li + li,
.service-list li + li,
.pricing-features li + li {
    margin-top: 0.8rem;
}

.panel-list li::before,
.footer-links li::before,
.service-list li::before,
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
}

.page-hero {
    padding: 4rem 0 2rem;
}

.page-hero-content {
    padding: 3rem 3.2rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 232, 0.92));
    box-shadow: var(--shadow);
}

.page-hero-content h1 {
    max-width: 13ch;
}

.section-grid,
.split-layout,
.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

.trust-strip,
.service-spotlight-grid,
.scenario-grid,
.outcome-grid {
    display: grid;
    gap: 1.2rem;
}

.trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.service-card,
.pricing-card,
.about-card,
.highlight-panel,
.contact-panel,
.form-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.trust-item,
.spotlight-card,
.scenario-card,
.outcome-card {
    position: relative;
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.trust-item::after,
.spotlight-card::after,
.scenario-card::after,
.outcome-card::after {
    content: '';
    position: absolute;
    inset: auto auto -36px -28px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 138, 82, 0.16), transparent 70%);
    pointer-events: none;
}

.trust-item strong,
.scenario-card h3,
.outcome-card h3 {
    display: block;
    margin-bottom: 0.35rem;
}

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

.spotlight-card {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 232, 0.92));
}

.spotlight-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.45rem;
}

.spotlight-card-featured {
    transform: translateY(-10px);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98) 0%, rgba(22, 33, 60, 0.96) 100%);
    color: #eef2ff;
}

.spotlight-card-featured p,
.spotlight-card-featured .text-link,
.spotlight-card-featured .service-list li {
    color: rgba(238, 242, 255, 0.84);
}

.spotlight-card-featured .card-number {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.spotlight-card-featured .service-list li::before {
    background: rgba(182, 138, 82, 0.95);
}

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

.scenario-card {
    padding: 1.8rem;
}

.scenario-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--navy);
    font-weight: 800;
}

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

.outcome-card {
    min-height: 100%;
}

.feature-list-strong article {
    padding: 1.35rem 1.4rem;
}

.card-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--navy);
    font-weight: 800;
}

.info-card h3,
.service-card h3,
.pricing-card h2,
.contact-list strong {
    margin: 0 0 0.8rem;
}

.services-layout,
.process-grid,
.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

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

.service-card h3 {
    font-size: 1.35rem;
}

.service-list {
    margin-top: 1rem;
}

.service-list.two-columns {
    columns: 2;
    column-gap: 1.5rem;
}

.service-list.two-columns li {
    break-inside: avoid;
}

.feature-list {
    display: grid;
    gap: 1rem;
}

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

.process-grid article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.4rem 2.6rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96) 0%, rgba(22, 33, 60, 0.96) 100%);
    color: #fff;
    box-shadow: var(--shadow);
}

.about-grid {
    align-items: stretch;
}

.highlight-panel {
    background:
        radial-gradient(circle at top right, rgba(182, 138, 82, 0.22), transparent 28%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(22, 33, 60, 0.96));
    color: #eef2ff;
}

.highlight-panel p {
    color: rgba(238, 242, 255, 0.8);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-tier {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-card.featured {
    transform: translateY(-12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 239, 0.98));
    border-color: rgba(182, 138, 82, 0.32);
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.14);
}

.pricing-features {
    flex: 1;
}

.contact-grid {
    align-items: stretch;
}

.contact-panel {
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.98) 0%, rgba(22, 33, 60, 0.98) 100%);
    color: #eef2ff;
}

.contact-panel p {
    color: rgba(238, 242, 255, 0.8);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-list a {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition), background var(--transition);
}

.contact-list a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
}

.contact-list span {
    color: rgba(238, 242, 255, 0.75);
}

.contact-meta {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 242, 232, 0.95));
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    gap: 0.5rem;
}

.form-row.two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-row label {
    font-weight: 700;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(182, 138, 82, 0.5);
    box-shadow: 0 0 0 4px rgba(182, 138, 82, 0.12);
    background: #fff;
}

.form-note {
    margin: 0;
    font-size: 0.94rem;
    color: var(--muted);
}

.form-note.is-success {
    color: var(--success);
}

.form-note.is-error {
    color: #b42318;
}

.contact-form input[aria-invalid='true'],
.contact-form textarea[aria-invalid='true'] {
    border-color: rgba(180, 35, 24, 0.72);
    box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.12);
}

.site-footer {
    padding: 4rem 0 2rem;
    background: #050505;
    color: #ece3d7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 2rem;
    padding-bottom: 2.2rem;
}

.site-footer h2,
.site-footer h3 {
    margin-top: 0;
    color: #fff;
}

.site-footer p,
.footer-links a {
    color: rgba(236, 227, 215, 0.78);
}

.footer-links a:hover {
    color: #e58a3a;
}

.site-footer .footer-links li::before {
    background: #e58a3a;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.95rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #17b668 0%, #0e9f57 100%);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 20px 40px rgba(14, 159, 87, 0.28);
}

.whatsapp-float span::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .button:hover {
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .section-grid,
    .split-layout,
    .about-grid,
    .contact-grid,
    .services-layout,
    .pricing-grid,
    .card-grid-three,
    .footer-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-spotlight-grid,
    .scenario-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: none;
    }

    .spotlight-card-featured {
        transform: none;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .topbar-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav ul a {
        display: block;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-copy,
    .hero-panel,
    .page-hero-content,
    .about-card,
    .highlight-panel,
    .service-card,
    .info-card,
    .pricing-card,
    .contact-panel,
    .form-card,
    .cta-banner {
        padding: 1.6rem;
    }

    .hero-stats,
    .form-row.two-columns {
        grid-template-columns: 1fr;
    }

    .trust-strip,
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .service-list.two-columns {
        columns: 1;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4.2rem 0;
    }

    .hero-section {
        padding-top: 3rem;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
    }

    .brand-mark img {
        width: 30px;
        height: 30px;
    }

    .brand-mark-logo {
        width: 180px;
        height: 88px;
    }

    .brand-mark-logo img {
        width: auto;
        height: 100%;
    }

    .brand {
        gap: 0.7rem;
    }

    .brand-text strong {
        font-size: 0.95rem;
    }

    .brand-text small {
        display: none;
    }

    .hero-copy h1,
    .page-hero-content h1 {
        max-width: none;
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .section-heading h2,
    .split-layout h2,
    .cta-banner h2,
    .about-card h2,
    .contact-panel h2,
    .form-card h2,
    .pricing-card h2,
    .highlight-panel h3,
    .hero-panel h2 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .whatsapp-float {
        right: 0.85rem;
        bottom: 0.85rem;
        min-height: 54px;
        padding-inline: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 920px) {
    .brand-has-logo .brand-text small {
        display: none;
    }
}

.page-home {
    --home-accent: #e58a3a;
    --home-accent-soft: rgba(229, 138, 58, 0.16);
    --home-dark: #070707;
    --home-dark-soft: #101010;
    --home-cream: #f4efe8;
    --home-cream-deep: #ebe3d8;
    --home-copy-soft: rgba(255, 255, 255, 0.74);
    --home-dark-copy: #52565f;
    color: #171717;
    background: linear-gradient(180deg, #050505 0%, #050505 26rem, #f4efe8 26rem, #f4efe8 100%);
}

.page-home .topbar {
    display: none;
}

.page-home .site-header::before {
    background: rgba(7, 7, 7, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.page-home .site-header.is-scrolled::before {
    background: rgba(7, 7, 7, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.page-home .brand-mark {
    background: linear-gradient(135deg, #e58a3a 0%, #b85d1f 100%);
}

.page-home .brand-text strong,
.page-home .topbar-content a {
    color: #fff;
}

.page-home .brand-text small,
.page-home .site-nav ul a {
    color: rgba(255, 255, 255, 0.76);
}

.page-home .site-nav ul a:hover,
.page-home .site-nav ul a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.page-home .button-dark {
    background: rgba(229, 138, 58, 0.18);
    color: #fff;
}

.page-home .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
}

.page-home .nav-toggle span {
    background: #fff;
}

.page-home .text-link {
    color: var(--home-accent);
}

.ref-home-stage {
    position: relative;
    padding: 5rem 0 4.2rem;
}

.ref-hero-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 640px;
    padding: 5rem 3.2rem 2rem;
    border-radius: 40px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.26) 0%, rgba(7, 7, 7, 0.64) 58%, rgba(7, 7, 7, 0.9) 100%),
        url('../images/home-hero-scene.svg') center/cover no-repeat;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.ref-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at 82% 20%, rgba(229, 138, 58, 0.16), transparent 20%);
    pointer-events: none;
}

.ref-hero-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 118px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.ref-hero-copy,
.ref-hero-strip,
.ref-feature-grid,
.ref-process-grid,
.ref-proof-band,
.ref-solution-grid,
.ref-cta-panel {
    position: relative;
    z-index: 1;
}

.ref-hero-copy {
    width: min(100%, 860px);
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.ref-hero-kicker {
    margin: 1rem auto 0;
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ref-hero-copy h1 {
    margin: 1.2rem auto 1rem;
    max-width: 12ch;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 6vw, 5.8rem);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #fff;
}

.ref-hero-lead {
    max-width: 60ch;
    margin: 0 auto;
    color: var(--home-copy-soft);
    font-size: 1.08rem;
}

.ref-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

.page-home .ref-home-stage .button-primary,
.page-home .ref-cta-panel .button-primary {
    background: linear-gradient(135deg, #e58a3a 0%, #d67422 100%);
    color: #111;
    box-shadow: 0 16px 32px rgba(229, 138, 58, 0.24);
}

.page-home .ref-home-stage .button-secondary,
.page-home .ref-cta-panel .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.ref-hero-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.ref-hero-strip-item {
    padding: 1.15rem 1.2rem 1.3rem;
    border-radius: 26px;
    background: rgba(12, 12, 12, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.ref-hero-strip-item span,
.ref-solution-tag {
    display: block;
    color: rgba(229, 138, 58, 0.88);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ref-hero-strip-item strong {
    display: block;
    margin-top: 0.6rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.45;
}

.ref-dark-section,
.ref-light-section {
    position: relative;
    overflow: hidden;
}

.ref-dark-section {
    background: var(--home-dark);
    color: #fff;
}

.ref-light-section {
    background: var(--home-cream);
}

.ref-differentials-section {
    margin-top: -24px;
    padding: 5.5rem 0 6.5rem;
    border-bottom-left-radius: 78px;
    border-bottom-right-radius: 78px;
}

.ref-process-section {
    margin-top: -58px;
    padding: 7rem 0 5.6rem;
    border-top-left-radius: 78px;
    border-top-right-radius: 78px;
}

.ref-solutions-section {
    margin-top: -42px;
    padding: 6.8rem 0 6rem;
    border-top-left-radius: 78px;
    border-top-right-radius: 78px;
}

.ref-cta-section {
    margin-top: -42px;
    padding: 6rem 0 4.2rem;
    border-top-left-radius: 78px;
    border-top-right-radius: 78px;
}

.ref-feature-grid,
.ref-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.ref-feature-card,
.ref-process-card {
    padding: 1.65rem 1.35rem;
    border-radius: 26px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.ref-feature-card h3,
.ref-process-card h3,
.ref-solution-copy h3 {
    margin: 1rem 0 0.65rem;
    font-size: 1.35rem;
    line-height: 1.16;
}

.ref-feature-card p,
.ref-process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.ref-feature-card-accent,
.ref-process-card-accent {
    background: linear-gradient(180deg, #e58a3a 0%, #d97627 100%);
    border-color: transparent;
    color: #151515;
}

.ref-feature-card-accent p,
.ref-process-card-accent p,
.ref-feature-card-accent .ref-card-index,
.ref-process-card-accent .ref-card-index {
    color: rgba(21, 21, 21, 0.86);
}

.ref-feature-card-accent .ref-card-index,
.ref-process-card-accent .ref-card-index {
    background: rgba(21, 21, 21, 0.08);
    border-color: rgba(21, 21, 21, 0.12);
}

.ref-card-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
}

.ref-proof-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.ref-proof-item {
    padding: 1.25rem 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.ref-proof-item strong {
    display: block;
    margin-bottom: 0.4rem;
    color: #151515;
}

.ref-proof-item span {
    color: var(--home-dark-copy);
}

.ref-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ref-solution-card {
    border-radius: 28px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.ref-solution-media {
    min-height: 220px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ref-solution-media-juridico {
    background-image:
        linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.12)),
        url('../images/solution-juridico.svg');
}

.ref-solution-media-empresarial {
    background-image:
        linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.12)),
        url('../images/solution-empresarial.svg');
}

.ref-solution-media-tecnologia {
    background-image:
        linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.12)),
        url('../images/solution-tecnologia.svg');
}

.ref-solution-copy {
    padding: 1.35rem 1.35rem 1.5rem;
}

.ref-solution-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.ref-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.6rem;
    border-radius: 34px;
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.ref-cta-panel h2 {
    margin: 0.85rem 0 0;
    max-width: 12ch;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 0.98;
    font-weight: 600;
}

.ref-cta-panel .ref-hero-actions {
    justify-content: flex-start;
    margin-top: 0;
}

@media (max-width: 1080px) {
    .ref-feature-grid,
    .ref-process-grid,
    .ref-proof-band,
    .ref-solution-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ref-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .page-home .site-nav {
        background: rgba(10, 10, 10, 0.98);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .page-home .site-nav .button-dark {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .ref-home-stage {
        padding-top: 3.6rem;
    }

    .ref-hero-card,
    .ref-cta-panel {
        padding: 2rem 1.5rem;
    }

    .ref-hero-strip,
    .ref-feature-grid,
    .ref-process-grid,
    .ref-proof-band,
    .ref-solution-grid {
        grid-template-columns: 1fr;
    }

    .ref-differentials-section,
    .ref-process-section,
    .ref-solutions-section,
    .ref-cta-section {
        border-top-left-radius: 48px;
        border-top-right-radius: 48px;
        border-bottom-left-radius: 48px;
        border-bottom-right-radius: 48px;
    }
}

@media (max-width: 640px) {
    .ref-hero-card {
        min-height: 560px;
        padding-top: 4rem;
    }

    .ref-hero-copy h1,
    .ref-cta-panel h2 {
        max-width: none;
        font-size: clamp(2.8rem, 11vw, 4.1rem);
    }

    .ref-hero-kicker {
        font-size: 0.76rem;
    }

    .ref-hero-card::after {
        bottom: 0;
        display: none;
    }

    .ref-hero-strip-item,
    .ref-feature-card,
    .ref-process-card,
    .ref-proof-item,
    .ref-solution-copy {
        padding-inline: 1.1rem;
    }
}

.page-home,
.page-sobre,
.page-servicos,
.page-planos,
.page-contactos {
    --studio-accent: #e58a3a;
    --studio-accent-soft: rgba(229, 138, 58, 0.16);
    --studio-dark: #070707;
    --studio-dark-soft: #121212;
    --studio-cream: #f4efe8;
    --studio-cream-strong: #fbf7f2;
    --studio-copy-dark: #575c66;
    --studio-copy-light: rgba(255, 255, 255, 0.74);
    color: #171717;
    background: linear-gradient(180deg, #050505 0%, #050505 24rem, #f4efe8 24rem, #f4efe8 100%);
}

.page-home .topbar,
.page-sobre .topbar,
.page-servicos .topbar,
.page-planos .topbar,
.page-contactos .topbar {
    display: none;
}

.page-home .site-header::before,
.page-sobre .site-header::before,
.page-servicos .site-header::before,
.page-planos .site-header::before,
.page-contactos .site-header::before {
    background: rgba(7, 7, 7, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.page-home .site-header.is-scrolled::before,
.page-sobre .site-header.is-scrolled::before,
.page-servicos .site-header.is-scrolled::before,
.page-planos .site-header.is-scrolled::before,
.page-contactos .site-header.is-scrolled::before {
    background: rgba(7, 7, 7, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.page-home .brand-mark,
.page-sobre .brand-mark,
.page-servicos .brand-mark,
.page-planos .brand-mark,
.page-contactos .brand-mark {
    background: linear-gradient(135deg, #e58a3a 0%, #b85d1f 100%);
}

.page-home .brand-mark-logo,
.page-sobre .brand-mark-logo,
.page-servicos .brand-mark-logo,
.page-planos .brand-mark-logo,
.page-contactos .brand-mark-logo {
    background: transparent;
}

.page-home .brand-text strong,
.page-sobre .brand-text strong,
.page-servicos .brand-text strong,
.page-planos .brand-text strong,
.page-contactos .brand-text strong {
    color: #fff;
}

.page-home .brand-text small,
.page-sobre .brand-text small,
.page-servicos .brand-text small,
.page-planos .brand-text small,
.page-contactos .brand-text small,
.page-home .site-nav ul a,
.page-sobre .site-nav ul a,
.page-servicos .site-nav ul a,
.page-planos .site-nav ul a,
.page-contactos .site-nav ul a {
    color: rgba(255, 255, 255, 0.76);
}

.page-home .site-nav ul a:hover,
.page-home .site-nav ul a.active,
.page-sobre .site-nav ul a:hover,
.page-sobre .site-nav ul a.active,
.page-servicos .site-nav ul a:hover,
.page-servicos .site-nav ul a.active,
.page-planos .site-nav ul a:hover,
.page-planos .site-nav ul a.active,
.page-contactos .site-nav ul a:hover,
.page-contactos .site-nav ul a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.page-home .button-dark,
.page-sobre .button-dark,
.page-servicos .button-dark,
.page-planos .button-dark,
.page-contactos .button-dark {
    background: rgba(229, 138, 58, 0.18);
    color: #fff;
}

.page-home .nav-toggle,
.page-sobre .nav-toggle,
.page-servicos .nav-toggle,
.page-planos .nav-toggle,
.page-contactos .nav-toggle {
    background: rgba(255, 255, 255, 0.08);
}

.page-home .nav-toggle span,
.page-sobre .nav-toggle span,
.page-servicos .nav-toggle span,
.page-planos .nav-toggle span,
.page-contactos .nav-toggle span {
    background: #fff;
}

.page-home .text-link,
.page-sobre .text-link,
.page-servicos .text-link,
.page-planos .text-link,
.page-contactos .text-link {
    color: var(--studio-accent);
}

.studio-page-stage {
    padding: 5rem 0 3.25rem;
}

.studio-hero-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 0;
    min-height: 540px;
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(180deg, #0b0b0b 0%, #111111 100%);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.studio-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.82) 42%, rgba(7, 7, 7, 0.12) 100%);
    pointer-events: none;
}

.studio-hero-copy,
.studio-hero-media,
.studio-card-body,
.studio-card-media,
.studio-actions,
.studio-stat-list {
    position: relative;
    z-index: 1;
}

.studio-hero-copy {
    padding: 3.15rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.studio-kicker {
    margin: 1rem 0 0;
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.studio-hero-copy h1 {
    margin: 1.1rem 0 1rem;
    max-width: 12ch;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.4vw, 5rem);
    line-height: 0.9;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: #fff;
    text-wrap: balance;
}

.studio-lead {
    max-width: 54ch;
    margin: 0;
    color: var(--studio-copy-light);
    font-size: 1.03rem;
    line-height: 1.72;
}

.studio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.page-home .studio-page-stage .button-primary,
.page-sobre .studio-page-stage .button-primary,
.page-servicos .studio-page-stage .button-primary,
.page-planos .studio-page-stage .button-primary,
.page-contactos .studio-page-stage .button-primary,
.page-home .studio-cta-panel .button-primary,
.page-sobre .studio-cta-panel .button-primary,
.page-servicos .studio-cta-panel .button-primary,
.page-planos .studio-cta-panel .button-primary,
.page-contactos .studio-cta-panel .button-primary {
    background: linear-gradient(135deg, #e58a3a 0%, #d67422 100%);
    color: #111;
    box-shadow: 0 16px 32px rgba(229, 138, 58, 0.24);
}

.page-home .studio-plan-card-featured .button-primary,
.page-sobre .studio-plan-card-featured .button-primary,
.page-servicos .studio-plan-card-featured .button-primary,
.page-planos .studio-plan-card-featured .button-primary,
.page-contactos .studio-plan-card-featured .button-primary {
    background: #111111;
    color: #fff;
    box-shadow: 0 14px 28px rgba(17, 17, 17, 0.2);
}

.page-home .studio-page-stage .button-secondary,
.page-sobre .studio-page-stage .button-secondary,
.page-servicos .studio-page-stage .button-secondary,
.page-planos .studio-page-stage .button-secondary,
.page-contactos .studio-page-stage .button-secondary,
.page-home .studio-cta-panel .button-secondary,
.page-sobre .studio-cta-panel .button-secondary,
.page-servicos .studio-cta-panel .button-secondary,
.page-planos .studio-cta-panel .button-secondary,
.page-contactos .studio-cta-panel .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.page-home .studio-plan-card .button-secondary,
.page-sobre .studio-plan-card .button-secondary,
.page-servicos .studio-plan-card .button-secondary,
.page-planos .studio-plan-card .button-secondary,
.page-contactos .studio-plan-card .button-secondary {
    background: #efebe4;
    border-color: transparent;
    color: #151515;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.page-home .studio-plan-card .button-secondary:hover,
.page-sobre .studio-plan-card .button-secondary:hover,
.page-servicos .studio-plan-card .button-secondary:hover,
.page-planos .studio-plan-card .button-secondary:hover,
.page-contactos .studio-plan-card .button-secondary:hover {
    background: #ffffff;
}

.page-home .studio-plan-card-featured .button-primary:hover,
.page-sobre .studio-plan-card-featured .button-primary:hover,
.page-servicos .studio-plan-card-featured .button-primary:hover,
.page-planos .studio-plan-card-featured .button-primary:hover,
.page-contactos .studio-plan-card-featured .button-primary:hover {
    background: #1a1a1a;
}

.studio-quick-section {
    margin-top: -1.45rem;
    padding-bottom: 4rem;
}

.studio-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.studio-quick-card {
    display: grid;
    gap: 0.55rem;
    min-height: 100%;
    padding: 1.45rem 1.5rem;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-decoration: none;
    color: inherit;
}

.studio-quick-card:hover,
.studio-quick-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.12);
}

.studio-quick-card:focus-visible {
    outline: 3px solid rgba(229, 138, 58, 0.34);
    outline-offset: 3px;
}

.studio-quick-label {
    color: #9b5f24;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.studio-quick-card strong {
    font-size: 1.06rem;
    line-height: 1.2;
}

.studio-quick-card p {
    margin: 0;
    color: var(--studio-copy-dark);
    line-height: 1.64;
}

.studio-quick-card-dark {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.studio-quick-card-dark .studio-quick-label {
    color: rgba(229, 138, 58, 0.9);
}

.studio-quick-card-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.studio-quick-card-accent {
    background: linear-gradient(180deg, #dc8437 0%, #ca7024 100%);
    border-color: rgba(17, 17, 17, 0.04);
    color: #151515;
    box-shadow: 0 22px 48px rgba(177, 92, 24, 0.24);
}

.studio-quick-card-accent .studio-quick-label {
    color: rgba(21, 21, 21, 0.7);
}

.studio-quick-card-accent p {
    color: rgba(21, 21, 21, 0.88);
}

.studio-hero-media {
    position: relative;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
    background: #0d0d0d;
}

.studio-hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.2));
    pointer-events: none;
    z-index: 1;
}

.studio-light-section,
.studio-dark-section {
    position: relative;
}

.studio-light-section {
    padding: 0 0 4.9rem;
}

.studio-dark-section {
    margin-top: 0;
    padding: 4.8rem 0 5rem;
    background: var(--studio-dark);
    color: #fff;
    border-radius: 58px;
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.22);
}

.studio-light-section + .studio-dark-section {
    margin-top: 0.75rem;
}

.studio-dark-section + .studio-light-section {
    padding-top: 4rem;
}

.studio-two-column,
.studio-contact-grid,
.studio-split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    align-items: start;
}

.studio-split-section {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: center;
}

.studio-card-grid {
    display: grid;
    gap: 1rem;
}

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

.studio-card-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.studio-card-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.studio-media-card,
.studio-list-card,
.studio-plan-card,
.studio-panel-card,
.studio-form-panel,
.studio-feature-card,
.studio-cta-panel {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 30px;
}

.studio-media-card,
.studio-plan-card,
.studio-form-panel,
.studio-panel-card,
.studio-feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 237, 0.96) 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.studio-media-card-dark,
.studio-panel-card-dark,
.studio-list-card,
.studio-plan-card,
.studio-dark-section .studio-feature-card {
    background: linear-gradient(180deg, #101010 0%, #171717 100%);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.studio-media-card-accent,
.studio-list-card-accent,
.studio-plan-card-featured {
    background: linear-gradient(180deg, #dc8437 0%, #cb7025 100%);
    border-color: rgba(17, 17, 17, 0.04);
    color: #151515;
    box-shadow: 0 22px 48px rgba(177, 92, 24, 0.24);
}

.studio-card-media {
    position: relative;
    min-height: 208px;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: #181818;
}

.studio-card-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(7, 7, 7, 0.22) 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 42%);
    pointer-events: none;
    z-index: 1;
}

.studio-hero-media img,
.studio-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.studio-media-card-dark .studio-card-media,
.studio-list-card .studio-card-media,
.studio-plan-card .studio-card-media,
.studio-panel-card-dark .studio-card-media {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.studio-media-card-accent .studio-card-media,
.studio-list-card-accent .studio-card-media,
.studio-plan-card-featured .studio-card-media {
    border-bottom-color: rgba(21, 21, 21, 0.12);
}

.studio-card-media-short {
    min-height: 136px;
}

.studio-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.45rem 1.45rem 1.6rem;
}

.studio-card-body h2,
.studio-card-body h3,
.studio-cta-panel h2 {
    margin: 0;
    text-wrap: balance;
}

.studio-card-body h2,
.studio-card-body h3 {
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    line-height: 1.12;
}

.studio-card-body p,
.studio-feature-card p,
.studio-stat-list span,
.studio-dark-section .section-intro {
    margin: 0;
    line-height: 1.7;
}

.studio-media-card .studio-card-body p,
.studio-form-panel .studio-card-body p,
.studio-feature-card p,
.studio-light-section .studio-card-body p,
.studio-light-section .pricing-intro {
    color: var(--studio-copy-dark);
}

.studio-dark-section .studio-card-body p,
.studio-panel-card-dark .studio-card-body p,
.studio-list-card .studio-card-body p,
.studio-plan-card .pricing-intro,
.studio-dark-section .studio-card-body .service-list li,
.studio-panel-card-dark .service-list li,
.studio-panel-card-dark .contact-list span,
.studio-panel-card-dark .contact-list strong,
.studio-dark-section .section-intro,
.studio-panel-card-dark .studio-stat-list span {
    color: rgba(255, 255, 255, 0.72);
}

.studio-media-card-accent .studio-card-body p,
.studio-list-card-accent .studio-card-body p,
.studio-plan-card-featured .pricing-intro,
.studio-media-card-accent .service-list li,
.studio-list-card-accent .service-list li,
.studio-plan-card-featured .pricing-features li {
    color: rgba(21, 21, 21, 0.82);
}

.studio-light-section .section-heading,
.studio-dark-section .section-heading {
    gap: 0.8rem;
    margin-bottom: 2.4rem;
}

.studio-light-section .section-heading.center,
.studio-dark-section .section-heading.center {
    max-width: 52rem;
    margin-inline: auto;
}

.studio-light-section .section-heading h2,
.studio-dark-section .section-heading h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.04;
    text-wrap: balance;
}

.studio-light-section .section-heading.center h2,
.studio-dark-section .section-heading.center h2 {
    max-width: 18ch;
}

.studio-light-section .section-heading p,
.studio-light-section .section-intro {
    max-width: 44rem;
    color: var(--studio-copy-dark);
    line-height: 1.72;
}

.studio-dark-section .section-heading p,
.studio-dark-section .section-intro {
    max-width: 44rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}

.studio-split-section .section-heading {
    margin-bottom: 0;
    padding-top: 0.35rem;
}

.studio-list-card .studio-card-body,
.studio-plan-card .studio-card-body {
    padding-top: 1.45rem;
}

.studio-card-body .service-list,
.studio-card-body .pricing-features {
    margin: 0.15rem 0 0;
}

.studio-plan-card .studio-card-body {
    gap: 1rem;
}

.studio-plan-card .studio-card-body h2 {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.studio-plan-card .pricing-tier {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.studio-plan-card-featured .pricing-tier {
    background: rgba(21, 21, 21, 0.08);
    color: #151515;
}

.studio-stat-list {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.studio-stat-list article {
    padding: 1.05rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.studio-stat-list strong {
    display: block;
    margin-bottom: 0.35rem;
}

.studio-feature-stack {
    display: grid;
    gap: 1.1rem;
}

.studio-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.5rem 1.45rem 1.55rem;
}

.studio-feature-card::before {
    content: '';
    width: 2.8rem;
    height: 4px;
    border-radius: 999px;
    background: rgba(229, 138, 58, 0.92);
}

.studio-feature-card h3 {
    margin: 0;
    font-size: 1.16rem;
}

.studio-list-card .service-list li::before,
.studio-plan-card .pricing-features li::before,
.studio-dark-section .service-list li::before {
    background: var(--studio-accent);
}

.studio-media-card-accent .service-list li::before,
.studio-list-card-accent .service-list li::before,
.studio-plan-card-featured .pricing-features li::before {
    background: rgba(21, 21, 21, 0.6);
}

.studio-media-card .text-link,
.studio-list-card .text-link {
    margin-top: auto;
}

.studio-media-card-dark .text-link,
.studio-list-card .text-link,
.studio-plan-card .text-link {
    color: #f2a359;
}

.studio-media-card-accent .text-link,
.studio-list-card-accent .text-link,
.studio-plan-card-featured .text-link {
    color: rgba(21, 21, 21, 0.92);
}

.studio-panel-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
}

.studio-panel-card h2,
.studio-panel-card p {
    margin: 0;
}

.studio-panel-card h2 {
    max-width: 12ch;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    line-height: 1.02;
    font-weight: 600;
    text-wrap: balance;
}

.studio-panel-card p {
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.72;
}

.studio-plan-card .button-full {
    margin-top: auto;
}

.studio-list-card .service-list.two-columns {
    columns: initial;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 1.4rem;
}

.studio-list-card .service-list.two-columns li,
.studio-list-card .service-list.two-columns li + li {
    margin-top: 0;
}

.studio-panel-card-dark .contact-list a {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.studio-panel-card-dark .contact-list a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.studio-form-panel {
    background: var(--studio-cream-strong);
}

.studio-form-panel .contact-form input,
.studio-form-panel .contact-form textarea {
    background: #fff;
    border-color: rgba(17, 17, 17, 0.12);
}

.studio-form-panel .contact-form input:focus,
.studio-form-panel .contact-form textarea:focus {
    border-color: rgba(229, 138, 58, 0.5);
    box-shadow: 0 0 0 4px rgba(229, 138, 58, 0.12);
}

.studio-form-panel .button-primary {
    background: linear-gradient(135deg, #e58a3a 0%, #d67422 100%);
    color: #111;
}

.studio-cta-section {
    padding-bottom: 4rem;
}

.studio-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background: #0a0a0a;
    color: #fff;
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.studio-cta-panel h2 {
    max-width: 12ch;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.98;
    font-weight: 600;
}

.studio-cta-panel .studio-actions {
    margin-top: 0;
}

@media (max-width: 1080px) {
    .studio-hero-card,
    .studio-two-column,
    .studio-contact-grid,
    .studio-split-section {
        grid-template-columns: 1fr;
    }

    .studio-hero-card {
        min-height: 0;
    }

    .studio-hero-card::after {
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.84) 38%, rgba(7, 7, 7, 0.14) 100%);
    }

    .studio-hero-media {
        min-height: 300px;
    }

    .studio-quick-grid,
    .studio-card-grid-two,
    .studio-card-grid-three,
    .studio-card-grid-four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .studio-dark-section + .studio-light-section {
        padding-top: 3.4rem;
    }
}

@media (max-width: 900px) {
    .page-home .site-nav,
    .page-sobre .site-nav,
    .page-servicos .site-nav,
    .page-planos .site-nav,
    .page-contactos .site-nav {
        background: rgba(10, 10, 10, 0.98);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .page-home .site-nav .button-dark,
    .page-sobre .site-nav .button-dark,
    .page-servicos .site-nav .button-dark,
    .page-planos .site-nav .button-dark,
    .page-contactos .site-nav .button-dark {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .studio-page-stage {
        padding-top: 3.8rem;
    }

    .studio-quick-grid,
    .studio-card-grid-two,
    .studio-card-grid-three,
    .studio-card-grid-four {
        grid-template-columns: 1fr;
    }

    .studio-hero-copy,
    .studio-card-body,
    .studio-cta-panel {
        padding: 1.5rem;
    }

    .studio-panel-card {
        padding: 1.6rem;
    }

    .studio-list-card .service-list.two-columns {
        grid-template-columns: 1fr;
    }

    .studio-dark-section {
        border-radius: 46px;
        padding: 4.1rem 0 4.3rem;
    }

    .studio-dark-section + .studio-light-section {
        padding-top: 3rem;
    }
}

@media (max-width: 640px) {
    .studio-hero-card {
        min-height: 0;
    }

    .studio-hero-media {
        min-height: 220px;
    }

    .studio-hero-copy h1,
    .studio-cta-panel h2 {
        max-width: none;
        font-size: clamp(2.8rem, 11vw, 4.1rem);
    }

    .studio-light-section .section-heading h2,
    .studio-dark-section .section-heading h2 {
        font-size: clamp(2rem, 8.5vw, 2.75rem);
    }

    .studio-card-media {
        min-height: 180px;
    }

    .studio-card-media-short {
        min-height: 112px;
    }

    .studio-panel-card {
        padding: 1.45rem;
    }

    .studio-kicker {
        font-size: 0.76rem;
    }
}
