:root {
    --bg: #fbf7f8;
    --bg-soft: #f7eef1;
    --white: #ffffff;
    --text: #5b4852;
    --text-soft: #7b6770;
    --heading: #765764;
    --gold: #c8a45d;
    --gold-soft: #eadab4;
    --rose: #d7b3be;
    --rose-deep: #b68a98;
    --line: rgba(200, 164, 93, 0.18);
    --shadow: 0 16px 40px rgba(128, 95, 109, 0.10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(215,179,190,.16), transparent 22%),
        radial-gradient(circle at bottom left, rgba(200,164,93,.08), transparent 18%),
        var(--bg);
}

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

h1, h2, h3, h4, p {
    margin-top: 0;
}

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

.container-lower {
    width: min(1380px, calc(100% - 2.5rem));
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 248, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(200, 164, 93, 0.12);
}

.nav {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(200,164,93,.18);
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,238,241,.88));
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.brand-text strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--heading);
    line-height: 1;
}

.brand-text span {
    display: block;
    margin-top: .2rem;
    font-size: .82rem;
    color: var(--text-soft);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.15rem;
    flex-wrap: wrap;
    font-size: .93rem;
    color: #715863;
}

.nav-links a {
    position: relative;
    padding: .35rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.2rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: .22s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    flex-wrap: wrap;
    min-width: 0;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(200,164,93,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--heading);
}

.nav-mobile-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-width: 0;
    border-top: 1px solid rgba(200,164,93,.12);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .9rem 1.35rem;
    border: 1px solid transparent;
    font-size: .94rem;
    font-weight: 600;
    cursor: pointer;
    transition: .24s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #dcc37d);
    color: #fff;
    box-shadow: 0 12px 22px rgba(200,164,93,.22);
}

.btn-case-primary {
    background: linear-gradient(135deg, #c8a45d, #b88d3b);
    color: #fff;
    border-color: rgba(200, 164, 93, 0.32);
    box-shadow: 0 14px 28px rgba(200,164,93,.28);
}

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

.btn-primary:hover,
.btn-case-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.btn-case-primary:hover {
    box-shadow: 0 18px 34px rgba(200,164,93,.34);
}

main {
    min-height: 100vh;
}


.hero {
    padding: 2.4rem 0 3.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: stretch;
}

.hero-copy {
    padding: .2rem 0 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(215,179,190,.18);
    color: var(--rose-deep);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.hero-copy h1 {
    max-width: 12ch;
    margin-bottom: 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: .95;
    letter-spacing: -.03em;
    color: var(--heading);
}

.hero-lead {
    max-width: 62ch;
    margin-bottom: 1.6rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-soft);
}

.hero-actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

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

.highlight-card {
    padding: 1.1rem 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(200,164,93,.14);
    box-shadow: var(--shadow);
}

.highlight-card strong {
    display: block;
    margin-bottom: .45rem;
    color: var(--heading);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 600;
}

.highlight-card span {
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.6;
}

.hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    padding-top: 3.2rem;
}

.panel-card {
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(200,164,93,.16);
    box-shadow: var(--shadow);
}

.panel-main {
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,238,241,.94));
}

.panel-soft {
    background: rgba(255,255,255,.78);
}

.panel-tag {
    display: inline-block;
    margin-bottom: .9rem;
    padding: .4rem .7rem;
    border-radius: 999px;
    background: rgba(200,164,93,.12);
    color: #9e7a31;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.panel-card h2,
.panel-card h3 {
    margin-bottom: .8rem;
    font-family: "Cormorant Garamond", serif;
    color: var(--heading);
    line-height: 1.05;
}

.panel-card h2 {
    font-size: 2rem;
}

.panel-card h3 {
    font-size: 1.55rem;
}

.panel-card p {
    margin-bottom: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 980px) {
    .nav {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }

    .nav-links,
    .nav-actions {
        justify-content: flex-start;
    }

    .nav-actions {
        flex-wrap: wrap;
    }
}



.section {
    padding: 4.5rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(247,238,241,.65));
}

.section-kicker {
    display: inline-block;
    margin-bottom: .8rem;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

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

.section-heading h2,
.section-intro h2 {
    margin-bottom: .9rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.02;
    color: var(--heading);
}

.section-heading p,
.about-copy p {
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 2rem;
    align-items: center;
}

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

.about-photo-card {
    padding: .8rem;
    border-radius: 22px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(200,164,93,.14);
    box-shadow: var(--shadow);
}

.about-photo-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.about-photo-card h3 {
    margin: .8rem 0 .2rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    color: var(--heading);
}

.about-photo-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: .92rem;
    line-height: 1.5;
}

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

