/* White-label AAUTAD — clone visual de aautad.pt (Nuxt / Vuetify) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

body.aautad_whitelabel,
html.aautad_whitelabel body {
    --aa-pink: #d40055;
    --aa-pink-hot: #d50d53;
    --aa-cyan: #1aa3bd;
    --aa-orange: #eb6909;
    --aa-text: #212121;
    --aa-muted: #616161;
    --aa-bg: #fff;
    --aa-card: #fff;
    --aa-border: #ececec;
    font-family: Roboto, system-ui, sans-serif;
    color: var(--aa-text);
    background: var(--aa-bg);
}
body.aautad_whitelabel.dark_mode {
    --aa-text: #f5f5f5;
    --aa-muted: #bdbdbd;
    --aa-bg: #121212;
    --aa-card: #1e1e1e;
    --aa-border: #2a2a2a;
    background: var(--aa-bg);
    color: var(--aa-text);
}
body.aautad_whitelabel #menu,
body.aautad_whitelabel .slideout-dimmer {
    display: none !important;
}
body.aautad_whitelabel.aautad_offcanvas_open {
    overflow: hidden;
}
body.aautad_whitelabel .slideout-panel,
body.aautad_whitelabel.slideout-open .slideout-panel {
    transform: none !important;
    left: 0 !important;
}
body.aautad_whitelabel .main_content_main_container {
    padding-top: 0;
}

/* Header */
.aa_header {
    position: sticky;
    top: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 64px;
    padding: 0 12px;
    background: var(--aa-bg);
    border-bottom: 1px solid var(--aa-border);
}
.aa_header_left,
.aa_header_right {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 0 0 auto;
}
.aa_header_right { margin-left: auto; gap: 4px; flex-shrink: 0; }
.aa_header .aa_icon {
    appearance: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--aa-text);
    font-size: 18px;
    border-radius: 50%;
    text-decoration: none;
}
.aa_header .aa_icon:hover { background: rgba(0,0,0,.06); }
body.dark_mode .aa_header .aa_icon:hover { background: rgba(255,255,255,.08); }
.aa_header .aa_icon svg {
    width: 1em;
    height: 1em;
}
.aa_header .aa_logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--aa-text);
    min-width: 0;
}
.aa_header .aa_logo img { height: 28px; width: auto; display: block; }
.aa_header .aa_logo span {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .04em;
}
.aa_header_nav {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 2px;
}
.aa_header_nav a {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--aa-text);
    padding: 8px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.aa_header_nav a:hover { background: rgba(212,0,85,.08); color: var(--aa-pink); }
.aa_header_nav a.is-current { color: var(--aa-pink); background: rgba(212,0,85,.08); }
.aa_header_cta {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--aa-pink);
    color: #fff !important;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 8px 14px;
    margin-right: 4px;
}
.aa_header_cta:hover { filter: brightness(1.08); }
.aa_header_login {
    display: none;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--aa-text);
    padding: 8px 10px;
    border-radius: 999px;
}
.aa_header_login:hover { color: var(--aa-pink); }
@media (min-width: 960px) {
    .aa_header { padding: 0 20px; min-height: 68px; }
    .aa_header_nav { display: flex; }
    .aa_header_cta,
    .aa_header_login { display: inline-flex; }
}

/* Drawer */
.aa_drawer_root { position: relative; z-index: 400; }
.aa_drawer_backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 400;
}
.aa_drawer_backdrop.is-open { opacity: 1; pointer-events: auto; }
.aa_drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 92vw);
    background: var(--aa-bg);
    color: var(--aa-text);
    transform: translateX(-105%);
    transition: transform .25s ease;
    box-shadow: 8px 0 30px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    z-index: 401;
    overflow: hidden;
}
.aa_drawer.is-open { transform: none; }
.aa_drawer_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--aa-border);
}
.aa_drawer .aa_icon {
    appearance: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--aa-text);
    font-size: 18px;
    border-radius: 50%;
}
.aa_drawer .aa_icon:hover { background: rgba(0,0,0,.06); }
.aa_drawer_brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--aa-text);
}
.aa_drawer_brand img { height: 28px; }
.aa_drawer_brand span {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .04em;
}
.aa_drawer_nav {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 12px 12px 8px;
}
.aa_drawer_group { margin: 0 0 8px; }
.aa_drawer_label {
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--aa-muted);
    margin: 14px 12px 6px;
}
.aa_drawer_nav a {
    display: block;
    padding: 11px 14px;
    color: var(--aa-text);
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
}
.aa_drawer_nav a:hover,
.aa_drawer_nav a.is-current { background: rgba(212,0,85,.08); color: var(--aa-pink); }
.aa_drawer_foot {
    padding: 14px 16px 20px;
    border-top: 1px solid var(--aa-border);
    display: grid;
    gap: 8px;
}
.aa_drawer_foot .aa_cta {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
}
.aa_drawer_account {
    display: block;
    text-align: center;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--aa-text);
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
}
.aa_drawer_account:hover { color: var(--aa-pink); }

