:root {
    --rose-50: #f8eff1;
    --rose-100: #f2e4e8;
    --rose-200: #e8d2d9;
    --rose-300: #d5aab6;
    --rose-500: #b66a7f;
    --rose-700: #8f4358;
    --text-900: #3c3235;
    --text-700: #64565b;
    --surface-0: #fffdfc;
    --surface-1: #faf5f6;
    --surface-2: #f5ecef;
    --line: rgba(143, 67, 88, 0.16);
    --shadow-soft: 0 24px 56px rgba(95, 62, 71, 0.13);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: min(1160px, calc(100% - 3rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

*:focus-visible {
    outline: 2px solid rgba(169, 80, 103, 0.55);
    outline-offset: 2px;
}

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    color: var(--text-900);
    background:
        radial-gradient(1200px 500px at 92% -4%, rgba(203, 135, 156, 0.2) 0%, rgba(203, 135, 156, 0) 60%),
        radial-gradient(1000px 600px at -10% 12%, rgba(228, 196, 207, 0.35) 0%, rgba(228, 196, 207, 0) 62%),
        linear-gradient(180deg, #f8f4f7 0%, #f6f1f4 100%);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(143, 67, 88, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 67, 88, 0.03) 1px, transparent 1px);
    background-size: 34px 34px, 34px 34px;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(700px 320px at 78% 14%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    pointer-events: none;
}

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

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: clamp(4.8rem, 9vw, 8rem) 0;
}

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

.section-soft {
    background: linear-gradient(160deg, var(--surface-1) 0%, #fdf8fa 45%, var(--surface-2) 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--rose-700);
    font-weight: 700;
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: '';
    width: 1.6rem;
    height: 1px;
    background: var(--rose-500);
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #2f2428;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 4.1rem);
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

p {
    margin: 0;
    color: var(--text-700);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.88rem 1.45rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
    cursor: pointer;
}

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

.btn-primary {
    background: linear-gradient(95deg, #a95067 0%, #bc6f84 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(169, 80, 103, 0.27);
}

.btn-primary:hover {
    box-shadow: 0 20px 36px rgba(169, 80, 103, 0.34);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
    color: var(--text-900);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.72rem 0;
    backdrop-filter: blur(10px);
    background: linear-gradient(180deg, rgba(248, 243, 246, 0.92) 0%, rgba(248, 243, 246, 0.45) 72%, rgba(248, 243, 246, 0) 100%);
    transition: padding .24s ease, background-color .24s ease, box-shadow .24s ease;
}

.site-header.is-scrolled {
    padding: 0.46rem 0;
    background: linear-gradient(180deg, rgba(248, 243, 246, 0.96) 0%, rgba(248, 243, 246, 0.6) 72%, rgba(248, 243, 246, 0) 100%);
}

.site-header.is-scrolled .header-inner {
    min-height: 84px;
}

.site-header.is-scrolled .brand-logo {
    max-height: 74px;
}

.header-inner {
    min-height: 100px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.72rem 0.85rem;
    border-radius: 28px;
    margin-block: 0.2rem;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 251, 0.74) 62%, rgba(251, 241, 245, 0.66) 100%);
    border: 1px solid rgba(143, 67, 88, 0.2);
    box-shadow: 0 18px 36px rgba(90, 61, 71, 0.12);
    position: relative;
    overflow: hidden;
}

.header-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    min-height: 84px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 243, 247, 0.92) 100%);
    border: 1px solid rgba(143, 67, 88, 0.2);
    border-radius: 20px;
    padding: 0.4rem 0.62rem;
    box-shadow: 0 10px 24px rgba(95, 62, 71, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.brand-logo {
    width: clamp(248px, 22vw, 350px);
    max-height: 96px;
    object-fit: contain;
    object-position: left center;
}

.brand-logo-signature {
    clip-path: inset(0 0 0 0);
}

.brand-monogram {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    background: linear-gradient(140deg, #c58395 0%, #9a536a 100%);
    color: #fff;
    flex-shrink: 0;
}

.brand-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #5a4b50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-nav {
    position: relative;
    display: flex;
    gap: 0.35rem;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0.38rem;
    border-radius: 999px;
    background: linear-gradient(130deg, rgba(247, 239, 243, 0.92) 0%, rgba(255, 248, 251, 0.88) 100%);
    border: 1px solid rgba(143, 67, 88, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    isolation: isolate;
}

.nav-indicator {
    position: absolute;
    top: 50%;
    left: var(--indicator-x, 0px);
    width: var(--indicator-w, 0px);
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 235, 241, 0.96) 100%);
    border: 1px solid rgba(143, 67, 88, 0.2);
    box-shadow: 0 8px 18px rgba(126, 78, 93, 0.12);
    transform: translateY(-50%);
    opacity: 0;
    transition: left .34s cubic-bezier(.22, 1, .36, 1), width .34s cubic-bezier(.22, 1, .36, 1), opacity .24s ease;
    pointer-events: none;
    z-index: 0;
}

.main-nav.is-ready .nav-indicator {
    opacity: 1;
}

.main-nav a {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: #55484e;
    padding: 0.68rem 0.8rem;
    border-radius: 999px;
    transition: color .24s ease, transform .24s ease;
    text-align: center;
    letter-spacing: 0.01em;
    text-wrap: nowrap;
}

.main-nav a:hover {
    color: #3f3036;
    transform: translateY(-1px);
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0.42rem;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(143, 67, 88, 0.6);
    transform: translate(-50%, -3px);
    opacity: 0;
    transition: transform .24s ease, opacity .24s ease;
}

.main-nav a:hover::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

.main-nav a.is-active {
    color: #33272c;
    font-weight: 700;
}

.main-nav a.is-active::before {
    opacity: 1;
    transform: translate(-50%, 0);
}

.menu-toggle {
    display: none;
}

.menu-toggle-icon {
    position: relative;
    display: inline-block;
    width: 1.12rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
    flex-shrink: 0;
}

.menu-toggle-label {
    line-height: 1;
}

.menu-backdrop {
    display: none;
}

.header-cta {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    padding: 0.88rem 1.24rem;
    white-space: nowrap;
    gap: 0.38rem;
    letter-spacing: 0.01em;
    box-shadow: 0 14px 28px rgba(169, 80, 103, 0.26);
}

.header-cta svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: currentColor;
    transition: transform .24s ease;
}

.header-cta:hover svg {
    transform: translateX(2px);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: clamp(4rem, 6.8vw, 6rem);
}

.hero-section::before {
    content: '';
    position: absolute;
    width: min(560px, 60vw);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(182, 106, 127, 0.3) 0%, rgba(182, 106, 127, 0) 72%);
    top: -180px;
    right: -150px;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 16% 0 auto auto;
    width: 420px;
    height: 220px;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(184, 118, 137, 0.18), rgba(255, 255, 255, 0));
    filter: blur(24px);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(2.2rem, 5vw, 5rem);
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 6.2vw, 5.3rem);
    line-height: 0.97;
    max-width: 12ch;
    letter-spacing: -0.015em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.45vw, 1.17rem);
    max-width: 50ch;
    color: #594d52;
}

