
@import url('https://fonts.cdnfonts.com/css/sephir');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

body {
    background-color: #0d0a12;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    background-image: radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 42%);
    overflow-x: hidden;
    min-height: 100%;
}

/* CABEÇALHO */

.cabecalho {
    width: 100%;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 60px;

    background: rgba(13, 10, 18, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    position: sticky;
    top: 0;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #f4f1ea;
    line-height: 0.8;
    gap: 2px;
    text-shadow: 0 0 18px rgba(17, 17, 17, 0.08);
}

.brand-main,
.brand-sub {
    font-family: 'Sephir', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.brand-main {
    font-size: 28px;
}

.brand-divider {
    width: 100%;
    height: 2px;
    background-color: #f4f1ea;
    margin: 3px 0 2px;
}

.brand-sub {
    font-size: 34px;
}

/* LOGO */

.logo img {
    width: 80px;
    height: auto;
    filter: invert(1);
}

/* MENU */

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.menu a {
    position: relative;
    color: #f4f1ea;
    text-decoration: none;
    padding: 0 22px;

    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;

    transition: 0.3s ease;
}

.menu a + a::before {
    content: "|";
    position: absolute;
    left: 0;
    color: rgba(244, 241, 234, 0.42);
    font-size: 26px;
    line-height: 1;
}

.menu a:hover {
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(244, 241, 234, 0.24);
}

/* SEÇÕES */

section {
    min-height: 100vh;
    height: 100vh;
    padding: 100px 60px;
}

.hero {
    min-height: calc(100vh - 110px);
    height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 90px;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.66), rgba(11, 10, 15, 0.84)),
        url('../images/Img para hero page.jpg') center/cover no-repeat;
    border-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.9) 0%, rgba(10, 10, 12, 0.45) 38%, rgba(10, 10, 12, 0.82) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: #0d0a12;
    z-index: 3;
}

.seta-hero {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f4f1ea;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    z-index: 4;
    animation: bounceDown 1.7s infinite ease-in-out;
}

.seta-hero:hover {
    transform: translateX(-50%) translateY(3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.46);
}

.seta-hero span {
    font-size: 1.8rem;
    line-height: 1;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    text-align: center;
}

.eyebrow {
    color: #d9d9d9;
    font-family: "Bebas Neue", sans-serif;
    font-size: 22px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero h1 {
    color: #f4f4f4;
    font-family: 'Sephir', 'Times New Roman', serif;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 400;
    line-height: 0.92;
    margin-bottom: 18px;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 28px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 28px;
    text-decoration: none;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.4px;
    transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
    background-color: #f4f1ea;
    color: #111111;
    box-shadow: 0 10px 25px rgba(244, 241, 234, 0.18);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f4f4f4;
    background: rgba(255, 255, 255, 0.02);
}

.sobre {
    position: relative;
    background: linear-gradient(180deg, #0d0a12 0%, #141218 100%);
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sobre-container {
    width: min(1200px, 100%);
    min-height: 100%;
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    align-items: center;
    gap: 34px;
    position: relative;
    z-index: 1;
}

.sobre-imagem-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-imagem {
    position: relative;
    width: min(100%, 470px);
    min-height: 610px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62), 0 0 22px rgba(0, 0, 0, 0.28);
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
}

.sobre-imagem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 7, 10, 0.3), rgba(7, 7, 10, 0.08) 30%, rgba(7, 7, 10, 0.72));
}

.sobre-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) brightness(0.8);
}

.sobre-conteudo {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    padding: 48px 42px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(3px);
}

.eyebrow-dark {
    color: #d6cbb8;
    font-size: 18px;
    letter-spacing: 4px;
}

.sobre-conteudo h2 {
    font-family: 'Sephir', 'Times New Roman', serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    color: #f3efe9;
    margin: 18px 0 18px;
    line-height: 0.95;
    font-weight: 400;
}

.sobre-conteudo p {
    color: rgba(255, 255, 255, 0.78);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* TRABALHOS */

.trabalhos {
    position: relative;
    background: linear-gradient(180deg, #121116 0%, #0d0a12 100%);
    padding: 100px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.trabalhos-header {
    width: min(1200px, 100%);
    margin: 0 auto 28px;
}

.trabalhos-header h2 {
    font-family: 'Sephir', 'Times New Roman', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    color: #f3efe9;
    font-weight: 400;
    line-height: 0.95;
}

.trabalhos-carousel {
    position: relative;
    width: min(1400px, 100%);
    margin: 0 auto;
    min-height: 70vh;
    padding: 0 60px;
}

.trabalho-card {
    display: none;
    align-items: stretch;
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62), 0 0 22px rgba(0, 0, 0, 0.28);
    width: 100%;
}

.trabalho-card.active {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}

.trabalho-imagem {
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: contrast(1.08) brightness(0.82);
}

.trabalho-imagem::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 12, 20, 0.4), rgba(14, 12, 20, 0.08));
}