/* Hero */
.aa_hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: grid;
    gap: 28px;
    align-items: center;
}
@media (min-width: 900px) {
    .aa_hero { grid-template-columns: 280px 1fr; padding: 72px 24px 48px; }
}
.aa_hero_mark { display: flex; justify-content: center; }
.aa_hero_mark img { max-width: 280px; width: 100%; height: auto; }
.aa_hero h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -.03em;
    margin: 0 0 18px;
    color: var(--aa-text);
}
.aa_hero p.aa_sub {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.35;
    margin: 0 0 22px;
    color: var(--aa-text);
}
.aa_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--aa-pink);
    color: #fff !important;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 12px 22px;
    border: 0;
    cursor: pointer;
}
.aa_cta:hover { filter: brightness(1.08); }
.aa_cta.ghost {
    background: transparent;
    color: var(--aa-pink) !important;
    border: 1px solid var(--aa-pink);
    margin-left: 8px;
}

.aa_evento_destaque_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 16px;
}
.aa_evento_destaque {
    display: grid;
    gap: 0;
    background: var(--aa-card);
    color: var(--aa-text);
    text-decoration: none;
    border: 1px solid var(--aa-border);
    border-radius: 16px;
    overflow: hidden;
    min-height: 180px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
@media (min-width: 800px) {
    .aa_evento_destaque { grid-template-columns: 280px 1fr; }
}
.aa_evento_destaque_media {
    min-height: 180px;
    background: var(--aa-pink);
}
.aa_evento_destaque_media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 180px;
}
.aa_evento_destaque_ph {
    min-height: 180px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    color: #fff;
}
.aa_evento_destaque_ph img {
    width: 88px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.aa_evento_destaque_ph span {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}
.aa_evento_destaque_body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.aa_evento_destaque_body .aa_news_cat {
    color: var(--aa-pink);
    opacity: 1;
    margin-bottom: 6px;
}
.aa_evento_destaque_body h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 3.2vw, 34px);
    letter-spacing: -.02em;
    margin: 0 0 10px;
    line-height: 1.15;
    text-align: left;
    color: var(--aa-text);
}
.aa_evento_destaque_meta,
.aa_evento_destaque_local {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--aa-muted);
}
.aa_evento_destaque_local { margin-bottom: 16px; }
.aa_evento_destaque .aa_cta {
    align-self: flex-start;
    margin-top: 6px;
    margin-left: 0;
}
.aa_evento_mais {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 40px;
    text-align: center;
}

/* Sections */
.aa_section { max-width: 1100px; margin: 0 auto; padding: 24px 24px 56px; }
.aa_section h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin: 0 0 8px;
    letter-spacing: -.02em;
}
.aa_section .aa_lead {
    text-align: center;
    color: var(--aa-muted);
    font-size: 18px;
    margin: 0 0 32px;
}

.aa_news_grid {
    display: grid;
    gap: 18px;
}
@media (min-width: 800px) {
    .aa_news_grid { grid-template-columns: repeat(3, 1fr); }
}
.aa_news_card {
    display: flex;
    flex-direction: column;
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 22px 20px 18px;
    min-height: 220px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
    transition: box-shadow .2s ease, transform .2s ease;
}
.aa_news_card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.aa_news_thumb {
    height: 140px;
    margin: -22px -20px 16px;
    border-radius: 12px 12px 0 0;
    background: #eee center/cover no-repeat;
    overflow: hidden;
}
.aa_news_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aa_news_card h3 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 1.25;
}
.aa_news_card p { color: var(--aa-muted); font-size: 14px; line-height: 1.5; margin: 0 0 16px; flex: 1; }
.aa_news_card .aa_date { font-size: 13px; color: var(--aa-muted); margin-top: auto; }
.aa_news_cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--aa-pink);
    margin-bottom: 8px;
}