.info-card {
    padding: 1.05rem 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(200,164,93,.14);
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: .45rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.28rem;
    line-height: 1.08;
    color: var(--heading);
}

.info-card p {
    margin-bottom: 0;
    color: var(--text-soft);
    line-height: 1.5;
    font-size: .93rem;
}

.info-card-accent {
    background: linear-gradient(180deg, rgba(215,179,190,.18), rgba(255,255,255,.88));
}

.area-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212, 180, 108, 0.10);
    color: #c8a45d;
}

.area-icon svg {
    width: 50px;
    height: 50px;
    stroke: currentColor;
}




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

.reason-box {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(200,164,93,.12);
}

.reason-box strong {
    display: block;
    margin-bottom: .6rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: var(--heading);
}

.reason-box p {
    margin-bottom: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .about-grid,
    .cards-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.about-photos {
    grid-template-columns: 1fr 1fr;
}
.page-shell {
    padding: 0 0 4rem;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 1.5rem;
    align-items: start;
}

.page-main {
    min-width: 0;
}

.page-ads {
    position: sticky;
    top: 110px;
}

.ads-card {
    padding: .35rem;
    border-radius: 0;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(200,164,93,.14);
    box-shadow: var(--shadow);
}

.ads-label {
    display: inline-block;
    margin-bottom: .35rem;
    color: var(--gold);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ads-placeholder {
    min-height: 620px;
    border-radius: 0;
    border: 1px dashed rgba(200,164,93,.35);
    background:
        linear-gradient(180deg, rgba(247,238,241,.85), rgba(255,255,255,.95));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .5rem;
}

.ads-placeholder p {
    margin-bottom: .5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    color: var(--heading);
}

.ads-placeholder span {
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.6;
}

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

    .page-ads {
        position: static;
    }

    .ads-placeholder {
        min-height: 220px;
    }
}


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

    .topbar {
        position: static;
    }

    .nav {
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: .75rem;
        min-height: auto;
        padding: .65rem 0;
    }

    .brand {
        gap: .7rem;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

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

    .brand-text span {
        font-size: .72rem;
    }

    .nav-toggle {
        display: inline-block;
        justify-self: end;
    }

    .nav-mobile-panel {
        display: grid;
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height .28s ease, opacity .22s ease, transform .22s ease, padding-top .22s ease;
    }

    .nav-mobile-panel.is-open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        padding-top: .9rem;
    }

    .nav-mobile-panel .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .85rem;
    }

    .nav-mobile-panel .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        width: 100%;
        margin-top: .9rem;
    }

    .nav-mobile-panel .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-mobile-panel.is-open {
        display: grid;
        gap: .9rem;
        padding-top: .9rem;
    }

    .nav-mobile-panel .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .85rem;
    }

    .nav-mobile-panel .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        width: 100%;
    }

    .nav-mobile-panel .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn {
        padding: .85rem 1.15rem;
    }

    .page-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .page-ads {
        position: static;
        order: 2;
    }

    .hero {
        padding: 2rem 0;
    }

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

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.5rem, 13vw, 4rem);
        line-height: .98;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-highlights,
    .about-grid,
    .cards-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .panel-card,
    .info-card,
    .reason-box,
    .highlight-card {
        padding: 1.1rem;
    }

    .ads-card {
        padding: 0;
        border-radius: 0;
    }

    .ads-placeholder {
        min-height: 180px;
        padding: .35rem;
        border-radius: 0;
    }
    .about-photos {
    grid-template-columns: 1fr;
}

}

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

.cta-box {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(247,238,241,.92));
    border: 1px solid rgba(200,164,93,.14);
    box-shadow: var(--shadow);
}

.cta-copy h2 {
    margin-bottom: .9rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    color: var(--heading);
}

.cta-copy p {
    margin-bottom: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.contact-section {
    margin-top: 1rem;
}

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

.contact-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(200,164,93,.14);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    margin-bottom: .7rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: var(--heading);
}

.contact-card p {
    margin-bottom: .75rem;
    color: var(--text);
    line-height: 1.7;
}

.contact-card span {
    color: var(--text-soft);
    font-size: .92rem;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.7rem 1.6rem;
}

