:root {
    --watch-orange: #ff570f;
    --watch-orange-dark: #dc3f00;
    --watch-orange-soft: #fff3ed;
    --watch-purple: #351047;
    --watch-purple-dark: #20032e;
    --watch-text: #281436;
    --watch-muted: #74627f;
    --watch-line: #eadce9;
}

/* =========================================================
   HERO
   ========================================================= */

.watch-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 70px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 78% 15%,
            rgba(255, 255, 255, .17),
            transparent 26%
        ),
        linear-gradient(
            125deg,
            #d93c00 0%,
            #ff570f 52%,
            #ff7626 100%
        );
}

.watch-hero::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -220px;
    width: 760px;
    height: 270px;
    border: 2px solid rgba(255,255,255,.20);
    border-radius: 50%;
    transform: rotate(-17deg);
    pointer-events: none;
}

.watch-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -240px;
    width: 620px;
    height: 240px;
    border: 2px solid rgba(255,255,255,.14);
    border-radius: 50%;
    transform: rotate(16deg);
    pointer-events: none;
}

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

.watch-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    font-size: .77rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.watch-hero h1 {
    max-width: 760px;
    margin: 25px 0 21px;
    font-size: clamp(3.4rem, 6vw, 5.9rem);
    line-height: .94;
    letter-spacing: -.055em;
}

.watch-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.91);
    font-size: 1.13rem;
    line-height: 1.65;
}

.watch-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.watch-hero-actions .btn {
    min-width: 215px;
}

.watch-btn-white {
    color: var(--watch-orange-dark);
    background: #ffffff;
}

.watch-btn-white:hover {
    background: #fff8f4;
}

.watch-btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.43);
    background: transparent;
}

.watch-btn-outline:hover {
    background: rgba(255,255,255,.10);
}

.watch-logo-panel {
    display: grid;
    place-items: center;
    min-height: 390px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 36px;
    background: rgba(110,24,0,.17);
    box-shadow: 0 30px 72px rgba(103,23,0,.24);
    backdrop-filter: blur(10px);
}

.watch-logo-panel img {
    display: block;
    width: min(100%, 335px);
    height: auto;
}

/* =========================================================
   INDICADORES
   ========================================================= */

.watch-stats-wrap {
    position: relative;
    z-index: 5;
    margin-top: -31px;
}

.watch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid #f0dcd3;
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(74,20,0,.11);
}

.watch-stat {
    padding: 28px 30px;
    text-align: center;
    border-right: 1px solid #f0dcd3;
}

.watch-stat:last-child {
    border-right: 0;
}

.watch-stat strong {
    display: block;
    color: var(--watch-orange);
    font-size: 2.15rem;
    font-weight: 950;
    letter-spacing: -.04em;
}

.watch-stat span {
    display: block;
    margin-top: 5px;
    color: var(--watch-muted);
    font-size: .92rem;
}

/* =========================================================
   CABEÇALHOS
   ========================================================= */

.watch-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.watch-heading .eyebrow {
    color: var(--watch-orange-dark);
    background: var(--watch-orange-soft);
    border-color: #ffd7c6;
}

.watch-heading .section-title {
    text-wrap: balance;
}

.watch-heading .section-subtitle {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.watch-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.watch-benefit {
    min-height: 245px;
    padding: 25px;
    border: 1px solid #f0ddd5;
    border-radius: 25px;
    background: linear-gradient(180deg, #fff, #fffaf7);
    box-shadow: 0 14px 35px rgba(74,20,0,.05);
    transition: transform .22s ease, box-shadow .22s ease;
}

.watch-benefit:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 52px rgba(74,20,0,.10);
}

.watch-benefit-icon {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--watch-orange),
            var(--watch-orange-dark)
        );
    box-shadow: 0 13px 27px rgba(237,63,0,.20);
}

.watch-benefit-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.watch-benefit h3 {
    margin: 21px 0 10px;
    color: var(--watch-purple-dark);
    font-size: 1.18rem;
}

