/* =========================================================
   FORGE FIT - SITE PRINCIPAL
========================================================= */

:root {
    --orange: #ff5a1f;
    --orange-dark: #e84a12;
    --dark: #0d0d0d;
    --dark-2: #151515;
    --dark-3: #202020;
    --light: #f6f6f6;
    --white: #ffffff;
    --gray: #737373;
    --border: #e5e5e5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #171717;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* =========================================================
   BOTÕES
========================================================= */

.btn {
    font-weight: 700;
    border-radius: 8px;
    transition: 0.25s ease;
}

.btn-primary-fit {
    background: linear-gradient(
        135deg,
        var(--orange),
        #ff6d2f
    );

    border: 1px solid var(--orange);
    color: #fff;
}

.btn-primary-fit:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-login {
    border: 1px solid #666;
    color: #fff;
    padding: 9px 22px;
}

.btn-login:hover {
    background: #fff;
    color: #111;
}

.btn-plan {
    border: 1px solid #d8d8d8;
    background: #fff;
    color: #222;
}

.btn-plan:hover {
    background: #111;
    color: #fff;
}

/* =========================================================
   LOGOTIPO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.7px;
}

.logo strong {
    color: var(--orange);
}

.logo-icon {
    width: 38px;
    height: 38px;

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

    background: var(--orange);
    color: #fff;

    font-size: 23px;
    font-style: italic;
    font-weight: 900;

    border-radius: 8px 2px 8px 2px;

    transform: skewX(-10deg);
}

/* =========================================================
   CABEÇALHO
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(10, 10, 10, 0.96);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.site-header .navbar {
    min-height: 74px;
}

.site-header .nav-link {
    position: relative;
    color: #d7d7d7;
    font-size: 14px;
    font-weight: 600;

    margin: 0 8px;
    padding: 27px 5px 23px;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #fff;
}

.site-header .nav-link.active::after {
    content: "";
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 16px;

    height: 3px;
    background: var(--orange);
    border-radius: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-actions .btn-primary-fit {
    padding: 9px 22px;
}

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

.hero {
    position: relative;

    min-height: 690px;

    display: flex;
    align-items: center;

    padding-top: 74px;

    color: #fff;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(255, 90, 31, 0.12),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #080808 0%,
            #101010 55%,
            #171717 100%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    width: 600px;
    height: 600px;

    right: -180px;
    top: 40px;

    border: 1px solid rgba(255, 90, 31, 0.15);

    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;
    width: 420px;
    height: 420px;

    right: -80px;
    top: 130px;

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

    border-radius: 50%;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

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

.hero-badge {
    display: inline-block;

    padding: 8px 13px;

    margin-bottom: 20px;

    color: #ff8b62;

    background: rgba(255, 90, 31, 0.1);

    border: 1px solid rgba(255, 90, 31, 0.3);

    border-radius: 6px;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero h1 {
    max-width: 720px;

    margin: 0;

    font-size: clamp(45px, 5.5vw, 78px);
    line-height: 0.98;

    font-weight: 900;
    letter-spacing: -4px;

    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero-text {
    max-width: 650px;

    margin: 26px 0;

    color: #c9c9c9;

    font-size: 18px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 13px 22px;
}

.hero-buttons i {
    margin-left: 8px;
}

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

.hero-features {
    display: flex;
    gap: 32px;

    margin-top: 45px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature > i {
    color: var(--orange);
    font-size: 26px;
}

.hero-feature span {
    color: #aaa;
    font-size: 12px;
}

.hero-feature strong {
    display: block;
    color: #fff;
    margin-top: 2px;
}

/* =========================================================
   PREVIEW APP
========================================================= */

.app-preview {
    width: 315px;

    padding: 21px;

    background: #0b0b0b;

    border: 6px solid #303030;

    border-radius: 34px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px #555;

    transform: rotate(2deg);
}

.app-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #fff;

    margin-bottom: 35px;
}

.app-preview-header div {
    font-weight: 900;
}

.app-preview-header small {
    font-weight: 900;
}

.app-preview-header strong {
    color: var(--orange);
}

.app-welcome small {
    color: #888;
}

.app-welcome h3 {
    margin-top: 3px;
    margin-bottom: 17px;

    font-size: 23px;
    font-weight: 800;
}

