:root {
    --max-width: 119.7rem;
    --branco-cinemagic: #EFEFEF;
    --cinza-cinemagic: #C7C7C7;
    --cinza-escuro-cinemagic: #A2A2A2;
    --rosa-cinemagic: #E12B87;
    --roxo-cinemagic: #9639CF;
    --gradient-cinemagic: linear-gradient(138deg, #E12B87 0%, #9639CF 100%);

    --fs-h1: clamp(3.2rem, 6vw, 5.6rem);
    --lh-h1: clamp(4.0rem, 7.5vw, 7.2rem);

    --fs-h2: clamp(2.8rem, 3vw + 1rem, 4.8rem);
    --lh-h2: clamp(3.0rem, 6.5vw, 5.1rem);

    --fs-h3: clamp(1.5rem, 2.4vw, 2.0rem);
    --lh-h3: clamp(2.2rem, 3.5vw, 3.0rem);

    --fs-p: clamp(1.4rem, 1.8vw, 1.6rem);
    --lh-p: clamp(2.2rem, 3.3vw, 3.0rem);

    --fs-cta: clamp(1.6rem, 2.2vw, 1.8rem);

    --gap: clamp(2rem, 3vw + 1rem, 4rem)
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    min-width: 320px;
    cursor: default;
    /* --- No Select Content --- */
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* Internet Explorer/Edge antigo */
    user-select: none;
    /* Propriedade padrão (Chrome, Firefox, Opera, Edge) */
}

/* Scrollbar global */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--rosa-cinemagic) rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--rosa-cinemagic);
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.4);
}

/* --- Reset Tags --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

.cases,
.teaser,
.jeito,
.samedayedit,
.projetos,
.metodos,
.depoimentos {
    padding: 6rem 2rem;
    overflow: hidden;
}

body {
    font-weight: 300;
    word-wrap: break-word;
    color: var(--cinza-cinemagic);
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    background: black;
    font-size: var(--fs-p);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

/* --- Variáveis Globais --- */


.hidden {
    display: none;
}

.cta-hero {
    width: 270px;
    margin: 0 auto;
    height: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 77px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    text-align: center;
    color: white;
    font-size: 14px;
    font-family: Host Grotesk;
    font-weight: 500;
    line-height: 16.10px;
    letter-spacing: 0.14px;
    word-wrap: break-word;

    cursor: pointer;
}

.cta-hero:hover,
.cta-hero:focus {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.45);
    transition: background 0.6s ease, transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    transform: translateY(-1px);
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

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

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-modal__content {
    position: relative;
    z-index: 1;
    width: min(92vw, 960px);
}

.video-modal.is-stories .video-modal__content {
    width: min(92vw, 50vh, 420px);
}

.video-modal__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-modal.is-stories .video-modal__frame {
    aspect-ratio: 9 / 16;
}

.video-modal__frame iframe,
.video-modal__frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
}

.video-modal__frame iframe[hidden],
.video-modal__frame video[hidden] {
    display: none !important;
}

.video-modal__close {
    position: absolute;
    top: -35px;
    right: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-modal__close img {
    width: 16px;
    height: 16px;
    display: block;
}

.video-modal__close:hover {
    border-color: #fff;
}

.text-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

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

.text-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.text-modal__content {
    position: relative;
    z-index: 1;
    width: min(92vw, 880px);
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.text-modal__body {
    padding: 3.2rem 3rem 3rem;
    max-height: min(78vh, 720px);
    overflow: auto;
    user-select: text;
}

.text-modal__title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--branco-cinemagic);
    margin-bottom: 1.6rem;
}

.text-modal__meta {
    font-size: 1.2rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--cinza-escuro-cinemagic);
    margin-bottom: 1.6rem;
}