.watch-benefit p {
    margin: 0;
    color: var(--watch-muted);
    font-size: .94rem;
    line-height: 1.58;
}

/* =========================================================
   PACOTE E PREÇO
   ========================================================= */

.watch-package-section {
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(255,87,15,.08),
            transparent 28%
        ),
        linear-gradient(180deg, #fff8f4, #ffffff);
}

.watch-package-grid {
    display: grid;
    grid-template-columns:
        minmax(320px, .78fr)
        minmax(0, 1.22fr);
    gap: 42px;
    align-items: stretch;
}

.watch-offer-card {
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 8%,
            rgba(255,117,38,.30),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #2a0438,
            #5e0e48
        );
    box-shadow: 0 28px 70px rgba(43,0,53,.18);
}

.watch-offer-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--watch-orange);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.watch-offer-card h2 {
    margin: 28px 0 13px;
    font-size: clamp(2.7rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.watch-offer-card > p {
    margin: 0;
    color: #eaddea;
    font-size: 1rem;
    line-height: 1.6;
}

.watch-price {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin: 33px 0 15px;
}

.watch-price small {
    padding-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 900;
}

.watch-price strong {
    color: #ff7130;
    font-size: clamp(4.1rem, 6vw, 5.5rem);
    line-height: .83;
    font-weight: 950;
    letter-spacing: -.07em;
}

.watch-price span {
    padding-bottom: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 750;
}

.watch-offer-note {
    margin-top: auto;
    padding-top: 25px;
    color: #d9c8dc;
    font-size: .82rem;
    line-height: 1.5;
}

.watch-package-content {
    padding: 34px;
    border: 1px solid var(--watch-line);
    border-radius: 32px;
    background: #ffffff;
}

.watch-package-content h2 {
    margin: 0 0 15px;
    color: var(--watch-purple-dark);
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.watch-package-content > p {
    margin: 0;
    color: var(--watch-muted);
    line-height: 1.62;
}

/* =========================================================
   GRADE
   ========================================================= */

.watch-channel-group {
    margin-top: 27px;
}

.watch-channel-group h3 {
    margin: 0 0 14px;
    color: var(--watch-purple-dark);
    font-size: 1.05rem;
}

.watch-channel-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.watch-channel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 67px;
    padding: 10px;
    border: 1px solid #eadce9;
    border-radius: 16px;
    color: var(--watch-purple-dark);
    background: #fcf9fd;
    font-size: .82rem;
    font-weight: 850;
    line-height: 1.22;
    text-align: center;
    transition: transform .18s ease, border-color .18s ease;
}

.watch-channel:hover {
    transform: translateY(-3px);
    border-color: #d6afd5;
}

.watch-channel.partner {
    color: #ffffff;
    border-color: transparent;
    background:
        linear-gradient(
            145deg,
            var(--watch-purple),
            #65114a
        );
}

.watch-channel.rental {
    color: var(--watch-orange-dark);
    border-color: #f2d4c5;
    background: var(--watch-orange-soft);
}

.watch-grade-note {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    color: #705f7b;
    background: #faf6fb;
    border: 1px solid #eadce9;
    font-size: .82rem;
    line-height: 1.5;
}

/* =========================================================
   DISPOSITIVOS E ACESSO
   ========================================================= */

.watch-access-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: stretch;
}

.watch-device-panel {
    padding: 38px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 13%,
            rgba(255,111,49,.33),
            transparent 31%
        ),
        linear-gradient(145deg, #280536, #651046);
    box-shadow: 0 28px 68px rgba(35,0,44,.17);
}

.watch-device-panel h2 {
    margin: 22px 0 16px;
    font-size: clamp(2.6rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.watch-device-panel p {
    color: #eaddea;
    font-size: 1rem;
    line-height: 1.62;
}

.watch-device-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.watch-device-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 37px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,.08);
    font-size: .82rem;
    font-weight: 750;
}

.watch-activation {
    padding: 34px;
    border: 1px solid var(--watch-line);
    border-radius: 32px;
    background: #ffffff;
}

.watch-activation h2 {
    margin: 0 0 13px;
    color: var(--watch-purple-dark);
    font-size: 2.35rem;
    line-height: 1.05;
}

.watch-activation > p {
    margin: 0;
    color: var(--watch-muted);
    line-height: 1.6;
}

.watch-steps {
    display: grid;
    gap: 14px;
    margin-top: 27px;
}

.watch-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border: 1px solid #f2dfd7;
    border-radius: 19px;
    background: var(--watch-orange-soft);
}