.aa_partners_row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
    padding: 12px 0 8px;
}
@media (min-width: 800px) {
    .aa_partners_row { grid-template-columns: repeat(4, 1fr); }
}
.aa_partners_row a,
.aa_partners_row .aa_partner { display: block; text-align: center; }
.aa_partners_row img {
    max-height: 92px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
}
body.dark_mode .aa_partners_row img { filter: grayscale(1) invert(1); }

.aa_to_top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--aa-pink);
    color: #fff;
    border: 0;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212,0,85,.35);
    z-index: 250;
    font-size: 18px;
}
body.aautad_offcanvas_open .aa_to_top { visibility: hidden; }

/* Inner pages */
.aa_page { max-width: 920px; margin: 0 auto; padding: 48px 24px 80px; }
.aa_page.wide { max-width: 1100px; }
.aa_page h1 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin: 0 0 12px;
    letter-spacing: -.02em;
}
.aa_page .aa_lead { text-align: center; font-size: 18px; color: var(--aa-muted); margin: 0 0 36px; }
.aa_socio_precos {
    text-align: center;
    font-size: 16px;
    color: var(--aa-text);
    margin: -12px 0 28px;
    line-height: 1.5;
}
.aa_validade {
    max-width: 560px;
    margin: 0 auto 48px;
    padding: 28px 24px;
    border: 1px solid var(--aa-border);
    border-radius: 16px;
    background: var(--aa-card);
    text-align: center;
}
.aa_validade h2 {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    margin: 0 0 8px;
}
.aa_validade p { color: var(--aa-muted); margin: 0 0 16px; }
.aa_validade_form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 16px 0;
}
.aa_validade_form input {
    min-width: 180px;
    padding: 12px 14px;
    border: 1px solid var(--aa-border);
    border-radius: 10px;
    font-size: 16px;
}
.aa_validade_erro { color: #b00020; font-weight: 600; }
.aa_validade_ok p { color: var(--aa-text); }
.aa_socio_box {
    max-width: none;
    width: 100%;
    margin: 0 auto 40px;
    padding: 28px 24px;
    border: 1px solid var(--aa-border);
    border-radius: 16px;
    background: var(--aa-card);
    box-sizing: border-box;
}
.aa_socio_box h2 {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    margin: 0 0 8px;
}
.aa_socio_box_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.aa_foto_row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 18px;
    text-align: left;
}
.aa_foto_btn {
    width: 88px;
    height: 88px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #f6e8ee;
    cursor: pointer;
    flex: 0 0 88px;
}
.aa_foto_btn img,
.aa_foto_ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--aa-pink);
}
.aa_foto_copy p { margin: 0 0 8px; font-weight: 700; }
.aa_foto_copy .aa_cta { margin-left: 0; }
.aa_foto_hint { color: #0f5b33; font-weight: 600; margin-top: 8px !important; }
.aa_foto_file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.aa_foto_crop {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(20, 8, 14, .72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.aa_foto_crop_card {
    width: min(420px, 100%);
    background: #fff;
    color: #1a1014;
    border-radius: 16px;
    padding: 20px 18px 16px;
    text-align: center;
}
.aa_foto_crop_card h2 {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    margin: 0 0 6px;
}
.aa_foto_crop_card > p { margin: 0 0 14px; color: #555; }
.aa_foto_stage {
    width: 320px;
    max-width: 100%;
    margin: 0 auto 12px;
    border-radius: 12px;
    overflow: hidden;
    cursor: grab;
    touch-action: none;
    background: #111;
}
.aa_foto_stage canvas { display: block; width: 100%; height: auto; }
.aa_foto_zoom {
    display: grid;
    gap: 6px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}
.aa_foto_zoom input { width: 100%; }
.aa_socio_box_cartao { text-align: center; }
.aa_cartao {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 8px;
    perspective: 1100px;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    cursor: pointer;
    touch-action: manipulation;
}
.aa_cartao_inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1024 / 645;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
    box-shadow: 0 10px 24px rgba(20, 16, 18, .14);
    border-radius: 4.2% / 6.7%;
}
.aa_cartao.flipped .aa_cartao_inner { transform: rotateY(180deg); }
.aa_cartao_face {
    position: absolute;
    inset: 0;
    border-radius: 4.2% / 6.7%;
    text-align: left;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-sizing: border-box;
}
.aa_cartao_front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    padding: 0;
    background: #fff url('../../assets/aautad/cartao-frente.jpg') center / cover no-repeat;
}
.aa_cartao_back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    padding: 0;
    background: #f6f7f2 url('../../assets/aautad/cartao-verso.jpg') center / 100% 100% no-repeat;
}
.aa_cartao_fill {
    position: absolute;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 1.4%;
    font-family: Montserrat, sans-serif;
    font-size: clamp(10px, 2.6vw, 15px);
    font-weight: 700;
    color: #222;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    pointer-events: none;
}
.aa_cartao_fill_socio { left: 6.4%; top: 20.78%; width: 12%; height: 6.98%; }
.aa_cartao_fill_nome { left: 20.3%; top: 35.19%; width: 73.4%; height: 6.98%; }
.aa_cartao_fill_curso { left: 20.8%; top: 45.43%; width: 72.9%; height: 6.82%; }
.aa_cartao_fill_aluno { left: 57.8%; top: 56.12%; width: 35.9%; height: 6.98%; }
.aa_cartao_fill_d,
.aa_cartao_fill_m,
.aa_cartao_fill_y { justify-content: center; padding: 0; letter-spacing: .02em; }
.aa_cartao_fill_d { left: 6.5%; top: 78.29%; width: 12%; height: 6.98%; }
.aa_cartao_fill_m { left: 20.6%; top: 78.29%; width: 11.9%; height: 6.98%; }
.aa_cartao_fill_y { left: 34.8%; top: 78.29%; width: 11.8%; height: 6.98%; }
.aa_cartao_hint {
    margin: 0 0 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--aa-muted);
}
.aa_input_locked {
    background: #f4f4f4 !important;
    color: #666 !important;
    cursor: not-allowed;
}
.aa_curso_field { position: relative; }
.aa_curso_list {
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 4px);
    z-index: 8;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    max-height: 240px;
    overflow: auto;
    text-align: left;
}
.aa_curso_list li {
    padding: 8px 14px;
    cursor: pointer;
}
.aa_curso_list li:hover { background: #f7f2f5; }
.aa_curso_list strong { display: block; font-size: 14px; }
.aa_curso_list span { display: block; font-size: 12px; color: var(--aa-muted); font-weight: 400; }
.aa_chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--aa-pink);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.aa_socio_erro { color: #b00020; font-weight: 600; }
.aa_socio_ok { color: #0f5b33; font-weight: 600; }
.aa_socio_cta_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 40px;
}
.aa_socio_cta_row .aa_cta.ghost { margin-left: 0; }
.aa_socio_form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
    width: 100%;
}
.aa_socio_form label {
    display: grid;
    gap: 6px;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}
