@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.arquiteto-page {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    color: #1a1a1a;
}

/* ── HERO ── */
.arq-hero {
    display: flex;
    align-items: flex-start;
    gap: 70px;
    min-height: 439px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 0!important;
}

.arq-hero__img {
    flex-shrink: 0;
    width: 625px;
    height: 359px;
    object-fit: cover;
    display: block;
}

.arq-hero__info {
    flex: 1;
    min-width: 0;
}

.arq-hero__name {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.15;
}

.arq-hero__meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.arq-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.arq-hero__meta-label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arq-hero__meta-value {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.4;
}

/* ── BIOGRAFIA ── */
.arq-section {
    padding: 48px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.arq-section__title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 24px;
}

.arq-bio__content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* ── PRÊMIOS ── */
.arq-premios {
    background: rgba(121, 116, 126, 0.16);
    width: 100%;
}

.arq-premios__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 0;
    text-align: center;
}

.arq-premios__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.arq-premios__content {
    font-size: 15px;
    line-height: 1.8;
    display: inline-block;
    text-align: left;
}

.arq-premios__content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

/* ── PRODUÇÃO DESTACADA ── */
.arq-producao {
    padding: 48px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.arq-producao__title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 40px;
}

.arq-item {
    margin-bottom: 56px;
}

.arq-item__categoria {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin: 0 0 4px;
}

.arq-item__titulo {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
}

.arq-item__descricao {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 24px;
}

/* ── CAROUSEL ── */
.arq-carousel {
    position: relative;
    overflow: hidden;
}

.arq-carousel__track-wrap {
    overflow: hidden;
}

.arq-carousel__track {
    display: flex;
    gap: 10px;
    transition: transform 0.35s ease;
}

.arq-carousel__slide {
    flex-shrink: 0;
    width: 352px;
    height: 256px;
    cursor: pointer;
    overflow: hidden;
}

.arq-carousel__slide img {
    width: 352px;
    height: 256px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.arq-carousel__slide img:hover {
    transform: scale(1.03);
}

.arq-carousel__btn {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    transition: background 0.2s;
}

.arq-carousel__btn:hover {
    background: rgba(0, 0, 0, 0.55);
}

.arq-carousel__btn--prev { left: 0; }
.arq-carousel__btn--next { right: 0; }

.arq-carousel__btn:disabled {
    opacity: 0;
    pointer-events: none;
}

/* ── MODAL ── */
.arq-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 22, 25, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.arq-modal.is-open {
    display: flex;
}

.arq-modal__inner {
    position: relative;
    width: 1260px;
    max-width: 95vw;
    height: 720px;
    max-height: 90vh;
}

.arq-modal__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.arq-modal__close {
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.arq-modal__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.arq-modal__btn--prev { left: -64px; }
.arq-modal__btn--next { right: -64px; }

.arq-modal__btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* ── SAIBA MAIS ── */
.arq-saibamais {
    padding: 48px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.arq-saibamais__title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
}

.arq-saibamais__content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .arq-hero {
        flex-direction: column;
        gap: 32px;
    }
    .arq-hero__img {
        width: 100%;
        height: auto;
        max-height: 359px;
    }
    .arq-carousel__slide {
        width: 280px;
        height: 204px;
    }
    .arq-carousel__slide img {
        width: 280px;
        height: 204px;
    }
}