.text-modal__content-inner p {
    color: var(--cinza-cinemagic);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.text-modal__content-inner ul {
    margin: 0 0 1.6rem 1.6rem;
    padding-left: 1.2rem;
    list-style: disc;
    display: grid;
    gap: 0.6rem;
}

.text-modal__content-inner li {
    color: var(--cinza-escuro-cinemagic);
    line-height: 1.5;
}

.text-modal__content-inner a {
    color: var(--branco-cinemagic);
    text-decoration: underline;
}

.text-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: rgba(0, 0, 0, 0.45);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.text-modal__close img {
    width: 16px;
    height: 16px;
    display: block;
}

.text-modal__close:hover {
    border-color: #fff;
}

.text-center {
    text-align: center;
}

h1 {
    color: var(--branco-cinemagic);
    font-size: var(--fs-h1);
    font-weight: 300;
    line-height: var(--lh-h1);
    word-wrap: break-word;
}

h1 strong,
p strong {
    font-weight: 700;
}

h2 strong {
    font-weight: 600;
}

h2 {
    color: var(--cinza-cinemagic);
    font-size: var(--fs-h2);
    font-weight: 300;
    line-height: var(--lh-h2);
}

.projeto-card h3 {
    font-weight: 600;
    color: var(--branco-cinemagic);
    font-size: 5.6rem;
}

.seta-virada {
    transform:rotate(180deg);
}


.depoimentos .container {
    text-align: center;
}

.depoimentos .lead {
    max-width: 52.2rem;
    margin: 0 auto;
}

.depoimentos-content {
    display: grid;
    gap: 2.4rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 76rem;
    margin: 0 auto;
    height: auto;
}

.depoimentos-track {
    display: flex;
    gap: 2rem;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
    touch-action: pan-y;
    width: 100%;
}

.depoimento-card {
    position: relative;
    flex: 0 0 24rem;
    max-width: 24rem;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    background: #0f0f0f;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.depoimento-card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.depoimento-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.depoimento-play img {
    width: 5.2rem;
    height: 5.2rem;
    padding: 1.2rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, background 0.3s ease;
}

.depoimento-card:hover .depoimento-play img,
.depoimento-card:focus-visible .depoimento-play img {
    transform: scale(1.06);
    background: rgba(0, 0, 0, 0.65);
}

.depoimentos .servicos-controls {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    min-height: 2.4rem;
    position: relative;
    z-index: 3;
}

.depoimentos-controls {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
}

.depoimentos-controls .servicos-arrow,
.depoimentos-controls .servicos-dots {
    display: inline-flex !important;
}

.depoimentos .servicos-arrow img {
    width: 1.6rem;
    height: 1.6rem;
    display: block;
}

.depoimentos .servicos-dots {
    min-width: 4.8rem;
    justify-content: center;
}

@media (max-width: 767px) {
    .depoimentos-track {
        gap: 2rem;
        overflow: visible;
        align-items: stretch;
    }

    .depoimentos {
        padding: 6rem 0rem;
    }

    .depoimentos .lead, .depoimentos .header, .depoimentos .center-element {
        padding: 0rem 2rem;
    }

    .depoimentos-content {
        height: auto;
        max-width: 100%;
        width: 100%;
    }

    .depoimento-card {
        flex: 0 0 24rem;
        width: 24rem;
        max-width: 24rem;
        aspect-ratio: 9 / 16;
        height: auto;
        border-radius: 16px;
        overflow: hidden;
        display: block;
    }

    .depoimento-play img {
        width: 3.2rem;
        height: 3.2rem;
        padding: 0.8rem;
    }

    .depoimento-card>img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        z-index: 0;
    }

    .depoimento-play {
        z-index: 4;
    }

    .depoimentos .servicos-controls {
        margin-top: 1.2rem;
    }
}

.cta {
    padding: 0 2rem;
}

.cta .container {
    text-align: center;
    font-size: var(--fs-h3);
    font-weight: 300;
    line-height: var(--lh-h3);
    letter-spacing: 0.04rem;
    padding: 7.2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 6.1rem;
    background: url(assets/a-vector-color.svg) no-repeat bottom right / contain, var(--gradient-cinemagic);
    border-radius: 3rem;
    background-blend-mode: soft_light, normal;
}