.aa_socio_form input {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--aa-border);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
}
.aa_socio_form_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}
.aa_socio_form_actions .aa_cta {
    margin-left: 0;
    box-sizing: border-box;
}
@media (max-width: 799px) {
    .aa_page { padding: 28px 16px 64px; }
    .aa_page h1 { font-size: clamp(26px, 8vw, 36px); }
    .aa_page .aa_lead { font-size: 16px; margin-bottom: 20px; }
    .aa_socio_precos { font-size: 15px; margin: -4px 0 20px; }
    .aa_socio_box { padding: 18px 14px; }
    .aa_socio_box_cartao .aa_cta { width: 100%; min-height: 48px; }
    .aa_cartao { max-width: none; }
    .aa_cartao_fill { font-size: clamp(9px, 3.1vw, 13px); }
    .aa_socio_cta_row { flex-direction: column; align-items: stretch; }
    .aa_socio_cta_row .aa_cta,
    .aa_socio_form_actions .aa_cta { width: 100%; min-height: 48px; }
    .aa_socio_form_actions { flex-direction: column; }
    .aa_validade { max-width: none; padding: 22px 16px; }
    .aa_validade_form { flex-direction: column; align-items: stretch; }
    .aa_validade_form input,
    .aa_validade_form .aa_cta { width: 100%; min-width: 0; min-height: 48px; }
    .aa_socio_table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (prefers-reduced-motion: reduce) {
    .aa_cartao_inner { transition: none; }
}
@media (min-width: 800px) {
    .aa_socio_box { padding: 36px 40px; }
    .aa_socio_form {
        grid-template-columns: 1fr 1fr;
        gap: 18px 28px;
    }
    .aa_socio_form_actions { grid-column: 1 / -1; }
}
.aa_socio_table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    font-size: 14px;
}
.aa_socio_table th,
.aa_socio_table td {
    text-align: left;
    padding: 8px 6px;
    border-bottom: 1px solid var(--aa-border);
}
.aa_conta_logout {
    text-align: center;
    margin: 8px 0 48px;
}
.aa_conta_logout .aa_cta.ghost { margin-left: 0; }
.aa_socio_table td span { display: block; opacity: .7; font-size: 12px; }
.aa_prose { font-size: 16px; line-height: 1.7; color: var(--aa-muted); }
.aa_prose p { margin: 0 0 16px; }
.aa_prose strong { color: var(--aa-text); }
.aa_evento_ficha { max-width: 1100px; }
.aa_evento_ficha > h1 { text-align: left; }
.aa_evento_ficha_back { margin-top: 32px; text-align: center; }
.aa_evento_ficha_back a { color: var(--aa-pink); text-decoration: none; font-weight: 600; }
.aa_evento_ficha_back_top { margin: 0 0 20px; text-align: left; }
.aa_evento_hero {
    display: grid;
    gap: 0;
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 24px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
@media (min-width: 800px) {
    .aa_evento_hero { grid-template-columns: 280px 1fr; }
}
.aa_evento_hero_body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.aa_evento_ficha .aa_evento_hero_body h1 {
    text-align: left;
    font-size: clamp(26px, 4vw, 40px);
    margin: 0 0 10px;
}
.aa_evento_hero_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.aa_evento_hero_cta .aa_cta { margin-left: 0; }
.aa_evento_facts {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
}
@media (min-width: 700px) {
    .aa_evento_facts { grid-template-columns: 1fr 1fr; }
}
.aa_evento_fact {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 18px 20px;
}
.aa_evento_fact p {
    margin: 0 0 12px;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--aa-text);
}
.aa_evento_link {
    display: block;
    margin: 0 0 6px;
    color: var(--aa-pink);
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-align: left;
}
.aa_evento_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 36px;
}
.aa_evento_actions .aa_cta { margin-left: 0; }
.aa_evento_bloco { margin: 0 0 40px; }
.aa_evento_ficha .aa_evento_bloco h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: 22px;
    text-align: left;
    margin: 0 0 16px;
}
.aa_evento_termos {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 20px 22px;
}
.aa_evento_termos .aa_prose { font-size: 14px; }
.aa_evento_map_wrap { margin-bottom: 28px; }
.aa_evento_map {
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--aa-border);
    background: #eee;
}
.aa_evento_map .leaflet-container {
    height: 100%;
    width: 100%;
    font-family: inherit;
}
.aa_evento_map_caption {
    margin: 10px 0 0;
    font-size: 14px;
}
.aa_evento_map_caption a { color: var(--aa-pink); font-weight: 600; text-decoration: none; }
.aa_evento_pin {
    background: none !important;
    border: 0 !important;
}
.aa_evento_pin span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--aa-pink);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.aa_doc_list { display: grid; gap: 10px; }
.aa_doc_item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border: 1px solid var(--aa-border);
    border-radius: 10px;
    background: var(--aa-card);
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    font: inherit;
    text-align: left;
    cursor: pointer;
}
.aa_doc_item small { font-weight: 500; color: var(--aa-muted); }
.aa_doc_filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 20px; }
.aa_doc_filter button {
    border: 1px solid var(--aa-border);
    background: var(--aa-card);
    color: var(--aa-text);
    border-radius: 999px;
    padding: 6px 12px;
    font: inherit;
    cursor: pointer;
}
.aa_doc_filter button.on { background: var(--aa-pink); color: #fff; border-color: var(--aa-pink); }
.aa_doc_item:hover { border-color: var(--aa-pink); }

.aa_sport {
    background: #e8e8e8;
    border-radius: 12px;
    padding: 22px;
    margin: 0 auto 16px;
    max-width: 640px;
    text-align: center;
}
body.dark_mode .aa_sport { background: #2a2a2a; }
.aa_sport h3 { margin: 0 0 10px; font-family: Montserrat, sans-serif; }
.aa_sport p { margin: 4px 0; color: var(--aa-muted); }

.aa_benefits {
    display: grid;
    gap: 14px;
}
@media (min-width: 700px) {
    .aa_benefits { grid-template-columns: repeat(2, 1fr); }
}
.aa_benefit {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 18px;
}
.aa_benefit img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
    margin: 0 0 10px;
}
.aa_benefit_link { margin-top: 8px !important; }
.aa_benefit_link a { color: var(--aa-pink); font-weight: 600; text-decoration: none; }
.aa_benefit p { margin: 0; color: var(--aa-muted); font-size: 14px; }

.aa_subhead {
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 16px;
}
.aa_bo_list {
    max-width: 640px;
    margin: 0 auto 28px;
    padding-left: 20px;
    color: var(--aa-muted);
    line-height: 1.5;
}
.aa_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
}
.aa_chips button {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 8px 14px;
    border: 1px solid var(--aa-border);
    background: #fff;
    color: var(--aa-muted);
    cursor: pointer;
}
.aa_chips button.on {
    background: var(--aa-pink);
    border-color: var(--aa-pink);
    color: #fff;
}
.aa_nucleo_grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}
@media (min-width: 700px) {
    .aa_nucleo_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .aa_nucleo_grid { grid-template-columns: repeat(3, 1fr); }
}
.aa_nucleo_card {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 20px 18px 16px;
}
.aa_nucleo_card h3 {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    margin: 0 0 8px;
}
.aa_nucleo_card img {
    max-height: 56px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}
