/* Main Theme CSS extracted from authors/index.php */
:root {
    --dark-blue: #19213A;
    --navy: #1A2E54;
    --blue: #0F3D74;
    --aqua: #50B6FF;
    --turquoise: #2DCCCC;
    --lavender: #6389D9;
    --pink: #EE3A6A;
    --coral: #F35E61;
    --gold: #D8BE75;
    --yellow: #FCE287;
    --gray: #F3F2F3;

    --bg: #050816;
    --panel: #0B1020;
    --panel-soft: #111827;
    --border: rgba(148, 163, 184, .45);
    --text: #F9FAFB;
    --muted: #9CA3AF;
    --radius-lg: 22px;
    --radius: 18px;
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, .7);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Inter, Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 0 0, rgba(80, 182, 255, .2), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(238, 58, 106, .22), transparent 55%),
        radial-gradient(circle at 50% 120%, rgba(99, 137, 217, .18), transparent 60%),
        #050816;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

a {
    color: var(--aqua);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

button {
    font: inherit;
    cursor: pointer
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 8px 0 4px;
}

.nav {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .55);
    background: radial-gradient(circle at 0 0, rgba(80, 182, 255, .22), rgba(15, 23, 42, .98));
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(5, 10, 23, .9);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    height: 30px;
    width: auto;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    color: #E5E7EB;
    white-space: nowrap;
}

.brand-sub {
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.nav-pill {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .6);
    background: rgba(15, 23, 42, .92);
    color: #E5E7EB;
    font-size: 11px;
    padding: .22rem .6rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
    text-decoration: none;
}

.nav-cta {
    border-radius: 999px;
    border: none;
    padding: .35rem .9rem;
    background: linear-gradient(135deg, var(--pink), var(--coral));
    color: #F9FAFB;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .4rem;
    box-shadow: 0 16px 40px rgba(243, 94, 97, .55);
    white-space: nowrap;
}

.nav-cta-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(5, 10, 23, .95);
    display: grid;
    place-items: center;
    font-size: 11px;
}

.nav-map-btn {
    padding: .26rem .6rem;
}

.nav-login {
    text-decoration: none;
}

.nav-register {
    text-decoration: none;
}

.nav-lang-select {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .6);
    background: #020617;
    color: #E5E7EB;
    font-size: 11px;
    padding: .22rem .6rem;
}

@media (max-width: 720px) {
    .nav {
        padding: 6px 10px;
        gap: 6px;
    }

    .brand-logo {
        height: 26px;
    }

    .brand-name {
        font-size: 11px;
        letter-spacing: .14em;
    }

    .brand-sub {
        font-size: 10px;
    }

    .nav-login,
    .nav-register {
        display: none;
    }

    .nav-cta {
        font-size: 11px;
        padding: .32rem .7rem;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .nav-left {
        flex: 1 1 100%;
    }

    .nav-right {
        flex: 1 1 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .brand-text {
        max-width: 70%;
        overflow: hidden;
    }

    .nav-map-btn {
        font-size: 10px;
        padding: .18rem .5rem;
    }

    .nav-cta {
        font-size: 10px;
        padding: .28rem .6rem;
    }

    .nav-pill,
    .nav-cta {
        white-space: normal;
        text-align: center;
    }
}

/* PAGE LAYOUT */
.page {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* HERO + BUSCADOR */
.hero-search {
    border-radius: var(--radius-lg);
    background: rgba(9, 13, 30, .96);
    border: 1px solid rgba(148, 163, 184, .4);
    box-shadow: var(--shadow-soft);
    padding: 12px 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
}

.hero-title {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.02em;
    font-weight: 800;
    margin: 4px 0 6px;
}

.hero-sub {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 6px;
    max-width: 48ch;
}

.hero-title,
.hero-sub {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.top-stats {
    font-size: 11px;
    color: var(--muted);
}

.hero-cta {
    margin-top: 8px;
    border-radius: 999px;
    border: none;
    padding: .44rem .95rem;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--coral));
    color: #020617;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .75);
}

.hero-cta span.icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #020617;
    color: #F9FAFB;
    display: grid;
    place-items: center;
    font-size: 13px;
}

.hero-search-box {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-card {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .55);
    background: rgba(5, 10, 25, .98);
    padding: 5px 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.search-icon {
    font-size: 14px;
    opacity: .9;
}

.search-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 12px;
    padding: 4px 0;
    outline: none;
    min-width: 0;
}

.search-input::placeholder {
    color: rgba(148, 163, 184, .9);
}

.search-select {
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, .8);
    background: #020617;
    color: #E5E7EB;
    font-size: 11px;
    padding: .2rem .5rem;
}