.trabalho-jogo {
    background-image: url('../images/Búzios.jpg');
}

.trabalho-orixas {
    background-image: url('../images/Oráculo dos Orixás.jpg');
}

.trabalho-baralho {
    background-image: url('../images/Baralho Cigano.jpg');
}

.trabalho-diversos {
    background-image: url('../images/Trabalhos Diversos.jpg');
}

.trabalho-conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 42px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.trabalho-tag {
    color: #d6cbb8;
    font-family: "Bebas Neue", sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.trabalho-conteudo h3 {
    font-family: 'Sephir', 'Times New Roman', serif;
    font-size: clamp(2.1rem, 3vw, 3.5rem);
    color: #f3efe9;
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 18px;
}

.trabalho-conteudo p {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.trabalho-conteudo ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.trabalho-conteudo li {
    color: rgba(255, 255, 255, 0.8);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 18px;
}

.trabalho-conteudo li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d6cbb8;
}

.btn-card {
    margin-top: 12px;
    width: fit-content;
}

.trabalho-diversos-card .trabalho-conteudo {
    justify-content: flex-start;
}

.trabalho-diversos-card .btn-card {
    align-self: center;
    min-width: 240px;
    margin-top: auto;
    padding: 18px 38px;
    border-radius: 999px;
    font-size: 1.25rem;
}

.trabalhos-seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.06);
    color: #f4f1ea;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.trabalhos-seta:hover {
    background: rgba(255,255,255,0.12);
}

.trabalhos-seta-esquerda {
    left: -28px;
}

.trabalhos-seta-direita {
    right: -28px;
}

.trabalhos-seta-esquerda:hover {
    transform: translateY(-50%) translateX(-3px);
}

.trabalhos-seta-direita:hover {
    transform: translateY(-50%) translateX(3px);
}