.header {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.cta,
.cta h2,
.cta .lead {
    color: #ffffff;
}

.cta .header {
    max-width: 67rem;
    margin: 0 auto;
}

.cta .lead {
    font-size: var(--fs-p);
    line-height: 135%;
    letter-spacing: 1%;
    margin: 0 auto;
    max-width: 47rem;
    font-weight: 400;
}

.cta h2 strong {
    font-weight: 600;
}

.cta .container .header .legenda {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.cta .btn-cta {
    background: white;
}

.cta .btn-cta span {
    color: var(--roxo-cinemagic);
}

.cta .btn-cta:hover {
    background: white;
}

.cta .btn-cta:hover span {
    color: var(--roxo-cinemagic);
}

.hero .lead {
    font-size: var(--fs-p);
    font-weight: 500;
    line-height: 1.61rem;
    letter-spacing: 0.014rem;
}

.hero .mini {
    font-size: 1.4rem;
}

.scroll-text .scroll-track p {
    background-clip: text;
    background: var(--gradient-cinemagic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 2.636rem;
    letter-spacing: 0.364rem;
    white-space: nowrap;
    /* Impede a quebra de linha */
    overflow: hidden;
    /* Esconde o que passar do limite */
    text-overflow: ellipsis;
}

.legenda {
    text-transform: uppercase;
    background-clip: text;
    background: var(--gradient-cinemagic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: var(--fs-p);
    font-weight: 600;
    line-height: 1.68rem;
    letter-spacing: 0.364rem;
}


h3 {
    color: var(--cinza-cinemagic);
    font-size: var(--fs-h3);
    font-weight: 400;
    line-height: var(--lh-h3);
    letter-spacing: 0.02rem;
}

.btn-cta {
    text-decoration: none;
}

.lead {
    color: var(--cinza-escuro-cinemagic);
    font-size: var(--fs-p);
    font-weight: 600;
    line-height: 2.16rem;
    letter-spacing: 0.016rem;
}

.lead strong {
    font-weight: 600;
}

.hero {
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 3rem 0;
    min-height: 98.8rem;
}

.card-img {
    background: #1c1c1c;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    /* linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.55)); */
    /* box-shadow: inset 0 0 30px 20px rgba(0, 0, 0, 0.85); */
    z-index: 1;
    pointer-events: none;
}

.hero__video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero__video-bg video,
.hero__video-bg iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero header {
    position: relative;
    z-index: 2;
}

header img {
    margin: 5.9rem auto 25rem;
}



/* Cases */
.cases h2 {
    max-width: 29.7rem;
}


/* Marcas */

.no-mobile {
    display: none !important;
}

.no-desktop {
    display: visible;
}

.marcas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-around;
}

.marca-item {
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
    height: 120px;

    /* Centraliza a imagem na caixa */
    display: flex;
    align-items: center;
    justify-content: center;
}

.marca-item img {
    max-width: 100%;
    max-height: 100%;

    /* ESSENCIAL: Garante que a logo não fique esticada/deformada */
    object-fit: contain;

    /* Opcional: Efeito preto e branco (grayscale) */
    filter: brightness(0.5);
    transition: filter 0.3s ease;
}

/* Opcional: Fica colorido quando passa o mouse */
.marca-item img:hover {
    filter: grayscale(0%);
}

/* RODAPÉ */

/* ===== Footer ===== */
.rodape {
    margin-top: 14.8rem;
    padding: 4.8rem 2rem;
    color: var(--cinza-escuro-cinemagic);
    display: grid;
    gap: 32px;
}

.rodape__top {
    display: grid;
    gap: 24px;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.rodape__logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.rodape__col--social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.rodape__social-list {
    display: grid;
    grid-auto-flow: column;
    gap: 36px;
    list-style: none;
    align-items: center;
    justify-content: space-evenly;
}

.rodape__divider {
    border-top: 1px solid rgba(114, 114, 114, 0.46);
    margin: 50px 0px;
}

.rodape__middle {
    display: grid;
    gap: 32px;
    grid-template-columns: 2fr 1fr;
}

.rodape__col--links {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.rodape__nav {
    display: grid;
    gap: 8px;
}

.rodape__nav a {
    color: inherit;
    text-decoration: none;
}

.rodape__nav .rodape__link {
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.rodape__nav a:hover,
.rodape__nav a:focus {
    text-decoration: underline;
}

.rodape__nav .rodape__link:hover,
.rodape__nav .rodape__link:focus {
    text-decoration: underline;
}

.rodape__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    align-items: center;
    margin: 23px 0;
}

.rodape__card p {
    line-height: 2.4rem !important;
}

.rodape__card .lead {
    font-size: var(--fs-p) !important;
    margin: 0;
    font-weight: 753 !important;
}

.rodape__card-icon {
    width: 24px;
    margin: 20px;
}


.rodape h3 {
    color: var(--branco-inemagic);
    font-weight: 700 !important;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .rodape__logo img {
        margin: 0 auto;
    }

    .rodape__top,
    .rodape__middle {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rodape__col--social {
        justify-items: center;
        grid-template-columns: auto;
        gap: 16px;
    }

    .rodape__social-list {
        justify-content: center;
    }

    .rodape__col--links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rodape__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rodape__card-icon {
        margin: 0 auto;
    }

    .rodape__info {
        text-align: center;
    }
}

/* Scroll Text */
.scroll-text {
    overflow: hidden;
    /* Esconde o que sai da tela */
    width: 100%;
    position: relative;
    padding: 10rem 0;
}

.scroll-text .container {
    /* A MÁGICA DO ESFUMAÇADO (FADE) */
    /* Cria um degradê que vai de transparente -> visível -> transparente */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    max-width: max-content;
}

.scroll-track {
    display: flex;
    gap: 2rem;
    /* Espaço entre as repetições do texto */
    width: max-content;
    /* Força o conteúdo a ficar em uma linha só */

    /* Configuração da animação */
    animation: scroll-left 20s linear infinite;
}

.scroll-track p {
    margin: 0;
    white-space: nowrap;
}

/* A ANIMAÇÃO */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move metade do caminho (já que duplicamos o conteúdo) */
    }
}

/* O elemento base */
h2 {
    opacity: 0;
    /* Começa invisível até o JS ativar */
    display: inline;
    /* Ou block, dependendo do seu layout */
}

/* Quando o JS ativar, fica visível */
h2.typing-active {
    opacity: 1;
}


/* Esconde o cursor quando termina de digitar (opcional) */
h2.typing-done::after {
    display: none;
    /* Ou mude para opacity: 0 se quiser manter o espaço */
}

@keyframes blink-caret {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Teaser */
.teaser .card .nome {
    color: #EFEFEF;
    font-size: var(--fs-h3);
    font-weight: 700;
    line-height: 20.28px;
}

/* Container Geral */
.cards {
    display: flex;
    gap: 15px;
    width: 100%;
    height: 321px;
    /* Altura exata solicitada */
    align-items: flex-start;
}

/* Estado Base do Card (Fechado) */
.card {
    position: relative;
    flex: 0 0 231px;
    /* Largura exata solicitada: não cresce, não encolhe, base 231px */
    height: 321px;
    /* Altura exata solicitada */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #111;
    /* Fundo escuro para destacar o texto */
    display: flex;
}

/* Imagem do Card */
.card img {
    width: 231px;
    /* Mantém a largura fixa */
    height: 321px;
    /* Mantém a altura fixa */
    object-fit: cover;
    filter: grayscale(100%);
    /* Descolorido por padrão */
    transition: filter 0.6s ease, width 0.6s ease;
    flex-shrink: 0;
    /* Impede que a imagem mude de tamanho */
}

/* Conteúdo de Texto (Escondido por padrão) */
.card-content {
    opacity: 0;
    width: 0;
    padding: 0;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: opacity 0.3s ease, padding 0.6s ease;
    background: #1c1c1c;
    /* Cor do card de mais informações */
}

/* --- ESTADO ATIVO (CLICADO) --- */

.card.active {
    flex: 1;
    /* Expande para ocupar o espaço disponível */
    max-width: 600px;
    /* Limite de expansão para não quebrar o layout */
    cursor: default;
}

.card.active img {
    filter: grayscale(0%);
    /* Ganha cor ao ser clicado */
}

.card.active .card-content {
    opacity: 1;
    width: 100%;
    padding: 30px;
    transition: opacity 0.8s ease 0.2s;
    /* Texto aparece com leve delay */
}

/* Estilização Interna do Texto */
.teaser .nome {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap;
}

.teaser .descricao {
    line-height: 18px;
    margin-bottom: 15px;
    color: var(--cinza-escuro-cinemagic);
    font-size: var(--fs-p);
    font-weight: 300;
    letter-spacing: 0.16px;
}


.teaser .card-content a {
    color: var(--cinza-cinemagic);
    font-size: var(--fs-p);
    font-weight: 600;
    line-height: 16.22px;
    text-decoration: none;
    display: none;
}

.teaser .card-content a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cards {
        flex-direction: column;
        height: auto;
        gap: 2rem;
    }

    .card {
        flex: none;
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .card img {
        width: 100%;
        height: auto;
        aspect-ratio: 316 / 202;
    }

    .card-content {
        width: 100%;
        max-height: none;
        opacity: 1;
        padding: 2.4rem 2rem 2.8rem;
        transition: none;
    }

    .card.active {
        max-width: none;
    }

    .card img {
        filter: grayscale(0%);
    }

    .hero {
        min-height: 66rem;
    }
}




















.center-element {
    display: block;
    margin: 0 auto;
}

/* Configuração Principal do Botão */
.btn-cta {
    width: 100%;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(219deg, #E12B87 0%, #9639CF 100%);
    border-radius: 80px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    display: inline-flex;
    transition: background 0.6s ease, transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.btn-cta span {
    color: #EFEFEF;
    font-size: 16px;
    font-family: Host Grotesk;
    font-weight: 300;
    line-height: 21.28px;
    letter-spacing: 0.96px;
    word-wrap: break-word;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.btn-cta:hover {
    background: linear-gradient(136deg, #E12B87 0%, #9639CF 100%);
    transform: translateY(-1px);
}

.btn-cta:hover span {
    font-weight: 500;
}

/* Jeito */

.jeitos {
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

/* Jeito Antigo (Lado Esquerdo) */
.jeito-antigo {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    backdrop-filter: blur(20.95px);
    transform: scaleY(0.90);
    border-radius: 15px 0 0 15px;
    background: rgba(100, 100, 100, 0.15);
}

/* Jeito Cinemagic (Lado Direito - O Bloco Rosa) */
.jeito-cinemagic {
    flex: 2;
    display: flex;
    background: url(assets/a-vector-color.svg) no-repeat right center / contain, var(--gradient-cinemagic);
    padding: 40px;
    position: relative;
    gap: 3.5rem;
    border-radius: 15px;
}

.jeito-cinemagic img {
    width: 12.4rem;
    color: rgba(255, 255, 255, 0.75)
}

.jeito-cinemagic .content-text {
    flex: 1;
    z-index: 2;
    display: flex;
    gap: 3.5rem;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.75);
}

.vector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vector img {
    max-width: 80%;
    height: auto;
    opacity: 0.8;
}

/* Estilização das Listas e Ícones */
.jeito ul {
    list-style: none;
    padding: 0;
    gap: 1.5rem;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.jeito li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: var(--fs-p);
}

/* Ícone de X (Jeito Antigo) */
.cancel li::before {
    content: "";
    /* font-weight: bold; */
    color: white;
    background: url(assets/cancel.svg) no-repeat left center;
    width: 23px;
    height: 23px;
}

/* Ícone Double Check (Cinemagic) */
/* Se não tiver o SVG, você pode usar este Check duplo em texto: "✓✓" */
.double-check li::before {
    content: "";
    color: white;
    background: url(assets/double-check.svg) no-repeat left center;
    width: 23px;
    height: 23px;
}

/* --- AJUSTE MOBILE --- */
@media (max-width: 992px) {
    .jeitos {
        flex-direction: column;
        /* Empilha as colunas */
    }

    .jeito-antigo,
    .jeito-cinemagic {
        flex: none;
        width: 100%;
        padding: 40px 30px;
    }

    .jeito-antigo {
        background: rgba(100, 100, 100, 0.15);
        border-radius: 15px 15px 0 0;
        transform: scaley(1);
        margin-bottom: -1.5rem;
    }

    .jeito-antigo h3 {
        font-size: var(--fs-h2);
    }

    /* Oculta o vetor no mobile para focar no conteúdo, como solicitado */
    .vector {
        display: none;
    }

    .jeito-cinemagic {
        background: var(--gradient-cinemagic);
    }
}



















/* Carrossel Serviços */
.servicos-section {
    padding: clamp(5rem, 5vw, 10rem) 0;
    overflow: hidden;
}

.servicos-container {
    max-width: 128.6rem;
    margin: 0 auto;
    display: grid;
    gap: clamp(3rem, 6vw, 6rem);
}

.servicos-copy {
    display: grid;
    gap: 4.5rem;
    padding: 0 2rem;
}

.servicos-section .text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 49rem;
    color: var(--cinza-escuro-cinemagic);
    font-size: var(--fs-p);
    font-weight: 300;
    line-height: 21.60px;
    letter-spacing: 0.16px;
}

.servicos-section .header,
.servicos-section .lead {
    max-width: 36rem;
}

.servicos-content {
    display: grid;
    gap: 2.4rem;
    position: relative;
    overflow: clip;
    min-width: 0;
}

/* Desktop: vasa para direita */
@media (min-width: 768px) {
    .servicos-content {
        --peek: clamp(6rem, 10vw, 19rem);
        margin-right: calc(var(--peek) * -2);
        padding-right: var(--peek);
    }
}

.servicos-track {
    display: flex;
    gap: 1.1rem;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
    touch-action: pan-y;
    transform: translateX(0);
    min-width: 0;
    padding: 0;
}

.servico-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--branco-cinemagic);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);
    border-radius: 20px;
    max-width: 25.8rem;
    min-height: 35.6rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.servico-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.servico-card-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
    display: grid;
    gap: 1.5rem;
}

.servico-icon {
    align-items: center;
    justify-content: center;
}

.servico-icon img {
    width: 21px;
    height: 24px;
    object-fit: contain;
}

.servico-card:hover {
    transform: translateY(-6px);
}

.servico-card .titulo-servico {
    font-size: clamp(2rem, 2.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--branco-cinemagic);
    margin: 0;
}

.servico-card .saiba-mais {
    color: var(--branco-cinemagic);
    font-size: 1.4rem;
    font-weight: 100;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.servico-card .saiba-mais:hover {
    gap: 1rem;
}

.servico-card .saiba-mais::after {
    content: '→';
    font-size: 1.6rem;
}

.servicos-controls {
    display: inline-flex;
    align-items: center;
    gap: 1.7rem;
    justify-content: flex-start;
    color: var(--cinza-cinemagic);
}

.servicos-arrow {
    border: none;
    background: transparent;
    color: currentColor;
    font-size: 2.4rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .3s ease;
    padding: 0.5rem;
}
.membros-controls {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    justify-content: flex-start;
    color: var(--cinza-cinemagic);
    padding: 4rem 3rem 0;
}

.membros-arrow {
    border: none;
    background: transparent;
    color: currentColor;
    font-size: 2.4rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .3s ease;
    padding: 0.5rem;
}

.membros-arrow:hover {
    transform: translateY(-2px);
}

.servicos-dots {
    display: inline-flex;
    gap: 1.7rem;
}

.servicos-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(199, 199, 199, 0.26);
    transition: transform .3s ease, background .3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.servicos-dot.is-active {
    background: var(--cinza-cinemagic);
    transform: scale(1.25);
}

@media (min-width: 768px) {
    .servicos-container {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
        align-items: center;
    }

    .servico-card {
        flex: 0 0 min(25.8rem, 100%);
    }
}

/* Mobile: cards centralizados */
@media (max-width: 767px) {
    .servicos-copy {
        max-width: 100%;
    }

    .servicos-content {
        overflow: visible;
        margin: 0;
        width: 100%;
        margin-left: 2rem;
    }

    .servicos-track {
        width: 100%;
    }

    .servico-card {
        flex: 0 0 100%;
        max-width: 25.8rem;
        width: 100%;
        min-height: 35.6rem;
    }

    .servicos-controls {
        justify-content: flex-start;
        width: 100%;
    }

    .servico-card-content {
        padding: 2rem 1.6rem;
    }

    .servico-icon {
        width: 4rem;
        height: 4rem;
    }

    .marcas {
        gap: 0 20px;
    }

    .no-mobile {
        display: block !important;
    }

    .no-desktop {
        display: none;
    }
}

/* Seção Equipe */
.equipe {
    margin: 6rem 0;
}

.projeto-conteudo a {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
}

.equipe .container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

/* Desktop: Layout em 2 colunas */
@media (min-width: 1024px) {
    .equipe .container {
        grid-template-columns: 28.4rem 1fr;
        gap: 6rem;
        align-items: center;
    }
}

.equipe h2 img {
    width: clamp(2rem, 3vw, 3rem);
    height: 4rem;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.equipe h2:hover img {
    transform: translateX(5px);
}

/* Grid de Membros */
.membros-container {
    overflow: visible;
    padding: 2rem 0;
}

.membros {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 0 3rem;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.membros::-webkit-scrollbar {
    display: none;
}

/* Desktop: Grid de 4 colunas */
@media (min-width: 1024px) {
    .membros {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.4rem;
        overflow: visible;
        padding: 1rem;
    }
}

/* Tablet: 2 colunas */
@media (min-width: 768px) and (max-width: 1023px) {
    .membros {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        overflow: visible;
    }
}

/* Card de Membro */
.membros article {
    flex: 0 0 calc(100% - 4rem);
    scroll-snap-align: center;
    display: grid;
    gap: 1.6rem;
    align-items: center;
    overflow: visible;
}

@media (min-width: 768px) {
    .membros article {
        flex: none;
    }
}

.membros article .thumb {
    width: auto;
    height: auto;
    border-radius: 20px;
    overflow: visible;
    position: relative;
}

.membros article .thumb img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.membros article:hover .thumb img {
    transform: scale(1.05);
}

.membro-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.membros article .nome {
    color: var(--branco-cinemagic);
    font-size: var(--fs-p);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.membros article .funcao {
    color: var(--cinza-escuro-cinemagic);
    font-size: var(--fs-p);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Indicadores de navegação (dots) */
.membros-dots {
    display: flex;
    justify-content: center;
    gap: 1.7rem;
    margin-top: 4rem 4rem 0;
}

.membro-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(199, 199, 199, 0.3);
    transition: transform .3s ease, background .3s ease;
    border: none;
    cursor: pointer;
    padding: 0;
}

.membro-dot.is-active {
    background: var(--cinza-cinemagic);
    transform: scale(1.25);
}

@media (min-width: 768px) {
    .membros-controls {
        display: none;
    }
}

/* Mobile: Centralização do header */
@media (max-width: 767px) {
    .equipe .header {
        text-align: left;
        margin: 6rem 2rem 0;
    }

    .equipe h2 {
        justify-content: center;
    }

    .membros article {
        flex: 0 0 60%;
    }
}








/* Container Principal - Define o comportamento do Scroll */
.projetos-container {
    position: relative;
    width: 100%;
}

/* O Card do Projeto (Thumb Gigante) */
.projeto-card {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    /* Cada card ocupa a tela inteira */

    /* Configuração do Background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Configuração do Layout Flex (do Figma) */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Conteúdo no final */
    align-items: center;
    /* Centralizado horizontalmente */
    padding-bottom: 142px;
    /* Conforme seu padding-bottom */
    box-sizing: border-box;
    /* Garante que o padding não aumente o tamanho total */

    /* Efeito pinned */
    will-change: transform;
}

/* Wrapper para o texto (substitui a largura fixa de 1197px por max-width) */
.projeto-conteudo {
    width: 100%;
    max-width: 1197px;
    /* Limite do Figma */
    padding: 0 20px;
    /* Margem de segurança para mobile */
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Gap do Figma */
}

/* Tipografia e Estilos */
.data {
    color: #EFEFEF;
    font-family: 'Host Grotesk', sans-serif;
    font-size: var(--fs-p);
    margin: 0;
    line-height: 14.40px;
    letter-spacing: 3.12px;
    word-wrap: break-word
}

.titulo-projeto {
    color: #EFEFEF;
    font-size: clamp(2.4rem, 3vw + 1rem, 5.6rem) !important;
    font-weight: 600;
    /* Ajustado para melhor leitura */
    margin: 0;
    line-height: normal;
    word-wrap: break-word
}

.descricao-projeto {
    /* color: #EFEFEF;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 400; */
    line-height: 1.15;
    letter-spacing: 0.16px;
    margin: 0;
}

.cta-projeto {
    color: #EFEFEF;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: 0.16px;
    text-decoration: none;
    /* Remove sublinhado padrão de link */
    display: inline-block;
    margin-top: 8px;
    /* Pequeno ajuste visual */
    transition: opacity 0.3s ease;
}

.cta-projeto:hover {
    opacity: 0.8;
}

/* Responsividade básica para telas menores */
@media (max-width: 768px) {
    .projeto-card {
        padding-bottom: 80px;
        /* Reduz padding no mobile */
    }

    .projeto-conteudo {
        align-items: flex-start;
        /* Alinha à esquerda no mobile se preferir */
    }

    header img {
        margin: 5.2rem auto 7.9rem;
    }

    .samedayedit {
        background: none !important;
        padding: clamp(5rem, 8vw, 6rem) clamp(2rem, 6vw, 3rem) !important;
        margin: 0 !important;
    }

    .cta {
        padding: 0;
    }

    .cta .container {
        border-radius: 0px !important;
        background: url(assets/a-vector-color.svg) no-repeat center left / cover, var(--gradient-cinemagic);
        background-blend-mode: lighten;
    }

    .rodape__nav .rodape__link {
        text-align: center;
    }

    .center-element {
        margin: 0 !important;
    }

    .btn-cta {
        width: 100%;
    }
}

.samedayedit {
    display: grid;
    background: url(assets/bg-samedayedit.png) no-repeat center left / contain;
    overflow-x: clip;
    padding: 34rem 46rem 60rem 46rem;
    /* 19rem 21rem 43rem 11rem */
    margin: -12rem 0 -37rem;
}

.samedayedit .container strong {
    color: #A2A2A2;
    font-size: 16px;
    font-family: Host Grotesk;
    font-weight: 600;
    line-height: 21.60px;
    letter-spacing: 0.16px;
    word-wrap: break-word
}

section.samedayedit .container {
    padding-left: 66rem;
    color: #A2A2A2;
    font-size: 16px;
    font-family: Host Grotesk;
    font-weight: 300;
    line-height: 21.60px;
    letter-spacing: 0.16px;
    word-wrap: break-word
}

/* Responsividade básica para telas menores */
@media (max-width: 1280px) {
    .samedayedit {
        padding: 46rem;
        margin: -37rem 0 -37rem;
    }

    section.samedayedit .container {
        padding-left: 36rem;
    }
}

@media (max-width: 768px) {
    section.samedayedit .container {
        padding-left: 0;
    }
}

@media (max-width: 1920px) {
    .samedayedit {
        padding: 19rem 21rem 43rem 11rem;
        margin: -12rem 0 -37rem;
    }
}