.search-filters-btn {
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, .7);
    background: rgba(15, 23, 42, .96);
    color: #E5E7EB;
    font-size: 11px;
    padding: .3rem .6rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.top-tabs {
    margin-top: 2px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 11px;
}

.top-tab {
    border-radius: 999px;
    padding: .2rem .7rem;
    border: none;
    background: rgba(15, 23, 42, .98);
    color: #E5E7EB;
}

.top-tab[data-active="true"] {
    background: #F3F4F6;
    color: #020617;
    font-weight: 600;
}

.filter-chips {
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 11px;
}

.filter-chip {
    border-radius: 999px;
    padding: .18rem .55rem;
    background: rgba(15, 23, 42, .98);
    border: 1px solid rgba(148, 163, 184, .6);
    color: #E5E7EB;
}

.filter-chip[data-active="true"] {
    background: linear-gradient(135deg, var(--aqua), var(--turquoise));
    color: #020617;
    border-color: transparent;
}

/* SIDEBAR CARDS */
.sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-card {
    border-radius: var(--radius);
    background: rgba(9, 13, 30, .96);
    border: 1px solid rgba(148, 163, 184, .35);
    box-shadow: var(--shadow-soft);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.side-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-card-badge {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, var(--aqua), var(--lavender));
    display: grid;
    place-items: center;
    font-size: 13px;
}

.side-card-title {
    font-size: 13px;
    font-weight: 600;
}

.side-card-text {
    font-size: 12px;
    color: var(--muted);
}

.btn-ghost {
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .7);
    background: rgba(15, 23, 42, .98);
    color: #E5E7EB;
    font-size: 12px;
    padding: .32rem .75rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.btn-ghost span.icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #020617;
    color: #a5f3fc;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.side-meta {
    font-size: 11px;
    color: var(--muted);
}

/* ROWS (listas tipo Spotify) */
.rows {
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.row {
    border-radius: var(--radius);
    background: rgba(9, 13, 30, .96);
    border: 1px solid rgba(148, 163, 184, .35);
    padding: 8px 9px 9px;
    box-shadow: var(--shadow-soft);
}

.row-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.row-title {
    font-size: 14px;
    font-weight: 600;
}

.row-sub {
    font-size: 11px;
    color: var(--muted);
}

.row-link {
    font-size: 11px;
    color: var(--aqua);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .7);
    padding: .16rem .55rem;
    background: rgba(15, 23, 42, .98);
    white-space: nowrap;
}

.row-scroll {
    display: flex;
    overflow-x: auto;
    padding: 4px 0 2px;
    gap: 10px;
    scroll-snap-type: x mandatory;
}

.row-scroll::-webkit-scrollbar {
    height: 4px;
}

.row-scroll::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, .7);
    border-radius: 999px;
}

/* AUTHOR CARDS */
.author-card {
    min-width: 170px;
    max-width: 200px;
    border-radius: 18px;
    background: radial-gradient(circle at top, var(--panel-soft), var(--panel));
    border: 1px solid rgba(148, 163, 184, .55);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .75);
    padding: 8px 8px 9px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    scroll-snap-align: start;
    cursor: pointer;
    position: relative;
}