.today-workout {
    padding: 18px;

    background:
        linear-gradient(
            135deg,
            #252525,
            #171717
        );

    border: 1px solid #333;
    border-radius: 13px;
}

.today-workout > span {
    color: #999;
    font-size: 10px;
    font-weight: 700;
}

.today-workout h4 {
    margin: 5px 0;
    font-size: 18px;
    font-weight: 800;
}

.today-workout p {
    color: #aaa;
    font-size: 12px;
}

.app-section-title {
    display: flex;
    justify-content: space-between;

    margin: 23px 0 10px;

    font-size: 12px;
}

.app-section-title span {
    color: var(--orange);
}

.app-equipment {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    align-items: center;
    gap: 10px;

    padding: 12px;

    background: #fff;
    color: #111;

    border-radius: 10px;
}

.app-equipment-icon {
    width: 43px;
    height: 43px;

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

    color: var(--orange);

    background: #f1f1f1;

    border-radius: 8px;
}

.app-equipment strong {
    display: block;
    font-size: 11px;
}

.app-equipment small {
    color: #777;
    font-size: 9px;
}

.app-bottom-nav {
    display: flex;
    justify-content: space-between;

    margin-top: 30px;

    color: #777;

    font-size: 16px;
}

.app-bottom-nav .active {
    color: var(--orange);
}

/* =========================================================
   SEÇÕES GERAIS
========================================================= */

.section {
    padding: 90px 0;
}

.section-subtitle {
    display: block;

    color: var(--orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.section h2 {
    margin: 0;

    color: #161616;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 900;
    letter-spacing: -2px;

    text-transform: uppercase;
}

.section h2 span {
    color: var(--orange);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 35px;
}

.section-header p,
.section-title-center p {
    margin-top: 8px;
    margin-bottom: 0;

    color: #747474;
}

.section-title-center {
    max-width: 680px;
    margin: 0 auto 45px;
}

/* =========================================================
   EQUIPAMENTOS
========================================================= */

.equipamentos-section {
    background: #f7f7f7;
}

.equipment-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    background: #fff;

    border: 1px solid #e6e6e6;

    border-radius: 14px;

    overflow: hidden;

    transition: 0.25s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);

    border-color: #d5d5d5;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.equipment-image {
    position: relative;

    height: 230px;

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

    padding: 20px;

    background:
        radial-gradient(
            circle,
            #fff,
            #eeeeee
        );

    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    position: relative;
    z-index: 2;
}

.equipment-placeholder {
    position: absolute;
    inset: 0;

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

    color: #aaa;
}

.equipment-placeholder i {
    margin-bottom: 10px;
    font-size: 55px;
    color: #d3d3d3;
}

.equipment-placeholder span {
    font-size: 12px;
}

.equipment-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 20px;
}

.equipment-body h3 {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 800;
}

.equipment-description {
    min-height: 44px;

    color: #747474;

    font-size: 13px;
    line-height: 1.5;
}

.equipment-info {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin: 10px 0 18px;

    font-size: 12px;
    color: #4d4d4d;
}

.equipment-info i {
    width: 20px;
    color: var(--orange);
}

.equipment-body > .btn {
    margin-top: auto;
}

.marketplace-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 7px;

    margin-top: 8px;
}

.marketplace {
    padding: 8px 5px;

    text-align: center;

    border-radius: 6px;

    font-size: 10px;
    font-weight: 800;

    transition: 0.2s;
}

.mercado-livre {
    background: #ffe600;
    color: #292929;
}

.shopee {
    background: #ee4d2d;
    color: #fff;
}

.marketplace:hover {
    transform: translateY(-1px);
    filter: brightness(0.95);
}

/* =========================================================
   COMO FUNCIONA
========================================================= */

.how-section {
    background: #fff;
}

.how-card {
    position: relative;

    height: 100%;

    padding: 35px;

    background: #fafafa;

    border: 1px solid #ededed;

    border-radius: 15px;

    overflow: hidden;
}

.how-number {
    position: absolute;

    right: 18px;
    top: 4px;

    color: #ededed;

    font-size: 70px;
    font-weight: 900;
}