.aa_nucleo_mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--aa-pink);
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.aa_nucleo_card p { margin: 0 0 8px; color: var(--aa-muted); font-size: 14px; }
.aa_nucleo_links { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.aa_nucleo_links a { color: var(--aa-pink); font-weight: 600; text-decoration: none; font-size: 14px; }
.aa_nucleo_desc { font-weight: 600; color: var(--aa-text) !important; }

.aa_price {
    text-align: center;
    margin: 8px 0 28px;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.aa_contact_grid {
    display: grid;
    gap: 28px;
}
@media (min-width: 800px) {
    .aa_contact_grid { grid-template-columns: 1fr 1fr; }
}
.aa_contact_block h3 { margin: 0 0 6px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--aa-muted); }
.aa_contact_block p { margin: 0 0 18px; font-weight: 600; }
.aa_form { display: block; min-width: 0; }
.aa_form h2 { display: block; width: 100%; font-family: Montserrat, sans-serif; margin: 0 0 16px; }
.aa_form label { display: block; font-size: 13px; margin: 0 0 6px; font-weight: 600; }
.aa_contact_block a { color: var(--aa-text); text-decoration: none; }
.aa_contact_block a:hover { color: var(--aa-pink); }
.aa_form input, .aa_form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--aa-border);
    background: var(--aa-card);
    color: var(--aa-text);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font: inherit;
}

