/* =========================================================
   RF MÉXICO
   ESTILOS GENERALES
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
    --color-black: #080808;
    --color-black-soft: #111111;
    --color-dark: #171717;
    --color-dark-light: #222222;

    --color-white: #ffffff;
    --color-white-soft: #f6f4ef;
    --color-gray: #b8b8b8;
    --color-gray-dark: #777777;
    --color-border: rgba(255, 255, 255, 0.12);

    --color-gold: #c9a34a;
    --color-gold-light: #e2c36f;
    --color-gold-dark: #8c6b25;

    --color-green: #006847;
    --color-red: #ce1126;

    --font-title: "Sora", sans-serif;
    --font-text: "Inter", sans-serif;

    --container-width: 1180px;
    --header-height: 88px;

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 32px;

    --shadow-small: 0 10px 30px rgba(0, 0, 0, 0.18);
    --shadow-medium: 0 24px 60px rgba(0, 0, 0, 0.28);
    --shadow-gold: 0 18px 50px rgba(201, 163, 74, 0.18);

    --transition: 0.3s ease;
}

/* =========================================================
   RESETEO
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-text);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

input,
select,
textarea {
    width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-title);
}

section {
    position: relative;
}

.container {
    width: min(calc(100% - 40px), var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-green),
        var(--color-gold),
        var(--color-red)
    );
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.section-heading p {
    margin-bottom: 0;
    color: var(--color-gray);
    font-size: 1.05rem;
}

/* =========================================================
   BARRA SUPERIOR
========================================================= */

.topbar {
    position: relative;
    z-index: 1001;
    padding: 9px 20px;
    background: linear-gradient(
        90deg,
        var(--color-green),
        var(--color-gold-dark),
        var(--color-red)
    );
    text-align: center;
}

.topbar p {
    margin: 0;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(18px);
}

.header__content {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: var(--shadow-gold);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand__text strong {
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.brand__text span {
    margin-top: 5px;
    color: var(--color-gray);
    font-size: 0.72rem;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.navigation a {
    position: relative;
    color: #e5e5e5;
    font-size: 0.87rem;
    font-weight: 600;
    transition: color var(--transition);
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.navigation a:hover {
    color: var(--color-white);
}

.navigation a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
}

.menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-white);
    transition: var(--transition);
}

/* =========================================================
   BOTONES
========================================================= */

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button--small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.85rem;
}

.button--primary {
    color: #101010;
    background: linear-gradient(
        135deg,
        var(--color-gold-light),
        var(--color-gold)
    );
    box-shadow: var(--shadow-gold);
}

.button--primary:hover {
    box-shadow: 0 20px 50px rgba(201, 163, 74, 0.3);
}

.button--secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.button--secondary:hover {
    border-color: var(--color-gold);
    background: rgba(201, 163, 74, 0.08);
}

.button--dark {
    width: 100%;
    color: var(--color-white);
    background: var(--color-black-soft);
}

.button--dark:hover {
    background: var(--color-gold-dark);
}

.button--light {
    color: var(--color-black);
    background: var(--color-white);
}

.button--full {
    width: 100%;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 90px 0 110px;
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(201, 163, 74, 0.1),
            transparent 36%
        ),
        linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.17;
}

.hero__glow--green {
    left: -170px;
    bottom: 40px;
    background: var(--color-green);
}

.hero__glow--red {
    right: -180px;
    top: 60px;
    background: var(--color-red);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.hero__information h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero__information h1 span {
    display: block;
    color: var(--color-gold-light);
}

.hero__description {
    max-width: 620px;
    margin-bottom: 32px;
    color: var(--color-gray);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    margin-top: 44px;
}

.hero__benefits div {
    min-width: 120px;
    display: flex;
    flex-direction: column;
}

.hero__benefits strong {
    color: var(--color-white);
    font-family: var(--font-title);
    font-size: 1.12rem;
}

.hero__benefits span {
    color: var(--color-gray-dark);
    font-size: 0.78rem;
}

.hero__visual {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__visual::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(201, 163, 74, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, 0.012),
        0 0 0 80px rgba(255, 255, 255, 0.008);
}

.hero__logo-card {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-large);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(18px);
    text-align: center;
    transform: rotate(2deg);
}