.hero-service-scope {
    margin-top: 0.55rem;
    max-width: 56ch;
    font-size: clamp(0.88rem, 1.08vw, 1rem);
    line-height: 1.45;
    color: #5b4d53;
}

.hero-mobile-summary,
.hero-mobile-features {
    display: none;
}

.hero-top-shell {
    position: relative;
}

.hero-media-badge {
    display: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.72rem;
    margin-top: 1.6rem;
}

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

.hero-highlights span {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(143, 67, 88, 0.18);
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    color: #4b3d43;
    text-align: center;
    font-weight: 500;
}

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

.hero-metrics article {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(143, 67, 88, 0.14);
    border-radius: 14px;
    padding: 0.7rem 0.75rem;
}

.hero-metrics strong {
    display: block;
    font-size: 0.78rem;
    color: #3f3137;
    margin-bottom: 0.2rem;
}

.hero-metrics p {
    font-size: 0.72rem;
    color: #6a5a60;
    line-height: 1.35;
}

.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(76, 55, 62, 0.2);
    object-fit: cover;
    object-position: center top;
    max-height: 700px;
    border: 1px solid rgba(143, 67, 88, 0.18);
}

.hero-media::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 34px;
    padding: 1px;
    background: linear-gradient(140deg, rgba(143, 67, 88, 0.5), rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.about-grid-no-media {
    grid-template-columns: 1fr;
}

.about-media img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-content {
    padding: clamp(1rem, 2vw, 2rem);
}

.about-content p + p {
    margin-top: 1rem;
}

.about-signature {
    font-weight: 600;
    color: #58484f;
}

.section-head {
    margin-bottom: 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
}

.card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 240, 244, 0.9) 100%);
    border: 1px solid rgba(143, 67, 88, 0.16);
    border-radius: 18px;
    padding: 1.3rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(90, 64, 74, 0.17);
    border-color: rgba(143, 67, 88, 0.33);
}

.card::after {
    content: '';
    position: absolute;
    left: 1.3rem;
    right: 1.3rem;
    bottom: 0;
    height: 2px;
    background: linear-gradient(95deg, rgba(182, 106, 127, 0.8), rgba(182, 106, 127, 0));
}

.card-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f6e9ee;
    color: #7d485a;
    margin-bottom: 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-icon-area {
    width: 2.7rem;
    height: 2.7rem;
}

.card-icon-area svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.area-summary strong {
    color: #4a3c42;
    font-weight: 700;
}

.area-when {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    color: #5b4b51;
}

