/* ============================================================
   ULTRA CONECTA — header.css
   Scoped under .uc-header so nothing leaks into the page.
   Uses the shared tokens from page.css, with fallbacks so the
   header still renders correctly on its own.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@600;700&family=Onest:wght@400;500;700&family=Noto+Sans:wght@400&display=swap');

.uc-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--uc-white, #ffffff);
    border-bottom: 1px solid var(--uc-neutral-100, #f2f4f7);
    font-family: var(--uc-font-body, "Onest", system-ui, sans-serif);
}

.uc-header *,
.uc-header *::before,
.uc-header *::after {
    box-sizing: border-box;
}

.uc-header__inner {
    width: min(100% - 2rem, 1320px);
    margin-inline: auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 0.5rem;

}

/* Brand */
.uc-header__brand {
    display: inline-flex;
    align-items: center;
    flex: none;
}

.uc-header__logo {
    height: 55px;
    width: auto;
    display: block;
    padding-right: 18px;
}

.uc-header__logo--icon {
    display: none;
}

/* shown on mobile only */

/* Navigation */
/* .uc-header__nav { flex: 1; } */
.uc-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
}

.uc-nav__link {
    display: block;
    padding: .25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--uc-neutral-600, #475467);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

.uc-nav__link:hover {
    color: var(--uc-magenta-700, #a42f96);
}

.uc-nav__link:focus-visible {
    outline: 2px solid var(--uc-magenta-700, #a42f96);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Tools */
.uc-header__tools {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .25rem;
    justify-content: flex-end
}

.uc-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--uc-neutral-600, #475467);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.uc-icon-btn:hover {
    background: var(--uc-neutral-100, #f2f4f7);
}

.uc-icon-btn:focus-visible {
    outline: 2px solid var(--uc-magenta-700, #a42f96);
    outline-offset: 2px;
}

/* Search panel */
.uc-search {
    background: var(--uc-white, #ffffff);
    flex: 1;
	position: relative;
}

.uc-search[hidden] {
    display: none;
}

.uc-search__form {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .25rem;
    border-radius: 999px;
    border: 1px solid var(--uc-magenta-700, #a42f96);
    margin-left: 1rem;
}

.uc-search__icon {
    color: var(--uc-neutral-500, #667085);
    flex: none;
}

.uc-search__input {
    flex: 1;
    min-width: 0;
    height: 30px;
	    width: 100px;
    border: 0;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--uc-neutral-800, #1d2939);
    background: transparent;
}

.uc-search__close {
    flex: none;
    display: inline-flex;
    padding: .4rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--uc-neutral-500, #667085);
    cursor: pointer;
}

.uc-search__close:hover {
    background: var(--uc-neutral-100, #f2f4f7);
}

/* Avatar + dropdown */
.uc-avatar-menu {
    position: relative;
}

.uc-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--uc-lime-400, #93be2c);
    color: var(--uc-white, #ffffff);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.uc-avatar:focus-visible {
    outline: 2px solid var(--uc-magenta-700, #a42f96);
    outline-offset: 2px;
}

.uc-avatar-menu__dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + .5rem);
    min-width: 240px;
    background: var(--uc-white, #ffffff);
    border: 1px solid var(--uc-neutral-100, #f2f4f7);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, .12);
    padding: 1.25rem;
}

.uc-avatar-menu__dropdown[hidden] {
    display: none;
}

.uc-avatar-menu__name {
    margin: 0 0 .75rem;
    padding: 0 .25rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--uc-lime-400, #93be2c);
}

.uc-avatar-menu__divider {
    border: 0;
    border-top: 1px solid var(--uc-neutral-100, #f2f4f7);
    margin: .5rem 0;
}

.uc-avatar-menu__item {
    display: block;
    width: 100%;
    text-align: left;
    padding: .6rem .75rem;
    border: 0;
    border-radius: 7px;
    background: transparent;
    font-family: inherit;
    font-size: .95rem;
    color: var(--uc-neutral-700, #344054);
    text-decoration: none;
    cursor: pointer;
}

.uc-avatar-menu__item:hover {
    background: var(--uc-neutral-100, #f2f4f7);
}

/* Burger (hidden on desktop) */
.uc-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 15px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
}

.uc-header__burger-bar {
    height: 2px;
    width: 100%;
    background: var(--uc-neutral-800, #1d2939);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.uc-header__burger[aria-expanded="true"] .uc-header__burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.uc-header__burger[aria-expanded="true"] .uc-header__burger-bar:nth-child(2) {
    opacity: 0;
}

.uc-header__burger[aria-expanded="true"] .uc-header__burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* search results */
.uc-search-results {
	position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--uc-white);
    border: 1px solid var(--uc-border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: calc(5 * 64px);
	overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .12s ease, transform .12s ease, visibility 0s linear .12s;
}


.uc-search-result-item {
	display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: .5rem .5rem .5rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--uc-border);
    background: transparent;
    transition: background-color .12s ease;
}

.uc-search-result-text {
	display: flex;
    flex-direction: column;
    gap: .25rem;
    min-width: 0;
}

.uc-search-result-title {
    color: var(--uc-magenta-700);
	text-overflow: ellipsis;
font-size: 0.875rem;
font-weight: 700;
line-height: 1.42;
}

.uc-search-result-subtitle {
    color: var(--text-sub);
	font-size: 0.875rem;
font-weight: 400;
line-height: 1.66;
}

.uc-search-result-image {
	flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.uc-search:focus-within .uc-search-results {
	opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .12s ease, transform .12s ease;
}

/* ---- Mobile ---- */
@media (max-width: 960px) {
    .uc-header__burger {
        display: flex;
    }

    .uc-header__nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex: none;
        background: var(--uc-white, #ffffff);
        border-bottom: 1px solid var(--uc-neutral-100, #f2f4f7);
        box-shadow: 0 12px 24px rgba(16, 24, 40, .08);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }

    .uc-header__nav.is-open {
        max-height: 60vh;
    }

    .uc-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem 0;
    }

    .uc-nav__link {
        padding: .9rem clamp(1rem, 4vw, 2rem);
        border-bottom: 1px solid var(--uc-neutral-100, #f2f4f7);
    }

    .uc-nav a {
        padding: .9rem clamp(1rem, 4vw, 2rem) !important;
        border-bottom: 1px solid var(--uc-neutral-100, #f2f4f7) !important;
    }

    .uc-nav__item:last-child .uc-nav__link {
        border-bottom: 0;
    }

    /* order: logo | search + account | burger */
    .uc-header__brand {
        order: 0;
    }

    .uc-header__tools {
        order: 1;
        margin-left: auto;
    }

    .uc-header__burger {
        order: 2;
        margin-left: .25rem;
    }

    /* swap full wordmark for the compact icon */
    .uc-header__logo--full {
        display: none;
    }

    .uc-header__logo--icon {
        display: block;
        height: 40px;
    }
}

.uc-nav a {
    display: block;
    padding: .25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--uc-neutral-600, #475467);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}

.uc-nav a:hover {
    color: var(--uc-magenta-700, #a42f96);
}


/* ============================================================
   ULTRA CONECTA — footer.css
   Scoped under .uc-footer. Uses shared tokens with fallbacks.
   ============================================================ */

.uc-footer {
    font-family: var(--uc-font-body, "Onest", system-ui, sans-serif);
}

.uc-footer *,
.uc-footer *::before,
.uc-footer *::after {
    box-sizing: border-box;
}

/* Code / date bar */
.uc-footer__bar {
    background: var(--uc-neutral-600, #475467);
    /*   padding: .75rem 0; */
    padding: 1.45rem 0;
}

.uc-footer__bar-inner {
    width: min(100% - 2rem, 1320px);
    margin-inline: auto;
}

.uc-footer__code {
    display: inline-block;
    background: var(--uc-white, #ffffff);
    color: var(--uc-neutral-600, #475467);
    font-size: .75rem;
    letter-spacing: .03em;
    padding: .25rem .6rem;
    border-radius: 4px;
}

/* Main */

.uc-footer__main {
    background: var(--uc-neutral-800, #1d2939);
    color: rgba(255, 255, 255, .8);
    padding: clamp(2.5rem, 4.45vw, 4rem) 0;
}

.uc-footer__main-inner {
    width: min(100% - 2rem, 1312px);
	margin-inline: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: clamp(1.875rem, 5.69vw, 5.125rem)
}

.uc-footer__brand {
	align-self: center;
}

.uc-footer__brand img {
    height: 60px;
    width: auto;
}

.uc-footer__disclaimer {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.33;
    color: var(--uc-neutral-100);
	letter-spacing: 0.0333em;
}

.uc-footer__disclaimer a {
    color: var(--uc-neutral-100);
    text-decoration: none;
}

.uc-footer__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .6rem;
}

.uc-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;

    color: var(--uc-white, #ffffff);
    transition: background .15s ease;
}

.uc-footer__social-link:hover {
    background: rgba(255, 255, 255, .25);
}

.uc-footer__social-link:focus-visible {
    outline: 2px solid var(--uc-lime-200, #bbe06d);
    outline-offset: 2px;
}

/* Legal */
.uc-footer__legal {
    background: var(--uc-neutral-900, #101828);
    color: rgba(255, 255, 255, .7);
    padding: 1.5rem 0;
}

.uc-footer__legal-inner {
    width: min(100% - 2rem, 1312px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
	color: var(--uc-neutral-400);
}

.uc-footer__copy {
    margin: 0;
    font-size: .8rem;
}

.uc-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.uc-footer__links a {
    font-size: .8rem;
    color: var(--uc-neutral-400);
    text-decoration: none;
}

.uc-footer__links a:hover {
    color: var(--uc-white, #ffffff);
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
	.uc-cta-banner__title br{
		display: none;
	}
    .uc-footer__main-inner {
        grid-template-columns: 1fr;
    }

    .uc-footer__social {
        order: 3;
    }
}

@media (max-width: 600px) {
	.uc-cta-banner__inner {
		margin-bottom: 2rem;
	}
    .uc-footer__brand img {
        height: 90px;
    }
    .uc-footer__social-link {
        width: 48px;
        height: 48px;
    }
	
	.uc-footer__legal {
		padding: 2rem 0;
	}

    .uc-footer__legal-inner {
        flex-direction: column;
        align-items: flex-start;
		gap: 1.5rem;
    }

    .uc-footer__links {
        flex-direction: column;
        align-items: flex-start;
        margin-top: .5rem;
    }
}


/* ============================================================
   ULTRA CONECTA — Home.css
   Design tokens + base + page sections + modals.
   This is the always-loaded stylesheet; header.css and footer.css
   reuse these tokens (with hard-coded fallbacks so they also work alone).
   ============================================================ */

/* ---- Fonts ----
   Load these in <head> (or via wp_enqueue_style) for best results:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@600;700&family=Onest:wght@400;500;700&family=Noto+Sans:wght@400&display=swap" rel="stylesheet">
   For top Lighthouse, self-host these instead and keep display:swap. */



:root {
    /* Brand */
    --uc-lime-200: #bbe06d;
    --uc-lime-400: #93be2c;
    --uc-magenta-600: #bf3ab2;
    --uc-magenta-700: #a42f96;
    --uc-blue-900: #001965;

    /* Neutrals */
    --uc-white: #ffffff;
    --uc-neutral-25: #fcfcfd;
    --uc-neutral-100: #f2f4f7;
    --uc-neutral-300: #d0d5dd;
    --uc-neutral-400: #98a2b3;
    --uc-neutral-500: #667085;
    --uc-neutral-600: #475467;
    --uc-neutral-700: #344054;
    --uc-neutral-800: #1d2939;
    --uc-neutral-900: #101828;
    --uc-border: #dcdee5;
    --uc-danger: #d92d20;

    /* Type */
    --uc-font-display: "Zilla Slab", Georgia, serif;
    --uc-font-body: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
    --uc-font-meta: "Noto Sans", system-ui, sans-serif;

    /* Layout */
    --uc-container: 1200px;
    --uc-secondary-container: 768px;
    --uc-radius: 16px;
    --uc-gutter: clamp(1rem, 4vw, 4rem);
}

/* ---- Minimal reset (scoped to our components + safe globals) ---- */
html,
body {
    margin: 0;
    padding: 0;
}

.uc-main *,
.uc-main *::before,
.uc-main *::after,
.uc-modal *,
.uc-modal *::before,
.uc-modal *::after {
    box-sizing: border-box;
}

.uc-main {
    font-family: var(--uc-font-body);
    color: var(--uc-neutral-600);
}

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

.uc-main h1,
.uc-main h2,
.uc-main h3,
.uc-main p {
    margin: 0;
}

/* ---- Auth visibility toggle (driven by data-auth on <html>) ---- */
/* [data-auth="member"] .uc-auth--guest { display: none !important; }
[data-auth="guest"]  .uc-auth--member { display: none !important; } */
/* default before JS runs = treat as guest */
/* html:not([data-auth]) .uc-auth--member { display: none !important; } */

/* ---- Container ---- */
.uc-container {
    width: min(100% - 2rem, var(--uc-container));
    margin-inline: auto;
}

.uc-secondary-container {
    width: min(100% - 2rem, var(--uc-secondary-container));
    margin-inline: auto;
}

/* ---- Eyebrow + section headings ---- */
.uc-main .uc-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .18em;
    /*   font-size: .8rem; */
    font-weight: 500;
    color: var(--uc-neutral-500);
    margin-bottom: .5rem;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding-bottom: 10px;
    font-family: Onest;
}

/* ---- Buttons ---- */
.uc-btn {
    --_bg: transparent;
    --_fg: var(--uc-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--uc-font-body);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1;
    padding: .9rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--_bg);
    color: var(--_fg);
    cursor: pointer;
    text-decoration: none;
    transition: filter .15s ease, background .15s ease, color .15s ease;

}

.uc-btn:hover {
    filter: brightness(.95);
    background: var(--uc-lime-400);
    color: #FFFFFF;
}

.uc-btn--magenta {
    --_bg: var(--uc-magenta-600);
    --_fg: var(--uc-white);
}


/* added */
/* Hide lock icon by default */
.uc-btn__lock {
    display: none;
}

/* Error state */
.uc-btn.is-error {
    background-color: #EAECF0;
}

/* Show lock icon in error state */
.uc-btn.is-error .uc-btn__lock {
    display: inline-block;
}

.uc-btn--lime {
    --_bg: var(--uc-lime-400);
    --_fg: var(--uc-white);
}

.uc-btn--ghost-magenta {
    --_fg: var(--uc-magenta-700);
    /*   border-color: var(--uc-magenta-600); */
    border: 1.25px solid var(--uc-lime-400);
    background: transparent;
    margin-top: 24px;
}

.uc-btn--ghost-light {
    --_fg: var(--uc-white);
    border-color: rgba(255, 255, 255, .85);
    background: transparent;
}

.uc-btn--ghost-light:hover {
    background: rgba(255, 255, 255, .15);
    filter: none;
}

.uc-btn--block {
    width: 100%;
}

.uc-btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.uc-btn__lock {
    flex: none;
}

/* ============================================================
   HERO
   ============================================================ */
.uc-hero {
    display: grid;
    /*   min-height: clamp(360px, 42vw, 500px); */
    isolation: isolate;
}

.uc-hero__media,
.uc-hero__inner {
    grid-area: 1 / 1;
}

.uc-hero__media {
    overflow: hidden;
}

.uc-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;


}

.uc-hero__media::after {
    /* legibility gradient — decorative, not an image */
    content: "";
    position: absolute;
    inset: 0;

}

.uc-hero__media {
    position: relative;
}

.uc-hero__inner {
    position: relative;
    z-index: 1;
    align-self: center;
    width: min(100% - 2rem, var(--uc-container));
    margin-inline: auto;
    color: var(--uc-white);
    max-width: 100%;
}

.uc-hero__title {
    font-family: var(--uc-font-display);
    font-weight: 600;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1.02;
}

.uc-hero__text {
    margin-top: 1.25rem;
    max-width: 34ch;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.4;
    padding-top: 20px;
}

/* ============================================================
   PERSONA CARDS
   ============================================================ */
.uc-personas {
    /* 	padding: clamp(2.5rem, 5vw, 3.5rem) 0 0; */
    padding: 50px 0 10px 0;
}

.uc-personas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 5rem);
}

.uc-persona {
    border-radius: var(--uc-radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    color: var(--uc-white);
    /*   text-align: center; */
    /*   box-shadow: inset 0 4px 30px rgba(0, 0, 0, .12); */
    box-shadow: 0 4px 99px 0 rgba(0, 0, 0, 0.25) inset;
    display: flex;
    flex-direction: column;
    /*   align-items: center; */
    gap: 1rem;
}

.uc-persona--patient {
    background: rgba(191, 58, 178, .92);
}

.uc-persona--pro {
    background: rgba(151, 190, 84, .92);
}

.uc-persona__title {
    font-size: 1.5rem;
    font-weight: 700;
}

.uc-persona__text {
    font-size: .95rem;
    /* 	line-height: 1.5; */
    max-width: 36ch;
    /* 	text-align: left; */
    line-height: 22px;
    padding-bottom: 10px;
}

.uc-persona .uc-btn {
    width: 100%;
    max-width: 360px;
    padding: 10px 20px;
}

/* ============================================================
   INTRO WRAPPER (personas + areas share one background)
   ============================================================ */
.uc-intro {
    background: url(https://ultraconecta.ultragenyxdev.com/br/wp-content/uploads/Background-scaled.png) no-repeat center top;
    background-size: cover;
}

/* ============================================================
   THERAPEUTIC AREAS
   ============================================================ */
/* .uc-areas {
    padding: clamp(3rem, 6vw, 4.5rem) 0; */
/* 	padding-bottom: 56px; */
/* 	padding-bottom: 0;
} */

.uc-areas {
    padding: 50px 0 0 0;
    /*     margin-top: -30px; */
}

.uc-areas__heading {
    text-align: center;
    font-family: var(--uc-font-display);
    font-weight: 700;
    color: var(--uc-magenta-600);
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -2%;
}

.uc-area-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: start;
    /*   gap: clamp(1.5rem, 5vw, 4rem); */
    gap: clamp(1.5rem, 5vw, 0rem);
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.uc-area-row:last-child {
    margin-bottom: 0;
}

.uc-area-row--reverse .uc-area-row__media {
    order: 2;
}

.uc-area-row__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.uc-area-row--reverse .uc-area-row__media img {
    border-radius: var(--uc-radius);
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.uc-area-row__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--uc-lime-400);
    margin-bottom: .75rem;
    line-height: 32px;
}

.uc-area-row__desc {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 42ch;
    margin-bottom: 1.5rem;
    padding-top: 8px
}

/* ============================================================
   UPDATES
   ============================================================ */
.uc-updates {
    /* 	padding: clamp(3rem, 6vw, 4.5rem) 0;  */
    padding: 50px 0;
    background: var(--uc-white);
}

.uc-updates__heading {
    text-align: center;
    font-family: var(--uc-font-display);
    font-weight: 700;
    color: var(--uc-magenta-600);
    font-size: 2.4rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    padding-bottom: 16px;
}

.uc-updates__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2.5vw, 1.75rem);
    /* 	padding: 30px 90px 0 90px; */
}

.uc-card {
    border: 1px solid var(--uc-neutral-100);
    border-radius: 12px;
    overflow: hidden;
    background: var(--uc-white);
    /*   box-shadow: 0 8px 24px rgba(16, 24, 40, .06); */
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    flex-direction: column;
}

.uc-card__media {
    position: relative;
    aspect-ratio: 5 / 3;
}

.uc-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uc-card__lock {
    position: absolute;
    /*   top: .5rem;
  right: .5rem; */
    top: 0rem;
    right: 0rem;
    display: none;
    /* shown only when locked */
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    /*   border-radius: 8px; */
    /*   background: rgba(255, 255, 255, .85); */
    color: var(--uc-neutral-600);
    background: #FFFFFF99;
    backdrop-filter: blur(20px);
    border-bottom-left-radius: 8px;
}

.uc-card__body {
    padding: 1.50rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex: 1;
}

.uc-card__title {
    font-family: var(--uc-font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--uc-neutral-500);
    padding: 0 0 8px 0;
}

.uc-card__desc {
    font-size: .9rem;
    color: var(--uc-neutral-600);
    /* 	padding-bottom: 8px; */
}

.text-space {
    white-space: nowrap;
}

.uc-card__cta {
    align-self: flex-start;
    margin-top: auto;
    /* 	padding: .6rem 1.2rem; */
    font-size: .875rem;
    padding: 10px 20px;
}

.uc-card__cta .uc-btn__lock {
    display: none;
}

/* Locked appearance (guest) */
[data-auth="guest"] .media-lock img {
    filter: grayscale(0.1) brightness(.5);
}

[data-auth="guest"] .uc-card__lock {
    display: flex;
}

[data-auth="guest"] .uc-card__cta {
    /*   background: var(--uc-white);
  color: var(--uc-neutral-400);
  border-color: var(--uc-neutral-300); */
    background: var(--uc-lime-400);
    color: #FFFFFF;
}

[data-auth="guest"] .uc-card__cta .uc-btn__lock {
    display: inline-block;
}

[data-auth="guest"] .uc-card__cta:hover {
    filter: none;
}

/* ============================================================
   SIGN-UP BANNER
   ============================================================ */
.uc-cta-banner {

    background-image: url('https://ultraconecta.ultragenyxdev.com/br/wp-content/uploads/Cadastre-se-agoraBanner.png');
    color: var(--uc-white);
    padding: 3.75rem 0;
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.uc-cta-banner__inner {
	width: min(calc(100% - 4rem), 1270px);
	margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.uc-cta-banner__title {
    font-family: var(--uc-font-display);
    font-weight: 700;
    font-size: clamp(2rem, 2.777vw, 2.5rem);
    line-height: 1.2;
	letter-spacing: -0.02em;
}

.uc-cta-banner__text {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 52ch;
}

/* ============================================================
   MODALS
   ============================================================ */
.uc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.uc-modal[hidden] {
    display: none;
}

.uc-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 24, 40, .55);
}

.uc-modal__dialog {
    position: relative;
    width: min(100%, 460px);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    background: var(--uc-white);
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    font-family: var(--uc-font-body);
    color: var(--uc-neutral-600);
}

.uc-modal__close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    display: inline-flex;
    padding: .35rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--uc-neutral-500);
    cursor: pointer;
}

.uc-modal__close:hover {
    background: var(--uc-neutral-100);
}

.uc-modal__title {
    font-family: var(--uc-font-display);
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2rem);
    color: var(--uc-lime-400);
    letter-spacing: -.01em;
    margin-bottom: .75rem;
}

.uc-modal__lead {
    font-size: .95rem;
    /* 	line-height: 1.4;  */
    line-height: 18px;
    margin-bottom: 1.5rem;
    /* 	padding-bottom: 16px; */
}

/* ---- Form fields ---- */
.uc-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.uc-field {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
}

.uc-field__label {
    font-size: .8rem;
    color: var(--uc-neutral-500);
    margin-bottom: .35rem;
}

.uc-field__control {
    position: relative;
    display: flex;
    align-items: center;
}

.uc-field__input {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    font-family: var(--uc-font-body);
    font-size: 1rem;
    color: var(--uc-neutral-800);
    background: var(--uc-white);
    border: 1px solid var(--uc-border);
    border-radius: 10px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.uc-field__control .uc-field__input {
    padding-right: 3rem;
}

.uc-field__input:focus {
    border-color: var(--uc-magenta-600);
    box-shadow: 0 0 0 3px rgba(191, 58, 178, .12);
}

.uc-field__toggle {
    position: absolute;
    right: .65rem;
    display: inline-flex;
    padding: .25rem;
    border: 0;
    background: transparent;
    color: var(--uc-neutral-500);
    cursor: pointer;
}

.uc-eye--on {
    display: none;
}

.uc-field__toggle[aria-pressed="true"] .uc-eye--off {
    display: none;
}

.uc-field__toggle[aria-pressed="true"] .uc-eye--on {
    display: inline-block;
}

.uc-field__error {
    display: none;
    margin-top: .35rem;
    font-size: .85rem;
    /*   color: var(--uc-danger); */
    color: #DB2A1F;
}

.uc-field.is-error .uc-field__input {
    border-color: var(--uc-danger);
}

.uc-field.is-error .uc-field__error {
    display: block;
}

/* ---- Row: checkbox + link ---- */
.uc-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    /*    padding-top: 20px; */
    padding-bottom: 10px;
}

.uc-check {
    display: inline-flex;
    align-items: flex-start;
    gap: .6rem;
    cursor: pointer;
    font-size: .9rem;
    color: var(--uc-neutral-500);
}

.uc-check__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.uc-check__box {
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border: 1px solid var(--uc-border);
    border-radius: 5px;
    background: var(--uc-white);
    display: grid;
    place-items: center;
    transition: background .15s ease, border-color .15s ease;
}

.uc-check__input:checked+.uc-check__box {
    background: var(--uc-magenta-600);
    border-color: var(--uc-magenta-600);
}

.uc-check__input:checked+.uc-check__box::after {
    content: "";
    width: 6px;
    height: 10px;
    border: solid var(--uc-white);
    border-width: 0 2px 2px 0;
    transform: translateY(-1px) rotate(45deg);
}

.uc-check__input:focus-visible+.uc-check__box {
    box-shadow: 0 0 0 3px rgba(191, 58, 178, .25);
}

.uc-check--muted .uc-check__label {
    font-size: .8rem;
    color: var(--uc-neutral-400);
    line-height: 1.4;
}

.uc-link {
    border: 0;
    background: transparent;
    padding: 0;
    font-family: var(--uc-font-body);
    font-size: .9rem;
    font-weight: 500;
    color: var(--uc-magenta-700);
    cursor: pointer;
    text-decoration: none;
}

.uc-link:hover {
    text-decoration: underline;
}

.uc-form__note {
    font-size: .9rem;
    color: var(--uc-neutral-600);
    line-height: 1.5;
    padding-left: 8px;
}

.uc-form__note--center {
    text-align: center;
    color: var(--uc-neutral-600);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.uc-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1100;
    background: var(--uc-neutral-900);
    color: #fff;
    padding: .6rem 1rem;
    border-radius: 0 0 8px 0;
}

.uc-skip-link:focus {
    left: 0;
}

.uc-main :focus-visible,
.uc-modal :focus-visible {
    outline: 2px solid var(--uc-magenta-700);
    outline-offset: 2px;
    border-radius: 4px;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {

    .uc-area-row,
    .uc-area-row--reverse {
        grid-template-columns: 1fr;
    }

    .uc-area-row__media,
    .uc-area-row--reverse .uc-area-row__media {
        order: 0;
    }

    .uc-area-row__media img {
        margin-inline: auto;
        max-width: 420px;
        padding: 30px 0 0 0;
    }

    .uc-updates__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .uc-personas__grid {
        grid-template-columns: 1fr;
    }

    .uc-updates__grid {
        grid-template-columns: 1fr;
    }

    .uc-hero__text {
        max-width: none;
    }
}

/* ============================================================
   DYNAMIC MENU — DROPDOWN SUBMENUS  (WordPress wp_nav_menu)
   Targets WP structural classes (.menu-item-has-children,
   .sub-menu) so it works regardless of the dynamic item names.
   ============================================================ */

/* Top-level dynamic links match the static nav links */
.uc-nav>.menu-item>a {
    display: inline-block;
    padding: .25rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--uc-neutral-600, #475467);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color .15s ease;
}

.uc-nav>.menu-item>a:hover {
    color: var(--uc-magenta-700, #a42f96);
}

.uc-nav>.menu-item>a:focus-visible {
    outline: 2px solid var(--uc-magenta-700, #a42f96);
    outline-offset: 3px;
    border-radius: 3px;
}

.uc-nav>.menu-item.current-menu-item>a,
.uc-nav>.menu-item.current-menu-parent>a {
    color: var(--uc-neutral-900, #101828);
}

/* Parent items get a caret + are the dropdown anchor */
.uc-header .menu-item-has-children {
    position: relative;
}

.uc-header .menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
}

.uc-header .menu-item-has-children>a::after {
    content: "";
    width: .45em;
    height: .45em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -.18em;
    transition: transform .2s ease;
    flex: none;
}

.uc-header .menu-item-has-children.is-open>a::after {
    transform: rotate(-135deg);
    margin-top: .12em;
}

/* Submenu panel (desktop) */
.uc-header .sub-menu {
    list-style: none;
    margin: 0;
    padding: .4rem 0;
    position: absolute;
    top: calc(100% + .55rem);
    left: 0;
    min-width: 230px;
    background: var(--uc-white, #ffffff);
    border: 1px solid var(--uc-neutral-100, #f2f4f7);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(16, 24, 40, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    z-index: 60;
}

.uc-header .menu-item-has-children.is-open>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.uc-header .sub-menu li {
    margin: 0;
}

.uc-header .sub-menu a {
    display: block;
    padding: .6rem 1.15rem;
    font-size: .95rem;
    font-weight: 500;
    color: var(--uc-neutral-700, #344054);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 0;
    transition: background .12s ease, color .12s ease;
}

.uc-header .sub-menu a:hover {
    background: var(--uc-neutral-100, #f2f4f7);
    color: var(--uc-magenta-700, #a42f96);
}

/* Mobile (burger): submenu becomes an inline accordion */
@media (max-width: 960px) {
    .uc-header .menu-item-has-children {
        position: static;
    }

    .uc-nav>.menu-item>a {
        padding: .9rem clamp(1rem, 4vw, 2rem);
        border-bottom: 1px solid var(--uc-neutral-100, #f2f4f7);
    }

    .uc-header .menu-item-has-children>a {
        justify-content: space-between;
    }

    .uc-header .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        background: var(--uc-neutral-25, #fcfcfd);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
    }

    .uc-header .menu-item-has-children.is-open>.sub-menu {
        max-height: 600px;
    }

    .uc-header .sub-menu a {
        padding: .8rem 1rem .8rem clamp(2rem, 9vw, 3rem);
        border-bottom: 1px solid var(--uc-neutral-100, #f2f4f7);
    }
}


.uc-area-row__text {
    /*     padding-top: 16px; */
    /* 	    padding: 60px 16px 16px 90px; */
    padding: 60px 16px 16px 150px;
}





/* .uc-area-row.row-heading {
    padding: 50px 32px;
} */



.row-down {
    padding: 50px 16px 16px 16px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
    .uc-reg-grid {
        grid-template-columns: 1fr;
    }

    .uc-reg-checks {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 767px) {
    .uc-personas__grid {
        padding: 0 100px;
    }

    .uc-area-row {
        padding: 50px 32px 0;
    }

    .uc-area-row.uc-area-row--reverse {
        padding: 0 90px 30px;
    }

    .uc-updates__grid {
        padding: 30px 100px 0 100px;
    }

    .uc-hero__inner {
        padding: 0 100px 0 100px;
    }


    .uc-persona--patient {
        padding-left: 50px
    }

    .uc-persona--pro {
        padding-left: 50px
    }



    /* 	.uc-personas {
    margin: -32px 0 0 0;
} */

}

/* ---- */
.otp-two {
    padding: 30px 0;
}

.btn-ace {
    margin-top: 40px;
}

.white-space {
    white-space: nowrap;
}

.post-us-areas {
    padding: 50px 0 20px 0;
    /*     margin-top: -30px; */
}

.lock-card-cta {
    background: #FFFFFF !important;
    color: #98A2B3 !important;
    border: 1.25px solid #D0D5DD !important;
    gap: 15px;
}


.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}


/* Mobile */
/* @media (max-width: 768px) {
    .uc-hero__media img {
        object-fit: cover; 
    }
} */

@media (max-width: 768px) {
    .uc-hero {
        min-height: clamp(360px, 60vw, 500px);
    }

    .post-us-areas {
        padding: 50px 0 50px 0;
    }

    .uc-card__cta {
        margin-top: 10px;
    }

    .uc-persona__title {
        white-space: nowrap;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .uc-hero {
        display: flex;
        flex-direction: column;
    }

    .uc-hero__text {
        color: #475467;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.33;
        padding-top: 1rem;
    }


    .uc-hero__inner {
        position: static;
        width: 100%;
        margin: 0;
        padding: 2rem 1rem;
        color: #000000;

    }

    .uc-hero__title {
        font-weight: 700;
    }

    .uc-hero__media img {
        width: 100%;
        height: auto;
        display: block;
    }

    .uc-personas {
        padding: 50px 0 50px 0;
    }

    .uc-areas {
        padding: 50px 0 50px 0;
    }

    .uc-intro {
        background: #f9fafb;
    }

    .uc-personas {
        background: url("https://ultraconecta.ultragenyxdev.com/br/wp-content/uploads/Background-scaled.png") no-repeat center top;
        background-size: cover;
    }



    /* 	.row-down {
    text-align: center;
   } */
    .uc-area-row__text {
        /*     padding-top: 16px; */
        /* 	    text-align:center; */
        padding: 0;
    }

}


/* for forgot password pages */
.uc-repass-hero {
    background:
        linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
        url(https://ultraconecta.ultragenyxdev.com/br/wp-content/uploads/Background-scaled.png) center / cover no-repeat;
    text-align: center;
    /*   padding: clamp(2.5rem, 6vw, 4.5rem) 0; */
    padding: clamp(2.5rem, 6vw, 3.8rem) 0;
}

.uc-repass-hero__title {
    font-family: var(--uc-font-display);
    font-weight: 700;
    color: var(--uc-magenta-600);
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.uc-repass-hero__sub {
    margin-top: 1rem;
    color: var(--uc-neutral-700);
    text-transform: uppercase;
    font-size: clamp(0.9rem, 1.6vw, 1.25rem);
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding: 20px 0 0 0;
}

.uc-repass-section {
    padding: clamp(2rem, 4.167vw, 3.75rem) 0;
}

.uc-repass-form {
    width: 100%;
}

.uc-repass-flex {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.uc-repass-field {
    min-width: 0;
}

/* Visually-hidden label (kept for screen readers) */
.uc-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;
}

.uc-repass-input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    font-family: var(--uc-font-body);
    font-size: 1rem;
    color: var(--uc-neutral-800);
    background: var(--uc-white);
    border: 1px solid var(--uc-border);
    border-radius: 8px;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease;
}

.uc-repass-input::placeholder {
    color: var(--uc-neutral-500);
}

.uc-repass-input:focus {
    border-color: var(--uc-magenta-600);
    box-shadow: 0 0 0 3px rgba(191, 58, 178, 0.12);
}

.uc-repass-field .uc-error-msg {
    margin: 4px 0 0 1rem;
    font-size: 0.75rem;
    color: #db2a1f;
    font-family: var(--uc-font-meta);
    /*   visibility: hidden; */
}

.uc-repass-actions {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    display: flex;
    justify-content: center;
}

.uc-repass-actions .uc-btn {
    padding: 1.1rem 2.75rem;
}

/* pass confirm */
.uc-pass-confirm-section {
    padding: clamp(2rem, 4.167vw, 3.75rem) 0;
}

.uc-pass-confirm-block-title {
    font-weight: 700;
    color: var(--uc-magenta-700);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 1rem;
    padding: 0 0 16px 0;
}

.uc-pass-confirm-block-title--success {
    color: #1aa05a;
}

.uc-pass-confirm-centered .uc-pass-confirm-block-text {
    color: var(--uc-neutral-600);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 48ch;
    margin: 0 auto clamp(1rem, 2.083vw, 1.875rem);
    padding: 0 0 16px 0;
}

.white-space {
    white-space: nowrap;
}

.uc-pass-confirm-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* login error styles */

.uc-field__error,
.uc-checkbox-error {
    color: #ff2b2b;
    font-size: 13px;
    line-height: 1.3;
    margin: 8px 0 0;
}

.uc-field__input--error {
    border-color: #ff2b2b !important;
}
svg.uc-nav__lock {
    font-size: 16px !important;
    width: 25px;
    height: 18px;
    position: relative;
    top: 4px;
    margin-left: 10px;
}

/* contact form styles */
.wpcf7 input.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid {
    border: 1px solid #dc3545 !important;
}