.how-icon {
    position: relative;

    width: 58px;
    height: 58px;

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

    margin-bottom: 25px;

    background: var(--orange);
    color: #fff;

    border-radius: 12px;

    font-size: 23px;
}

.how-card h3 {
    position: relative;

    font-size: 19px;
    font-weight: 800;
}

.how-card p {
    position: relative;

    margin: 10px 0 0;

    color: #777;

    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   TREINOS
========================================================= */

.training-section {
    background: #111;
    color: #fff;
}

.training-section h2 {
    color: #fff;
}

.training-description {
    margin: 20px 0 27px;

    color: #aaa;

    line-height: 1.7;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.training-item {
    min-height: 170px;

    display: flex;
    flex-direction: column;

    padding: 25px;

    background: #191919;

    border: 1px solid #292929;

    border-radius: 13px;

    transition: 0.25s ease;
}

.training-item:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}

.training-item i {
    margin-bottom: auto;

    color: var(--orange);

    font-size: 28px;
}

.training-item strong {
    margin-top: 25px;
    font-size: 16px;
}

.training-item span {
    margin-top: 5px;

    color: #888;

    font-size: 11px;
}

/* =========================================================
   PLANOS
========================================================= */

.plans-section {
    background: #f6f6f6;
}

.plan-card {
    position: relative;

    height: 100%;

    padding: 35px;

    background: #fff;

    border: 1px solid #e0e0e0;

    border-radius: 16px;
}

.plan-card.featured {
    border: 2px solid var(--orange);

    box-shadow:
        0 15px 45px rgba(255, 90, 31, 0.12);
}

.featured-label {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 6px 15px;

    background: var(--orange);
    color: #fff;

    border-radius: 20px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.plan-name {
    color: var(--orange);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.5px;
}

.plan-card h3 {
    margin: 12px 0 25px;

    font-size: 36px;
    font-weight: 900;
}

.plan-card h3 small {
    color: #888;

    font-size: 12px;
    font-weight: 500;
}

.plan-card ul {
    list-style: none;

    padding: 0;
    margin: 0 0 28px;
}

.plan-card li {
    padding: 9px 0;

    color: #555;

    border-bottom: 1px solid #eee;

    font-size: 13px;
}

.plan-card li i {
    width: 22px;
    color: var(--orange);
}

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

.cta-section {
    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            #ff713c
        );

    color: #fff;
}

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

    gap: 30px;
}

.cta-content span {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}

.cta-content h2 {
    margin: 5px 0 0;

    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;

    letter-spacing: -2px;
}

.cta-content h2 strong {
    display: block;
    font-weight: 900;
}

/* =========================================================
   RODAPÉ
========================================================= */

.footer {
    padding: 55px 0 20px;

    background: #090909;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 35px;
}

.footer-brand p {
    max-width: 420px;

    margin: 20px 0 0;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 25px;
}

.footer-links a {
    color: #aaa;

    font-size: 12px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid #202020;

    color: #555;

    font-size: 11px;
}

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

@media (max-width: 991.98px) {

    .site-header .navbar {
        min-height: 66px;
    }

    .navbar-collapse {
        padding: 10px 0 20px;
    }

    .site-header .nav-link {
        margin: 0;

        padding: 12px 5px;

        border-bottom: 1px solid #242424;
    }

    .site-header .nav-link.active::after {
        display: none;
    }

    .header-actions {
        margin-top: 15px;
    }

    .hero {
        min-height: auto;

        padding-top: 66px;
    }

    .hero-container {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero h1 {
        max-width: 650px;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .training-grid {
        margin-top: 10px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 767.98px) {

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 19px;
    }

    .header-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .header-actions .btn {
        width: 100%;
    }

    /* HERO */

    .hero-container {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .hero-badge {
        margin-bottom: 16px;

        font-size: 9px;
    }

    .hero h1 {
        font-size: 42px;

        line-height: 1;

        letter-spacing: -2.5px;
    }

    .hero-text {
        margin: 20px 0;

        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 35px;
    }

    /* SEÇÕES */

    .section {
        padding: 65px 0;
    }

    .section h2 {
        font-size: 34px;
        letter-spacing: -1.5px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    /* EQUIPAMENTOS */

    .equipment-image {
        height: 260px;
    }

    .equipment-description {
        min-height: auto;
    }

    /* COMO FUNCIONA */

    .how-card {
        padding: 28px;
    }

    /* TREINOS */

    .training-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .training-item {
        min-height: 150px;
        padding: 18px;
    }

    /* PLANOS */

    .plan-card {
        padding: 30px 25px;
    }

    /* CTA */

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

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

    /* FOOTER */

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

        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }
}

/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 36px;
    }

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

    .equipment-image {
        height: 230px;
    }
}
/* =========================================================
   PÁGINA DETALHES DO EQUIPAMENTO
========================================================= */

.equipment-page {
    padding-top: 74px;
    background: #fff;
}

/* BREADCRUMB */

.equipment-breadcrumb {
    padding: 22px 0;
    background: #f7f7f7;
    border-bottom: 1px solid #e8e8e8;
}

.equipment-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #999;
    font-size: 12px;
}

