:root {
    --ct-black: #050505;
    --ct-ink: #111111;
    --ct-graphite: #1c1c1c;
    --ct-muted: #6e6e6e;
    --ct-line: #e7e0d4;
    --ct-gold: #d8a93f;
    --ct-gold-soft: #f3dfad;
    --ct-paper: #fbfaf7;
    --ct-white: #ffffff;
    --ct-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ct-paper);
    color: var(--ct-ink);
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

.ct-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ct-section {
    padding: 96px 0;
}

.ct-section-tight {
    padding: 72px 0;
}

.ct-eyebrow {
    margin: 0 0 14px;
    color: var(--ct-gold);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
}

.ct-title {
    margin: 0;
    color: var(--ct-ink);
    font-size: 46px;
    line-height: 1.05;
    font-weight: 900;
}

.ct-title-light {
    color: var(--ct-white);
}

.ct-lead {
    margin: 22px 0 0;
    color: #464646;
    font-size: 18px;
    line-height: 1.75;
}

.ct-lead-light {
    color: rgba(255, 255, 255, .80);
}

.ct-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, .94);
    border-bottom: 1px solid rgba(216, 169, 63, .18);
    backdrop-filter: blur(12px);
}

.ct-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ct-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ct-white);
}

.ct-brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
}

.ct-brand strong {
    display: block;
    color: var(--ct-white);
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
}

.ct-brand span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.2;
}

.ct-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.ct-nav a {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.ct-nav a:hover,
.ct-nav a.is-active {
    color: var(--ct-gold);
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

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

.ct-btn-gold {
    background: var(--ct-gold);
    color: var(--ct-black);
}

.ct-btn-gold:hover {
    background: #e7bb59;
    color: var(--ct-black);
}

.ct-btn-dark {
    background: var(--ct-black);
    color: var(--ct-white);
}

.ct-btn-dark:hover {
    color: var(--ct-white);
    background: #1a1a1a;
}

.ct-btn-ghost {
    border-color: rgba(255, 255, 255, .28);
    color: var(--ct-white);
}

.ct-btn-ghost:hover {
    border-color: var(--ct-gold);
    color: var(--ct-gold);
}

.ct-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    background: transparent;
    color: var(--ct-white);
    align-items: center;
    justify-content: center;
}

.ct-mobile-panel {
    display: none;
    border-top: 1px solid rgba(216, 169, 63, .18);
    padding: 14px 0 20px;
}

.ct-mobile-panel a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, .80);
    font-weight: 800;
}

.ct-mobile-panel a.is-active {
    color: var(--ct-gold);
}

.ct-hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 40%, rgba(216, 169, 63, .16), transparent 34%),
        linear-gradient(135deg, #050505 0%, #111 58%, #050505 100%);
    background-size: cover;
    background-position: center;
}

.ct-hero:after {
    content: "";
    position: absolute;
    inset: auto -10% -22% auto;
    width: min(560px, 58vw);
    height: min(560px, 58vw);
    border: 1px solid rgba(216, 169, 63, .22);
    transform: rotate(18deg);
}

.ct-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
    gap: 64px;
    align-items: center;
    padding: 96px 0;
}

.ct-hero-copy h1 {
    margin: 0;
    color: var(--ct-white);
    font-size: 72px;
    line-height: .95;
    font-weight: 900;
}

.ct-hero-copy .ct-lead {
    max-width: 650px;
}

.ct-hero-note {
    max-width: 610px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 17px;
    line-height: 1.7;
}

.ct-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.ct-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 48px;
    max-width: 650px;
}

.ct-stat {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 18px;
    background: rgba(255, 255, 255, .045);
}

.ct-stat strong {
    display: block;
    color: var(--ct-gold);
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.ct-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .70);
    font-size: 13px;
    line-height: 1.35;
}

.ct-logo-stage {
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(216, 169, 63, .26);
    background: rgba(255, 255, 255, .035);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    padding: 34px;
}