.author-chip-label {
    position: absolute;
    top: 7px;
    right: 8px;
    border-radius: 999px;
    padding: .12rem .42rem;
    font-size: 10px;
    background: rgba(5, 10, 23, .94);
    border: 1px solid rgba(148, 163, 184, .6);
    color: #E5E7EB;
    max-width: 120px;
    text-align: right;
}

.author-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 0, var(--aqua), var(--lavender));
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #F9FAFB;
    text-transform: uppercase;
}

.avatar-icon {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #020617;
    border: 1px solid rgba(248, 250, 252, .9);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, .9);
    text-transform: uppercase;
}

.author-name {
    font-size: 13px;
    font-weight: 600;
}

.author-meta {
    font-size: 11px;
    color: var(--muted);
}

.author-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 1px;
}

.badge {
    border-radius: 999px;
    padding: .16rem .4rem;
    font-size: 10px;
    background: rgba(5, 10, 23, .96);
    border: 1px solid rgba(148, 163, 184, .6);
}

.author-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
    font-size: 11px;
}

.fav-btn {
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .7);
    background: rgba(5, 10, 23, .98);
    color: #E5E7EB;
    font-size: 11px;
    padding: .2rem .55rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.fav-btn span.icon {
    font-size: 12px;
}

.author-card[data-fav="true"] .fav-btn {
    background: linear-gradient(135deg, var(--pink), var(--coral));
    color: #020617;
    border-color: transparent;
}

.author-card[data-fav="true"] .fav-btn span.icon {
    color: #020617;
}

/* MODAL AUTOR */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 23, .8);
    backdrop-filter: blur(12px);
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.open {
    display: flex;
}

.modal-card {
    width: min(640px, calc(100% - 32px));
    border-radius: 24px;
    background: radial-gradient(circle at top, var(--panel-soft), var(--panel));
    border: 1px solid rgba(148, 163, 184, .7);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .9);
    padding: 14px 16px 14px;
    color: #E5E7EB;
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.modal-head-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-avatar-wrap {
    position: relative;
}

.modal-avatar {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 20px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.modal-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: #020617;
    border: 2px solid rgba(255, 255, 255, .1);
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.modal-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.modal-sub {
    font-size: 13px;
    color: var(--aqua);
}

.modal-actions {
    display: flex;
    gap: 8px;
}

.btn-primary {
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--aqua), var(--blue));
    color: #fff;
    padding: .5rem 1rem;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 12px 30px rgba(80, 182, 255, .3);
}

.modal-body {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow-y: auto;
    padding-right: 4px;
}

.field-block {
    background: rgba(255, 255, 255, .03);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.field-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 4px;
}

.field-value {
    font-size: 13px;
    font-weight: 500;
}

.field-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pill {
    font-size: 11px;
    background: rgba(80, 182, 255, .1);
    color: var(--aqua);
    padding: 2px 8px;
    border-radius: 999px;
}

/* Scroll modal */
.modal-body::-webkit-scrollbar {
    width: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 999px;
}

@media (max-width: 600px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* FOOTER (Integrado) */
.site-footer {
    margin-top: auto;
    border-top: 1px solid rgba(148, 163, 184, .3);
    background: rgba(5, 10, 23, .8);
    padding: 40px 12px 20px;
    font-size: 13px;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 240px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    height: 28px;
}

.footer-brand-text {
    color: var(--muted);
    line-height: 1.5;
    font-size: 12px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-link {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
    text-decoration: none;
    transition: color .2s;
}

.footer-link:hover {
    color: var(--aqua);
}

.plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    margin: 0 4px 4px 0;
    color: var(--text);
}

.plan-pill .icon {
    color: var(--aqua);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, .2);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
}