.hero__logo-card img {
    width: 100%;
    max-width: 360px;
    margin: 10px auto 18px;
    border-radius: 25px;
}

.hero__logo-card p {
    margin-bottom: 0;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.hero__logo-label {
    display: inline-flex;
    padding: 7px 13px;
    border: 1px solid rgba(201, 163, 74, 0.28);
    border-radius: 999px;
    color: var(--color-gold-light);
    background: rgba(201, 163, 74, 0.08);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.floating-card {
    position: absolute;
    z-index: 4;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(20, 20, 20, 0.9);
    box-shadow: var(--shadow-small);
    backdrop-filter: blur(14px);
}

.floating-card--price {
    left: -20px;
    bottom: 110px;
    display: flex;
    flex-direction: column;
}

.floating-card--price span {
    color: var(--color-gray);
    font-size: 0.72rem;
}

.floating-card--price strong {
    color: var(--color-gold-light);
    font-family: var(--font-title);
    font-size: 1.25rem;
}

.floating-card--quality {
    top: 90px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
}

.quality-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #46dc80;
    box-shadow: 0 0 15px #46dc80;
}

/* =========================================================
   BARRA DE CONFIANZA
========================================================= */

.trust-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0d0d0d;
}

.trust-bar__content {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-bar__content div {
    position: relative;
    padding: 15px 20px;
    color: #d3d3d3;
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
}

.trust-bar__content div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-50%);
}

/* =========================================================
   PRODUCTOS
========================================================= */

.products {
    background: var(--color-white-soft);
    color: var(--color-black);
}

.products .eyebrow {
    color: var(--color-gold-dark);
}

.products .section-heading p {
    color: #666666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.product-card {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-large);
    background: var(--color-white);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.13);
}

.product-card__image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(1px);
}

.product-card__image--short {
    background:
        radial-gradient(circle at 50% 35%, #2e2e2e, #111111 70%);
}

.product-card__image--short::before {
    border: 1px solid rgba(201, 163, 74, 0.25);
}

.product-card__image--long {
    background:
        radial-gradient(circle at 50% 35%, #e8dfcf, #b7a27b 78%);
}

.product-card__image--long::before {
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.product-card__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--color-black);
    background: var(--color-gold-light);
    font-size: 0.7rem;
    font-weight: 800;
}

.product-card__content {
    padding: 30px;
}

.product-card__header {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 16px;
}

.product-card__header span {
    color: var(--color-gold-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card__header h3 {
    margin: 4px 0 0;
    font-size: 1.45rem;
}

.product-card__header > strong {
    white-space: nowrap;
    color: var(--color-black);
    font-family: var(--font-title);
    font-size: 1.6rem;
}

.product-card__content > p {
    color: #666666;
}

.product-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.product-card__details span {
    padding: 7px 12px;
    border-radius: 999px;
    color: #4f4f4f;
    background: #f1efe9;
    font-size: 0.72rem;
    font-weight: 700;
}

/* =========================================================
   PLAYERA ILUSTRADA
========================================================= */

.shirt {
    position: relative;
    width: 250px;
    height: 290px;
    background: #121212;
    clip-path: polygon(
        24% 6%,
        38% 0%,
        62% 0%,
        76% 6%,
        100% 24%,
        84% 45%,
        74% 37%,
        74% 100%,
        26% 100%,
        26% 37%,
        16% 45%,
        0% 24%
    );
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3));
}

.shirt::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 58px;
    height: 28px;
    border-radius: 0 0 30px 30px;
    background: #272727;
    transform: translateX(-50%);
}