.ct-logo-stage img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.ct-logo-stage p {
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.6;
}

.ct-hero-card {
    align-self: end;
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid rgba(216, 169, 63, .34);
    border-radius: 8px;
    background: rgba(5, 5, 5, .70);
    color: rgba(255, 255, 255, .76);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    backdrop-filter: blur(12px);
}

.ct-hero-card img {
    width: 94px;
    height: 94px;
    object-fit: contain;
}

.ct-hero-card strong,
.ct-hero-card span {
    display: block;
}

.ct-hero-card strong {
    color: var(--ct-white);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.ct-hero-card span {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
}

.ct-band {
    background: var(--ct-black);
    border-top: 1px solid rgba(216, 169, 63, .18);
    border-bottom: 1px solid rgba(216, 169, 63, .18);
}

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

.ct-band-item {
    min-height: 118px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .10);
}

.ct-band-item:last-child {
    border-right: 0;
}

.ct-band-icon {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ct-gold);
    color: var(--ct-black);
    flex: 0 0 auto;
}

.ct-band-item strong {
    display: block;
    color: var(--ct-white);
    font-size: 17px;
    line-height: 1.25;
}

.ct-band-item span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
    line-height: 1.35;
}

.ct-section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.ct-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

.ct-card {
    border: 1px solid var(--ct-line);
    border-radius: 8px;
    background: var(--ct-white);
    overflow: hidden;
    box-shadow: var(--ct-shadow);
}

.ct-card-media {
    aspect-ratio: 16 / 10;
    background: var(--ct-black);
}

.ct-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ct-card-body {
    padding: 26px;
}

.ct-card-body h3,
.ct-card-body h2 {
    margin: 0 0 12px;
    color: var(--ct-ink);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 900;
}

.ct-card-body p {
    margin: 0;
    color: #565656;
    font-size: 16px;
    line-height: 1.7;
}

.ct-about {
    background: var(--ct-white);
}

.ct-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.ct-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.ct-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.ct-feature i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(216, 169, 63, .15);
    color: var(--ct-gold);
    flex: 0 0 auto;
}

.ct-feature strong {
    display: block;
    color: var(--ct-ink);
    font-size: 17px;
    line-height: 1.35;
}

.ct-feature span {
    display: block;
    margin-top: 3px;
    color: var(--ct-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ct-photo-panel {
    border-radius: 8px;
    overflow: hidden;
    background: var(--ct-black);
    box-shadow: var(--ct-shadow);
}

.ct-photo-panel img {
    display: block;
    width: 100%;
}

.ct-cta {
    background:
        radial-gradient(circle at 12% 10%, rgba(216, 169, 63, .20), transparent 30%),
        linear-gradient(135deg, #050505, #171717);
    background-size: cover;
    background-position: center;
    color: var(--ct-white);
}

.ct-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.ct-contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.ct-contact-list {
    display: grid;
    gap: 14px;
}

.ct-contact-photo {
    border-radius: 8px;
    overflow: hidden;
    background: var(--ct-black);
    box-shadow: var(--ct-shadow);
}

.ct-contact-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ct-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--ct-line);
    border-radius: 8px;
    background: var(--ct-white);
}

.ct-contact-item i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--ct-black);
    color: var(--ct-gold);
    flex: 0 0 auto;
}

.ct-contact-item strong {
    display: block;
    color: var(--ct-ink);
    font-size: 16px;
    line-height: 1.25;
}

.ct-contact-item a,
.ct-contact-item span {
    display: block;
    margin-top: 5px;
    color: var(--ct-muted);
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ct-form {
    padding: 30px;
    border: 1px solid var(--ct-line);
    border-radius: 8px;
    background: var(--ct-white);
    box-shadow: var(--ct-shadow);
}

.ct-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--ct-ink);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #ded6c8;
    border-radius: 8px;
    background: #fff;
    padding: 12px 14px;
    color: var(--ct-ink);
    font-size: 15px;
    line-height: 1.4;
}

