body {
    --scrollbar-compensacao: 0px;
    --altura-header: 80px;

    background-color: #232323;
    overflow-x: hidden;
    padding-top: var(--altura-header);
    padding-right: var(--scrollbar-compensacao);
    /* Ajusta o scroll para links âncoras */
    scroll-padding-top: var(--altura-header);
}

html {
    scrollbar-gutter: stable;
}

@media (max-width: 480px) {
    body {
        --altura-header: 68px;
    }
}

* {
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;

    scrollbar-width: thin;
    scrollbar-color: #bfa11d #111;
}

/* Cor Scrollbar*/
/* ===== CHROME, EDGE, SAFARI ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111; /* fundo */
}

::-webkit-scrollbar-thumb {
    background: #bfa11d; /* cor principal */
    border-radius: 8px;
    border: 2px solid #111; /* cria espaçamento */
}

::-webkit-scrollbar-thumb:hover {
    background: #d6b94a;
}

/* tela loading*/

#loading-screen {
    position: fixed;
    inset: 0;

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

    background: #1b1b1b;

    z-index: 99999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    align-items: center;
    justify-content: center;

    animation: loading-content-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-spinner {
    width: 46px;
    height: 46px;
    aspect-ratio: 1 / 1;
    display: block;
    box-sizing: border-box;

    border: 2px solid rgba(191, 161, 29, 0.18);
    border-top-color: #d6b94a;
    border-right-color: rgba(214, 185, 74, 0.52);

    border-radius: 50%;

    box-shadow: 0 0 10px rgba(191, 161, 29, 0.08);

    animation: loading-spin 0.9s linear infinite;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loading-content-in {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

body.loading {
    overflow: hidden;
    cursor: wait;
}

@font-face {
    font-family: hartwell;
    src: url(Fonts/Hartwell\ Alt\ Bold.otf);
}

/* Cursor piscando */
@keyframes blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

.animar {
    opacity: 0;
    transform: translate3d(0, 30px, 0);

    transition:
        opacity 0.6s ease-out,
        transform 0.6s ease-out;

    will-change: transform, opacity;
    backface-visibility: hidden;
}

.animar.aparecer {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* animação do hero */

.animar-hero {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}

.animar-hero.aparecer {
    opacity: 1;
    transform: translate3d(0, 0, 0);

    transition:
        transform 0.6s ease-out,
        opacity 0.6s ease-out;
}

/* evitar seleção em elementos do slider */

.botao_icone_slider,
.material-symbols-outlined,
.slider {
    user-select: none;
}

header {
    background-color: #1b1b1b;
    display: flex;
    width: 100%;
    height: var(--altura-header);
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    background: rgba(27, 27, 27, 0.8);
    z-index: 2600;

    /* Transição suave para aparecer/desaparecer */
    transform: translateY(0);
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    will-change: transform;
    padding-right: var(--scrollbar-compensacao);
    border-bottom: 1px solid rgba(191, 161, 29, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* Classe para esconder o header */
header.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.14s cubic-bezier(0.4, 0, 1, 1);
}

header.header-scrolled {
    background: rgba(20, 20, 20, 0.9);
    border-bottom-color: rgba(191, 161, 29, 0.16);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}
.logo_header {
    margin-left: 20px;
}

.icon-header {
    display: flex;
    align-items: center;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.icon-header:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 0 10px rgba(191, 161, 29, 0.22));
}

.links_header_desktop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.links_header_desktop a {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 8px;

    min-height: 38px;
    padding: 0 19px;

    color: rgba(234, 234, 234, 0.78);
    text-decoration: none;
    font-family: hartwell;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;

    border-radius: 999px;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.links_header_desktop a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 1px;

    background: #bfa11d;
    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.links_header_desktop a.active {
    color: #151515;
    text-shadow: none;
}

.links_header_desktop a:hover {
    color: #d6b94a;
}

.links_header_desktop a.active:hover {
    color: #ffffff;
}

.links_header_desktop a.active::after {
    transform: scaleX(0);
}

.links_header_desktop span {
    color: #1b1b1b;
    background: #bfa11d;
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 9px;
    letter-spacing: 0.7px;
}

.links_header_desktop a.active span {
    color: #d6b94a;
    background: #151515;
}

.links_header_desktop a:hover span {
    color: #1b1b1b;
    background: #d6b94a;
}

.header-indicador {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 0;
    width: 0;
    height: 34px;

    border-radius: 999px;
    background: linear-gradient(135deg, #d6b94a, #bfa11d);
    box-shadow: 0 8px 20px rgba(191, 161, 29, 0.22);

    opacity: 0;
    pointer-events: none;
}

.links_header {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 360px;
    max-width: 100%;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 26%),
        linear-gradient(180deg, #1a1a1a 0%, #222222 56%, #181818 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;

    z-index: 2610;
    overflow-y: auto;
    overflow-x: hidden;
    padding: calc(var(--altura-header) + 18px) 0 34px;

    box-sizing: border-box;
    border-left: 1px solid rgba(191, 161, 29, 0.16);
    box-shadow:
        -18px 0 42px rgba(0, 0, 0, 0.42),
        inset 1px 0 0 rgba(255, 255, 255, 0.035);
}

.links_header.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.links_header ul {
    list-style: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 18px;
    margin: 0;
    display: flex;
    flex: 0 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.links_header ul::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.links_header ul li {
    opacity: 0;
    transform: translateX(20px);

    transition:
        opacity 0.45s ease var(--delay, 0s),
        transform 0.45s ease var(--delay, 0s),
        background 0.3s ease;

    position: relative;
    margin: 0;
    border-radius: 12px;
}

.links_header ul li a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    min-height: 50px;
    padding: 0 20px 0 22px;
    text-decoration: none;
    color: rgba(234, 234, 234, 0.78);
    font-size: 16px;
    font-family: hartwell;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;

    border-radius: 12px;

    transition:
        color 0.28s ease,
        background 0.28s ease,
        transform 0.28s ease;
}

.links_header ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0.3);

    width: 3px;
    height: 24px;

    border-radius: 999px;
    background: #bfa11d;
    opacity: 0;

    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.links_header ul li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
    transform: translateX(-2px);
}

.links_header ul li a.active {
    color: #d6b94a;
    background: linear-gradient(
        90deg,
        rgba(191, 161, 29, 0.16),
        rgba(191, 161, 29, 0.045)
    );
}

.links_header ul li a.active:hover {
    color: #ffffff;
}

.links_header ul li a.active::before {
    opacity: 1;
    transform: translateY(-50%) scaleY(1);
}

.links_header.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 20px;
    z-index: 2620;
    gap: 5px;
    padding: 0;
}

/* linhas hamburguer - sempre visível */

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #bfa11d;
    border-radius: 1.5px;
    transition: all 0.3s ease;
}

.menu-toggle:hover span {
    background: #d6b94a;
    box-shadow: 0 0 10px rgba(191, 161, 29, 0.35);
}

body.menu-open {
    overflow: hidden;
    touch-action: pan-y pan-x;
}

body.menu-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
}

.menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: absolute;
    top: 24px;
    right: 28px;
    margin: 0;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(191, 161, 29, 0.25);
    border-radius: 10px;

    color: #bfa11d;
    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;

    z-index: 2621;
}

.menu-close:active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(191, 161, 29, 0.45);
}

.menu-close:hover {
    background: rgba(191, 161, 29, 0.12);
    border-color: rgba(191, 161, 29, 0.5);
}

.menu-close span {
    font-size: 24px;
}

.links_header ul li.menu-highlight {
    margin: 8px 0 0;
    border-radius: 12px;
    overflow: visible;
}

.links_header ul li.menu-highlight a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;

    min-height: 54px;
    background:
        linear-gradient(
            135deg,
            rgba(191, 161, 29, 0.24),
            rgba(191, 161, 29, 0.07)
        ),
        rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(191, 161, 29, 0.42);
    border-radius: 12px;
    padding: 0 16px 0 18px;
    gap: 8px;
}