.shirt--short {
    background: linear-gradient(145deg, #242424, #090909);
}

.shirt--long {
    width: 270px;
    background: linear-gradient(145deg, #ffffff, #d7d7d7);
    clip-path: polygon(
        25% 6%,
        39% 0%,
        61% 0%,
        75% 6%,
        100% 17%,
        89% 82%,
        76% 77%,
        74% 100%,
        26% 100%,
        24% 77%,
        11% 82%,
        0% 17%
    );
}

.shirt--long::before {
    background: #cfcfcf;
}

.shirt__print {
    position: absolute;
    top: 38%;
    left: 50%;
    color: var(--color-gold-light);
    font-family: var(--font-title);
    font-size: 2.6rem;
    font-weight: 800;
    transform: translate(-50%, -50%);
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.shirt--long .shirt__print {
    color: var(--color-black);
}

/* =========================================================
   PERSONALIZADOR
========================================================= */

.customize {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(0, 104, 71, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 40%,
            rgba(206, 17, 38, 0.1),
            transparent 30%
        ),
        #080808;
}

.customize__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.customize__preview,
.customize__panel {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow-medium);
}

.customize__preview {
    min-height: 690px;
    overflow: hidden;
}

.preview-toolbar {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-gray);
    font-size: 0.78rem;
    font-weight: 700;
}

.preview-stage {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.018) 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.018) 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            transparent 75%,
            rgba(255, 255, 255, 0.018) 75%
        ),
        linear-gradient(
            -45deg,
            transparent 75%,
            rgba(255, 255, 255, 0.018) 75%
        );
    background-position:
        0 0,
        0 12px,
        12px -12px,
        -12px 0;
    background-size: 24px 24px;
}

.shirt--preview {
    width: 330px;
    height: 380px;
    transition:
        background var(--transition),
        transform var(--transition);
}

.shirt--preview:hover {
    transform: scale(1.03);
}

.shirt__design {
    position: absolute;
    top: 39%;
    left: 50%;
    max-width: 170px;
    padding: 15px;
    color: var(--color-gold-light);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    word-break: break-word;
    transform: translate(-50%, -50%);
}

.preview-note {
    margin: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-gray-dark);
    font-size: 0.75rem;
    text-align: center;
}

.customize__panel {
    padding: 46px;
}

.customize__panel h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
}

.customize__panel > p {
    margin-bottom: 32px;
    color: var(--color-gray);
}

/* =========================================================
   FORMULARIOS
========================================================= */

.form-group {
    margin-bottom: 21px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e5e5e5;
    font-size: 0.78rem;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    outline: none;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.055);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-group textarea {
    min-height: 130px;
    padding-top: 14px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 4px rgba(201, 163, 74, 0.1);
}

.form-group select option {
    color: var(--color-white);
    background: var(--color-dark);
}

.form-group small {
    display: block;
    margin-top: 8px;
    color: var(--color-gray-dark);
    font-size: 0.68rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.color-option {
    width: 42px;
    height: 42px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: var(--option-color);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.color-option:hover {
    transform: scale(1.08);
}

.color-option.active {
    border-color: var(--color-gold);
    box-shadow:
        0 0 0 4px rgba(201, 163, 74, 0.14),
        0 10px 22px rgba(0, 0, 0, 0.25);
}

.color-option--light {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.customize__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--color-border);
}

.customize__summary > div {
    display: flex;
    flex-direction: column;
}

.customize__summary span {
    color: var(--color-gray);
    font-size: 0.74rem;
}

.customize__summary strong {
    color: var(--color-gold-light);
    font-family: var(--font-title);
    font-size: 1.5rem;
}

/* =========================================================
   MAYOREO
========================================================= */

.wholesale {
    color: var(--color-black);
    background:
        linear-gradient(
            135deg,
            rgba(201, 163, 74, 0.08),
            transparent 40%
        ),
        var(--color-white-soft);
}

.wholesale__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.wholesale__information .eyebrow {
    color: var(--color-gold-dark);
}

.wholesale__information h2 {
    margin-bottom: 20px;
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 1.05;
}

.wholesale__information > p {
    max-width: 560px;
    color: #626262;
    font-size: 1.05rem;
}

.wholesale__features {
    display: grid;
    gap: 18px;
    margin-top: 38px;
}

.wholesale__features > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 17px;
    padding: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.wholesale__features > div > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-black);
    font-family: var(--font-title);
    font-size: 0.78rem;
}

.wholesale__features strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-title);
}

.wholesale__features p {
    margin: 0;
    color: #666666;
    font-size: 0.82rem;
}

.wholesale-form {
    padding: 42px;
    border-radius: var(--radius-large);
    color: var(--color-white);
    background: var(--color-black-soft);
    box-shadow: var(--shadow-medium);
}

.form-title {
    margin-bottom: 28px;
}