.ct-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ct-form input:focus,
.ct-form textarea:focus {
    outline: 0;
    border-color: var(--ct-gold);
    box-shadow: 0 0 0 3px rgba(216, 169, 63, .18);
}

.ct-alert {
    margin-bottom: 24px;
    border-radius: 8px;
    padding: 16px 18px;
    color: var(--ct-white);
    font-weight: 800;
}

.ct-alert.success {
    background: #148443;
}

.ct-alert.error {
    background: #a92b2b;
}

.ct-footer {
    background: var(--ct-black);
    color: rgba(255, 255, 255, .72);
    padding: 72px 0 28px;
}

.ct-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, .45fr) minmax(220px, .65fr);
    gap: 46px;
}

.ct-footer-logo {
    width: 94px;
    height: 94px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.ct-footer h3 {
    margin: 0 0 18px;
    color: var(--ct-white);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.ct-footer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.ct-footer a {
    color: rgba(255, 255, 255, .72);
}

.ct-footer a:hover {
    color: var(--ct-gold);
}

.ct-footer-links {
    display: grid;
    gap: 10px;
}

.ct-footer-contact {
    display: grid;
    gap: 12px;
}

.ct-footer-bottom {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ct-cookie {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 80;
    max-width: 680px;
    margin: 0 auto;
    border: 1px solid rgba(216, 169, 63, .28);
    border-radius: 8px;
    padding: 14px 16px;
    background: rgba(5, 5, 5, .94);
    color: rgba(255, 255, 255, .78);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

#containerCookie.ct-cookie {
    display: block !important;
    width: min(680px, calc(100% - 40px)) !important;
    left: 50% !important;
    right: auto !important;
    bottom: 18px !important;
    transform: translateX(-50%) !important;
}

.ct-cookie p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.ct-cookie a {
    color: var(--ct-gold);
}

.ct-cookie input {
    border: 0;
    border-radius: 8px;
    background: var(--ct-gold);
    color: var(--ct-black);
    padding: 9px 14px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .ct-nav,
    .ct-header .ct-btn {
        display: none;
    }

    .ct-mobile-toggle {
        display: inline-flex;
    }

    .ct-mobile-panel.is-open {
        display: block;
    }

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

    .ct-hero-copy h1 {
        font-size: 54px;
    }

    .ct-logo-stage {
        max-width: 460px;
    }

    .ct-grid-3 {
        grid-template-columns: 1fr;
    }

    .ct-band-grid {
        grid-template-columns: 1fr;
    }

    .ct-band-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .ct-band-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .ct-shell {
        width: min(100% - 28px, 1180px);
    }

    .ct-section {
        padding: 68px 0;
    }

    .ct-header-inner {
        min-height: 72px;
    }

    .ct-brand img {
        width: 48px;
        height: 48px;
    }

    .ct-brand strong {
        font-size: 16px;
    }

    .ct-hero {
        min-height: auto;
    }

    .ct-hero-grid {
        padding: 72px 0;
        gap: 36px;
    }

    .ct-hero-copy h1 {
        font-size: 42px;
        line-height: 1;
    }

    .ct-title {
        font-size: 34px;
        line-height: 1.08;
    }

    .ct-lead {
        font-size: 16px;
    }

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

    .ct-hero-actions {
        display: grid;
    }

    .ct-btn {
        width: 100%;
    }

    .ct-form {
        padding: 22px;
    }

    .ct-footer-bottom,
    .ct-cookie p {
        display: block;
    }

    .ct-cookie input {
        width: 100%;
        margin-top: 12px;
        padding: 8px 12px;
    }

    #containerCookie.ct-cookie {
        width: calc(100% - 28px) !important;
        bottom: 10px !important;
        padding: 12px !important;
    }

    .ct-cookie p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Ajustes CT AFA: home maior, aulas clicaveis e internas */
.ct-whatsapp-strip {
    background: var(--ct-gold);
    color: var(--ct-black);
}

.ct-whatsapp-inner {
    min-height: 118px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.ct-whatsapp-inner h2 {
    margin: 0;
    color: var(--ct-black);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
}

.ct-whatsapp-inner p {
    margin: 9px 0 0;
    color: rgba(5, 5, 5, .74);
    font-size: 16px;
    line-height: 1.55;
}

.ct-whatsapp-strip .ct-btn-dark {
    min-width: 220px;
}

.ct-band-icon i {
    font-size: 21px;
}

.ct-card-link {
    display: block;
    height: 100%;
    color: inherit;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ct-card-link:hover {
    color: inherit;
    transform: translateY(-4px);
    border-color: rgba(216, 169, 63, .72);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}

.ct-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--ct-gold);
    font-weight: 900;
}

.ct-card-action i {
    font-size: 12px;
}

.ct-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--ct-gold);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.ct-split {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: start;
}

.ct-steps {
    display: grid;
    gap: 16px;
}

.ct-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--ct-line);
    border-radius: 8px;
    background: var(--ct-white);
}