.footer-legal {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-legal a {
    color: var(--muted);
}

.footer-legal a:hover {
    color: var(--aqua);
}

.footer-lang {
    opacity: .7;
}

/* MENU BURGER */
.nav-burger {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    width: 32px;
    height: 32px;
}

.nav-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #E5E7EB;
    border-radius: 2px;
    transition: all .2s;
}

.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 10, 23, .98);
    border-bottom: 1px solid rgba(148, 163, 184, .4);
    backdrop-filter: blur(12px);
    padding: 0;
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile.open {
    max-height: 300px;
    padding: 12px 0;
}

.nav-mobile-item {
    padding: 12px 20px;
    color: #E5E7EB;
    font-size: 14px;
    font-weight: 600;
    border-left: 2px solid transparent;
}

.nav-mobile-item:hover {
    background: rgba(255, 255, 255, .05);
    border-left-color: var(--aqua);
    text-decoration: none;
}

@media (max-width: 720px) {
    .nav-burger {
        display: flex;
    }
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(5, 10, 23, .9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(80, 182, 255, .5);
    border-radius: 999px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .8);
    font-size: 13px;
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast .icon {
    color: var(--turquoise);
    font-size: 16px;
}

/* SPECIALTY GRID */
.specialty-row {
    margin-top: 10px;
    padding: 0 2px;
}

.specialty-row-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.specialty-row-title {
    font-size: 16px;
    font-weight: 700;
    color: #F9FAFB;
}

.specialty-row-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px;
}

.specialty-card {
    position: relative;
    background: rgba(15, 23, 42, .6);
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: all .2s;
    text-align: left;
}

.specialty-card:hover {
    background: rgba(15, 23, 42, .9);
    border-color: rgba(80, 182, 255, .5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.specialty-card-icon {
    margin-bottom: 4px;
}

.specialty-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 0 10px currentColor;
}

.specialty-dot--default {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.specialty-dot--cardio {
    color: #FF5050;
    background: rgba(255, 80, 80, 0.15);
    box-shadow: 0 0 12px rgba(255, 80, 80, 0.5);
}

.specialty-dot--pediatria {
    color: #50B6FF;
    background: rgba(80, 182, 255, 0.15);
    box-shadow: 0 0 12px rgba(80, 182, 255, 0.5);
}

.specialty-dot--trauma {
    color: #FF9F1C;
    background: rgba(255, 159, 28, 0.15);
    box-shadow: 0 0 12px rgba(255, 159, 28, 0.5);
}

.specialty-dot--psiquiatria {
    color: #9D4EDD;
    background: rgba(157, 78, 221, 0.15);
    box-shadow: 0 0 12px rgba(157, 78, 221, 0.5);
}

.specialty-dot--derma {
    color: #FF006E;
    background: rgba(255, 0, 110, 0.15);
    box-shadow: 0 0 12px rgba(255, 0, 110, 0.5);
}

/* ... others ... */
.specialty-card-title {
    font-size: 12px;
    font-weight: 700;
    color: #E5E7EB;
    line-height: 1.3;
}

.specialty-card-meta {
    font-size: 10px;
    color: var(--muted);
}

.specialty-card-pill {
    position: absolute;
    bottom: 8px;
    right: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all .2s;
    font-size: 10px;
    color: var(--aqua);
}

.specialty-card:hover .specialty-card-pill {
    opacity: 1;
    transform: translateX(0);
}

.google-translate-container {
    display: inline-block !important;
}

.goog-te-gadget-simple {
    background-color: rgba(15, 23, 42, .92) !important;
    border: 1px solid rgba(148, 163, 184, .6) !important;
    padding: 4px 8px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    line-height: 1 !important;
    display: inline-block;
    cursor: pointer;
    color: #E5E7EB !important;
}

.goog-te-menu-value {
    color: #E5E7EB !important;
    text-decoration: none !important;
}

.goog-te-menu-value span {
    color: #E5E7EB !important;
    text-decoration: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-gadget-simple img {
    display: none !important;
}