.aa_cal_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}
.aa_cal_head h2 { margin: 0; font-size: 22px; text-align: left; }
.aa_cal table { width: 100%; border-collapse: collapse; }
.aa_cal th { font-size: 12px; text-transform: uppercase; padding: 8px; color: var(--aa-muted); }
.aa_cal td { text-align: center; padding: 10px 4px; border-radius: 8px; position: relative; cursor: pointer; }
.aa_cal td.out { opacity: .35; }
.aa_cal td.today { background: var(--aa-pink); color: #fff; font-weight: 700; }
.aa_cal td.has-ev { font-weight: 700; }
.aa_cal_dot {
    display: block;
    width: 6px;
    height: 6px;
    margin: 4px auto 0;
    border-radius: 50%;
    background: var(--aa-cyan);
}
.aa_cal td.today .aa_cal_dot { background: #fff; }
.aa_cal_list { margin-top: 32px; }
.aa_cal_list h2 { font-family: Montserrat, sans-serif; font-size: 22px; margin: 28px 0 12px; }
.aa_cal_event {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 12px;
}
.aa_cal_list .aa_doc_item { margin-bottom: 8px; }

.aa_search_bar {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}
.aa_search_bar input {
    flex: 1;
    border: 1px solid var(--aa-border);
    background: var(--aa-card);
    color: var(--aa-text);
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
}

body.aautad_whitelabel .site_header:not(.checkout_mode)::after { display: none; }

/* Ficha de evento: visual AAUTAD (não o verde EasyTicket) */
body.aautad_whitelabel .hero_staff,
body.aautad_whitelabel .hero_meta_item.hero_hub { display: none !important; }
body.aautad_whitelabel .hero {
    font-family: Montserrat, sans-serif;
}
body.aautad_whitelabel .hero_back {
    background: rgba(212, 0, 85, .12);
    border-color: rgba(212, 0, 85, .28);
    color: var(--aa-pink);
}
body.aautad_whitelabel .hero_back_text { color: var(--aa-pink); font-weight: 700; }
body.aautad_whitelabel .hero_kicker { color: var(--aa-pink); letter-spacing: .08em; text-transform: uppercase; }
body.aautad_whitelabel .hero h1 { font-family: Montserrat, sans-serif; font-weight: 800; }
body.aautad_whitelabel .hero_meta_item {
    border-color: var(--aa-border);
    background: var(--aa-card);
}
body.aautad_whitelabel .hero_meta_icon {
    background: rgba(212, 0, 85, .12) !important;
    color: var(--aa-pink) !important;
}
body.aautad_whitelabel .hero_meta_item h5 { color: var(--aa-pink); }
body.aautad_whitelabel .hero_meta_item a { color: var(--aa-cyan); }
body.aautad_whitelabel .docs_slider_btn,
body.aautad_whitelabel .md-button.md-primary,
body.aautad_whitelabel .md-button.md-raised.md-primary {
    background: var(--aa-pink) !important;
    color: #fff !important;
}
body.aautad_whitelabel .evento_tickets_wrapper .md-button.md-primary,
body.aautad_whitelabel .ticket_card .md-button.md-primary {
    background: var(--aa-pink) !important;
}
body.aautad_whitelabel .hero_alert.info .hero_meta_icon {
    background: rgba(26, 163, 189, .16) !important;
    color: var(--aa-cyan) !important;
}

/* Universo AAUTAD — dashboard */
.aa_universo { padding-bottom: 48px; }
.aa_uni_hero { margin-bottom: 8px; }
.aa_uni_hero h1 { margin-bottom: 10px; text-align: left; }
.aa_uni_hero .aa_lead { text-align: left; margin-bottom: 8px; }
.aa_uni_jump {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 16px;
}
.aa_uni_jump button {
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 8px 14px;
    border: 1px solid var(--aa-border);
    background: var(--aa-card);
    color: var(--aa-text);
    cursor: pointer;
}
.aa_uni_jump button:hover { border-color: var(--aa-pink); color: var(--aa-pink); }
.aa_uni_stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    color: var(--aa-muted);
    font-size: 14px;
}
.aa_uni_stats strong {
    display: block;
    font-family: Montserrat, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--aa-pink);
    line-height: 1.1;
}
.aa_uni_block { margin: 36px 0 8px; }
.aa_uni_block h2 {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -.02em;
    margin: 0 0 6px;
}
.aa_uni_block .aa_lead { text-align: left; margin: 0; }
.aa_uni_block_head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 18px;
}
.aa_uni_block_head .aa_cta { margin: 0; }
.aa_uni_carousel {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.aa_uni_track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    padding: 4px 2px 12px;
}
.aa_uni_track::-webkit-scrollbar { display: none; }
.aa_uni_slide {
    flex: 0 0 min(78%, 260px);
    scroll-snap-align: start;
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 18px 16px 14px;
    text-decoration: none;
    color: inherit;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}