.equipment-breadcrumb a {
    color: #555;
    font-weight: 600;
}

.equipment-breadcrumb a:hover {
    color: var(--orange);
}

.equipment-breadcrumb i {
    font-size: 8px;
}

.equipment-breadcrumb span {
    color: #999;
}

/* =========================================================
   APRESENTAÇÃO DO EQUIPAMENTO
========================================================= */

.equipment-detail {
    padding: 65px 0 80px;
}

.equipment-detail-image {
    position: relative;

    min-height: 480px;

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

    padding: 40px;

    background:
        radial-gradient(
            circle at center,
            #fff 0%,
            #f5f5f5 55%,
            #ebebeb 100%
        );

    border: 1px solid #e4e4e4;
    border-radius: 20px;

    overflow: hidden;
}

.equipment-detail-image img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.equipment-detail-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

    color: #aaa;
}

.equipment-detail-placeholder i {
    color: #ccc;
    font-size: 80px;
}

.equipment-detail-content h1 {
    margin: 5px 0 20px;

    color: #111;

    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;

    font-weight: 900;
    letter-spacing: -3px;

    text-transform: uppercase;
}

.equipment-detail-description {
    max-width: 600px;

    margin-bottom: 30px;

    color: #6d6d6d;

    font-size: 16px;
    line-height: 1.7;
}

/* BENEFÍCIOS */

.equipment-detail-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin: 30px 0;
}

.equipment-detail-benefits > div {
    min-height: 120px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 18px;

    background: #f8f8f8;

    border: 1px solid #e8e8e8;
    border-radius: 12px;
}

.detail-icon {
    margin-bottom: 10px;

    color: var(--orange);

    font-size: 21px;
}

.equipment-detail-benefits strong {
    display: block;

    color: #222;

    font-size: 14px;
    font-weight: 800;
}

.equipment-detail-benefits small {
    display: block;

    margin-top: 3px;

    color: #888;

    font-size: 10px;
}

/* =========================================================
   COMPRAR
========================================================= */

.buy-area {
    margin-top: 30px;
}

.buy-label {
    display: block;

    margin-bottom: 10px;

    color: #555;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.buy-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.buy-buttons .marketplace {
    min-width: 160px;

    padding: 13px 20px;

    font-size: 12px;
}

.buy-buttons .marketplace i {
    margin-right: 5px;
}

.marketplace-outro {
    background: #222;
    color: #fff;
}

.marketplace-warning {
    display: block;

    margin-top: 10px;

    color: #999;
    font-size: 10px;
}

.marketplace-warning i {
    margin-right: 3px;
}

.equipment-full-description {
    margin-top: 50px;

    padding: 30px;

    background: #f8f8f8;

    border-radius: 12px;

    color: #666;

    line-height: 1.8;
}

/* =========================================================
   EXERCÍCIOS
========================================================= */

.equipment-exercises {
    padding: 80px 0;

    background: #f5f5f5;
}

.equipment-exercises .section-header h2 {
    color: #171717;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;

    letter-spacing: -2px;
    text-transform: uppercase;
}

.equipment-exercises .section-header h2 span {
    color: var(--orange);
}

/* CARD */

.exercise-card {
    height: 100%;

    background: #fff;

    border: 1px solid #e5e5e5;
    border-radius: 14px;

    overflow: hidden;

    transition: 0.25s ease;
}