.links_header ul li.menu-highlight a.active {
    color: #1b1b1b;
    background: linear-gradient(135deg, #d6b94a, #bfa11d);
    box-shadow: 0 12px 28px rgba(191, 161, 29, 0.18);
}

.links_header ul li.menu-highlight a.active::before {
    opacity: 0;
}

.menu-item-label {
    display: block;
    font-size: 15px;
    color: inherit;
    font-weight: 700;
}

.menu-item-badge {
    display: inline-block;
    font-size: 10px;
    color: #1b1b1b;
    background: #bfa11d;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.links_header ul li.menu-highlight a.active .menu-item-badge {
    color: #d6b94a;
    background: #171717;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2605;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.links_header.no-transition ul li {
    transition: background 0.3s ease !important;
}

@media (max-width: 1000px) {
    .links_header ul li a {
        font-size: 15px;
    }

    .links_header ul {
        gap: 14px;
    }
}

@media (max-width: 1200px) {
    body {
        --altura-header: 76px;
    }

    .links_header_desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        padding: 0 5px;
        padding-right: calc(5px + var(--scrollbar-compensacao));
    }

    .logo_header img {
        width: 112px;
        margin-left: 0;
    }

    .links_header {
        width: min(78vw, 360px);
    }

    .links_header ul {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 10px;
        padding-right: calc(10px + var(--scrollbar-compensacao));
    }

    .menu-toggle {
        margin-right: 10px;
    }

    .menu-close {
        right: 14px;
    }

    .links_header {
        width: 82vw;
        min-width: 285px;
    }

    .links_header ul {
        padding-inline: 14px;
    }

    .links_header ul li a {
        min-height: 48px;
        padding-inline: 18px 16px;
    }
}

/*
MAIN
*/

.bloco-main {
    position: relative;
    min-height: calc(100dvh - var(--altura-header));

    display: flex;
    flex-direction: column;

    align-items: stretch;
    justify-content: flex-start;

    background:
        linear-gradient(
            120deg,
            rgba(191, 161, 29, 0.09) 0%,
            rgba(191, 161, 29, 0.025) 24%,
            transparent 46%
        ),
        linear-gradient(180deg, #171717 0%, #202020 48%, #1b1b1b 100%);

    color: #eaeaea;
    overflow: hidden;
}

.bloco-main::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            145deg,
            transparent 0%,
            transparent 42%,
            rgba(214, 185, 74, 0.055) 58%,
            transparent 76%
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 0%,
            transparent 24%,
            transparent 100%
        );

    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

/* overlay escuro */
.bloco-main__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(18, 18, 18, 0.94) 0%,
            rgba(21, 21, 21, 0.78) 52%,
            rgba(22, 22, 22, 0.58) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.24) 100%
        );
    z-index: 1;
}

/* banner */
.banner_drop_camisetas {
    width: 100%;
    max-width: 1300px; /* 🔥 corrigido */
    height: 120px;

    margin: 30px auto 0px; /* 🔥 ajuste fino */

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

    padding: 0px 30px; /* 🔥 corrigido (não fica achatado) */

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.06);

    overflow: hidden;

    cursor: pointer;
    text-decoration: none;

    z-index: 3;
    position: relative;
    transform-style: preserve-3d;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.banner_drop_camisetas::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);

    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(214, 185, 74, 0.22) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 100%
    );

    pointer-events: none;
}

.banner_drop_camisetas:hover {
    transform: translateY(-3px);
    border-color: rgba(191, 161, 29, 0.35);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.banner_drop_camisetas.banner-brilho::after {
    animation: banner-shine 1s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

@keyframes banner-shine {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(120%);
    }
}

.banner_drop_camisetas_conteudo h2 {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin: 6px 0px;
}

.banner_numero_drop {
    margin-bottom: -16px;
    font-size: 20px;
    letter-spacing: 3px;
    color: #bfbfbf;
    text-transform: uppercase;
}

.banner_numero_destaque {
    font-size: 64px;
    font-weight: 700;
    color: #bfa11d;
    line-height: 0.9;
}

.banner_titulo {
    font-size: 36px;
    font-weight: 500;
    margin-top: 4px;
    color: #f0f0f0;

    overflow: hidden;
    white-space: nowrap;
}

.typing-banner {
    display: inline-block;
    white-space: nowrap;
    position: relative;
}

.typing-banner::after {
    content: "";
    display: inline-block;

    width: 2px;
    height: 42px;

    margin-left: 4px;

    background-color: #d6b94a;

    position: relative;
    top: 6px;

    opacity: 1;
}

/* Cursor piscando */
.typing-banner.typing::after {
    animation: blink 0.8s infinite;
}

.banner_drop_camisetas_imagens {
    display: flex;
    gap: 15px;

    height: 100%;
}

/* conteúdo */
.bloco-main__conteudo {
    width: 100%;
    max-width: 700px;

    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;

    padding-left: 6%;
    padding-right: 6%;

    z-index: 2;
}

/* tag pequena */
.bloco-main__tag {
    color: #bfa11d;
    font-family: hartwell;
    font-size: 18px;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
    display: inline-block;
}

/* título */
.bloco-main__titulo {
    font-size: 72px;
    line-height: 1.05;
    margin: 14px 0 18px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #e6e6e6;
}

/* descrição */
.bloco-main__descricao {
    font-size: 20px;
    line-height: 1.65;
    color: #cfcfcf;
    max-width: 520px;
}

/* botões */
.bloco-main__acoes {
    margin: 32px 0;
    display: flex;
    gap: 16px;
}

.bloco-main__acoes a {
    text-decoration: none;
}

.btn {
    font-size: 19px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primario {
    background: #bfa11d;
    text-align: center;
    width: 150px;
    color: #000;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-primario::after,
.botao_bloco_plano::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);

    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 100%
    );

    pointer-events: none;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primario:hover::after,
.botao_bloco_plano:hover::after {
    transform: translateX(120%);
}

.btn-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(191, 161, 29, 0.35);
}

.btn-primario:active {
    transform: scale(0.97);
}

/* números */
.bloco-main__numeros {
    margin-top: 18px;
    display: flex;
    gap: 24px;
    font-size: 20px;
    color: #9e9e9e;
}

.bloco-main__numeros strong {
    font-size: 20px;
    color: #ffffff;
}

.bloco-main__numeros span {
    font-size: 16px;
    opacity: 0.9;
}

@media (min-width: 1900px) {
    .bloco-main__conteudo {
        padding-left: 6%;
        padding-right: 6%;
        margin-top: 30px;
        padding-bottom: 10px;
    }
}
@media (min-width: 1400px) {
    .bloco-main__conteudo {
        padding-left: 6%;
        padding-right: 6%;
        margin-top: 30px;
        padding-bottom: 10px;
    }
}

@media (max-width: 1424px) {
    .banner_drop_camisetas {
        width: 85%;
    }
    .bloco-main__conteudo {
        padding-left: 6%;
        padding-right: 6%;
        margin-top: 30px;
        padding-bottom: 10px;
    }
}