.ct-step strong:first-child,
.ct-step-number {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--ct-black);
    color: var(--ct-gold);
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.ct-step h3 {
    margin: 0 0 8px;
    color: var(--ct-ink);
    font-size: 22px;
    line-height: 1.18;
    font-weight: 900;
}

.ct-step p {
    margin: 0;
    color: var(--ct-muted);
    font-size: 15px;
    line-height: 1.65;
}

.ct-method-photo {
    position: relative;
    margin-top: 32px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ct-black);
    box-shadow: var(--ct-shadow);
}

.ct-method-photo img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.ct-method-photo span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    background: rgba(5, 5, 5, .76);
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    line-height: 1.45;
}

.ct-dark-section {
    background: var(--ct-black);
    color: var(--ct-white);
}

.ct-dark-section .ct-title,
.ct-dark-section .ct-lead {
    color: var(--ct-white);
}

.ct-audience {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .82) 44%, rgba(5, 5, 5, .58) 100%),
        url("../img/layout/ctafa-estrutura-treino.jpg") center / cover no-repeat;
    color: var(--ct-white);
}

.ct-audience:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(216, 169, 63, .08), rgba(5, 5, 5, .18)),
        radial-gradient(circle at 88% 18%, rgba(216, 169, 63, .22), transparent 30%);
    pointer-events: none;
}

.ct-audience-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 58px;
    align-items: center;
}

.ct-audience-copy .ct-title {
    max-width: 560px;
}

.ct-audience-copy .ct-lead {
    max-width: 620px;
}

.ct-audience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ct-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ct-pill {
    position: relative;
    min-height: 166px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.ct-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(216, 169, 63, .72);
    background: rgba(255, 255, 255, .13);
}

.ct-pill i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--ct-gold);
    color: var(--ct-black);
    font-size: 23px;
    box-shadow: 0 12px 30px rgba(216, 169, 63, .22);
}

.ct-pill strong {
    display: block;
    margin-top: 22px;
    color: var(--ct-white);
    font-size: 20px;
    line-height: 1.25;
}

.ct-pill span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.55;
}

.ct-detail-hero {
    padding: 86px 0 72px;
    background:
        radial-gradient(circle at 78% 22%, rgba(216, 169, 63, .18), transparent 32%),
        linear-gradient(135deg, #050505, #151515);
    color: var(--ct-white);
}

.ct-detail-hero-photo {
    background-size: cover;
    background-position: center;
}

.ct-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: 56px;
    align-items: center;
}

.ct-detail-hero h1 {
    margin: 0;
    color: var(--ct-white);
    font-size: 58px;
    line-height: 1;
    font-weight: 900;
}

.ct-detail-hero p {
    color: rgba(255, 255, 255, .78);
}

.ct-detail-media {
    border: 1px solid rgba(216, 169, 63, .26);
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.ct-detail-media img {
    width: 100%;
    display: block;
}

.ct-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 38px;
    align-items: start;
}