.watch-step-number {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: var(--watch-orange);
    font-size: .95rem;
    font-weight: 950;
}

.watch-step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--watch-purple-dark);
}

.watch-step p {
    margin: 0;
    color: var(--watch-muted);
    font-size: .88rem;
    line-height: 1.48;
}

/* =========================================================
   CTA
   ========================================================= */

.watch-cta {
    overflow: hidden;
    padding: 47px;
    border-radius: 35px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 81% 12%,
            rgba(255,255,255,.15),
            transparent 29%
        ),
        linear-gradient(
            125deg,
            var(--watch-orange-dark),
            var(--watch-orange)
        );
    box-shadow: 0 28px 70px rgba(115,27,0,.18);
}

.watch-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 31px;
}

.watch-cta h2 {
    max-width: 720px;
    margin: 0 0 11px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1;
}

.watch-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.91);
}

.watch-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    flex: 0 0 auto;
}

.watch-cta-actions .btn {
    min-width: 190px;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1080px) {
    .watch-hero-grid,
    .watch-package-grid,
    .watch-access-grid {
        grid-template-columns: 1fr;
    }

    .watch-logo-panel {
        min-height: 310px;
    }

    .watch-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .watch-channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .watch-cta-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .watch-hero {
        padding: 55px 0 45px;
    }

    .watch-hero h1 {
        font-size: 3.25rem;
    }

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

    .watch-hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

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

    .watch-stat {
        border-right: 0;
        border-bottom: 1px solid #f0dcd3;
    }

    .watch-stat:last-child {
        border-bottom: 0;
    }

    .watch-benefits {
        grid-template-columns: 1fr;
    }

    .watch-channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .watch-offer-card,
    .watch-package-content,
    .watch-device-panel,
    .watch-activation,
    .watch-cta {
        padding: 27px 22px;
        border-radius: 27px;
    }

    .watch-cta-actions {
        display: grid;
        width: 100%;
    }

    .watch-cta-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 470px) {
    .watch-channel-grid {
        grid-template-columns: 1fr;
    }
}

/* === watch-video-packages-refino-start === */

/* Vídeo institucional */

.watch-video-section {
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255, 87, 15, .08),
            transparent 28%
        ),
        linear-gradient(180deg, #fff7f2, #ffffff);
}

.watch-video-grid {
    display: grid;
    grid-template-columns:
        minmax(300px, .78fr)
        minmax(450px, 1.22fr);
    gap: 52px;
    align-items: center;
}

.watch-video-copy h2 {
    margin: 17px 0;
    color: var(--watch-purple-dark);
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.watch-video-copy p {
    margin: 0;
    color: var(--watch-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

.watch-video-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.watch-video-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--watch-orange-dark);
    background: var(--watch-orange-soft);
    border: 1px solid #f5d4c5;
    font-size: .8rem;
    font-weight: 800;
}

.watch-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 8px solid #ffffff;
    border-radius: 29px;
    background: #180020;
    box-shadow: 0 28px 68px rgba(74, 20, 0, .16);
}

.watch-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Pacotes */