.form-title span {
    color: var(--color-gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.form-title h3 {
    margin: 8px 0 0;
    font-size: 1.8rem;
}

.form-privacy {
    margin: 14px 0 0;
    color: var(--color-gray-dark);
    font-size: 0.68rem;
    text-align: center;
}

/* =========================================================
   PROCESO
========================================================= */

.process {
    background: #0b0b0b;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-grid article {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.process-grid article:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 163, 74, 0.4);
    background:
        linear-gradient(
            145deg,
            rgba(201, 163, 74, 0.09),
            rgba(255, 255, 255, 0.02)
        );
}

.process-grid article::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(201, 163, 74, 0.13);
    border-radius: 50%;
}

.process-grid article > span {
    display: inline-flex;
    margin-bottom: 55px;
    color: var(--color-gold-light);
    font-family: var(--font-title);
    font-size: 0.8rem;
}

.process-grid h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.process-grid p {
    margin-bottom: 0;
    color: var(--color-gray);
    font-size: 0.88rem;
}

/* =========================================================
   CONTACTO
========================================================= */

.contact {
    padding: 80px 0;
    color: var(--color-black);
    background:
        linear-gradient(
            120deg,
            var(--color-gold-light),
            var(--color-gold)
        );
}

.contact__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact .eyebrow {
    color: var(--color-black);
}

.contact .eyebrow::before {
    background: var(--color-black);
}

.contact h2 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.contact p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.68);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 75px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer__brand {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer__brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 15px;
}

.footer__brand div {
    display: flex;
    flex-direction: column;
}

.footer__brand strong {
    font-family: var(--font-title);
    font-size: 1.1rem;
}

.footer__brand span {
    margin-top: 6px;
    color: var(--color-gray);
    font-size: 0.78rem;
}

.footer h3 {
    margin-bottom: 18px;
    color: var(--color-white);
    font-size: 0.9rem;
}

.footer a,
.footer p {
    display: block;
    margin-bottom: 10px;
    color: var(--color-gray-dark);
    font-size: 0.78rem;
    transition: color var(--transition);
}

.footer a:hover {
    color: var(--color-gold-light);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
    margin: 0;
}

/* =========================================================
   AVISO FLOTANTE
========================================================= */