.area-when strong {
    color: #4a3c42;
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.team-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.team-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.team-content {
    padding: 1.2rem;
}

.team-role,
.team-reg {
    color: #5f4e54;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

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

.differential-item {
    position: relative;
    background: #fff;
    border: 1px solid rgba(143, 67, 88, 0.2);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    overflow: hidden;
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.differential-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px rgba(101, 66, 77, 0.16);
    border-color: rgba(143, 67, 88, 0.35);
}

.differential-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.differential-index {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    color: #8f6b77;
    font-weight: 700;
}

.differential-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, #f9edf1 0%, #f3dce4 100%);
    color: #8f4358;
}

.differential-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.differential-body h3 {
    margin-bottom: 0.55rem;
}

.differential-accent {
    position: absolute;
    width: 68%;
    height: 2px;
    left: 1.15rem;
    bottom: 0;
    background: linear-gradient(95deg, rgba(182, 106, 127, 0.75), rgba(182, 106, 127, 0));
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.info-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: linear-gradient(165deg, #fff 0%, #f9f1f3 100%);
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    transition: transform .22s ease, box-shadow .22s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(102, 65, 76, 0.17);
}

.info-card-icon {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f6e9ee;
    color: #7d485a;
    margin-bottom: 0.65rem;
}

.info-card-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
}

.contact-info,
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.2rem, 2.4vw, 2rem);
    box-shadow: var(--shadow-soft);
}