.watch-package-section {
    background:
        radial-gradient(
            circle at 90% 4%,
            rgba(255, 87, 15, .07),
            transparent 25%
        ),
        linear-gradient(180deg, #fffaf7, #ffffff);
}

.watch-package-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.watch-package-card {
    --package-accent: var(--watch-orange);
    --package-accent-dark: var(--watch-orange-dark);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid #ecdde9;
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 15px 38px rgba(50, 10, 67, .06);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.watch-package-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--package-accent);
}

.watch-package-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(
        in srgb,
        var(--package-accent) 45%,
        #ffffff
    );
    box-shadow: 0 25px 55px rgba(50, 10, 67, .11);
}

.watch-package-card.telecine {
    --package-accent: #e62159;
    --package-accent-dark: #a20b38;
}

.watch-package-card.premiere {
    --package-accent: #18a46e;
    --package-accent-dark: #087548;
}

.watch-package-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.watch-package-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #ffffff;
    background: var(--package-accent);
    box-shadow: 0 12px 23px
        color-mix(
            in srgb,
            var(--package-accent) 24%,
            transparent
        );
}

.watch-package-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.watch-package-badge {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--package-accent-dark);
    background: color-mix(
        in srgb,
        var(--package-accent) 10%,
        #ffffff
    );
    border: 1px solid
        color-mix(
            in srgb,
            var(--package-accent) 25%,
            #ffffff
        );
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.watch-package-card h3 {
    margin: 24px 0 10px;
    color: var(--watch-purple-dark);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.035em;
}

.watch-package-card > p {
    min-height: 70px;
    margin: 0;
    color: var(--watch-muted);
    font-size: .92rem;
    line-height: 1.55;
}

.watch-package-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin: 22px 0 18px;
}

.watch-package-price small {
    padding-bottom: 8px;
    color: var(--watch-purple-dark);
    font-size: 1rem;
    font-weight: 900;
}

.watch-package-price strong {
    color: var(--package-accent);
    font-size: 3.3rem;
    line-height: .87;
    font-weight: 950;
    letter-spacing: -.06em;
}

.watch-package-price span {
    padding-bottom: 7px;
    color: var(--watch-muted);
    font-size: .84rem;
    font-weight: 700;
}

.watch-package-consult {
    margin: 22px 0 18px;
    color: var(--package-accent-dark);
    font-size: 1.35rem;
    font-weight: 900;
}

.watch-package-summary {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.watch-package-summary li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #3c2947;
    font-size: .86rem;
    line-height: 1.4;
}

.watch-package-summary li::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: var(--package-accent);
}

.watch-package-button {
    width: 100%;
    min-height: 52px;
    margin-top: auto;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 16px;
    color: #ffffff;
    background: var(--package-accent);
    box-shadow: none;
}

.watch-package-button:hover {
    background: var(--package-accent-dark);
}

.watch-package-disclaimer {
    max-width: 820px;
    margin: 24px auto 0;
    color: var(--watch-muted);
    font-size: .81rem;
    line-height: 1.5;
    text-align: center;
}


/* Grade UP + Cinema */

.watch-grade-card {
    margin-top: 30px;
    padding: 32px;
    border: 1px solid #eadce9;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 17px 42px rgba(50, 10, 67, .06);
}

.watch-grade-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eadce9;
}

.watch-grade-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--watch-orange-dark);
    background: var(--watch-orange-soft);
    border: 1px solid #f4d4c5;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.watch-grade-heading h2 {
    margin: 14px 0 8px;
    color: var(--watch-purple-dark);
    font-size: 2.6rem;
    line-height: 1;
}

.watch-grade-heading p {
    max-width: 700px;
    margin: 0;
    color: var(--watch-muted);
    line-height: 1.55;
}

.watch-grade-price {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    flex: 0 0 auto;
}

.watch-grade-price small {
    padding-bottom: 8px;
    color: var(--watch-purple-dark);
    font-size: 1rem;
    font-weight: 900;
}