.ct-prose {
    color: #3f3f3f;
    font-size: 17px;
    line-height: 1.8;
}

.ct-prose h2,
.ct-prose h3,
.ct-prose h4 {
    color: var(--ct-ink);
    font-weight: 900;
}

.ct-side-card {
    position: sticky;
    top: 108px;
    padding: 26px;
    border: 1px solid var(--ct-line);
    border-radius: 8px;
    background: var(--ct-white);
    box-shadow: var(--ct-shadow);
}

.ct-side-card h3 {
    margin: 0 0 10px;
    color: var(--ct-ink);
    font-size: 24px;
    line-height: 1.16;
    font-weight: 900;
}

.ct-side-card p {
    margin: 0 0 20px;
    color: var(--ct-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ct-side-highlight {
    margin: 22px 0 20px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(216, 169, 63, .16);
    color: #4b390d;
}

.ct-side-highlight strong,
.ct-side-highlight span {
    display: block;
}

.ct-side-highlight strong {
    color: var(--ct-ink);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
}

.ct-side-highlight span {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.ct-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.ct-gallery-grid a {
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ct-black);
}

.ct-gallery-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

.ct-gallery-grid a:hover img {
    transform: scale(1.04);
}

.ct-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 991px) {
    .ct-whatsapp-inner,
    .ct-split,
    .ct-audience-grid,
    .ct-detail-grid,
    .ct-content-grid {
        grid-template-columns: 1fr;
    }

    .ct-audience {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .80) 58%, rgba(5, 5, 5, .70) 100%),
            url("../img/layout/ctafa-estrutura-treino.jpg") center / cover no-repeat;
    }

    .ct-audience-grid {
        gap: 34px;
    }

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

    .ct-side-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .ct-whatsapp-inner {
        padding: 28px 0;
    }

    .ct-whatsapp-inner h2 {
        font-size: 26px;
    }

    .ct-pill-grid,
    .ct-related-grid,
    .ct-gallery-grid {
        grid-template-columns: 1fr;
    }

    .ct-audience-actions {
        display: grid;
    }

    .ct-pill {
        min-height: auto;
        padding: 22px;
    }

    .ct-detail-hero h1 {
        font-size: 40px;
    }
}

/* Imagens reais e redes sociais CT AFA */
.ct-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-icon-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    color: var(--ct-white);
    background: rgba(255, 255, 255, .035);
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.ct-icon-btn:hover {
    border-color: var(--ct-gold);
    color: var(--ct-gold);
    background: rgba(216, 169, 63, .10);
}

.ct-photo-panel.is-action {
    position: relative;
    min-height: 420px;
}

.ct-photo-panel.is-action img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.ct-image-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px;
    border: 1px solid rgba(216, 169, 63, .28);
    border-radius: 8px;
    background: rgba(5, 5, 5, .78);
    color: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
}

.ct-image-caption strong {
    display: block;
    color: var(--ct-white);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.ct-image-caption span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.45;
}

.ct-social-call {
    background: var(--ct-white);
}

.ct-social-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--ct-line);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
    box-shadow: var(--ct-shadow);
}

.ct-social-card h2 {
    margin: 0;
    color: var(--ct-ink);
    font-size: 34px;
    line-height: 1.08;
    font-weight: 900;
}

.ct-social-card p {
    margin: 12px 0 0;
    color: var(--ct-muted);
    font-size: 16px;
    line-height: 1.65;
}

.ct-social-card .ct-btn {
    min-width: 210px;
}

.ct-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .ct-header-actions {
        display: none;
    }

    .ct-social-card {
        grid-template-columns: 1fr;
    }

    .ct-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .ct-photo-panel.is-action,
    .ct-photo-panel.is-action img {
        min-height: 320px;
    }

    .ct-social-card {
        padding: 24px;
    }

    .ct-social-card h2 {
        font-size: 28px;
    }
}