.exercise-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.exercise-card-media {
    position: relative;

    height: 220px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #1c1c1c,
            #292929
        );
}

.exercise-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exercise-placeholder {
    width: 100%;
    height: 100%;

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

    color: #454545;

    font-size: 75px;
}

.exercise-level {
    position: absolute;

    top: 12px;
    left: 12px;

    padding: 6px 9px;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    border-radius: 5px;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.exercise-play {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 52px;
    height: 52px;

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

    transform: translate(-50%, -50%);

    background: var(--orange);
    color: #fff;

    border-radius: 50%;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);

    font-size: 16px;
}

.exercise-play i {
    margin-left: 3px;
}

.exercise-card-body {
    padding: 20px;
}

.muscle-group {
    color: var(--orange);

    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.exercise-card-body h3 {
    margin: 5px 0 8px;

    color: #222;

    font-size: 18px;
    font-weight: 800;
}

.exercise-card-body p {
    min-height: 42px;

    color: #777;

    font-size: 12px;
    line-height: 1.55;
}

.btn-exercise-preview {
    padding: 8px 0;

    color: #333;

    font-size: 11px;
    font-weight: 800;
}

.btn-exercise-preview i {
    margin-right: 4px;

    color: var(--orange);
}

.btn-exercise-preview:hover {
    color: var(--orange);
}

/* =========================================================
   ACESSO DO ALUNO
========================================================= */

.student-access-box {
    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 25px;

    margin-top: 45px;

    padding: 30px;

    background: #111;
    color: #fff;

    border-radius: 15px;
}

.student-access-icon {
    width: 60px;
    height: 60px;

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

    background: var(--orange);

    border-radius: 12px;

    font-size: 22px;
}

.student-access-box span {
    color: var(--orange);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.student-access-box h3 {
    margin: 4px 0;

    font-size: 19px;
    font-weight: 800;
}

.student-access-box p {
    max-width: 650px;

    margin: 0;

    color: #999;

    font-size: 12px;
}

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

@media (max-width: 991.98px) {

    .equipment-page {
        padding-top: 66px;
    }

    .equipment-detail-image {
        min-height: 400px;
    }

    .student-access-box {
        grid-template-columns: auto 1fr;
    }

    .student-access-box .btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767.98px) {

    .equipment-breadcrumb {
        padding: 16px 0;
    }

    .equipment-breadcrumb span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .equipment-detail {
        padding: 35px 0 55px;
    }

    .equipment-detail-image {
        min-height: 300px;
        padding: 20px;

        border-radius: 14px;
    }

    .equipment-detail-image img {
        max-height: 300px;
    }

    .equipment-detail-content h1 {
        font-size: 38px;
        letter-spacing: -2px;
    }

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

    .equipment-detail-benefits > div {
        min-height: auto;

        flex-direction: row;
        align-items: center;

        gap: 15px;
    }

    .detail-icon {
        width: 40px;
        margin: 0;

        text-align: center;
    }

    .buy-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .buy-buttons .marketplace {
        width: 100%;
    }

    .equipment-exercises {
        padding: 55px 0;
    }

    .exercise-card-media {
        height: 240px;
    }

    .student-access-box {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 25px 20px;
    }

    .student-access-icon {
        margin: auto;
    }

    .student-access-box .btn {
        grid-column: auto;
    }
}
/* =========================================================
   PÁGINA DO EXERCÍCIO
========================================================= */

.exercise-page {
    padding-top: 74px;
    background: #fff;
}

.exercise-hero {
    padding: 70px 0;
}

.exercise-hero h1 {
    margin: 8px 0 20px;

    color: #151515;

    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 0.95;

    letter-spacing: -3px;
    text-transform: uppercase;
}

.exercise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 25px;
}

.exercise-tags span {
    padding: 8px 12px;

    background: #f3f3f3;
    color: #555;

    border-radius: 7px;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.exercise-tags i {
    margin-right: 5px;
    color: var(--orange);
}

.exercise-description {
    max-width: 620px;

    color: #666;

    font-size: 16px;
    line-height: 1.7;
}

.exercise-instructions {
    margin-top: 30px;
    padding: 25px;

    background: #f7f7f7;

    border-left: 4px solid var(--orange);
    border-radius: 0 10px 10px 0;
}

.exercise-instructions h2 {
    margin: 0 0 8px;

    color: #222;

    font-size: 15px;
    font-weight: 900;

    text-transform: uppercase;
}

.exercise-instructions p {
    margin: 0;

    color: #666;

    font-size: 13px;
    line-height: 1.7;
}


/* IMAGEM */

.exercise-main-image {
    min-height: 430px;

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

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #333,
            #161616 70%
        );

    border-radius: 18px;
}

.exercise-main-image img {
    width: 100%;
    height: 430px;

    object-fit: cover;
}

.exercise-main-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    color: #666;
}