.contact-info ul {
    margin: 1.1rem 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.contact-form label {
    display: grid;
    gap: 0.38rem;
    font-size: 0.9rem;
    color: #51444a;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #dbc6ce;
    border-radius: 10px;
    padding: 0.72rem 0.82rem;
    font: inherit;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(182, 106, 127, 0.38);
    border-color: #bb7288;
}

.checkbox-row {
    display: flex !important;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem !important;
    line-height: 1.4;
}

.checkbox-row input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.privacy-note {
    display: block;
    margin-top: -0.15rem;
    color: #6e5d63;
    font-size: 0.8rem;
}

.form-feedback {
    margin-bottom: 1rem;
}

.feedback {
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    margin-bottom: 0.55rem;
}

.feedback.success {
    background: #ebfaef;
    color: #135929;
}

.feedback.error {
    background: #fcecee;
    color: #8a263f;
}

.map-embed iframe {
    width: 100%;
    border: 0;
    min-height: 240px;
    border-radius: 12px;
    margin-top: 1rem;
}


.site-footer {
    background: linear-gradient(180deg, #2d2226 0%, #20191c 100%);
    color: #f2e7ea;
    margin-top: 2.3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.footer-logo {
    width: clamp(190px, 25vw, 300px);
    max-height: 92px;
    object-fit: contain;
    object-position: left center;
    clip-path: inset(0 5.5% 0 0);
    border-radius: 8px;
}

.site-footer h4 {
    font-size: 1.2rem;
    color: #f8f0f2;
    margin-bottom: 0.8rem;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.site-footer p,
.site-footer li,
.site-footer small,
.site-footer a {
    color: #dbc7cc;
}

.footer-bottom {
    border-top: 0;
    padding: 1rem 0;
    text-align: center;
}

.mobile-cta-bar {
    display: none;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0.72rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
}

.mobile-cta-whatsapp {
    background: linear-gradient(95deg, #a95067 0%, #bc6f84 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(169, 80, 103, 0.28);
}

.mobile-cta-schedule {
    background: rgba(255, 255, 255, 0.9);
    color: #3d3136;
    border-color: rgba(143, 67, 88, 0.2);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1080px) {
    .site-header {
        z-index: 80;
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            'brand toggle'
            'menu menu';
        padding: 0.58rem;
        min-height: 82px;
        border-radius: 22px;
        overflow: visible;
    }

    .brand {
        grid-area: brand;
        min-height: 62px;
        padding: 0.28rem 0.48rem;
        border-radius: 14px;
    }

    .brand-logo {
        width: clamp(168px, 48vw, 250px);
        max-height: 64px;
    }

    .menu-toggle {
        grid-area: toggle;
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        border: 1px solid rgba(143, 67, 88, 0.24);
        background: linear-gradient(140deg, #fff 0%, #f8edf2 100%);
        border-radius: 999px;
        padding: 0.48rem 0.78rem;
        font-size: 0.8rem;
        font-weight: 700;
        color: #4b3e44;
        box-shadow: 0 8px 16px rgba(92, 62, 73, 0.12);
    }

    .main-nav {
        grid-area: menu;
        position: absolute;
        left: 0.68rem;
        right: 0.68rem;
        top: calc(100% + 0.4rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.28rem;
        padding: 0.72rem;
        border-radius: 18px;
        margin-top: 0.35rem;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(143, 67, 88, 0.18);
        box-shadow: 0 12px 24px rgba(94, 64, 74, 0.1);
        z-index: 82;
    }

    .main-nav .nav-indicator {
        display: none;
    }

    .main-nav a {
        width: 100%;
        text-align: left;
        border-radius: 12px;
        padding: 0.78rem 0.85rem;
    }

    .main-nav a::before {
        left: auto;
        right: 0.85rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-nav a:hover::before,
    .main-nav a.is-active::before {
        transform: translateY(-50%);
    }

    .main-nav a.is-active {
        background: rgba(143, 67, 88, 0.1);
    }

    .main-nav.open {
        display: flex;
    }

    .menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 79;
        border: 0;
        padding: 0;
        background: rgba(40, 27, 32, 0.2);
        backdrop-filter: blur(2px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
    }

    .menu-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .header-cta {
        display: none;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 74px;
    }

    .site-header.is-scrolled .brand-logo {
        max-height: 52px;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 900px) {
    .site-header {
        padding: 0.38rem 0;
    }

    .header-inner {
        min-height: 70px;
        border-radius: 22px;
    }

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

    .hero-top-shell {
        padding: 0.95rem;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(247, 236, 242, 0.88) 100%);
        border: 1px solid rgba(143, 67, 88, 0.2);
        box-shadow: 0 22px 42px rgba(93, 60, 71, 0.16);
        grid-template-columns: 1.05fr 0.95fr;
        gap: 0.9rem;
        align-items: center;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 6.2vw, 3rem);
        line-height: 1.04;
        margin-bottom: 0.42rem;
    }

    .hero-mobile-summary {
        display: block;
        margin: 0;
        color: #5a494f;
        font-size: 0.94rem;
        line-height: 1.45;
        max-width: 40ch;
    }

    .hero-actions {
        margin-top: 0.9rem;
        gap: 0.6rem;
    }

    .hero-actions .btn-primary {
        min-height: 52px;
        padding-inline: 1rem;
        font-size: 1rem;
    }

    .hero-actions .btn-secondary {
        display: none;
    }

    .hero-media img {
        max-height: 360px;
        border-radius: 24px;
    }

    .hero-media-badge {
        display: inline-flex;
        position: absolute;
        left: 0.9rem;
        right: 0.9rem;
        bottom: 0.8rem;
        justify-content: center;
        align-items: center;
        min-height: 36px;
        padding: 0.44rem 0.7rem;
        border-radius: 999px;
        background: rgba(41, 31, 36, 0.72);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.26);
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        text-align: center;
        backdrop-filter: blur(4px);
    }

    .hero-mobile-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.72rem;
        margin-top: 0.8rem;
    }

    .hero-mobile-feature {
        min-height: 150px;
        padding: 0.72rem 0.62rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(143, 67, 88, 0.18);
        display: grid;
        justify-items: center;
        align-content: start;
        gap: 0.4rem;
        text-align: center;
    }

    .hero-mobile-feature strong {
        font-size: 0.95rem;
        line-height: 1.2;
        color: #4c3a42;
    }

    .hero-mobile-feature p {
        margin: 0;
        font-size: 0.82rem;
        line-height: 1.35;
        color: #5d4d53;
    }
}

@media (max-width: 700px) {
    :root {
        --container: min(1160px, calc(100% - 1.5rem));
    }

    body {
        font-size: 15.5px;
        background:
            radial-gradient(780px 390px at 95% 1%, rgba(203, 135, 156, 0.18) 0%, rgba(203, 135, 156, 0) 66%),
            linear-gradient(180deg, #f8f4f7 0%, #f6f1f4 100%);
        padding-bottom: calc(84px + env(safe-area-inset-bottom));
    }

    h1 {
        font-size: clamp(2.1rem, 10vw, 2.8rem);
    }

    h2 {
        font-size: clamp(1.7rem, 7.4vw, 2.25rem);
    }

    h3 {
        font-size: clamp(1.15rem, 5vw, 1.42rem);
    }

    .site-header {
        padding: 0.32rem 0;
    }

    .header-inner {
        min-height: 68px;
        padding: 0.45rem;
        border-radius: 20px;
        background: linear-gradient(130deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 239, 244, 0.8) 100%);
    }

    .site-header.is-scrolled .header-inner {
        min-height: 62px;
    }

    .brand {
        min-height: 56px;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(91, 58, 69, 0.14);
    }

    .menu-toggle {
        width: 44px;
        min-height: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        color: #fff;
        border-color: rgba(153, 58, 86, 0.3);
        background: linear-gradient(145deg, #b65275 0%, #8f3657 100%);
        box-shadow: 0 12px 22px rgba(121, 51, 72, 0.3);
    }

    .menu-toggle-label {
        display: none;
    }

    .menu-toggle-icon {
        width: 1.08rem;
        box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
    }

    .main-nav {
        max-height: min(70vh, 420px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(255, 255, 255, 0.96);
        border-color: rgba(143, 67, 88, 0.24);
        box-shadow: 0 16px 28px rgba(94, 64, 74, 0.16);
    }

    .main-nav a {
        font-size: 0.92rem;
        padding: 0.82rem 0.88rem;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(143, 67, 88, 0.1);
        border-radius: 13px;
    }

    .section {
        padding: clamp(2.2rem, 7.2vw, 3.2rem) 0;
    }

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

    .hero-top-shell {
        padding: 0.86rem 0.78rem;
        border-radius: 24px;
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-section::before {
        width: min(460px, 82vw);
        top: -120px;
        right: -170px;
    }

    .hero-section::after {
        width: 260px;
        height: 140px;
        inset: 14% -30px auto auto;
        filter: blur(20px);
    }

    .hero-grid {
        gap: 0.85rem;
    }

    .hero-content {
        padding: 0;
        border: 0;
        background: none;
        box-shadow: none;
    }

    .hero-copy h1 {
        font-size: clamp(1.85rem, 9.2vw, 2.4rem);
        line-height: 1.02;
        max-width: 13ch;
        letter-spacing: -0.01em;
        margin-bottom: 0.38rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.56;
        max-width: 52ch;
    }

    .hero-mobile-summary {
        font-size: 0.86rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.78rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-actions .btn-primary {
        grid-column: 1 / -1;
        min-height: 52px;
        font-size: 0.96rem;
        box-shadow: 0 16px 28px rgba(169, 80, 103, 0.35);
        letter-spacing: 0.01em;
    }

    .hero-actions .btn-secondary {
        display: inline-flex;
        background: rgba(255, 255, 255, 0.9);
    }

    .hero-mobile-features {
        gap: 0.46rem;
        margin-top: 0.62rem;
    }

    .hero-mobile-feature {
        min-height: 120px;
        padding: 0.56rem 0.45rem;
        border-radius: 14px;
        gap: 0.3rem;
    }

    .hero-mobile-feature-icon {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: linear-gradient(145deg, rgba(169, 80, 103, 0.14), rgba(188, 111, 132, 0.18));
        color: #8f4358;
    }

    .hero-mobile-feature-icon svg {
        width: 1.1rem;
        height: 1.1rem;
        fill: currentColor;
    }

    .hero-mobile-feature strong {
        font-size: 0.78rem;
        line-height: 1.18;
        color: #49383f;
        font-weight: 700;
    }

    .hero-mobile-feature p {
        font-size: 0.7rem;
        line-height: 1.26;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        margin-top: 0.9rem;
    }

    .hero-metrics strong {
        font-size: 0.8rem;
    }

    .hero-metrics p {
        font-size: 0.75rem;
    }

    .eyebrow {
        margin-bottom: 0.5rem;
        font-size: 0.76rem;
    }

    .hero-media {
        max-width: min(420px, 100%);
        margin-top: 0.18rem;
    }

    .hero-media img {
        border-radius: 22px;
        max-height: 360px;
        object-position: center 12%;
    }

    .hero-media::before {
        inset: -6px;
        border-radius: 28px;
    }

    .about-content {
        padding: 0.1rem 0.1rem 0;
    }

    .about-content p:first-of-type {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .about-signature {
        display: none;
    }

    .cards-grid,
    .team-grid,
    .differentials-grid,
    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .card,
    .team-card,
    .differential-item,
    .info-card {
        border-radius: 14px;
    }

    .card {
        padding: 0.88rem 0.72rem;
    }

    .card h3 {
        margin-bottom: 0.35rem;
        font-size: 0.98rem;
        line-height: 1.18;
    }

    .area-summary {
        font-size: 0.78rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .team-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .team-card img {
        height: 172px;
    }

    .team-content {
        padding: 0.78rem 0.7rem 0.84rem;
    }

    .team-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.26rem;
    }

    .team-role,
    .team-reg {
        font-size: 0.74rem;
        margin-bottom: 0.22rem;
    }

    .team-content p:last-child {
        font-size: 0.76rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .differential-item {
        padding: 0.84rem 0.72rem;
        gap: 0.5rem;
    }

    .differential-body h3 {
        font-size: 0.92rem;
        margin-bottom: 0.3rem;
    }

    .differential-body p {
        font-size: 0.76rem;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

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

    .info-card {
        padding: 0.86rem 0.72rem;
        gap: 0.35rem;
    }

    .info-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
    }

    .info-card p {
        font-size: 0.74rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 1rem;
    }

    .site-footer {
        margin-top: 1.8rem;
    }

    .footer-grid {
        gap: 1.2rem;
        padding: 2rem 0 1.6rem;
    }

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

    .brand-logo {
        width: clamp(148px, 58vw, 220px);
        max-height: 56px;
    }

    .footer-logo {
        width: clamp(150px, 56vw, 220px);
        max-height: 66px;
    }

    .mobile-cta-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
        background: rgba(248, 243, 246, 0.96);
        border-top: 1px solid rgba(143, 67, 88, 0.2);
        backdrop-filter: blur(8px);
    }
}

@media (max-width: 420px) {
    body {
        font-size: 14px;
    }

    .header-inner {
        padding: 0.5rem;
        min-height: 62px;
    }

    .main-nav {
        left: 0.5rem;
        right: 0.5rem;
    }

    .brand {
        min-height: 48px;
        padding: 0.24rem 0.4rem;
    }

    .brand-logo {
        width: clamp(132px, 60vw, 185px);
        max-height: 50px;
    }

    .menu-toggle {
        padding-inline: 0.65rem;
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.65rem, 8.1vw, 2rem);
        max-width: 12ch;
    }

    .hero-mobile-summary {
        font-size: 0.8rem;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

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

    .hero-mobile-feature {
        min-height: 108px;
        padding: 0.5rem 0.35rem;
        text-align: center;
        justify-items: center;
    }

    .hero-mobile-feature strong {
        font-size: 0.68rem;
    }

    .hero-mobile-feature p {
        display: none;
    }

    .hero-content {
        padding: 0.82rem 0.74rem 0.88rem;
    }

    .mobile-cta-bar {
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }
}

/* Layout unificado inspirado no modelo enviado */
body {
    background:
        radial-gradient(1200px 620px at 100% 0%, rgba(193, 119, 142, 0.22), rgba(193, 119, 142, 0)),
        linear-gradient(180deg, #f8f1f4 0%, #f4e9ee 100%);
}

.site-header {
    background: linear-gradient(180deg, rgba(248, 243, 246, 0.96) 0%, rgba(248, 243, 246, 0.72) 76%, rgba(248, 243, 246, 0) 100%);
}

.header-inner {
    border-radius: 24px;
    min-height: 92px;
}

.brand {
    min-height: 70px;
}

.brand-logo {
    width: clamp(220px, 21vw, 340px);
    max-height: 86px;
}

.hero-section {
    padding-top: clamp(2.3rem, 4vw, 3.8rem);
}

.hero-grid {
    gap: clamp(1.2rem, 3vw, 2.6rem);
}

.hero-content {
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(143, 67, 88, 0.14);
    border-radius: 22px;
    padding: clamp(1rem, 2vw, 1.6rem);
    box-shadow: 0 18px 34px rgba(102, 66, 77, 0.12);
}

.hero-copy h1 {
    color: #7f2647;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.04;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    color: #5e4a52;
}

.hero-actions .btn-primary {
    padding-inline: 1.6rem;
}

.hero-media img {
    max-height: 540px;
    object-position: center 10%;
}

.about-section .about-grid {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(143, 67, 88, 0.14);
    border-radius: 24px;
    padding: clamp(0.8rem, 2vw, 1.2rem);
}

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

.card {
    border-radius: 16px;
    padding: 1rem;
}

.card h3 {
    margin-bottom: 0.45rem;
}

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

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

.article-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(143, 67, 88, 0.16);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(102, 66, 77, 0.1);
}

.article-card-cover {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: contain;
    background: rgba(246, 237, 241, 0.9);
    display: block;
    margin-inline: auto;
}

.article-card-body {
    padding: 0.9rem;
    display: grid;
    gap: 0.5rem;
}

.article-card-body h2,
.article-card-body h3 {
    margin: 0;
    font-size: 1.2rem;
}

.article-card-body p {
    margin: 0;
    font-size: 0.92rem;
}

.article-meta {
    font-size: 0.78rem;
    color: #735963;
}

.legal-content-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.articles-hero {
    padding-top: 2rem;
}

.articles-hero-subtitle {
    max-width: 54ch;
    font-size: 1.05rem;
}

.tag-seo-hidden {
    display: none;
    font-size: 8px;
    color: transparent;
}

.articles-filter-feedback {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.65rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(143, 67, 88, 0.18);
    font-size: 0.9rem;
    color: #5b464e;
}

.articles-filter-feedback a {
    color: #8f4358;
    font-weight: 700;
    text-decoration: underline;
}

.articles-tags-section {
    padding-top: 0.2rem;
}

.tags-heading {
    margin: 0 0 0.9rem;
    font-size: 1.2rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #3d3136;
}

.tags-grid-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.tag-box {
    display: block;
    border: 1px solid rgba(189, 184, 139, 0.85);
    border-radius: 4px;
    padding: 0.75rem 0.95rem;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    color: #2f2a1c;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.7);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tag-box:hover {
    transform: translateY(-2px);
    border-color: rgba(143, 67, 88, 0.55);
    box-shadow: 0 10px 20px rgba(109, 79, 89, 0.12);
}

.tag-box.is-active {
    border-color: rgba(143, 67, 88, 0.75);
    background: rgba(246, 227, 235, 0.85);
    color: #6d2941;
}

.article-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.article-tag-link {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(143, 67, 88, 0.24);
    padding: 0.24rem 0.6rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #7d3450;
    background: rgba(255, 255, 255, 0.9);
}

.article-tag-link:hover {
    background: rgba(250, 235, 241, 0.95);
    border-color: rgba(143, 67, 88, 0.4);
}

.article-layout {
    max-width: 920px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(143, 67, 88, 0.16);
    border-radius: 22px;
    padding: clamp(1rem, 3vw, 2rem);
}

.article-back-link {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: #7c3550;
    font-weight: 600;
}

.article-cover {
    margin: 0.9rem 0 1rem;
    border-radius: 16px;
    border: 1px solid rgba(143, 67, 88, 0.18);
    max-height: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: rgba(246, 237, 241, 0.9);
}

.article-excerpt {
    font-size: 1.02rem;
    font-weight: 600;
    color: #4d3d43;
    margin-bottom: 0.9rem;
}

.article-content {
    white-space: normal;
    color: #53454b;
    line-height: 1.7;
}

.article-content > * + * {
    margin-top: 1rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #3a2b31;
    line-height: 1.15;
    margin-top: 1.35rem;
    margin-bottom: 0.5rem;
}

.article-content h2 {
    font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.article-content h3 {
    font-size: clamp(1.28rem, 2.1vw, 1.62rem);
}

.article-content h4 {
    font-size: clamp(1.12rem, 1.8vw, 1.34rem);
}

.article-content p,
.article-content li {
    font-size: 1.03rem;
    line-height: 1.78;
    color: #52454b;
}

.article-content ul,
.article-content ol {
    margin: 0.2rem 0 0.9rem;
    padding-left: 1.3rem;
}

.article-content a {
    color: #8f4358;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content blockquote {
    margin: 1.1rem 0;
    padding: 0.9rem 1rem;
    border-left: 3px solid rgba(143, 67, 88, 0.45);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 10px;
    color: #55474d;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    border: 1px solid rgba(143, 67, 88, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.article-content th,
.article-content td {
    border: 1px solid rgba(143, 67, 88, 0.16);
    padding: 0.58rem 0.62rem;
    text-align: left;
    font-size: 0.95rem;
}

.article-not-found .container {
    max-width: 760px;
}

.city-landing-hero {
    padding-top: 2.3rem;
}

.city-landing-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.2rem;
    align-items: center;
}

.city-landing-copy {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(143, 67, 88, 0.17);
    border-radius: 22px;
    padding: clamp(1rem, 2.2vw, 1.8rem);
    box-shadow: 0 18px 34px rgba(102, 66, 77, 0.12);
    display: grid;
    gap: 0.75rem;
}

.city-landing-copy h1 {
    font-size: clamp(2rem, 5.2vw, 3.3rem);
    color: #7f2647;
}

.city-landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
}

.city-landing-media img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    object-position: center 16%;
    border-radius: 22px;
    border: 1px solid rgba(143, 67, 88, 0.2);
    box-shadow: 0 18px 30px rgba(86, 56, 66, 0.14);
}

.city-landing-cta {
    padding-top: 0;
}

.city-landing-cta-box {
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 238, 243, 0.88) 100%);
    border: 1px solid rgba(143, 67, 88, 0.2);
    border-radius: 22px;
    padding: clamp(1rem, 2.5vw, 1.8rem);
    display: grid;
    gap: 0.8rem;
    justify-items: start;
}

@media (max-width: 1080px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .tags-grid-visual {
        grid-template-columns: 1fr;
    }

    .city-landing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .header-inner {
        min-height: 76px;
        padding: 0.5rem;
    }

    .brand-logo {
        width: clamp(140px, 52vw, 220px);
        max-height: 58px;
    }

    .hero-content {
        padding: 0.8rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.95rem, 8.6vw, 2.5rem);
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .hero-section .hero-grid {
        position: relative;
        display: block;
        min-height: 560px;
        border-radius: 22px;
        overflow: hidden;
        border: 1px solid rgba(143, 67, 88, 0.18);
        box-shadow: 0 18px 34px rgba(99, 64, 75, 0.14);
        background: #f5eaef;
    }

    .hero-section .hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        z-index: 0;
    }

    .hero-section .hero-media::before {
        display: none;
    }

    .hero-section .hero-media img {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
        object-fit: cover;
        object-position: center top;
        opacity: 0.96;
        filter: saturate(0.95);
        border: 0;
        box-shadow: none;
    }

    .hero-section .hero-content {
        position: relative;
        z-index: 1;
        min-height: 560px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1rem;
        background: linear-gradient(
            180deg,
            rgba(248, 241, 244, 0.05) 0%,
            rgba(248, 241, 244, 0.12) 26%,
            rgba(248, 241, 244, 0.7) 56%,
            rgba(248, 241, 244, 0.94) 76%,
            rgba(248, 241, 244, 0.99) 100%
        );
    }

    .hero-section .hero-copy h1 {
        max-width: 10ch;
    }

    .hero-section .hero-subtitle {
        max-width: 34ch;
        font-size: 0.96rem;
    }

    .hero-section .hero-metrics {
        display: none;
    }

    .hero-section .hero-highlights {
        margin-top: 0.8rem;
        gap: 0.45rem;
    }

    .hero-section .hero-highlights span {
        padding: 0.42rem 0.58rem;
        font-size: 0.72rem;
    }

    .cards-grid,
    .team-grid,
    .differentials-grid,
    .info-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .mobile-cta-bar {
        display: grid;
    }
}

/* Hero side-by-side com texto em sobreposição (referência visual) */
@media (min-width: 901px) {
    .hero-section .hero-grid {
        position: relative;
        display: block;
        min-height: clamp(450px, 38vw, 560px);
        border-radius: 30px;
        overflow: hidden;
        border: 1px solid rgba(143, 67, 88, 0.18);
        box-shadow: 0 26px 56px rgba(96, 63, 74, 0.16);
        background: linear-gradient(180deg, #f7edf2 0%, #f4e6ec 100%);
    }

    .hero-section .hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        z-index: 0;
    }

    .hero-section .hero-media::before {
        display: none;
    }

    .hero-section .hero-media img {
        width: 100%;
        height: 100%;
        max-height: none;
        border: 0;
        border-radius: 0;
        object-fit: contain;
        object-position: right center;
        box-shadow: none;
    }

    .hero-section .hero-content {
        position: relative;
        z-index: 2;
        width: min(58%, 760px);
        min-height: 100%;
        margin: 0;
        padding: clamp(1.5rem, 3vw, 2.3rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background:
            linear-gradient(90deg, rgba(248, 241, 244, 0.96) 0%, rgba(248, 241, 244, 0.93) 56%, rgba(248, 241, 244, 0.62) 78%, rgba(248, 241, 244, 0.12) 100%);
    }

    .hero-section .hero-copy h1 {
        max-width: 12.5ch;
        font-size: clamp(1.95rem, 3.45vw, 3rem);
        letter-spacing: -0.01em;
    }

    .hero-section .hero-subtitle {
        max-width: 46ch;
        font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    }

    .hero-section .hero-actions {
        margin-top: 1rem;
    }

    .hero-section .hero-highlights {
        margin-top: 0.95rem;
        gap: 0.45rem;
    }

    .hero-section .hero-highlights span {
        font-size: 0.73rem;
        padding: 0.4rem 0.65rem;
    }

    .hero-section .hero-metrics {
        margin-top: 0.9rem;
        gap: 0.5rem;
    }

    .hero-section .hero-metrics article {
        padding: 0.48rem 0.55rem;
    }
}

/* Mantém 2 cards por linha no mobile, como solicitado */
@media (max-width: 720px) {
    .hero-section .hero-grid {
        min-height: clamp(430px, 68vh, 560px);
        border-radius: 20px;
    }

    .hero-section .hero-media img {
        object-fit: contain;
        object-position: right center;
    }

    .hero-section .hero-content {
        min-height: clamp(430px, 68vh, 560px);
        justify-content: space-between;
        padding: 0.82rem;
        background: linear-gradient(
            90deg,
            rgba(248, 241, 244, 0.92) 0%,
            rgba(248, 241, 244, 0.84) 52%,
            rgba(248, 241, 244, 0.52) 76%,
            rgba(248, 241, 244, 0.12) 100%
        );
    }

    .hero-section .eyebrow {
        margin-bottom: 0.35rem;
        font-size: 0.64rem;
        letter-spacing: 0.11em;
    }

    .hero-section .hero-copy h1 {
        font-size: clamp(1.58rem, 6.8vw, 2.1rem);
        line-height: 0.98;
        max-width: 9.8ch;
        margin-bottom: 0.4rem;
    }

    .hero-section .hero-service-scope {
        margin-top: 0.2rem;
        font-size: 0.72rem;
        line-height: 1.26;
        max-width: 29ch;
    }

    .hero-section .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.35rem;
        margin-top: 0.6rem;
    }

    .hero-section .hero-metrics article {
        padding: 0.42rem 0.46rem;
        border-radius: 11px;
        background: rgba(255, 255, 255, 0.78);
    }

    .hero-section .hero-metrics strong {
        font-size: 0.66rem;
        line-height: 1.2;
        margin-bottom: 0.12rem;
    }

    .hero-section .hero-metrics p {
        font-size: 0.57rem;
        line-height: 1.2;
        margin: 0;
    }

    .cards-grid,
    .team-grid,
    .differentials-grid,
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 420px) {
    .hero-section .hero-content {
        padding: 0.72rem;
    }

    .hero-section .hero-copy h1 {
        font-size: clamp(1.4rem, 7.2vw, 1.86rem);
        max-width: 9.2ch;
    }

    .hero-section .hero-service-scope {
        font-size: 0.66rem;
        max-width: 28ch;
    }

    .hero-section .hero-metrics article {
        padding: 0.36rem 0.4rem;
    }

    .hero-section .hero-metrics strong {
        font-size: 0.62rem;
    }

    .hero-section .hero-metrics p {
        font-size: 0.54rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