.aa_uni_slide:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.aa_uni_slide h3 {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    margin: 0 0 8px;
}
.aa_uni_slide p {
    margin: 0;
    color: var(--aa-muted);
    font-size: 13px;
    line-height: 1.4;
}
.aa_uni_slide img {
    max-height: 48px;
    max-width: 110px;
    object-fit: contain;
    margin-bottom: 10px;
}
.aa_uni_nav {
    align-self: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--aa-border);
    background: var(--aa-card);
    color: var(--aa-text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.aa_uni_nav:hover { border-color: var(--aa-pink); color: var(--aa-pink); }
@media (max-width: 699px) {
    .aa_uni_nav { display: none; }
}
@media (min-width: 800px) {
    .aa_uni_slide { flex-basis: 240px; }
}
.aa_uni_carousel_home .aa_uni_slide { min-height: 140px; }
.aa_uni_dias { margin: 0 0 16px; }
.aa_uni_dias button {
    background: var(--aa-card);
    color: var(--aa-muted);
}
.aa_uni_hoje {
    display: inline-block;
    margin-left: 6px;
    font-size: 9px;
    letter-spacing: .06em;
    color: var(--aa-pink);
}
.aa_uni_dias button.on .aa_uni_hoje { color: #fff; }
.aa_uni_horario_meta {
    margin: 0 0 16px;
    color: var(--aa-muted);
    font-size: 14px;
}
.aa_uni_horario_meta p { margin: 0 0 6px; }
.aa_uni_horario_meta a {
    color: var(--aa-pink);
    font-weight: 600;
    text-decoration: none;
    margin-right: 12px;
}
.aa_week {
    display: grid;
    grid-template-columns: repeat(5, minmax(148px, 1fr));
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.aa_week_col {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 12px 10px;
    min-width: 148px;
    transition: opacity .15s ease;
}
.aa_week_col.today { border-color: var(--aa-pink); box-shadow: 0 0 0 1px var(--aa-pink); }
.aa_week_col.on { border-color: var(--aa-pink); box-shadow: 0 0 0 2px var(--aa-pink); }
.aa_week_col.dim { opacity: .38; }
.aa_week_col h3 {
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 10px;
    cursor: pointer;
}
.aa_week_empty { font-size: 12px; color: var(--aa-muted); margin: 0; }
.aa_sessao {
    background: rgba(212, 0, 85, .07);
    border-radius: 8px;
    padding: 8px 10px;
    margin: 0 0 8px;
}
body.dark_mode .aa_sessao { background: rgba(212, 0, 85, .16); }
.aa_sessao strong {
    display: block;
    font-size: 12px;
    line-height: 1.3;
    font-family: Montserrat, sans-serif;
}
.aa_sessao span { font-size: 11px; color: var(--aa-muted); }
.aa_uni_sessoes {
    display: grid;
    gap: 12px;
}
@media (min-width: 700px) {
    .aa_uni_sessoes { grid-template-columns: repeat(2, 1fr); }
}
.aa_uni_sessoes article {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 16px 18px;
}
.aa_uni_sessoes h3 {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    margin: 0 0 6px;
}
.aa_uni_hora { font-weight: 700; color: var(--aa-pink) !important; margin: 0 0 4px !important; }
.aa_uni_aloj,
.aa_uni_empty {
    background: var(--aa-card);
    border: 1px dashed var(--aa-border);
    border-radius: 12px;
    padding: 22px 20px;
    color: var(--aa-muted);
    font-size: 15px;
    line-height: 1.5;
}
.aa_uni_aulas { margin: 0 0 16px; }
.aa_uni_aulas button {
    background: var(--aa-card);
    color: var(--aa-muted);
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
}
.aa_home_desportos {
    display: block;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    margin-top: 28px;
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 18px 18px 16px;
    color: inherit;
    text-decoration: none;
}
.aa_home_desportos h3 {
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin: 6px 0 8px;
}
.aa_home_desportos p {
    color: var(--aa-muted);
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 14px;
}
.aa_home_desportos_list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    max-width: 100%;
}
.aa_home_desportos_list li {
    box-sizing: border-box;
    max-width: 100%;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    border: 1px solid var(--aa-border);
    border-radius: 999px;
    padding: 6px 10px;
    white-space: normal;
    overflow-wrap: anywhere;
}
.aa_home_desportos_cta {
    color: var(--aa-pink);
    font-weight: 700;
    font-size: 13px;
}
.aa_home_desportos:hover h3 { color: var(--aa-pink); }
.aa_uni_carousel_home {
    margin-top: 22px;
}
.aa_cal_mini {
    background: var(--aa-card);
    border: 1px solid var(--aa-border);
    border-radius: 12px;
    padding: 14px 14px 10px;
}
.aa_cal_mini .aa_cal_head { margin-bottom: 8px; }
.aa_cal_mini .aa_cal_head h2 { font-size: 16px; text-transform: capitalize; }
.aa_cal_mini table { font-size: 13px; }
.aa_cal_mini th { padding: 4px; font-size: 11px; }
.aa_cal_mini td { padding: 6px 2px; }
.aa_cal_mini_list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}
.aa_cal_mini_list li {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--aa-border);
}
.aa_cal_mini_list li:last-child { border-bottom: 0; margin-bottom: 0; }
.aa_cal_mini_list a {
    display: block;
    color: inherit;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 14px;
}
.aa_cal_mini_list a:hover { color: var(--aa-pink); }
.aa_cal_mini_list small { color: var(--aa-muted); font-size: 12px; }
.aa_cal_mini_empty { font-size: 13px; color: var(--aa-muted); margin: 10px 0 0; }
.aa_cal_mini_cta { margin: 8px 0 0; text-align: right; }
.aa_cal_mini_cta a { color: var(--aa-pink); font-weight: 700; text-decoration: none; font-size: 13px; }