.exercise-main-placeholder i {
    color: var(--orange);
    font-size: 90px;
}

.exercise-main-placeholder span {
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   VÍDEOS
========================================================= */

.exercise-videos {
    padding: 75px 0;

    background: #f5f5f5;
}

.exercise-videos .section-header {
    margin-bottom: 35px;
}

.exercise-videos .section-header h2 {
    color: #171717;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;

    letter-spacing: -2px;
    text-transform: uppercase;
}

.exercise-videos .section-header h2 span {
    color: var(--orange);
}

.video-card {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e6e6e6;
    border-radius: 14px;
}

.video-preview {
    position: relative;

    height: 300px;

    overflow: hidden;

    background: #151515;
}

.video-preview-background {
    width: 100%;
    height: 100%;

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

    background:
        radial-gradient(
            circle,
            #303030,
            #111 70%
        );

    color: #363636;

    font-size: 100px;
}

.video-play-button {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 65px;
    height: 65px;

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

    transform: translate(-50%, -50%);

    background: var(--orange);
    color: #fff;

    border-radius: 50%;

    font-size: 19px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.35);
}

.video-play-button .fa-play {
    margin-left: 4px;
}

.video-status {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 7px 10px;

    border-radius: 5px;

    color: #fff;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.7px;
}

.video-status.free {
    background: #198754;
}

.video-status.locked {
    background: rgba(0, 0, 0, 0.75);
}

.video-status i {
    margin-right: 3px;
}

.video-duration {
    position: absolute;

    right: 12px;
    bottom: 12px;

    padding: 5px 8px;

    background: rgba(0, 0, 0, 0.8);
    color: #fff;

    border-radius: 4px;

    font-size: 9px;
    font-weight: 700;
}

.video-card-content {
    padding: 22px;
}

.video-card-content h3 {
    color: #222;

    font-size: 19px;
    font-weight: 800;
}

.video-card-content p {
    min-height: 40px;

    color: #777;

    font-size: 12px;
    line-height: 1.6;
}

.btn-video-locked {
    padding: 11px 18px;

    background: #222;
    color: #fff;

    border-radius: 7px;

    font-size: 11px;
    font-weight: 800;
}

.btn-video-locked:hover {
    background: var(--orange);
    color: #fff;
}


/* =========================================================
   EQUIPAMENTOS DO EXERCÍCIO
========================================================= */

.exercise-equipment-list {
    padding: 65px 0;
}

.exercise-equipment-list h2 {
    margin: 5px 0 25px;

    color: #222;

    font-size: 30px;
    font-weight: 900;

    text-transform: uppercase;
}

.exercise-equipment-links {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.exercise-equipment-links a {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 15px 18px;

    background: #f5f5f5;
    color: #333;

    border: 1px solid #e5e5e5;
    border-radius: 8px;

    font-size: 11px;
    font-weight: 800;

    transition: 0.2s ease;
}

.exercise-equipment-links a:hover {
    background: #222;
    color: #fff;

    border-color: #222;
}

.exercise-equipment-links a:first-child i:first-child {
    color: var(--orange);
}


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

@media (max-width: 767.98px) {

    .exercise-page {
        padding-top: 66px;
    }

    .exercise-hero {
        padding: 40px 0 50px;
    }

    .exercise-hero h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .exercise-main-image {
        min-height: 300px;
    }

    .exercise-main-image img {
        height: 300px;
    }

    .exercise-videos {
        padding: 55px 0;
    }

    .video-preview {
        height: 230px;
    }

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

    .exercise-equipment-links a {
        width: 100%;
    }
}