.contatos {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    padding: 110px 60px;
    background: linear-gradient(180deg, #0d0a12 0%, #141218 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contatos-container {
    width: min(1240px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(70px, 8vw, 120px);
}

.voltar-topo {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4f1ea;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    animation: bounceDown 1.7s infinite ease-in-out;
}

.voltar-topo:hover {
    transform: translateX(-50%) translateY(3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.46);
}

.voltar-topo span {
    font-size: 1.8rem;
    line-height: 1;
}

.contatos-intro h2 {
    color: #f4f1ea;
    font-family: 'Sephir', 'Times New Roman', serif;
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    font-weight: 400;
    line-height: 0.95;
    margin-bottom: 28px;
}

.contatos-intro > p:last-child {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.85;
}

.contatos-links {
    display: grid;
    gap: 22px;
}

.contato-link {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 122px;
    padding: 28px 32px;
    color: #f4f1ea;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contato-link:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
    border-color: rgba(255,255,255,0.3);
}

.contato-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    position: relative;
}

.contato-link:first-child .contato-icone {
    background-image: none;
}

.contato-link:nth-child(2) .contato-icone {
    background-image: none;
}

.contato-link:first-child .contato-icone::before,
.contato-link:nth-child(2) .contato-icone::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.contato-link:first-child .contato-icone::before {
    background-image: url('../images/whatsapp.webp');
    background-size: 50px;
}

.contato-link:nth-child(2) .contato-icone::before {
    background-image: url('../images/instagram.png');
    background-size: 32px;
}

.contato-icone svg {
    width: 22px;
    height: 22px;
    fill: #f4f1ea;
    display: none;
}

.contato-link strong,
.contato-link small {
    display: block;
}

.contato-link strong {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 1px;
}

.contato-link small {
    margin-top: 6px;
    color: rgba(255,255,255,0.62);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
}

.rodape {
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    padding: 4px 60px 3px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 2px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.footer-links a {
    color: #111111;
    text-decoration: none;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-links a:hover {
    opacity: 0.7;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #111111;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.socials a:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.socials svg {
    width: 18px;
    height: 18px;
    fill: #f3f3f3;
    display: none;
}

.socials a:first-child {
    background-image: none;
}

.socials a:nth-child(2) {
    background-image: none;
}

.socials a:first-child::before,
.socials a:nth-child(2)::before {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}

.socials a:first-child::before {
    background-image: url('../images/whatsapp.webp');
    background-size: 18px;
}

.socials a:nth-child(2)::before {
    background-image: url('../images/instagram.png');
    background-size: 11px;
}

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: center;
    line-height: 1.1;
}

.footer-copy span:first-child {
    font-size: 14px;
    line-height: 1;
    margin-top: -1px;
}

/* RESPONSIVIDADE */

@media (min-width: 1600px) {
    .cabecalho {
        padding-inline: clamp(60px, 6vw, 120px);
    }

    .hero-content {
        max-width: 900px;
    }

    .trabalhos,
    .contatos {
        padding-inline: clamp(60px, 8vw, 160px);
    }
}

@media (max-width: 900px) {
    .cabecalho {
        height: auto;
        min-height: 86px;
        padding: 14px 28px;
        gap: 14px;
    }

    .logo img {
        width: 62px;
    }

    .brand {
        gap: 10px;
    }

    .brand-main {
        font-size: 23px;
    }

    .brand-sub {
        font-size: 28px;
    }

    .menu a {
        padding-inline: 14px;
        font-size: 18px;
    }

    section,
    .trabalhos,
    .contatos {
        min-height: 100svh;
        height: auto;
    }

    .hero {
        min-height: calc(100svh - 86px);
        height: auto;
        padding: 100px 40px 90px;
    }

    .sobre {
        padding: 90px 40px;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sobre-imagem {
        width: min(100%, 520px);
        min-height: 420px;
        height: min(62svh, 520px);
        margin: 0 auto;
    }

    .sobre-conteudo {
        padding: 38px 34px;
    }

    .trabalhos {
        padding: 90px 40px 100px;
    }

    .trabalhos-carousel {
        width: 100%;
        min-height: auto;
        padding: 0 44px;
    }

    .trabalho-card,
    .trabalho-imagem {
        min-height: 360px;
    }

    .trabalho-card.active {
        grid-template-columns: 1fr;
    }

    .trabalho-conteudo {
        padding: 38px 32px 44px;
    }

    .trabalhos-seta-esquerda {
        left: -2px;
    }

    .trabalhos-seta-direita {
        right: -2px;
    }

    .contatos {
        padding: 90px 40px 110px;
    }

    .contatos-container {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contatos-intro > p:last-child {
        max-width: 620px;
    }

    .rodape {
        padding-inline: 28px;
    }
}

@media (max-width: 600px) {
    .cabecalho {
        align-items: stretch;
        padding: 12px 18px 14px;
    }

    .brand {
        align-self: center;
    }

    .logo img {
        width: 54px;
    }

    .brand-main {
        font-size: 20px;
    }

    .brand-sub {
        font-size: 25px;
    }

    .menu {
        justify-content: center;
        width: 100%;
    }

    .menu a {
        flex: 1;
        padding: 4px 6px;
        text-align: center;
        font-size: clamp(0.85rem, 4vw, 1.05rem);
        letter-spacing: 0.7px;
    }

    .menu a + a::before {
        font-size: 18px;
    }

    .hero {
        min-height: calc(100svh - 128px);
        padding: 80px 22px 86px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

    .hero-text {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .eyebrow {
        font-size: 17px;
        letter-spacing: 3px;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn {
        min-width: 145px;
        padding: 13px 20px;
        font-size: 1rem;
    }

    .seta-hero,
    .voltar-topo {
        width: 44px;
        height: 44px;
        bottom: 18px;
    }

    .sobre {
        padding: 76px 22px 88px;
    }

    .sobre-imagem {
        min-height: 330px;
        height: 58svh;
        border-radius: 20px;
    }

    .sobre-conteudo {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .sobre-conteudo h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .sobre-conteudo p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .trabalhos {
        padding: 76px 18px 96px;
    }

    .trabalhos-header {
        margin-bottom: 22px;
    }

    .trabalhos-header h2 {
        font-size: clamp(2.8rem, 13vw, 4.5rem);
    }

    .trabalhos-carousel {
        padding: 0 28px;
    }

    .trabalho-card,
    .trabalho-imagem {
        min-height: 280px;
    }

    .trabalho-card {
        border-radius: 20px;
    }

    .trabalho-conteudo {
        padding: 30px 24px 36px;
    }

    .trabalho-conteudo h3 {
        font-size: clamp(2rem, 10vw, 3.2rem);
    }

    .trabalho-conteudo p,
    .trabalho-conteudo li {
        font-size: 0.92rem;
    }

    .trabalhos-seta {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .trabalhos-seta-esquerda {
        left: -1px;
    }

    .trabalhos-seta-direita {
        right: -1px;
    }

    .contatos {
        padding: 76px 22px 96px;
    }

    .contatos-container {
        gap: 34px;
    }

    .contatos-intro h2 {
        font-size: clamp(2.8rem, 14vw, 4.6rem);
    }

    .contatos-intro > p:last-child {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .contatos-links {
        gap: 14px;
    }

    .contato-link {
        min-height: 96px;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }

    .contato-icone {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .contato-link:first-child .contato-icone::before {
        background-size: 42px;
    }

    .contato-link:nth-child(2) .contato-icone::before {
        background-size: 27px;
    }

    .rodape {
        padding: 6px 16px;
    }

    .footer-top {
        gap: 10px;
    }

    .footer-links,
    .socials {
        gap: 7px;
    }

    .footer-links a {
        font-size: 7px;
        letter-spacing: 0.4px;
    }

    .footer-copy {
        font-size: 7px;
    }
}