.toast {
    position: fixed;
    z-index: 2000;
    right: 24px;
    bottom: 24px;
    width: min(360px, calc(100% - 40px));
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border: 1px solid rgba(201, 163, 74, 0.28);
    border-radius: 16px;
    background: rgba(18, 18, 18, 0.97);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition:
        opacity var(--transition),
        transform var(--transition);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast strong {
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

.toast span {
    color: var(--color-gray);
    font-size: 0.78rem;
}

/* =========================================================
   ANIMACIONES
========================================================= */

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

.hero__logo-card {
    animation: floatLogo 5s ease-in-out infinite;
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1080px) {
    .navigation {
        gap: 15px;
    }

    .navigation a {
        font-size: 0.78rem;
    }

    .header__button {
        display: none;
    }

    .hero__content {
        gap: 35px;
    }

    .hero__visual {
        min-height: 500px;
    }

    .floating-card--price {
        left: 0;
    }

    .floating-card--quality {
        right: 0;
    }

    .customize__layout,
    .wholesale__layout {
        gap: 30px;
    }

    .customize__panel,
    .wholesale-form {
        padding: 34px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer__grid > div:last-child {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   RESPONSIVE MENÚ MÓVIL
========================================================= */

@media (max-width: 900px) {
    :root {
        --header-height: 76px;
    }

    .header__content {
        position: relative;
    }

    .brand__logo {
        width: 50px;
        height: 50px;
    }

    .menu-button {
        display: block;
        margin-left: auto;
    }

    .navigation {
        position: fixed;
        top: calc(var(--header-height) + 34px);
        left: 20px;
        right: 20px;
        max-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 22px;
        background: rgba(10, 10, 10, 0.98);
        box-shadow: var(--shadow-medium);
        opacity: 0;
        pointer-events: none;
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            padding 0.3s ease,
            border-color 0.3s ease;
    }

    .navigation.active {
        max-height: 500px;
        padding: 16px;
        border-color: var(--color-border);
        opacity: 1;
        pointer-events: auto;
    }

    .navigation a {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .navigation a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .navigation a::after {
        display: none;
    }

    .menu-button.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding-top: 70px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__information {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__description {
        margin-inline: auto;
    }

    .hero__actions,
    .hero__benefits {
        justify-content: center;
    }

    .hero__visual {
        min-height: 510px;
    }

    .trust-bar__content {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar__content div:nth-child(2)::after {
        display: none;
    }

    .product-grid,
    .customize__layout,
    .wholesale__layout {
        grid-template-columns: 1fr;
    }

    .customize__preview {
        min-height: auto;
    }

    .contact__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid > div:last-child {
        grid-column: auto;
    }
}

/* =========================================================
   RESPONSIVE CELULAR
========================================================= */

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container-width));
    }

    .section {
        padding: 78px 0;
    }

    .topbar {
        padding-inline: 12px;
    }

    .topbar p {
        font-size: 0.66rem;
    }

    .brand__text strong {
        font-size: 0.9rem;
    }

    .brand__text span {
        font-size: 0.64rem;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 78px;
    }

    .hero__information h1 {
        font-size: clamp(2.8rem, 15vw, 4.4rem);
    }

    .hero__description {
        font-size: 0.95rem;
    }

    .hero__actions {
        width: 100%;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__benefits {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .hero__benefits div {
        min-width: auto;
        padding: 12px 6px;
        border: 1px solid var(--color-border);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
    }

    .hero__benefits strong {
        font-size: 0.88rem;
    }

    .hero__benefits span {
        font-size: 0.6rem;
    }

    .hero__visual {
        min-height: 430px;
    }

    .hero__visual::before {
        width: 280px;
        height: 280px;
    }

    .hero__logo-card {
        width: 100%;
        padding: 18px;
        border-radius: 24px;
    }

    .hero__logo-card img {
        max-width: 290px;
    }

    .floating-card--price {
        left: -4px;
        bottom: 30px;
    }

    .floating-card--quality {
        top: 25px;
        right: -4px;
    }

    .floating-card {
        padding: 12px 14px;
    }

    .trust-bar__content {
        grid-template-columns: 1fr;
        padding: 12px 0;
    }

    .trust-bar__content div {
        padding: 12px;
    }

    .trust-bar__content div::after {
        display: none;
    }

    .product-card__image {
        min-height: 330px;
    }

    .product-card__content {
        padding: 24px;
    }

    .product-card__header {
        flex-direction: column;
        gap: 10px;
    }

    .shirt {
        width: 210px;
        height: 245px;
    }

    .shirt--long {
        width: 225px;
    }

    .customize__preview,
    .customize__panel,
    .wholesale-form {
        border-radius: 24px;
    }

    .customize__panel,
    .wholesale-form {
        padding: 25px;
    }

    .preview-stage {
        min-height: 430px;
        padding: 22px;
    }

    .shirt--preview {
        width: 250px;
        height: 300px;
    }

    .shirt__design {
        max-width: 130px;
        font-size: 1.35rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .customize__summary {
        align-items: stretch;
        flex-direction: column;
    }

    .customize__summary .button {
        width: 100%;
    }

    .wholesale__information h2 {
        font-size: 2.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid article {
        min-height: 220px;
    }

    .process-grid article > span {
        margin-bottom: 35px;
    }

    .contact {
        padding: 65px 0;
    }

    .contact__content .button {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .toast {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }
}

/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/*==============================
NOSOTROS
==============================*/

.about{

    background:#0b0b0b;

}

.about-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.about-card{

    padding:40px;

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-10px);

    border-color:#c9a34a;

}

.icon{

    font-size:55px;

    margin-bottom:20px;

}

.about-card h3{

    color:#c9a34a;

    margin-bottom:15px;

}

.about-card p{

    color:#cfcfcf;

}

.values{

    margin-top:80px;

    text-align:center;

}

.values h3{

    margin-bottom:35px;

    font-size:32px;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.values-grid div{

    padding:20px;

    background:#161616;

    border-radius:18px;

    font-weight:bold;

}

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:80px;

}

.stat{

    text-align:center;

    padding:35px;

    border-radius:20px;

    background:linear-gradient(145deg,#1a1a1a,#101010);

}

.stat h2{

    color:#c9a34a;

    font-size:42px;

    margin-bottom:10px;

}

.stat span{

    color:#cfcfcf;

}

@media(max-width:900px){

.about-grid{

grid-template-columns:1fr;

}

.values-grid{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats{

grid-template-columns:1fr;

}

}

/* =========================================================
   RF STUDIO
========================================================= */

.studio {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 104, 71, 0.13),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(206, 17, 38, 0.1),
            transparent 28%
        ),
        linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

.studio::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 40px 40px;
}

.studio .container {
    position: relative;
    z-index: 2;
}

.studio__heading {
    margin-bottom: 50px;
}

.studio__app {
    display: grid;
    grid-template-columns: 270px minmax(390px, 1fr) 310px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: #101010;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(201, 163, 74, 0.04);
}

.studio__sidebar,
.studio__properties {
    padding: 28px;
    background: #121212;
}

.studio__sidebar {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.studio__properties {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.studio__sidebar-header {
    margin-bottom: 28px;
}

.studio__sidebar-header span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-gold-light);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.studio__sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.studio__control {
    margin-bottom: 23px;
}

.studio__control > label {
    display: block;
    margin-bottom: 9px;
    color: #e5e5e5;
    font-size: 0.74rem;
    font-weight: 800;
}

.studio__control input[type="text"],
.studio__control input[type="number"],
.studio__control select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    outline: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.studio__control input[type="text"]:focus,
.studio__control input[type="number"]:focus,
.studio__control select:focus {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 4px rgba(201, 163, 74, 0.1);
}

.studio__control select option {
    color: #ffffff;
    background: #171717;
}

/* =========================================================
   COLORES DE PLAYERA
========================================================= */

.studio__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.studio-color {
    position: relative;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: var(--shirt-color);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 7px 18px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.studio-color:hover {
    transform: scale(1.1);
}

.studio-color.active {
    border-color: var(--color-gold-light);
    box-shadow:
        0 0 0 4px rgba(201, 163, 74, 0.14),
        0 10px 24px rgba(0, 0, 0, 0.3);
}

.studio__selected-color {
    display: block;
    margin-top: 10px;
    color: var(--color-gray);
    font-size: 0.72rem;
}

/* =========================================================
   VISTA FRONTAL Y TRASERA
========================================================= */

.studio__view-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.studio-view {
    min-height: 43px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #cfcfcf;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.76rem;
    font-weight: 800;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.studio-view:hover,
.studio-view.active {
    border-color: var(--color-gold);
    color: #111111;
    background: var(--color-gold-light);
}

/* =========================================================
   ÁREA CENTRAL
========================================================= */

.studio__workspace {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #0c0c0c;
}

.studio__workspace-header {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-gray);
    font-size: 0.75rem;
    font-weight: 700;
}

.studio__workspace-header > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.studio__status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #50df83;
    box-shadow: 0 0 13px #50df83;
}

.studio__canvas {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px;
    background:
        linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.018) 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.018) 25%,
            transparent 25%
        ),
        linear-gradient(
            45deg,
            transparent 75%,
            rgba(255, 255, 255, 0.018) 75%
        ),
        linear-gradient(
            -45deg,
            transparent 75%,
            rgba(255, 255, 255, 0.018) 75%
        ),
        radial-gradient(
            circle at center,
            rgba(201, 163, 74, 0.08),
            transparent 48%
        );
    background-position:
        0 0,
        0 14px,
        14px -14px,
        -14px 0,
        center;
    background-size:
        28px 28px,
        28px 28px,
        28px 28px,
        28px 28px,
        auto;
}

.studio__canvas::before {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(201, 163, 74, 0.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(255, 255, 255, 0.008),
        0 0 0 90px rgba(255, 255, 255, 0.005);
}

/* =========================================================
   PLAYERA DEL EDITOR
========================================================= */

.studio-shirt {
    position: relative;
    z-index: 3;
    width: 370px;
    height: 445px;
    background: linear-gradient(145deg, #252525, #080808);
    clip-path: polygon(
        24% 6%,
        38% 0%,
        62% 0%,
        76% 6%,
        100% 23%,
        85% 45%,
        75% 37%,
        75% 100%,
        25% 100%,
        25% 37%,
        15% 45%,
        0% 23%
    );
    filter:
        drop-shadow(0 35px 32px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
    transition:
        background 0.35s ease,
        clip-path 0.35s ease,
        transform 0.35s ease;
}

.studio-shirt:hover {
    transform: scale(1.015);
}

.studio-shirt--long {
    width: 390px;
    clip-path: polygon(
        25% 6%,
        39% 0%,
        61% 0%,
        75% 6%,
        100% 16%,
        90% 83%,
        77% 77%,
        75% 100%,
        25% 100%,
        23% 77%,
        10% 83%,
        0% 16%
    );
}

.studio-shirt__neck {
    position: absolute;
    z-index: 4;
    top: -1px;
    left: 50%;
    width: 78px;
    height: 37px;
    border-radius: 0 0 45px 45px;
    background: rgba(0, 0, 0, 0.25);
    box-shadow:
        inset 0 -2px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.studio-shirt__print-area {
    position: absolute;
    z-index: 6;
    top: 25%;
    left: 30%;
    width: 40%;
    height: 53%;
    overflow: visible;
    border: 1px dashed rgba(255, 255, 255, 0.33);
    border-radius: 5px;
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.studio-shirt__print-area:hover {
    border-color: rgba(226, 195, 111, 0.8);
    background: rgba(255, 255, 255, 0.018);
}

.studio-shirt__print-area::after {
    content: "ÁREA DE IMPRESIÓN";
    position: absolute;
    left: 50%;
    bottom: -24px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.48rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    white-space: nowrap;
    transform: translateX(-50%);
}

/* =========================================================
   OBJETOS DEL EDITOR
========================================================= */

.studio-object {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    touch-action: none;
    user-select: none;
    cursor: grab;
    transform:
        translate(-50%, -50%)
        translate(0, 0)
        rotate(0deg)
        scale(1);
    transform-origin: center;
}

.studio-object:active {
    cursor: grabbing;
}

.studio-object.selected {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 5px;
    box-shadow: 0 0 0 7px rgba(201, 163, 74, 0.08);
}

.studio-object--text {
    min-width: 80px;
    max-width: 190px;
    padding: 5px 8px;
    color: var(--color-gold-light);
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.studio-object--image {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-object--image[hidden] {
    display: none;
}

.studio-object--image img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    object-fit: contain;
}

.studio__canvas-help {
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.48);
    background: rgba(0, 0, 0, 0.45);
    font-size: 0.65rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    transform: translateX(-50%);
}

/* =========================================================
   BARRA DE HERRAMIENTAS
========================================================= */

.studio__object-toolbar {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #101010;
}

.studio__object-toolbar button {
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
    color: #d7d7d7;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.7rem;
    font-weight: 800;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.studio__object-toolbar button:hover {
    color: #111111;
    border-color: var(--color-gold);
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

/* =========================================================
   PESTAÑAS
========================================================= */

.studio__tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    margin-bottom: 25px;
    padding: 5px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
}

.studio-tab {
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    color: var(--color-gray);
    background: transparent;
    font-size: 0.74rem;
    font-weight: 800;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.studio-tab.active {
    color: #111111;
    background: var(--color-gold-light);
    box-shadow: 0 7px 20px rgba(201, 163, 74, 0.2);
}

.studio__tab-panel {
    display: none;
}

.studio__tab-panel.active {
    display: block;
    animation: studioPanelShow 0.28s ease;
}

@keyframes studioPanelShow {
    from {
        opacity: 0;
        transform: translateY(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   COLOR Y RANGOS
========================================================= */

.studio__color-input {
    display: flex;
    align-items: center;
    gap: 12px;
}

.studio__color-input input[type="color"] {
    width: 50px;
    height: 44px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.studio__color-input span {
    color: var(--color-gray);
    font-family: monospace;
    font-size: 0.76rem;
}

.studio__range-row {
    display: grid;
    grid-template-columns: 1fr 58px;
    align-items: center;
    gap: 12px;
}

.studio__range-row input[type="range"] {
    width: 100%;
    height: 5px;
    border-radius: 999px;
    outline: none;
    background: rgba(255, 255, 255, 0.13);
    accent-color: var(--color-gold);
    cursor: pointer;
}

.studio__range-row output {
    min-height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.68rem;
    font-weight: 800;
}

/* =========================================================
   CARGA DE IMAGEN
========================================================= */

.studio__upload {
    min-height: 110px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 18px;
    border: 1px dashed rgba(201, 163, 74, 0.5);
    border-radius: 15px;
    color: var(--color-gold-light) !important;
    background: rgba(201, 163, 74, 0.055);
    text-align: center;
    cursor: pointer;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.studio__upload:hover {
    border-color: var(--color-gold-light);
    background: rgba(201, 163, 74, 0.1);
    transform: translateY(-2px);
}

.studio__upload strong {
    font-size: 0.78rem;
}

.studio__upload span {
    color: var(--color-gray);
    font-size: 0.65rem;
}

.studio__filename {
    display: block;
    max-width: 100%;
    margin-top: 9px;
    overflow: hidden;
    color: var(--color-gray-dark);
    font-size: 0.65rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* =========================================================
   PRECIO
========================================================= */

.studio__price-card {
    display: grid;
    gap: 13px;
    margin: 28px 0 18px;
    padding: 20px;
    border: 1px solid rgba(201, 163, 74, 0.18);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(201, 163, 74, 0.08),
            rgba(255, 255, 255, 0.025)
        );
}

.studio__price-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.studio__price-card span {
    color: var(--color-gray);
    font-size: 0.69rem;
}

.studio__price-card strong {
    font-family: var(--font-title);
    font-size: 0.9rem;
}

.studio__price-total {
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.studio__price-total strong {
    color: var(--color-gold-light);
    font-size: 1.2rem;
}

.studio__legal-note {
    margin: 13px 0 0;
    color: var(--color-gray-dark);
    font-size: 0.62rem;
    line-height: 1.5;
    text-align: center;
}

/* =========================================================
   ESTADOS
========================================================= */

.studio-object.is-dragging {
    opacity: 0.92;
    cursor: grabbing;
}

.studio-object.is-hidden {
    display: none;
}

.studio-shirt.studio-shirt--back
.studio-shirt__print-area {
    top: 24%;
    height: 55%;
}

.studio-shirt.studio-shirt--back
.studio-shirt__neck {
    height: 21px;
    border-radius: 0 0 25px 25px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .studio__app {
        grid-template-columns: 240px minmax(360px, 1fr) 280px;
    }

    .studio__sidebar,
    .studio__properties {
        padding: 23px;
    }

    .studio__canvas {
        min-height: 610px;
        padding: 35px;
    }

    .studio-shirt {
        width: 330px;
        height: 400px;
    }

    .studio-shirt--long {
        width: 350px;
    }
}

@media (max-width: 980px) {
    .studio__app {
        grid-template-columns: 1fr 1fr;
    }

    .studio__workspace {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .studio__sidebar {
        grid-column: 1;
        grid-row: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .studio__properties {
        grid-column: 2;
        grid-row: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .studio__canvas {
        min-height: 620px;
    }
}

@media (max-width: 700px) {
    .studio__app {
        display: flex;
        flex-direction: column;
        border-radius: 22px;
    }

    .studio__workspace {
        order: 1;
    }

    .studio__sidebar {
        order: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-right: 0;
    }

    .studio__properties {
        order: 3;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 0;
    }

    .studio__canvas {
        min-height: 510px;
        padding: 25px 15px 55px;
    }

    .studio__canvas::before {
        width: 330px;
        height: 330px;
    }

    .studio-shirt {
        width: 280px;
        height: 345px;
    }

    .studio-shirt--long {
        width: 295px;
    }

    .studio-shirt__neck {
        width: 63px;
        height: 31px;
    }

    .studio-object--text {
        max-width: 145px;
        font-size: 28px;
    }

    .studio-object--image {
        width: 105px;
        height: 105px;
    }

    .studio__object-toolbar {
        gap: 7px;
        padding: 12px;
    }

    .studio__object-toolbar button {
        flex: 1 1 44%;
    }
}

@media (max-width: 430px) {
    .studio__sidebar,
    .studio__properties {
        padding: 21px;
    }

    .studio__workspace-header {
        padding: 0 16px;
    }

    .studio__canvas {
        min-height: 445px;
        padding-inline: 8px;
    }

    .studio__canvas::before {
        width: 265px;
        height: 265px;
    }

    .studio-shirt {
        width: 235px;
        height: 295px;
    }

    .studio-shirt--long {
        width: 248px;
    }

    .studio-shirt__neck {
        width: 53px;
        height: 26px;
    }

    .studio-object--text {
        max-width: 120px;
        font-size: 23px;
    }

    .studio-object--image {
        width: 88px;
        height: 88px;
    }

    .studio__canvas-help {
        width: calc(100% - 30px);
        text-align: center;
    }
}