.watch-grade-price strong {
    color: var(--watch-orange);
    font-size: 3rem;
    line-height: .88;
    font-weight: 950;
    letter-spacing: -.06em;
}

.watch-grade-price span {
    padding-bottom: 7px;
    color: var(--watch-muted);
    font-size: .82rem;
}

.watch-grade-card .watch-channel-group {
    margin-top: 25px;
}

.watch-channel-grid.rentals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
}


/* Responsividade */

@media (max-width: 1050px) {
    .watch-video-grid {
        grid-template-columns: 1fr;
    }

    .watch-package-cards {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .watch-package-card {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .watch-video-grid {
        gap: 30px;
    }

    .watch-package-card,
    .watch-grade-card {
        padding: 23px 19px;
        border-radius: 24px;
    }

    .watch-package-card > p {
        min-height: auto;
    }

    .watch-grade-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .watch-channel-grid.rentals {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

/* === watch-video-packages-refino-end === */

/* === watch-package-logos-start === */

.watch-package-card-header {
    min-height: 62px;
    align-items: center;
}

.watch-package-logo-box {
    width: 178px;
    height: 58px;
    flex: 0 0 178px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 9px 13px;

    overflow: hidden;

    border: 1px solid #ebddeb;
    border-radius: 15px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fdfafd
        );
}

.watch-package-logo-box img {
    display: block;

    width: auto;
    max-width: 100%;

    height: auto;
    max-height: 37px;

    object-fit: contain;
    object-position: left center;
}

.watch-package-logo-box.watch-logo img {
    max-width: 132px;
    max-height: 40px;
}

.watch-package-logo-box.telecine-logo img {
    width: 154px;
    max-height: 30px;
}

.watch-package-logo-box.premiere-logo img {
    width: 158px;
    max-height: 31px;
}

.watch-package-card h3 {
    margin-top: 22px;
}

@media (max-width: 560px) {
    .watch-package-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .watch-package-logo-box {
        width: 100%;
        height: 62px;
        flex-basis: 62px;
    }

    .watch-package-logo-box img {
        object-position: left center;
    }
}

/* === watch-package-logos-end === */

/* === watch-black-card-logo-start === */

.watch-package-logo-box.watch-logo {
    overflow: hidden;
}

.watch-package-logo-box.watch-logo img {
    display: block !important;

    /*
     * A imagem possui área transparente ao redor.
     * A largura maior compensa essa margem sem distorcer a logo.
     */
    width: 215px !important;
    max-width: none !important;

    height: auto !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    opacity: 1 !important;
    filter: none !important;

    object-fit: contain;
    object-position: center;
}

/* === watch-black-card-logo-end === */

/* === watch-packages-catalog-v3-start === */

/* Cabeçalho padronizado dos três pacotes */

.watch-package-card {
    min-height: 440px;
}

.watch-package-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-height: 116px;
}

.watch-package-logo-box {
    width: 100%;
    max-width: 235px;
    height: 66px;
    flex: 0 0 66px;

    display: grid;
    place-items: center;

    padding: 10px 16px;

    overflow: hidden;

    border: 1px solid #ebddeb;
    border-radius: 16px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #fdfafd
        );
}

.watch-package-logo-box img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
    object-position: center;
}

/* Corrige definitivamente a logo Watch sem cortes */

.watch-package-card
.watch-package-logo-box.watch-logo img {
    width: 172px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 38px !important;
    margin: 0 !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
}

.watch-package-card
.watch-package-logo-box.telecine-logo img {
    width: 168px;
    max-height: 32px;
}

.watch-package-card
.watch-package-logo-box.premiere-logo img {
    width: 172px;
    max-height: 32px;
}

.watch-package-badge {
    justify-content: center;
    min-height: 32px;
    text-align: center;
}

.watch-package-title-slot {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 13px;
    text-align: center;
}

.watch-package-title-slot h3 {
    margin: 0;
    color: var(--watch-purple-dark);
    font-size: 1.8rem;
    line-height: 1.05;
}