.contact-icon {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(212, 180, 108, 0.10);
    color: #c8a45d;
    margin-bottom: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon svg {
    width: 44px;
    height: 44px;
}


.contact-card p {
    margin-bottom: .55rem;
    font-weight: 500;
}

.contact-card span {
    display: block;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-btn {
    margin-top: auto;
}

.contact-actions-inline {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    margin-top: auto;
    width: 100%;
    flex-wrap: wrap;
}

.contact-actions-inline .contact-btn {
    margin-top: 0;
}




.contact-btn {
    margin-top: auto;
    background: rgba(200, 164, 93, 0.12);
    border: 1px solid rgba(200, 164, 93, 0.32);
    color: var(--heading);
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact-card > .contact-btn {
    align-self: center;
}


.contact-btn:hover {
    background: rgba(200, 164, 93, 0.20);
    border-color: rgba(200, 164, 93, 0.42);
    color: var(--heading);
    transform: translateY(-1px);
}












.site-footer {
    margin-top: 3rem;
    padding: 1.4rem 0 .8rem;
    border-top: 1px solid rgba(200, 164, 93, 0.14);
    background: transparent;
}

.footer-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.footer-mini-brand .brand-logo {
    height: 58px;
    width: auto;
    display: block;
}

.footer-nav,
.footer-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-nav {
    justify-content: center;
}

.footer-links {
    justify-content: flex-end;
}

.footer-nav a,
.footer-links a,
.footer-bottom p {
    color: var(--text-soft);
    font-size: .98rem;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-links a:hover {
    color: var(--heading);
}

.footer-bottom {
    padding-top: .9rem;
    border-top: 1px solid rgba(200, 164, 93, 0.12);
}

.footer-bottom p {
    margin: 0;
}

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

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












@media (max-width: 980px) {
    .cta-box,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.user-greeting{
  font-size: 0.95rem;
  color: #5c4a52;
  margin-right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.user-greeting-name{
  font-weight: 700;
  font-style: italic;
  color: #4a3540;
}

.topbar .nav-links {
    min-width: 0;
}

.topbar .nav-actions .btn {
    padding: .78rem 1.05rem;
    font-size: .9rem;
}

@media (max-width: 1220px) {
    .nav-mobile-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .topbar .nav-links {
        justify-content: flex-start;
    }

    .topbar .nav-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
.brand-logo {
    height: 76px;
    width: auto;
    display: block;
}



@media (min-width: 1024px) {
    .brand {
        position: relative;
        z-index: 5;
    }

    .brand-logo {
        height: 76px;
        position: relative;
        left: -60px;
    }
}

@media (max-width: 768px) {
    .contact-actions-inline {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Modal profesionales ===== */

.profile-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;

    overflow-y: auto;   /* 🔥 clave */
    padding: 20px;      /* evita que toque bordes */
}

.profile-modal.is-open {
    display: flex;
}

.profile-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.65);
}

.profile-modal-dialog {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(204, 165, 97, 0.32);
    padding: 10px;
    max-height: 90vh;
}

.profile-modal-close {
    position: fixed;   /* 🔥 CAMBIO CLAVE */
    top: 16px;
    right: 16px;
    z-index: 2000;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.profile-modal-close:hover {
    color: #000;
}

.profile-modal-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

.profile-modal-photo {
    border-right: 1px solid rgba(204,165,97,0.25);
    border-radius: 14px 14px 14px 14px;
    overflow: hidden;
}

.profile-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-modal-body {
    padding: 36px;
    max-height: 70vh;
    overflow-y: auto;
}

.profile-modal-role {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #b89a55;
    margin-bottom: 6px;
}

.profile-modal-body h3 {
    margin: 0 0 16px 0;
    font-size: 28px;
}

.profile-modal-body p {
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {

    .profile-modal-content {
        grid-template-columns: 1fr;
    }

    .profile-modal-photo img {
        height: 260px;
    }

}

/* ===== Cards de profesionales clickeables ===== */

.about-photo-card.profile-trigger {
    position: relative;
    cursor: pointer;
    border: 1.5px solid rgba(204, 165, 97, 0.28);
    box-shadow: 0 12px 28px rgba(80, 58, 66, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-photo-card.profile-trigger:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 165, 97, 0.52);
    box-shadow: 0 18px 36px rgba(80, 58, 66, 0.14);
}

.about-photo-card.profile-trigger::after {
    content: "Ver perfil";
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: #8a6f78;
    border: 1px solid rgba(204, 165, 97, 0.35);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

.about-photo-card.profile-trigger:hover::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-photo-card.profile-trigger::after {
        content: "Tocá para ver más";
        opacity: 1;
        transform: none;
    }
}

/* Corrección header landing estática */
@media (min-width: 769px) {
    .topbar .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .topbar .nav-mobile-panel {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: center;
    }

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

    .topbar .nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-shrink: 0;
    }
}