/* Studio A2 — CSS público (archive de projetos e páginas do plugin)
 * Cores: azul abissal #0B192C, dourado #C5A880, fundo #F8F9FA,
 *        texto #222, texto suave #666
 * Sem Google Fonts: herda do tema/Elementor.
 */

.studio-a2-archive {
    background: #F8F9FA;
    color: #222;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.studio-a2-archive *,
.studio-a2-archive *::before,
.studio-a2-archive *::after { box-sizing: border-box; }
.studio-a2-archive img { max-width: 100%; height: auto; display: block; }
.studio-a2-archive a { color: #C5A880; text-decoration: none; }
.studio-a2-archive a:hover { color: #0B192C; }

/* Container utilitário */
.studio-a2-container {
    width: min(1280px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

/* ===== Hero ===== */
.studio-a2-archive-hero {
    background: linear-gradient(180deg, #0B192C 0%, #142a4a 100%);
    color: #F8F9FA;
    padding: 88px 24px 72px;
    text-align: center;
}
.studio-a2-archive-hero .studio-a2-kicker {
    display: inline-block;
    color: #C5A880;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 16px;
}
.studio-a2-archive-hero h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
    margin: 0 0 18px;
    font-weight: 700;
}
.studio-a2-archive-hero .studio-a2-subtitle {
    color: #d8dde6;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
    margin: 0 auto 14px;
    max-width: 720px;
}
.studio-a2-archive-hero .studio-a2-lede {
    color: #b8bfcc;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 760px;
}

/* ===== Filtros ===== */
.studio-a2-archive-filters {
    background: #fff;
    border-bottom: 1px solid #ece6db;
    padding: 18px 24px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.studio-a2-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.studio-a2-filter-chip {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    background: #F8F9FA;
    border: 1px solid #e6e7ea;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s ease;
    text-decoration: none;
}
.studio-a2-filter-chip:hover {
    background: #fff;
    border-color: #C5A880;
    color: #0B192C;
    text-decoration: none;
}
.studio-a2-filter-chip.is-active {
    background: #0B192C;
    border-color: #0B192C;
    color: #fff;
}
.studio-a2-filter-chip.is-active:hover { color: #fff; }

/* ===== Grid de cards ===== */
.studio-a2-archive-grid-wrap { padding: 56px 24px 80px; }
.studio-a2-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
@media (max-width: 1024px) {
    .studio-a2-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
}
@media (max-width: 640px) {
    .studio-a2-archive-grid { grid-template-columns: 1fr; gap: 18px; }
    .studio-a2-archive-hero { padding: 56px 20px 48px; }
    .studio-a2-archive-grid-wrap { padding: 36px 16px 56px; }
}

.studio-a2-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ece6db;
    border-radius: 18px;
    overflow: hidden;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.studio-a2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(11, 25, 44, 0.10);
    border-color: #C5A880;
    text-decoration: none;
    color: inherit;
}
.studio-a2-card-cover {
    aspect-ratio: 4 / 3;
    background: #F8F9FA;
    overflow: hidden;
    position: relative;
}
.studio-a2-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.studio-a2-card:hover .studio-a2-card-cover img { transform: scale(1.04); }
.studio-a2-card-cover-empty {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #C5A880;
    font-size: 12px; text-transform: uppercase; letter-spacing: .16em;
}
.studio-a2-card-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(11, 25, 44, 0.86);
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}
.studio-a2-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.studio-a2-card-type {
    color: #C5A880;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.studio-a2-card-title {
    font-size: 20px;
    line-height: 1.3;
    color: #0B192C;
    margin: 0;
    font-weight: 700;
}
.studio-a2-card-summary {
    color: #666;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.studio-a2-card-meta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1ece3;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    color: #666;
    font-size: 13px;
}
.studio-a2-card-meta strong { color: #222; font-weight: 600; }
.studio-a2-card-cta {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0B192C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
}
.studio-a2-card-cta::after {
    content: "→";
    transition: transform .2s ease;
}
.studio-a2-card:hover .studio-a2-card-cta { color: #C5A880; }
.studio-a2-card:hover .studio-a2-card-cta::after { transform: translateX(3px); }

/* ===== Estado vazio ===== */
.studio-a2-empty {
    text-align: center;
    padding: 80px 24px;
    color: #666;
}
.studio-a2-empty h2 {
    color: #0B192C;
    font-size: 24px;
    margin: 0 0 10px;
}
.studio-a2-empty p { margin: 0; font-size: 15px; }

/* ===== Paginação ===== */
.studio-a2-pagination {
    margin: 48px auto 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.studio-a2-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #e6e7ea;
    background: #fff;
    color: #222;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s ease;
}
.studio-a2-pagination .page-numbers:hover {
    border-color: #C5A880;
    color: #0B192C;
}
.studio-a2-pagination .page-numbers.current {
    background: #0B192C;
    border-color: #0B192C;
    color: #fff;
}

/* =====================================================
 * SINGLE — blocos extras (galeria, detalhes, relacionados)
 * Anexados abaixo do conteúdo editorial gerado pela plataforma.
 * ===================================================== */
.studio-a2-extra {
    background: #F8F9FA;
    padding: 64px 24px;
    color: #222;
}
.studio-a2-extra + .studio-a2-extra { padding-top: 0; }
.studio-a2-extra-inner {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.studio-a2-extra-related .studio-a2-extra-inner { max-width: 1180px !important; }

.studio-a2-extra-title {
    font-size: clamp(24px, 3.2vw, 34px);
    color: #0B192C;
    margin: 0 0 8px;
    font-weight: 700;
    line-height: 1.2;
    border-bottom: 2px solid #C5A880;
    display: inline-block;
    padding-bottom: 8px;
}
.studio-a2-extra-header { text-align: center; margin-bottom: 32px; }
.studio-a2-extra-subtitle {
    color: #666;
    font-size: 16px;
    margin: 14px 0 0;
}

/* --- Galeria extra --- */
.studio-a2-extra-gallery .studio-a2-extra-title { margin-bottom: 28px; }
.studio-a2-extra-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.studio-a2-extra-figure {
    margin: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece6db;
}
.studio-a2-extra-figure a { display: block; }
.studio-a2-extra-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.studio-a2-extra-figure:hover img { transform: scale(1.03); }
.studio-a2-extra-figure figcaption {
    font-size: 13px;
    color: #666;
    padding: 10px 14px 14px;
    font-style: italic;
    text-align: center;
}
@media (max-width: 1024px) { .studio-a2-extra-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  {
    .studio-a2-extra { padding: 48px 16px; }
    .studio-a2-extra-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* --- Detalhes --- */
.studio-a2-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 28px;
}
.studio-a2-detail-block-wide { grid-column: 1 / -1; }
.studio-a2-detail-block h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #C5A880;
    margin: 0 0 12px;
    font-weight: 700;
}
.studio-a2-detail-block p { margin: 0; color: #222; font-size: 16px; }
.studio-a2-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.studio-a2-detail-list li {
    color: #222;
    font-size: 15px;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}
.studio-a2-detail-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 10px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #C5A880;
}
.studio-a2-detail-list li strong { color: #0B192C; font-weight: 600; margin-right: 4px; }

.studio-a2-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.studio-a2-chip {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #C5A880;
    color: #0B192C;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s ease;
}
.studio-a2-chip:hover {
    background: #0B192C;
    border-color: #0B192C;
    color: #fff;
    text-decoration: none;
}
.studio-a2-chip-static {
    background: rgba(197,168,128,0.10);
    color: #666;
    cursor: default;
    font-weight: 400;
}
.studio-a2-chip-static:hover { background: rgba(197,168,128,0.10); color: #666; }

@media (max-width: 640px) {
    .studio-a2-details-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* --- Projetos relacionados --- */
.studio-a2-extra-related {
    padding-top: 88px !important;
    padding-bottom: 96px !important;
    background: #fff;
    border-top: 1px solid #ece6db;
    clear: both;
}
.studio-a2-extra-header {
    text-align: center;
    margin-bottom: 40px;
}
.studio-a2-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}
.studio-a2-related-card {
    display: flex;
    flex-direction: column;
    background: #F8F9FA;
    border: 1px solid #ece6db;
    border-radius: 16px;
    overflow: hidden;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.studio-a2-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(11,25,44,0.10);
    border-color: #C5A880;
    text-decoration: none;
    color: inherit;
}
.studio-a2-related-cover {
    position: relative;
    aspect-ratio: 4/3;
    background: #F8F9FA;
    overflow: hidden;
}
.studio-a2-related-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.studio-a2-related-card:hover .studio-a2-related-cover img { transform: scale(1.04); }
.studio-a2-related-cover-empty {
    display: flex; align-items: center; justify-content: center;
    height: 100%; color: #C5A880; font-size: 12px;
    text-transform: uppercase; letter-spacing: .14em;
}
.studio-a2-related-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(11,25,44,0.86);
    color: #fff; font-size: 11px;
    text-transform: uppercase; letter-spacing: .14em;
    padding: 5px 11px; border-radius: 999px;
}
.studio-a2-related-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.studio-a2-related-env {
    color: #C5A880; font-size: 11px; letter-spacing: .16em;
    text-transform: uppercase; font-weight: 600;
}
.studio-a2-related-title { font-size: 18px; color: #0B192C; margin: 0; font-weight: 700; line-height: 1.3; }
.studio-a2-related-meta { color: #666; font-size: 13px; margin: 0; }
.studio-a2-related-meta strong { color: #222; font-weight: 600; }
.studio-a2-related-cta {
    margin-top: auto; padding-top: 10px;
    color: #0B192C; font-size: 13px; font-weight: 600;
}
.studio-a2-related-card:hover .studio-a2-related-cta { color: #C5A880; }
@media (max-width: 1024px) { .studio-a2-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  {
    .studio-a2-extra-related {
        padding-top: 56px !important;
        padding-bottom: 64px !important;
    }
    .studio-a2-related-grid { grid-template-columns: 1fr; }
}

/* =====================================================
 * PROFISSIONAIS — listagem com ranking
 * ===================================================== */
.studio-a2-profissionais .studio-a2-archive-grid-wrap { padding: 56px 24px 96px; }
.studio-a2-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}
@media (max-width: 1024px) { .studio-a2-pro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .studio-a2-pro-grid { grid-template-columns: 1fr; gap: 18px; } }

.studio-a2-pro-card {
    position: relative;
    background: #fff;
    border: 1px solid #ece6db;
    border-radius: 20px;
    padding: 36px 24px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.studio-a2-pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(11,25,44,0.10);
    border-color: #C5A880;
}
.studio-a2-pro-card.is-top-3 {
    border-color: #C5A880;
    box-shadow: 0 14px 36px rgba(197,168,128,0.18);
    background: linear-gradient(180deg, #fff 0%, #faf6ee 100%);
}
.studio-a2-pro-card.is-top-1 { border-color: #0B192C; }

.studio-a2-pro-position {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0B192C;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    letter-spacing: .04em;
}
.studio-a2-pro-card.is-top-3 .studio-a2-pro-position {
    background: linear-gradient(135deg, #C5A880, #d8b97f);
    color: #0B192C;
}
.studio-a2-pro-card.is-top-1 .studio-a2-pro-position {
    background: linear-gradient(135deg, #0B192C, #142a4a);
    color: #C5A880;
    box-shadow: 0 6px 18px rgba(11,25,44,0.25);
}

.studio-a2-pro-avatar-wrap {
    width: 96px; height: 96px;
    margin: 14px auto 12px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #C5A880, #e7d4af);
}
.studio-a2-pro-avatar {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #F8F9FA;
    border: 3px solid #fff;
    display: block;
}
.studio-a2-pro-avatar-empty {
    display: flex; align-items: center; justify-content: center;
    color: #0B192C;
    font-size: 36px;
    font-weight: 700;
}
.studio-a2-pro-name {
    font-size: 20px;
    color: #0B192C;
    margin: 4px 0 4px;
    font-weight: 700;
    line-height: 1.25;
}
.studio-a2-pro-role {
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0;
}
.studio-a2-pro-stat {
    margin: 16px 0 18px;
    padding: 14px 20px;
    background: #F8F9FA;
    border-radius: 12px;
    width: 100%;
    text-align: center;
}
.studio-a2-pro-stat strong {
    display: block;
    font-size: 30px;
    color: #C5A880;
    line-height: 1;
    font-weight: 700;
}
.studio-a2-pro-stat span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.studio-a2-pro-link {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #0B192C;
    color: #0B192C;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
}
.studio-a2-pro-link:hover {
    background: #0B192C;
    color: #fff;
    text-decoration: none;
}

/* Badge de ranking dentro do perfil individual */
.studio-a2-projetista-ranking-badge {
    display: inline-block;
    margin: 0 0 24px;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #C5A880, #d8b97f);
    color: #0B192C;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
}
.studio-a2-projetista-ranking-badge strong {
    font-size: 16px;
    color: #0B192C;
    margin-right: 4px;
}

/* ===========================================================
 * Botões WhatsApp usados no card principal do conteúdo e perfil.
 * =========================================================== */
.studio-a2-whatsapp-button,
.studio-a2-pro-card-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .01em;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}
.studio-a2-whatsapp-button:hover,
.studio-a2-pro-card-wa:hover {
    background: #1ebe5b;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}
.studio-a2-pro-card-wa-icon { flex-shrink: 0; }

@media (max-width: 640px) {
    .studio-a2-whatsapp-button,
    .studio-a2-pro-card-wa { width: 100%; justify-content: center; }
}


/* ============================================================
 * CORREÇÃO FINAL — single de projetos sem interferir em Elementor
 * ============================================================
 * O plugin não estiliza header/footer/menu. O Elementor controla esses
 * elementos. Este bloco afeta apenas o conteúdo interno do projeto.
 */

body.single-projetos .studio-a2-template-wrap {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    color: #121417;
    font-family: inherit;
    font-size: 17px;
    line-height: 1.7;
    overflow: visible !important;
}

body.single-projetos .studio-a2-template-wrap *,
body.single-projetos .studio-a2-template-wrap *::before,
body.single-projetos .studio-a2-template-wrap *::after {
    box-sizing: border-box;
}

body.single-projetos .studio-a2-template-wrap img {
    max-width: 100%;
    height: auto;
}

/* Nunca reexibir navegação/submenu interno antigo */
body.single-projetos .studio-a2-template-wrap .studio-a2-nav,
body.single-projetos .studio-a2-template-wrap .studio-a2-nav-links,
body.single-projetos .studio-a2-template-wrap .studio-a2-budget-button,
body.single-projetos .studio-a2-template-wrap .studio-a2-logo {
    display: none !important;
}

/* Eixo editorial único: 960px */
body.single-projetos .studio-a2-template-wrap .studio-a2-header,
body.single-projetos .studio-a2-template-wrap .studio-a2-main,
body.single-projetos .studio-a2-template-wrap .studio-a2-section,
body.single-projetos .studio-a2-template-wrap .studio-a2-highlights,
body.single-projetos .studio-a2-template-wrap .studio-a2-conclusion,
body.single-projetos .studio-a2-template-wrap .studio-a2-sidebar,
body.single-projetos .studio-a2-template-wrap .studio-a2-specs,
body.single-projetos .studio-a2-template-wrap .studio-a2-gallery,
body.single-projetos .studio-a2-template-wrap .studio-a2-all-gallery {
    width: min(960px, calc(100% - 48px)) !important;
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    clear: both !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-header {
    padding: 56px 0 40px !important;
    text-align: center;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 24px;
    color: #121417;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-subtitle {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.5;
    color: #555;
    font-style: italic;
    margin: 0 0 28px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-kicker {
    color: #b2935b;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 20px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-meta {
    color: #888;
    font-size: 14px;
}

/* Capa: mesma largura do texto editorial */
body.single-projetos .studio-a2-template-wrap .studio-a2-cover {
    width: min(960px, calc(100% - 48px)) !important;
    max-width: 960px !important;
    margin: 0 auto 56px !important;
    padding: 0 !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-cover img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover !important;
    border-radius: 22px !important;
    display: block !important;
}

/* Layout sem sidebar lateral */
body.single-projetos .studio-a2-template-wrap .studio-a2-layout,
body.single-projetos .studio-a2-template-wrap .studio-a2-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0 80px !important;
    float: none !important;
    clear: both !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-main {
    display: block !important;
    padding: 0 !important;
    min-width: 0 !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-dropcap {
    font-size: 19px;
    line-height: 1.8;
    color: #2a2d33;
    margin-bottom: 48px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-dropcap::first-letter {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 72px;
    font-weight: 700;
    float: left;
    line-height: .9;
    padding: 8px 12px 0 0;
    color: #b2935b;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-section {
    margin-bottom: 64px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #121417;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #b2935b;
    display: inline-block;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-gallery {
    display: grid !important;
    gap: 24px !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-gallery-one {
    grid-template-columns: 1fr !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-image figure { margin: 0; }

body.single-projetos .studio-a2-template-wrap .studio-a2-image img {
    width: 100% !important;
    aspect-ratio: 4 / 3;
    height: auto !important;
    object-fit: cover !important;
    border-radius: 16px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-image figcaption {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
    font-style: italic;
    text-align: center;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-highlights {
    background: #faf7f2;
    border-left: 4px solid #b2935b;
    padding: 32px 36px;
    border-radius: 12px;
    margin-top: 48px !important;
    margin-bottom: 48px !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-conclusion {
    margin-top: 48px !important;
    padding-top: 32px;
    border-top: 1px solid #eee;
    font-size: 18px;
}

/* Card principal do profissional: único card permitido no single */
body.single-projetos .studio-a2-template-wrap .studio-a2-sidebar,
body.single-projetos .studio-a2-template-wrap aside.studio-a2-sidebar {
    display: block !important;
    position: static !important;
    padding: 0 !important;
    margin-top: 64px !important;
    margin-bottom: 48px !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-card {
    width: min(820px, 100%) !important;
    max-width: 820px !important;
    margin: 0 auto 32px !important;
    background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
    border: 1px solid #ece6db;
    border-radius: 24px;
    padding: 36px 28px 28px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(178,147,91,.10), 0 2px 8px rgba(0,0,0,.04);
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-avatar {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 3px solid #b2935b;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    margin: 0 0 6px;
    color: #121417;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-role {
    color: #b2935b;
    font-size: 13px;
    margin: 0 0 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-link {
    display: block;
    padding: 11px 18px;
    border: 1px solid #b2935b;
    border-radius: 999px;
    color: #b2935b !important;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
    text-decoration: none !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-author-link:hover {
    background: #b2935b;
    color: #fff !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(37,211,102,.22);
}

body.single-projetos .studio-a2-template-wrap .studio-a2-whatsapp-button:hover {
    background: #1ebe5b;
    color: #fff !important;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-specs {
    background: linear-gradient(160deg, #1a1d22 0%, #121417 100%);
    color: #f5f5f5;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

body.single-projetos .studio-a2-template-wrap .studio-a2-specs h4 {
    font-family: Georgia, 'Times New Roman', serif;
    margin: 0 0 22px;
    color: #d4b87a;
    font-size: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212,184,122,.22);
}

body.single-projetos .studio-a2-template-wrap .studio-a2-spec-label {
    display: block;
    color: #d4b87a;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 8px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-spec-value {
    display: block;
    color: #f5f5f5;
    font-size: 15px;
    line-height: 1.5;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

body.single-projetos .studio-a2-template-wrap .studio-a2-spec-chip {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(212,184,122,.12);
    border: 1px solid rgba(212,184,122,.28);
    color: #f5f5f5;
    border-radius: 999px;
    font-size: 12.5px;
}

/* Extras do single alinhados ao mesmo eixo */
body.single-projetos .studio-a2-extra {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.single-projetos .studio-a2-extra-inner {
    width: min(960px, calc(100% - 48px)) !important;
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.single-projetos .studio-a2-extra-gallery {
    background: #F8F9FA;
    padding-top: 56px !important;
    padding-bottom: 64px !important;
}

body.single-projetos .studio-a2-extra-related {
    background: #fff;
    border-top: 1px solid #ece6db;
    padding-top: 88px !important;
    padding-bottom: 96px !important;
    clear: both;
}

body.single-projetos .studio-a2-extra-header {
    text-align: center;
    margin-bottom: 40px;
}

body.single-projetos .studio-a2-related-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
    align-items: stretch;
}

@media (max-width: 640px) {
    body.single-projetos .studio-a2-template-wrap .studio-a2-header,
    body.single-projetos .studio-a2-template-wrap .studio-a2-main,
    body.single-projetos .studio-a2-template-wrap .studio-a2-section,
    body.single-projetos .studio-a2-template-wrap .studio-a2-highlights,
    body.single-projetos .studio-a2-template-wrap .studio-a2-conclusion,
    body.single-projetos .studio-a2-template-wrap .studio-a2-sidebar,
    body.single-projetos .studio-a2-template-wrap .studio-a2-specs,
    body.single-projetos .studio-a2-template-wrap .studio-a2-gallery,
    body.single-projetos .studio-a2-extra-inner {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
    }

    body.single-projetos .studio-a2-template-wrap .studio-a2-cover {
        width: calc(100% - 32px) !important;
        max-width: calc(100% - 32px) !important;
        margin-bottom: 40px !important;
    }

    body.single-projetos .studio-a2-template-wrap .studio-a2-cover img {
        border-radius: 16px !important;
        aspect-ratio: 4 / 3;
        object-fit: cover !important;
    }

    body.single-projetos .studio-a2-template-wrap .studio-a2-gallery-grid,
    body.single-projetos .studio-a2-related-grid {
        grid-template-columns: 1fr !important;
    }

    body.single-projetos .studio-a2-template-wrap .studio-a2-highlights,
    body.single-projetos .studio-a2-template-wrap .studio-a2-specs,
    body.single-projetos .studio-a2-template-wrap .studio-a2-author-card {
        padding: 24px 20px;
    }
}