@media (max-width: 1024px) {
    .banner_drop_camisetas {
        width: 85%;
        height: 100px;

        padding: 0px 24px;

        align-items: flex-start;
        gap: 14px;
    }

    /* TEXTO */
    .banner_drop_camisetas_conteudo h2 {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 8px;
    }

    .banner_numero_drop {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .banner_numero_destaque {
        font-size: 52px;
    }

    .banner_titulo {
        font-size: 26px;
    }

    .typing-banner::after {
        height: 32px;
    }

    /* IMAGENS */
    .banner_drop_camisetas_imagens {
        width: 100%;
        justify-content: flex-end;
        gap: 12px;
    }

    .banner_drop_camisetas_imagens img {
        height: 100px;
    }

    .bloco-main__conteudo {
        padding-left: 6%;
        padding-right: 6%;
        margin-top: 30px;
        padding-bottom: 10px;
    }

    .bloco-main__titulo {
        font-size: 56px;
    }

    .bloco-main__descricao {
        font-size: 18px;
    }

    .bloco-main__numeros {
        gap: 20px;
        font-size: 18px;
    }

    .bloco-main__numeros strong {
        font-size: 18px;
    }
}

@media (max-width: 820px) {
    .banner_drop_camisetas {
        width: 85%;
        height: auto;

        padding: 0px 20px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* TEXTO */
    .banner_drop_camisetas_conteudo h2 {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 6px;
    }

    .banner_numero_drop {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .banner_numero_destaque {
        font-size: 52px;
    }

    .banner_titulo {
        font-size: 26px;
    }

    .typing-banner::after {
        height: 32px;
    }

    /* IMAGENS */
    .banner_drop_camisetas_imagens {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .banner_drop_camisetas_imagens img {
        height: 100px;
    }

    .bloco-main__titulo {
        font-size: 46px;
    }

    .bloco-main__descricao {
        font-size: 17px;
    }

    .bloco-main__numeros {
        gap: 16px;
        font-size: 16px;
    }

    .bloco-main__numeros strong {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner_drop_camisetas {
        width: 80%;
        height: auto;

        padding: 0px 20px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .banner_drop_camisetas_conteudo h2 {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 6px;
    }

    .banner_numero_drop {
        font-size: 17px;
        letter-spacing: 1.6px;
    }

    .banner_numero_destaque {
        font-size: 40px; /* meio termo entre 52 e 46 */
    }

    .banner_titulo {
        font-size: 20px;
    }

    .typing-banner::after {
        height: 28px;
        top: 6px;
    }

    .banner_drop_camisetas_imagens {
        width: 100%;

        display: flex;
        justify-content: center; /* começa a centralizar */
        gap: 10px;
    }

    .banner_drop_camisetas_imagens img {
        height: 80px; /* meio termo entre 100 e 85 */
    }

    .bloco-main__titulo {
        font-size: 42px;
    }

    .bloco-main__descricao {
        font-size: 16px;
        line-height: 1.5;
    }

    .bloco-main__numeros {
        gap: 14px;
        font-size: 15px;
        padding-bottom: 40px;
    }

    .bloco-main__numeros strong {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .banner_drop_camisetas {
        width: 90%;
        height: auto; /* 🔥 remove altura fixa */

        padding: 0 16px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* TEXTO */
    .banner_drop_camisetas_conteudo h2 {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        flex-wrap: wrap;
        gap: 6px;
    }

    .banner_numero_drop {
        display: flex;
        align-items: baseline;
        gap: 4px;
        font-size: 13px;
        letter-spacing: 1.4px;
    }

    .banner_numero_destaque {
        font-size: 42px;
    }

    .banner_titulo {
        font-size: 20px;
    }

    .typing-banner::after {
        height: 26px;
        top: 6px;
    }

    /* IMAGENS */
    .banner_drop_camisetas_imagens {
        width: 100%;

        display: flex;
        justify-content: center; /* 🔥 joga pra direita */

        margin-top: 4px;
        gap: 10px;
    }

    .banner_drop_camisetas_imagens img {
        height: 80px; /* 🔥 controla aqui */
    }

    /* BLOCO MAIN */
    .bloco-main {
        min-height: calc(100dvh - var(--altura-header));
    }

    .bloco-main__conteudo {
        padding-left: 6%;
        padding-right: 6%;
        margin-top: 60px;
        padding-bottom: 10px;
    }

    .bloco-main__tag {
        font-size: 17px;
    }

    .bloco-main__acoes {
        margin: 20px 0;
        gap: 10px;
    }

    .bloco-main__titulo {
        font-size: 38px;
        margin: 2px 0 12px;
    }

    .bloco-main__descricao {
        font-size: 15px;
        line-height: 1.5;
    }

    .bloco-main__numeros {
        gap: 12px;
        font-size: 13px;
    }

    .bloco-main__numeros strong {
        font-size: 15px;
    }
    .bloco-main__acoes {
        width: auto;
        height: auto;
    }
}

/* ===============================
   HERO - REFINAMENTO PREMIUM
================================ */

.bloco-main {
    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(191, 161, 29, 0.08),
            transparent 28%
        ),
        linear-gradient(180deg, #151515 0%, #1e1e1e 54%, #191919 100%);
}

.bloco-main::before {
    background:
        linear-gradient(
            145deg,
            transparent 0%,
            transparent 46%,
            rgba(214, 185, 74, 0.045) 62%,
            transparent 78%
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 0%,
            transparent 28%,
            transparent 100%
        );
}

.bloco-main__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(18, 18, 18, 0.96) 0%,
            rgba(18, 18, 18, 0.82) 48%,
            rgba(18, 18, 18, 0.62) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.28) 100%
        );
}

.banner_drop_camisetas {
    width: min(82%, 1120px);
    max-width: 1120px;
    height: 86px;
    margin-top: 26px;
    padding: 0 26px;
    border-radius: 18px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.045),
        rgba(255, 255, 255, 0.022)
    );
    border-color: rgba(255, 255, 255, 0.07);
}

.banner_drop_camisetas_conteudo h2 {
    gap: 2px;
}

.banner_numero_drop {
    margin-bottom: -8px;
    font-size: 14px;
    letter-spacing: 2.3px;
}

.banner_numero_destaque {
    font-size: 44px;
}

.banner_titulo {
    font-size: 25px;
}

.typing-banner::after {
    height: 30px;
    top: 5px;
}

.banner_drop_camisetas_imagens {
    gap: 10px;
    align-items: flex-end;
    line-height: 0;
}

.banner_drop_camisetas_imagens img {
    display: block;
    height: clamp(68px, 8.5vw, 86px);
    object-fit: contain;
}

.bloco-main__conteudo {
    max-width: 760px;
    justify-content: center;
    padding-left: 7%;
    padding-right: 7%;
    margin-top: 0;
    padding-bottom: 34px;
}

.bloco-main__tag {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.35;
}

.bloco-main__titulo {
    margin: 0 0 18px;
    font-family: hartwell;
    font-size: clamp(58px, 7vw, 92px);
    font-weight: 700;
    letter-spacing: 0;
    color: #f0f0f0;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.bloco-main__descricao {
    max-width: 610px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(238, 238, 238, 0.82);
}

.bloco-main__acoes {
    margin: 28px 0 26px;
    align-items: center;
    gap: 12px;
}

.bloco-main__acoes .btn {
    min-width: 174px;
    padding: 14px 22px;
    border-radius: 10px;
    font-family: hartwell;
    font-size: 16px;
    text-align: center;
}

.bloco-main__acoes .btn-primario,
.bloco-main__acoes .btn-secundario {
    width: auto;
}

.btn-secundario {
    color: #f2f2f2;
    border: 1px solid rgba(191, 161, 29, 0.34);
    background: rgba(255, 255, 255, 0.035);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.btn-secundario:hover {
    transform: translateY(-2px);
    border-color: rgba(214, 185, 74, 0.58);
    background: rgba(191, 161, 29, 0.1);
}

.bloco-main__numeros {
    width: min(100%, 560px);
    margin-top: 0;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.032);
}

.bloco-main__numeros span {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    color: rgba(235, 235, 235, 0.62);
    opacity: 1;
}

.bloco-main__numeros span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.bloco-main__numeros strong {
    font-family: hartwell;
    font-size: 22px;
    line-height: 1;
    color: #f4f4f4;
}

@media (max-width: 1024px) {
    .banner_drop_camisetas {
        width: 84%;
        height: 76px;
        padding: 0 20px;
        align-items: center;
    }

    .banner_numero_destaque {
        font-size: 36px;
    }

    .banner_titulo {
        font-size: 21px;
    }

    .banner_drop_camisetas_imagens img {
        height: clamp(64px, 7.5vw, 76px);
    }
}

@media (max-width: 820px) {
    .banner_drop_camisetas {
        width: min(86%, 520px);
        min-height: auto;
        height: auto;
        padding: 14px 18px 2px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
    }

    .banner_drop_camisetas_conteudo h2 {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .banner_numero_drop {
        display: flex;
        align-items: baseline;
        gap: 5px;
        margin-bottom: -2px;
    }

    .banner_titulo {
        white-space: nowrap;
    }

    .banner_drop_camisetas_imagens {
        width: 100%;
        height: 92px;
        flex: 0 0 auto;
        align-items: flex-end;
        justify-content: center;
        margin-top: 0;
        gap: 28px;
    }

    .banner_drop_camisetas_imagens img {
        height: 100%;
        max-height: 100%;
    }

    .bloco-main__conteudo {
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 38px;
    }

    .bloco-main__descricao {
        font-size: 17px;
    }

    .bloco-main__numeros {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px 0;
    }

    .bloco-main__numeros span:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 620px) {
    .banner_drop_camisetas {
        width: 88%;
        padding-inline: 18px;
    }

    .banner_drop_camisetas_conteudo h2 {
        width: 100%;
    }

    .banner_drop_camisetas_imagens {
        width: 100%;
        height: 92px;
        align-items: flex-end;
        justify-content: center;
        gap: 28px;
    }

    .banner_drop_camisetas_imagens img {
        height: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .banner_drop_camisetas {
        width: 90%;
        min-height: auto;
        padding: 13px 16px 2px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .banner_drop_camisetas_conteudo h2 {
        width: 100%;
    }

    .banner_numero_drop {
        font-size: 12px;
    }

    .banner_numero_destaque {
        font-size: 34px;
    }

    .banner_titulo {
        font-size: 17px;
    }

    .banner_drop_camisetas_imagens {
        width: 100%;
        height: 84px;
        align-items: flex-end;
        justify-content: center;
    }

    .banner_drop_camisetas_imagens img {
        height: 100%;
        max-height: 100%;
    }

    .bloco-main__conteudo {
        margin-top: 34px;
        padding-bottom: 28px;
    }

    .bloco-main__tag {
        font-size: 15px;
    }

    .bloco-main__titulo {
        font-size: 43px;
    }

    .bloco-main__descricao {
        font-size: 15px;
    }

    .bloco-main__acoes {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .bloco-main__acoes .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .banner_drop_camisetas {
        width: 92%;
        padding: 12px 14px 2px;
    }

    .banner_numero_destaque {
        font-size: 30px;
    }

    .banner_titulo {
        font-size: 15px;
    }

    .banner_drop_camisetas_imagens {
        height: 74px;
    }
}

/*
Sobre mim
*/

.sobre_mim,
.como_funciona {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ===============================
   TÍTULOS
================================ */

.titulo_sobre_mim,
.titulo_feedbacks,
.titulo_planos,
.titulo_como_funciona,
.titulo_camiseta {
    font-family: hartwell;
    margin: 45px auto 0 auto;
    text-align: center;
    font-size: 55px;
    color: #bfa11d;
    width: min(90%, 1100px);
}

/* ===============================
   BLOCO SOBRE MIM
================================ */

.bloco_sobre_mim {
    font-family: Arial, Helvetica, sans-serif;

    margin: 35px auto 0 auto; /* ⬅️ centralização real */
    width: 100%;
    max-width: 900px; /* controla largura máxima */
    padding: 30px;

    display: flex;
    align-items: center;
    gap: 30px;

    border: 0.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;

    background-color: #2f2f2f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ===============================
   FOTO
================================ */

.foto_gustavo_sobre_mim {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #bfa11d;
    flex-shrink: 0;
}

/* ===============================
   TEXTO
================================ */

.nome_gustavo_sobre_mim {
    font-family: hartwell;
    color: #bfa11d;
    font-size: 28px;
}

.numero_cref {
    font-family: hartwell;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.8;
}

.texto_sobre_mim {
    margin-top: 19px;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.6;
    text-align: justify;
}

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

@media (max-width: 1024px) {
    .bloco_sobre_mim {
        width: 85%;
    }
}

@media (max-width: 820px) {
    .bloco_sobre_mim {
        flex-direction: column;
        text-align: center;
        width: 85%;
    }

    .foto_gustavo_sobre_mim {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .titulo_sobre_mim,
    .titulo_feedbacks,
    .titulo_planos,
    .titulo_como_funciona,
    .titulo_camiseta {
        font-size: 47px;
        width: 90%;
    }

    .bloco_sobre_mim {
        width: 85%;
        padding: 25px;
    }

    .texto_sobre_mim {
        font-size: 17px;
    }

    .nome_gustavo_sobre_mim {
        font-size: 24px;
    }
}

.bloco_sobre_mim {
    width: min(88%, 1040px);
    max-width: none;
    align-items: stretch;
    gap: 34px;
    padding: 28px;
    border-color: rgba(255, 255, 255, 0.22);
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(191, 161, 29, 0.09),
            transparent 34%
        ),
        linear-gradient(135deg, #303030 0%, #262626 100%);
}

.sobre_mim_identidade {
    width: 230px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 14px;
    border: 1px solid rgba(191, 161, 29, 0.18);
    background: rgba(255, 255, 255, 0.035);
}

.sobre_mim_identidade > div {
    text-align: center;
}

.sobre_mim_identidade .foto_gustavo_sobre_mim {
    width: 210px;
    height: 270px;
    border-radius: 18px;
    border: 1px solid rgba(191, 161, 29, 0.55);
    object-fit: cover;
    object-position: center center;
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.38),
        0 0 22px rgba(191, 161, 29, 0.08);
}

.conteudo_texto {
    flex: 1;
    min-width: 0;
}

.sobre_mim_resumo {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre_mim_resumo span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #d6b94a;
    font-family: hartwell;
    font-size: 13px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.sobre_mim_resumo p {
    margin: 0;
    color: #f1f1f1;
    font-size: 17px;
    line-height: 1.5;
}

.sobre_mim_infos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.sobre_mim_info {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.sobre_mim_info--ampla {
    grid-column: 1 / -1;
    position: relative;
    border-color: rgba(191, 161, 29, 0.26);
    background:
        linear-gradient(
            90deg,
            rgba(191, 161, 29, 0.1),
            rgba(255, 255, 255, 0.035)
        );
    overflow: hidden;
}

.sobre_mim_info--ampla::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: #bfa11d;
    box-shadow: 0 0 14px rgba(191, 161, 29, 0.28);
}

.sobre_mim_info h3 {
    margin: 0 0 8px;
    color: #bfa11d;
    font-family: hartwell;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.sobre_mim_info--ampla h3 {
    font-size: 20px;
    text-transform: uppercase;
}

.sobre_mim_info p {
    margin: 0;
    color: #e4e4e4;
    font-size: 15px;
    line-height: 1.45;
}

.sobre_mim_numeros {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre_mim_numeros span {
    min-height: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.12);
    color: rgba(240, 240, 240, 0.78);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: center;
}

.sobre_mim_numeros strong {
    color: #d6b94a;
    font-family: hartwell;
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .bloco_sobre_mim {
        width: min(88%, 900px);
        gap: 24px;
    }

    .sobre_mim_identidade {
        width: 230px;
    }

    .sobre_mim_identidade .foto_gustavo_sobre_mim {
        width: 190px;
        height: 244px;
    }

    .sobre_mim_resumo p {
        font-size: 16px;
    }
}

@media (max-width: 820px) {
    .bloco_sobre_mim {
        width: min(88%, 560px);
        flex-direction: column;
        text-align: center;
    }

    .sobre_mim_identidade {
        width: 100%;
    }

    .sobre_mim_identidade .foto_gustavo_sobre_mim {
        width: min(100%, 280px);
        height: 300px;
    }

    .sobre_mim_infos {
        grid-template-columns: 1fr;
    }

    .sobre_mim_numeros {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .bloco_sobre_mim {
        width: 85%;
        padding: 20px;
        gap: 18px;
    }

    .sobre_mim_identidade .foto_gustavo_sobre_mim {
        width: min(100%, 260px);
        height: 278px;
        border-radius: 16px;
    }

    .sobre_mim_resumo p {
        font-size: 15px;
    }

    .sobre_mim_info {
        padding: 14px;
    }

    .sobre_mim_info p {
        font-size: 14px;
    }

    .sobre_mim_numeros {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/*
Como funciona
*/

.titulo_planos {
    margin-top: 45px;
}

.blocos_como_funciona {
    --progresso-como-funciona: 0;

    position: relative;
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    width: min(90%, 1120px);
    margin: 45px auto 0 auto;
    padding-top: 62px;
}

.linha_como_funciona {
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 0;

    background: rgba(255, 255, 255, 0.16);
    overflow: hidden;
}

.linha_como_funciona span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(var(--progresso-como-funciona));
    transform-origin: left center;

    background: linear-gradient(90deg, #bfa11d, #d6b94a);
    box-shadow: 0 0 14px rgba(191, 161, 29, 0.18);
}

.bloco_faq {
    position: relative;
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;

    width: 100%;
    min-height: 360px;

    padding: 32px;

    display: grid;
    grid-template-rows: 86px 1fr;
    align-items: stretch;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(191, 161, 29, 0.08),
            transparent 42%
        ),
        linear-gradient(180deg, #303030 0%, #292929 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s cubic-bezier(0.22, 0.61, 0.31, 1),
        border-color 0.35s ease,
        background 0.45s ease,
        box-shadow 0.55s cubic-bezier(0.16, 1.1, 0, 1);

    overflow: hidden;
    cursor: default;
    z-index: 1;

    opacity: 0.38;
    transform: translateY(14px) scale(0.985);
}

.bloco_faq::before {
    content: attr(data-scroll-etapa);
    position: absolute;
    left: 50%;
    top: -52px;
    width: 38px;
    height: 38px;
    transform: translateX(-50%);
    z-index: 2;

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

    border-radius: 50%;
    border: 1px solid rgba(191, 161, 29, 0.42);
    background: #242424;
    color: rgba(214, 185, 74, 0.58);
    font-family: hartwell;
    font-size: 15px;
    box-shadow: 0 0 0 7px #1b1b1b;

    transition:
        color 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.35s ease,
        transform 0.35s cubic-bezier(0.16, 1.1, 0, 1);
}

.bloco_faq::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    top: 22px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(191, 161, 29, 0.72),
        transparent
    );

    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition:
        opacity 0.36s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bloco_faq:not(.etapa-ativa):hover {
    transform: translateY(-6px);
    border-color: rgba(191, 161, 29, 0.38);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.bloco_faq.etapa-ativa {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(191, 161, 29, 0.5);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(191, 161, 29, 0.13),
            transparent 46%
        ),
        linear-gradient(180deg, #303030 0%, #252525 100%);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.44),
        0 0 24px rgba(191, 161, 29, 0.08);
}

.bloco_faq.etapa-ativa::before {
    color: #151515;
    background: #d6b94a;
    border-color: #d6b94a;
    transform: translateX(-50%) scale(1.05);
    box-shadow:
        0 0 0 7px #1b1b1b,
        0 0 18px rgba(191, 161, 29, 0.28);
}

.bloco_faq.etapa-ativa::after {
    opacity: 1;
    transform: scaleX(1);
}

.bloco_faq.animando .resposta_faq,
.bloco_faq.animando .resposta_faq li,
.bloco_faq.animando .faq_titulo_texto,
.bloco_faq.animando .faq_icone {
    transition: none;
}

/* enquanto o GSAP anima o card, o CSS não compete em transform */
.bloco_faq.animando {
    transition:
        border-color 0.35s ease,
        background 0.45s ease,
        box-shadow 0.55s cubic-bezier(0.16, 1.1, 0, 1);
}

/* ========================= */
/* TITULO */
/* ========================= */

.titulo_pergunta_faq {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: min(100%, 310px);
    margin-inline: auto;
    height: 86px;
    min-height: 0;
    padding: 0;

    text-align: center;
    font-size: 23px;
    line-height: 1.18;
    color: #bfa11d;
    font-family: hartwell;

    transition:
        transform 0.52s cubic-bezier(0.16, 1.1, 0, 1),
        opacity 0.36s ease;
}

.faq_titulo_texto {
    display: inline-block;
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: center;
    transition:
        opacity 0.34s ease,
        transform 0.46s cubic-bezier(0.16, 1.1, 0, 1);
}

/* quando abre o card */
.bloco_faq.ativo .titulo_pergunta_faq {
    transform: translateY(0);
}

.bloco_faq.ativo .faq_titulo_texto {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
}

/* ========================= */
/* ICONE + */
/* ========================= */

.faq_icone {
    display: none;
}

@keyframes faq-click-pulse {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }

    22% {
        opacity: 0.78;
    }

    62% {
        opacity: 0;
        transform: scale(1.28);
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bloco_faq:not(.ativo) .faq_icone::after {
        animation-duration: 4s;
    }
}

/* ========================= */
/* RESPOSTA */
/* ========================= */

.resposta_faq {
    position: relative;
    max-height: none;
    overflow: visible;
    opacity: 1;
    transform: none;

    width: min(100%, 290px);
    margin: 24px auto 0;
    text-align: left;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16.5px;
    line-height: 1.55;
    color: rgba(245, 245, 245, 0.86);

    transition:
        max-height 0.8s cubic-bezier(0.22, 0.61, 0.31, 1),
        opacity 0.55s cubic-bezier(0.16, 1.1, 0, 1),
        transform 0.55s cubic-bezier(0.16, 1.1, 0, 1);
}

.resposta_faq::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 20px;

    background: linear-gradient(
        90deg,
        rgba(191, 161, 29, 0),
        rgba(191, 161, 29, 0.38),
        rgba(191, 161, 29, 0)
    );

    opacity: 0.72;
    transform: scaleX(1);
    transform-origin: center;
    transition:
        opacity 0.4s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ativa */

.bloco_faq.ativo .resposta_faq {
    max-height: 620px;
    opacity: 1;
    transform: translateY(0);
}

.bloco_faq.ativo .resposta_faq::before {
    opacity: 1;
    transform: scaleX(1);
}

/* ========================= */
/* LISTA */
/* ========================= */

.resposta_faq ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resposta_faq li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;

    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.45s cubic-bezier(0.16, 1.1, 0, 1),
        transform 0.45s cubic-bezier(0.16, 1.1, 0, 1);
}

.bloco_faq.ativo .resposta_faq li {
    opacity: 1;
    transform: translateY(0);
}

.resposta_faq li::before {
    content: "●";
    color: #bfa11d;
    font-size: 10px;
    margin-top: 8px;
}

.bloco_faq.ativo .resposta_faq li:nth-child(1) {
    transition-delay: 0.1s;
}

.bloco_faq.ativo .resposta_faq li:nth-child(2) {
    transition-delay: 0.2s;
}

.bloco_faq.ativo .resposta_faq li:nth-child(3) {
    transition-delay: 0.3s;
}

.bloco_faq.ativo .resposta_faq li:nth-child(4) {
    transition-delay: 0.4s;
}

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

@media (max-width: 1024px) {
    .blocos_como_funciona {
        width: min(90%, 980px);
        gap: 22px;
    }

    .bloco_faq {
        grid-template-rows: 82px 1fr;
        min-height: 390px;
        padding: 28px;
    }

    .titulo_pergunta_faq {
        font-size: 21px;
        height: 82px;
    }
}

@media (max-width: 820px) {
    .blocos_como_funciona {
        width: min(var(--mobile-width), 520px);
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 26px;
        padding-top: 0;
        padding-left: 0;
    }

    .linha_como_funciona {
        top: 22px;
        bottom: 22px;
        left: -26px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .linha_como_funciona span {
        transform: scaleY(var(--progresso-como-funciona));
        transform-origin: center top;
    }

    .bloco_faq {
        display: flex;
        flex-direction: column;
        min-height: auto;
        align-items: stretch;
    }

    .titulo_pergunta_faq {
        width: 100%;
        height: auto;
        min-height: 56px;
        margin-inline: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 20px;
        line-height: 1.22;
    }

    .faq_titulo_texto {
        max-width: 92%;
        text-align: center;
    }

    .resposta_faq {
        width: 100%;
        margin-top: 10px;
        margin-inline: 0;
    }

    .resposta_faq::before {
        margin-bottom: 12px;
    }

    .bloco_faq::before {
        display: none;
    }

    .bloco_faq.etapa-ativa::before {
        transform: none;
    }
}

@media (max-width: 480px) {
    .blocos_como_funciona {
        width: min(82%, 420px);
        padding-left: 0;
    }

    .linha_como_funciona {
        left: -24px;
    }

    .bloco_faq {
        width: 100%;
        padding: 24px;
    }

    .resposta_faq {
        font-size: 16px;
    }

    .titulo_pergunta_faq {
        font-size: 19px;
    }

}

/*
Feedbacks
*/

/* Contêiner principal */
:root {
    --accent: #bfa11d;
    --bg-card: #1e1e1e;
    --max-width: 1000px;
    --radius: 16px;
    --slide-height-desktop: 600px;
    --slide-height-tablet: 420px;
    --slide-height-mobile: 400px;

    --mobile-width: 85%;
}

/* container */
.feedbacks,
.camiseta {
    background-color: #1b1b1b;
}

.titulo_feedbacks {
    padding-top: 30px;
}

.bloco_fundo_feedbacks {
    position: relative;
    width: min(90%, 440px);
    margin: 35px auto 0;
    padding: 54px 18px 24px;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 24%),
        linear-gradient(180deg, #242424 0%, #171717 100%);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;

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

    user-select: none;
}

.bloco_fundo_feedbacks::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);

    width: 88px;
    height: 5px;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.bloco_fundo_feedbacks::after {
    content: "";
    position: absolute;
    inset: 12px;

    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.035);

    pointer-events: none;
}

/* instrução */
.explicacao_feedbacks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;

    margin: 22px auto 0;
    width: min(92%, 560px);

    font-family: hartwell;
    color: rgba(234, 234, 234, 0.78);
    font-size: 14px;
    letter-spacing: 0.35px;

    opacity: 0.95;

    text-align: center;
    flex-wrap: wrap;
}

.feedbacks_instrucao_item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 34px;
    padding: 0 12px;

    border: 1px solid rgba(191, 161, 29, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.feedbacks_instrucao_item:hover {
    color: #d6b94a;
    border-color: rgba(191, 161, 29, 0.36);
    background: rgba(191, 161, 29, 0.08);
    transform: translateY(-1px);
}

.feedbacks_instrucao_item .material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
    color: #d6b94a;
    opacity: 0.9;
}

/* botões */
.botao_icone_slider {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.bloco_fundo_feedbacks .botao_icone_slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 25;

    width: 38px;
    height: 38px;

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

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0.72;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.bloco_fundo_feedbacks .botao_icone_slider.left {
    left: 22px;
}

.bloco_fundo_feedbacks .botao_icone_slider.right {
    right: 22px;
}

.bloco_fundo_feedbacks .botao_icone_slider:hover {
    transform: translateY(-50%) scale(1.06);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.24);
    opacity: 1;
}

/* ícones */
.botao_icone_slider .material-symbols-outlined {
    font-size: 28px;
    line-height: 1;
    color: #ffffff;

    cursor: pointer;
    user-select: none;

    opacity: 0.8;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.material-symbols-outlined.botao:hover {
    opacity: 1;
    transform: scale(1.1);
}

.bloco_fundo_feedbacks .material-symbols-outlined.botao {
    width: 100%;
    height: 100%;

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

    font-size: 20px;
    color: rgba(255, 255, 255, 0.86);
    opacity: 1;
}

.bloco_fundo_feedbacks .botao_icone_slider.left .material-symbols-outlined {
    transform: translateX(1px);
}

.bloco_fundo_feedbacks .botao_icone_slider.right .material-symbols-outlined {
    transform: translateX(0);
}

/* slider */

.slider {
    position: relative;

    width: 100%;
    max-width: 100%;

    height: 650px;

    overflow: hidden;
    border-radius: 20px;

    background: #111111;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.055),
        inset 0 -22px 42px rgba(0, 0, 0, 0.32);

    touch-action: pan-y;

    cursor: pointer;
}

.slider_track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slider-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 48px;

    color: white;

    opacity: 0;
    scale: 0.92;
    transition:
        opacity 0.25s ease,
        scale 0.25s ease;

    pointer-events: none;

    z-index: 10;
}

.slider-feedback.show {
    opacity: 1;
    scale: 1;
}

/* slides */

.slides {
    position: absolute;
    inset: 0;

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

    transition: transform 0.5s ease;

    will-change: transform;

    pointer-events: none;
}

/* imagens */

.slides img {
    max-width: calc(100% - 48px);
    max-height: calc(100% - 142px);

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    padding-bottom: 0;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));

    pointer-events: auto;
    cursor: pointer;
}

.feedbacks-galeria-controles {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    bottom: 18px;
    z-index: 22;

    width: calc(100% - 34px);
    height: 86px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;

    border-radius: 0 0 18px 18px;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0) 0%,
        rgba(17, 17, 17, 0.9) 34%,
        #111111 100%
    );

    pointer-events: none;
}

.feedbacks-contador {
    color: rgba(255, 255, 255, 0.72);
    font-family: hartwell;
    font-size: 12px;
    letter-spacing: 0.8px;
    line-height: 1;
}

/* dots */

.dots {
    display: flex;
    gap: 14px;
}

.bloco_fundo_feedbacks .dots {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;

    width: 262px;
    max-width: calc(100% - 30px);
    justify-content: flex-start;
    gap: 9px;
    z-index: 22;
    overflow: hidden;
    padding: 8px 6px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    pointer-events: auto;
}

.bloco_fundo_feedbacks .dots::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.dots__dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.35);

    border: none;
    padding: 0;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    transition:
        background 0.5s ease,
        transform 0.2s ease;
}

.bloco_fundo_feedbacks .dots__dot {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    background-color: rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;

    opacity: 0.48;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.dots__dot.active {
    background-color: #ffffff;
    transform: scale(1.18);
}

.bloco_fundo_feedbacks .dots__dot.active {
    opacity: 1;
    position: relative;
    z-index: 2;
    transform: translateY(-3px) scale(1.16);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 0 0 1px rgba(191, 161, 29, 0.45),
        0 8px 18px rgba(0, 0, 0, 0.32);
}

/* ======================
   TABLET
====================== */

@media (max-width: 1024px) {
    .bloco_fundo_feedbacks {
        width: min(85%, 410px);
        padding: 50px 16px 22px;
    }

    .bloco_fundo_feedbacks .slider {
        height: 610px;
    }
}

/* ======================
   TABLET PEQUENO
====================== */

@media (max-width: 820px) {
    .bloco_fundo_feedbacks {
        width: min(85%, 390px);
    }
}

/* ======================
   MOBILE
====================== */

@media (max-width: 480px) {
    .titulo_feedbacks {
        width: 90%;
    }

    /* instrução */

    .explicacao_feedbacks {
        width: min(92%, 330px);
        font-size: 12px;
        gap: 6px;
    }

    .feedbacks_instrucao_item {
        min-height: 30px;
        padding: 0 10px;
        gap: 5px;
    }

    .feedbacks_instrucao_item .material-symbols-outlined {
        font-size: 16px;
    }

    .slider {
        height: 560px;
        overflow: hidden;
    }

    .bloco_fundo_feedbacks {
        position: relative;
        margin-top: 25px;
        width: min(92%, 360px);
        padding: 46px 12px 18px;
        border-radius: 24px;
    }

    .bloco_fundo_feedbacks::before {
        top: 19px;
        width: 72px;
    }

    /* setas mobile */

    .botao_icone_slider {
        position: absolute;

        top: 50%;
        transform: translateY(-50%);

        z-index: 20;

        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(4px);

        border-radius: 50%;

        width: 36px;
        height: 36px;

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

    /* ícone */

    .material-symbols-outlined.botao {
        font-size: 20px;
        color: black;
        opacity: 0.7;

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

    /* posições */

    .botao_icone_slider.left {
        left: -6%;
    }

    .botao_icone_slider.right {
        right: -6%;
    }

    .bloco_fundo_feedbacks .botao_icone_slider {
        top: 50%;
        width: 34px;
        height: 34px;

        background: rgba(255, 255, 255, 0.13);
        border-color: rgba(255, 255, 255, 0.18);
        opacity: 0.68;
    }

    .bloco_fundo_feedbacks .botao_icone_slider.left {
        left: 16px;
    }

    .bloco_fundo_feedbacks .botao_icone_slider.right {
        right: 16px;
    }

    .bloco_fundo_feedbacks .material-symbols-outlined.botao {
        font-size: 19px;
        color: #ffffff;
        opacity: 1;
    }

    .bloco_fundo_feedbacks .botao_icone_slider.left .material-symbols-outlined {
        transform: translateX(1px);
    }

    .bloco_fundo_feedbacks
        .botao_icone_slider.right
        .material-symbols-outlined {
        transform: translateX(0);
    }

    /* imagens */

    .slides img {
        max-width: calc(100% - 42px);
        max-height: calc(100% - 128px);
        height: auto;
        object-fit: contain;
    }

    /* dots */

    .feedbacks-galeria-controles {
        bottom: 12px;
        width: calc(100% - 24px);
        height: 78px;
        gap: 7px;
        border-radius: 0 0 16px 16px;
    }

    .feedbacks-contador {
        font-size: 11px;
    }

    .dots {
        gap: 8px;
    }

    .bloco_fundo_feedbacks .dots {
        width: 238px;
        max-width: calc(100% - 24px);
        justify-content: flex-start;
        overflow-x: hidden;
        overflow-y: hidden;
        padding: 8px 6px 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bloco_fundo_feedbacks .dots::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .bloco_fundo_feedbacks .dots__dot {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        border-radius: 8px;
    }
}

/* =================================
   SEÇÃO CAMISETA - SLIDER
   ================================= */

.camiseta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px auto 0;
    padding: 0;
}

.bloco_camiseta {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 0 auto;
}

.subtitulo_camiseta {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    line-height: 1.25;
    color: #e6e6e6;
    margin-top: 12px;
    margin-bottom: 34px;
}

.subtitulo_camiseta span {
    color: #d6b94a;
    font-family: hartwell;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

/* ===============================
   CAMISETA - VITRINE DROP
   =============================== */

.bloco_camiseta {
    width: min(92%, 1180px);
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding-bottom: 72px;
}

.bloco_video_camiseta {
    position: relative;
    justify-self: center;
    width: min(100%, 332px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
    padding: 16px;

    border-radius: 28px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.055);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.36),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.bloco_video_camiseta::before {
    content: none;
}

.container_video_camiseta {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 300px;
    aspect-ratio: 9 / 16;
    margin-top: 0;
    overflow: hidden;

    border-radius: 22px;
    border: 1px solid rgba(191, 161, 29, 0.22);
    background: #111111;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.42),
        0 0 26px rgba(191, 161, 29, 0.1);
}

.container_video_camiseta iframe,
.container_video_camiseta video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.bloco_fotos_camiseta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 10px;
}

.cabecalho_fotos_camiseta {
    max-width: 620px;
}

.cabecalho_fotos_camiseta span {
    display: inline-flex;
    margin-bottom: 10px;

    color: #d6b94a;
    font-family: hartwell;
    font-size: 18px;
    letter-spacing: 0.8px;
}

.cabecalho_fotos_camiseta p {
    margin: 0;

    color: #dcdcdc;
    font-size: 18px;
    line-height: 1.55;
}

.grade_fotos_camiseta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.foto_camiseta_card {
    position: relative;

    min-height: 430px;
    margin: 0;
    padding: 22px 18px 52px;

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

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(191, 161, 29, 0.1),
            transparent 46%
        ),
        linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);

    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.foto_camiseta_card:hover {
    transform: translateY(-6px);
    border-color: rgba(191, 161, 29, 0.32);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.42),
        0 0 22px rgba(191, 161, 29, 0.08);
}

.foto_camiseta_card.zoom-ativo {
    border-color: rgba(191, 161, 29, 0.48);
    box-shadow:
        0 24px 54px rgba(0, 0, 0, 0.44),
        0 0 24px rgba(191, 161, 29, 0.12);
}

.foto_camiseta_card picture {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.foto_camiseta_card img {
    width: auto;
    max-width: 100%;
    max-height: 350px;

    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
    transform-origin: center;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.foto_camiseta_card.zoom-ativo img {
    transform: scale(1.16);
}

.foto_camiseta_card figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;

    color: rgba(234, 234, 234, 0.82);
    font-family: hartwell;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bloco_fotos_camiseta .btn {
    align-self: center;
    text-decoration: none;
    min-width: 290px;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .bloco_camiseta {
        width: min(90%, 760px);
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 64px;
    }

    .bloco_video_camiseta {
        order: 1;
        width: min(100%, 332px);
        margin-inline: auto;
    }

    .bloco_fotos_camiseta {
        order: 2;
        align-items: center;
    }

    .cabecalho_fotos_camiseta {
        text-align: center;
    }

    .bloco_fotos_camiseta .btn {
        align-self: center;
    }
}

@media (max-width: 640px) {
    .subtitulo_camiseta {
        font-size: 20px;
        margin-bottom: 26px;
    }

    .bloco_camiseta {
        padding-bottom: 54px;
    }

    .bloco_video_camiseta {
        width: min(100%, 320px);
        padding: 12px;
        border-radius: 24px;
    }

    .container_video_camiseta {
        border-radius: 20px;
    }

    .grade_fotos_camiseta {
        grid-template-columns: 1fr;
        width: min(100%, 330px);
    }

    .foto_camiseta_card {
        min-height: 360px;
    }

    .foto_camiseta_card img {
        max-height: 285px;
    }

    .cabecalho_fotos_camiseta p {
        font-size: 16px;
    }
}

/*
Planos
*/

.bloscos_planos {
    width: min(82%, 920px);
    margin: 34px auto 48px;
    justify-self: center;
    gap: 42px;
    display: flex;
    align-items: stretch;
}

.bloco_plano {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(191, 161, 29, 0.08),
            transparent 42%
        ),
        linear-gradient(180deg, #252525 0%, #1f1f1f 100%);
    border-radius: 20px;
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    width: min(47%, 410px);
    min-width: 0;
    max-width: 410px;
    min-height: 430px;
    padding: 30px 24px 24px;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.bloco_plano:hover {
    transform: translateY(-5px) scale(1.005);
    border-color: rgba(191, 161, 29, 0.45);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.5),
        0 0 28px rgba(191, 161, 29, 0.08);
}

.bloco_plano.destaque {
    position: relative;
    border: 1px solid #bfa11d;
    box-shadow:
        0 28px 66px rgba(0, 0, 0, 0.48),
        0 0 28px rgba(191, 161, 29, 0.36),
        inset 0 0 0 1px rgba(191, 161, 29, 0.08);
}

.selo_destaque {
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    width: max-content;
    margin: 0 auto;
    white-space: nowrap;
    background: linear-gradient(135deg, #d6b94a, #bfa11d);
    color: #000;
    font-family: hartwell;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    box-shadow:
        0 0 12px rgba(191, 161, 29, 0.55),
        0 8px 18px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.titulo_bloco_plano {
    font-family: hartwell;
    font-size: clamp(24px, 2.1vw, 30px);
    text-align: center;
    color: #bfa11d;
    letter-spacing: 0.4px;
    line-height: 1;
    text-shadow: 0 2px 16px rgba(191, 161, 29, 0.12);
}

.titulo_bloco_plano::after {
    content: "";
    display: block;
    width: 54px;
    height: 2px;
    margin: 12px auto 16px;
    border-radius: 999px;
    background: #bfa11d;
    box-shadow: 0 0 14px rgba(191, 161, 29, 0.2);
}

.plano_incluso_titulo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);

    color: #bfa11d;
    font-family: hartwell;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.4px;
}

.plano_incluso_titulo::before,
.plano_incluso_titulo::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 161, 29, 0.8));
}

.plano_incluso_titulo::after {
    background: linear-gradient(90deg, rgba(191, 161, 29, 0.8), transparent);
}

.plano_incluso_titulo span {
    white-space: nowrap;
}

.lista_plano {
    list-style: none;
    padding: 18px 2px 16px;
    margin: 0;
    display: grid;
    gap: 10px;
}

.lista_plano li {
    position: relative;
    min-height: 24px;
    padding-left: 36px;
    display: flex;
    align-items: center;

    color: #f1f1f1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.lista_plano li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);

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

    border-radius: 50%;
    border: 1.5px solid #bfa11d;
    color: #bfa11d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.valor_bloco_plano {
    text-align: center;
    font-family: hartwell;
    color: #ffffff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    margin-top: auto;
    padding: 18px 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.duracao {
    font-size: 13px;
    color: #d8d8d8;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    opacity: 0.88;
}

.valor {
    font-size: clamp(30px, 3vw, 38px);
    color: #bfa11d;
    line-height: 1.1;
    margin-top: 6px;
    text-shadow: 0 2px 18px rgba(191, 161, 29, 0.18);
}

.parcelas {
    font-size: 13px;
    color: #f2f2f2;
    margin-top: 2px;
    opacity: 0.9;
}

.botao_bloco_plano {
    position: relative;
    overflow: hidden;
    margin: 18px auto 0;
    justify-self: center;
    width: min(100%, 240px);
    background: linear-gradient(135deg, #d6b94a, #bfa11d);
    font-size: 17px;
    border-radius: 10px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.botao_bloco_plano a {
    color: #ffffff;
    text-decoration: none;
    font-family: hartwell;
    display: block;
}

.botao_bloco_plano:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.32),
        0 0 18px rgba(191, 161, 29, 0.34);
}

.botao_bloco_plano:active {
    transform: scale(0.97);
}

.botao_destaque {
    background: linear-gradient(135deg, #d6b94a, #bfa11d);
    box-shadow: 0 0 15px rgba(191, 161, 29, 0.6);
}

.botao_destaque:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(191, 161, 29, 0.9);
}

.botao_destaque:active {
    transform: scale(0.97);
}

@media (max-width: 1024px) {
    .titulo_planos {
        margin-top: 40px;
    }

    .bloscos_planos {
        width: min(84%, 820px);
        gap: 22px;
    }

    .bloco_plano {
        width: min(50%, 390px);
        min-height: 420px;
        padding: 28px 20px 22px;
    }

    .titulo_bloco_plano {
        font-size: 24px;
    }

    .lista_plano li {
        font-size: 13px;
        padding-left: 34px;
    }

    .valor {
        font-size: 30px;
    }
}

@media (max-width: 820px) {
    .titulo_planos {
        margin-top: 30px;
    }

    .bloscos_planos {
        width: min(84%, 410px);
        flex-direction: column;
        gap: 44px;
    }

    .bloco_plano {
        margin: 0 auto;
        width: 100%;
    }

    .titulo_bloco_plano {
        font-size: 24px;
    }

    .valor {
        font-size: 30px;
    }

    .botao_bloco_plano {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .titulo_planos {
        margin-top: 20px;
    }

    .bloscos_planos {
        width: var(--mobile-width);
        margin: 26px auto 44px;
        gap: 42px;
    }

    .bloco_plano {
        width: 100%;
        min-height: 0;
        padding: 28px 16px 22px;
        border-radius: 16px;
    }

    .titulo_bloco_plano {
        font-size: 23px;
    }

    .plano_incluso_titulo {
        gap: 8px;
        font-size: 12px;
        padding-top: 18px;
    }

    .lista_plano {
        padding-inline: 0;
        gap: 10px;
    }

    .lista_plano li {
        font-size: 13px;
        padding-left: 34px;
    }

    .lista_plano li::before {
        width: 22px;
        height: 22px;
        font-size: 13px;
    }

    .valor {
        font-size: 28px;
    }

    .duracao {
        font-size: 12px;
    }

    .parcelas {
        font-size: 12px;
    }

    .botao_bloco_plano {
        width: min(100%, 230px);
        font-size: 16px;
        padding: 12px 18px;
    }

    .selo_destaque {
        font-size: 11px;
        padding: 8px 18px;
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=- */
/*         FOOTER          */
/* -=-=-=-=-=-=-=-=-=-=-=- */

.footer {
    position: relative;
    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(191, 161, 29, 0.08),
            transparent 30%
        ),
        linear-gradient(180deg, #1c1c1c 0%, #151515 100%);

    border-top: 1px solid rgba(255, 255, 255, 0.06);

    padding-top: 76px;

    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(191, 161, 29, 0.55),
        transparent
    );
    pointer-events: none;
}

.footer_container {
    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding: 0 6%;

    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1fr);
    align-items: center;
    gap: 56px;
}

.footer_brand {
    max-width: 300px;
}

.footer_logo {
    width: 150px;
    margin-bottom: 14px;
}

.footer_nome {
    display: block;
    margin-bottom: 12px;

    font-family: hartwell;
    font-size: 34px;
    line-height: 1;
    color: #f0f0f0;
    letter-spacing: 0;
}

.footer_texto {
    color: #bfbfbf;
    font-size: 16px;
    line-height: 1.55;
}

.footer_cta {
    padding: 26px 28px;
    border: 1px solid rgba(191, 161, 29, 0.2);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        ),
        rgba(255, 255, 255, 0.02);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.footer_cta span {
    display: inline-block;
    margin-bottom: 8px;
    font-family: hartwell;
    font-size: 14px;
    color: #d6b94a;
    text-transform: uppercase;
}

.footer_cta h2 {
    margin: 0 0 20px;
    max-width: 360px;
    font-family: hartwell;
    font-size: 28px;
    line-height: 1.12;
    color: #f1f1f1;
}

.footer_botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 190px;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 10px;

    background: #bfa11d;
    color: #111111;
    font-family: hartwell;
    font-size: 15px;
    text-decoration: none;

    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease;
}

.footer_botao + .footer_botao {
    margin-left: 10px;
}

.footer_botao:hover {
    transform: translateY(-2px);
    background: #d6b94a;
    box-shadow: 0 12px 28px rgba(191, 161, 29, 0.26);
}

.footer_botao_secundario {
    color: #f0f0f0;
    border: 1px solid rgba(191, 161, 29, 0.28);
    background: rgba(255, 255, 255, 0.04);
}

.footer_botao_secundario:hover {
    color: #111111;
    background: #d6b94a;
}

.footer_texto {
    opacity: 0.85;
}

.footer_bottom {
    margin-top: 56px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);

    padding: 24px 6%;

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

    text-align: center;
}

.footer_bottom p {
    color: #8d8d8d;
    font-size: 14px;
}

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

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

@media (max-width: 1024px) {
    .footer_container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 38px;
    }
}

@media (max-width: 820px) {
    .footer {
        padding-top: 40px;
    }

    .footer_container {
        width: 85%;
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
        text-align: center;
        gap: 30px;
        padding: 0;
    }

    .footer_brand {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
    }

    .footer_logo {
        width: 170px;
    }

    .footer_texto {
        font-size: 17px;
    }

    .footer_cta {
        width: min(100%, 420px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
    }

    .footer_botao + .footer_botao {
        margin-top: 10px;
        margin-left: 0;
    }

    .footer_cta h2 {
        margin-inline: auto;
        font-size: 26px;
    }

}

@media (max-width: 480px) {
    .footer {
        padding-top: 30px;
    }

    .footer_container {
        width: 85%;
        gap: 25px;
    }

    .footer_logo {
        width: 160px;
    }
    .footer_nome {
        font-size: 30px;
    }

    .footer_cta {
        padding: 22px 20px;
    }

    .footer_cta h2 {
        font-size: 23px;
    }

    .footer_texto {
        font-size: 16px;
    }

    .footer_bottom {
        margin-top: 45px;
        padding: 20px 6%;
    }

    .footer_bottom p {
        font-size: 14px;
    }
}