.watch-package-descriptor {
    color: var(--package-accent-dark);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.watch-package-card > p {
    min-height: 72px;
    margin: 4px 0 0;
    text-align: center;
}

.watch-package-price,
.watch-package-consult {
    justify-content: center;
    text-align: center;
}

.watch-package-summary {
    width: 100%;
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
}

.watch-package-button {
    margin-top: auto;
}


/* Catálogo visual */

.watch-catalog-showcase {
    margin-top: 34px;
    padding: 34px;
    border: 1px solid #eadce9;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 92% 5%,
            rgba(255, 87, 15, .07),
            transparent 25%
        ),
        #ffffff;
    box-shadow: 0 17px 42px rgba(50, 10, 67, .06);
}

.watch-catalog-heading {
    max-width: 800px;
    margin: 0 auto 28px;
    text-align: center;
}

.watch-catalog-heading h2 {
    margin: 14px 0 10px;
    color: var(--watch-purple-dark);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.04em;
    text-wrap: balance;
}

.watch-catalog-heading p {
    margin: 0;
    color: var(--watch-muted);
    line-height: 1.6;
}

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

.watch-catalog-card {
    overflow: hidden;
    border: 1px solid #e8dbe7;
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0 13px 31px rgba(39, 7, 52, .06);
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.watch-catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 23px 48px rgba(39, 7, 52, .11);
}

.watch-catalog-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1e1c22;
}

.watch-catalog-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(18, 12, 20, .45)
        );
    pointer-events: none;
}

.watch-catalog-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .35s ease;
}

.watch-catalog-card:hover
.watch-catalog-media img {
    transform: scale(1.035);
}

.watch-catalog-content {
    padding: 20px;
}

.watch-catalog-content > span {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--watch-orange-dark);
    background: var(--watch-orange-soft);
    border: 1px solid #f4d4c5;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.watch-catalog-content h3 {
    margin: 15px 0 8px;
    color: var(--watch-purple-dark);
    font-size: 1.18rem;
    line-height: 1.25;
}

.watch-catalog-content p {
    margin: 0;
    color: var(--watch-muted);
    font-size: .88rem;
    line-height: 1.52;
}


/* Espaçamento entre catálogo visual e grade */

.watch-catalog-showcase + .watch-grade-card {
    margin-top: 24px;
}


@media (max-width: 1000px) {
    .watch-catalog-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 720px) {
    .watch-package-card {
        min-height: auto;
    }

    .watch-package-logo-box {
        max-width: none;
    }

    .watch-package-card > p {
        min-height: auto;
    }

    .watch-catalog-showcase {
        padding: 24px 18px;
        border-radius: 25px;
    }
}

/* === watch-packages-catalog-v3-end === */

/* === watch-single-package-start === */

.watch-package-cards.watch-package-cards-single {
    width: 100%;
    max-width: 620px;

    grid-template-columns: minmax(0, 1fr);

    justify-content: center;

    margin-left: auto;
    margin-right: auto;
}

.watch-package-cards-single .watch-package-card.up-cinema {
    width: 100%;
    max-width: 620px;
    min-height: auto;

    margin-left: auto;
    margin-right: auto;

    padding: 30px;
}

.watch-package-cards-single .watch-package-card > p {
    max-width: 480px;
    min-height: auto;

    margin-left: auto;
    margin-right: auto;
}

.watch-package-cards-single .watch-package-summary {
    max-width: 420px;
}

.watch-package-cards-single .watch-package-button {
    max-width: 420px;

    margin-left: auto;
    margin-right: auto;
    margin-top: 26px;
}

@media (max-width: 720px) {
    .watch-package-cards-single
    .watch-package-card.up-cinema {
        padding: 24px 19px;
    }

    .watch-package-cards-single
    .watch-package-button {
        max-width: none;
    }
}

/* === watch-single-package-end === */
