/* ==========================================================================
   VERSUS JEANS — Elementor Widgets
   ========================================================================== */

:root {
    --vje-black: #1a1a1a;
    --vje-white: #ffffff;
    --vje-cream: #f5f2ed;
    --vje-red: #c0392b;
    --vje-red-bright: #e74c3c;
    --vje-gray-100: #f8f8f8;
    --vje-gray-200: #e5e5e5;
    --vje-gray-400: #999999;
    --vje-gray-600: #666666;
    --vje-gray-800: #333333;
    --vje-navy: #1b2d4a;
    --vje-green-wa: #25d366;
    --vje-font-display: 'Bebas Neue', Impact, sans-serif;
    --vje-font-body: 'Inter', -apple-system, sans-serif;
    --vje-ease: cubic-bezier(.25,.46,.45,.94);
}

.vje *, .vje *::before, .vje *::after { box-sizing: border-box; margin: 0; padding: 0; }
.vje img { max-width: 100%; height: auto; display: block; }

/* ---------- Shared atoms ---------- */
.vje-label {
    font-family: var(--vje-font-body);
    font-size: 11px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--vje-gray-600);
}
.vje-label--red { color: var(--vje-red); }

.vje-body {
    font-family: var(--vje-font-body);
    font-size: 15px; line-height: 1.65; color: var(--vje-gray-600);
}

.vje-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--vje-font-body);
    font-size: 12px; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase;
    text-decoration: none; padding: 16px 32px;
    border: 1px solid var(--vje-black);
    cursor: pointer; transition: all .3s var(--vje-ease);
    white-space: nowrap;
}
.vje-btn--filled { background: var(--vje-black); color: var(--vje-white); }
.vje-btn--filled:hover { background: var(--vje-gray-800); }
.vje-btn--outline { background: transparent; color: var(--vje-black); }
.vje-btn--outline:hover { background: var(--vje-black); color: var(--vje-white); }
.vje-btn--white { background: transparent; color: var(--vje-white); border-color: var(--vje-white); }
.vje-btn--white:hover { background: var(--vje-white); color: var(--vje-black); }
.vje-btn--wa { border-color: var(--vje-green-wa); color: var(--vje-white); background: transparent; }
.vje-btn--wa:hover { background: var(--vje-green-wa); }
.vje-btn-arrow::after { content: '\2192'; font-size: 14px; }

.vje-link {
    font-family: var(--vje-font-body);
    font-size: 14px; font-weight: 600; color: var(--vje-black);
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: opacity .3s;
}
.vje-link:hover { opacity: .7; }
.vje-link::after { content: '\2192'; }
.vje-link--white { color: var(--vje-white); }

/* ==========================================================================
   1 · HERO
   ========================================================================== */
.vje-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }

.vje-hero__img { position: relative; overflow: hidden; }
.vje-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.vje-hero__badge {
    position: absolute; padding: 8px 16px;
    font-family: var(--vje-font-body); font-size: 11px;
    font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
}
.vje-hero__badge--drop { top: 20px; right: 20px; background: rgba(255,255,255,.9); color: var(--vje-black); }
.vje-hero__badge--look { bottom: 20px; left: 20px; background: rgba(0,0,0,.7); color: var(--vje-white); font-size: 10px; }

.vje-hero__body { display: flex; flex-direction: column; justify-content: center; padding: 60px 80px; background: var(--vje-cream); }
.vje-hero__top { display: flex; justify-content: space-between; margin-bottom: 40px; }

.vje-hero__title {
    font-family: var(--vje-font-display);
    font-size: clamp(56px,7vw,110px); line-height: .9;
    font-weight: 400; color: var(--vje-black); margin-bottom: 8px;
}
.vje-hero__title em { font-style: italic; color: var(--vje-red); }

.vje-hero__subtitle {
    font-family: var(--vje-font-display);
    font-size: clamp(22px,3vw,42px); line-height: 1.05;
    color: var(--vje-black); margin-bottom: 20px;
}

.vje-hero__desc { max-width: 480px; margin-bottom: 36px; }
.vje-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.vje-hero__stats { display: flex; gap: 56px; }
.vje-hero__stat-val {
    font-family: var(--vje-font-display);
    font-size: 42px; font-style: italic; color: var(--vje-black); line-height: 1;
}
.vje-hero__stat-lbl {
    font-family: var(--vje-font-body); font-size: 10px;
    font-weight: 600; letter-spacing: .15em;
    text-transform: uppercase; color: var(--vje-gray-400); margin-top: 4px;
}

/* WhatsApp float */
.vje-wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--vje-green-wa); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.4); transition: transform .3s;
    text-decoration: none;
}
.vje-wa-float:hover { transform: scale(1.1); }
.vje-wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ==========================================================================
   2 · POR QUÉ VERSUS
   ========================================================================== */
.vje-porque { padding: 80px 60px; background: var(--vje-cream); }
.vje-porque__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; margin-bottom: 56px; }
.vje-porque__head-title {
    font-family: var(--vje-font-display);
    font-size: clamp(40px,6vw,90px); line-height: .9; font-style: italic; color: var(--vje-black);
}
.vje-porque__head-right { max-width: 380px; text-align: right; }
.vje-porque__head-right p { font-family: var(--vje-font-body); font-size: 14px; line-height: 1.6; color: var(--vje-gray-600); margin-bottom: 14px; }

.vje-porque__cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--vje-gray-200); border: 1px solid var(--vje-gray-200); }
.vje-porque__card { background: var(--vje-white); padding: 36px 28px; }
.vje-porque__card-num { font-family: var(--vje-font-body); font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--vje-gray-400); margin-bottom: 18px; }
.vje-porque__card-icon { width: 36px; height: 36px; margin-bottom: 18px; }
.vje-porque__card-icon img { width: 100%; height: 100%; object-fit: contain; }
.vje-porque__card-title {
    font-family: var(--vje-font-display);
    font-size: 20px; font-style: italic; color: var(--vje-black);
    margin-bottom: 10px; line-height: 1.1;
}
.vje-porque__card-desc { font-family: var(--vje-font-body); font-size: 14px; line-height: 1.6; color: var(--vje-gray-600); }

/* ==========================================================================
   3 · CATÁLOGO
   ========================================================================== */
.vje-catalogo { padding: 80px 40px; background: var(--vje-white); }
.vje-catalogo__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
.vje-catalogo__title {
    font-family: var(--vje-font-display);
    font-size: clamp(48px,7vw,120px); line-height: .85; font-style: italic; color: var(--vje-black);
}
.vje-catalogo__meta { font-family: var(--vje-font-body); font-size: 13px; color: var(--vje-gray-600); }

.vje-catalogo__filters { display: flex; margin-bottom: 44px; margin-top: 24px; }
.vje-catalogo__fbtn {
    font-family: var(--vje-font-body); font-size: 12px; font-weight: 600;
    letter-spacing: .15em; text-transform: uppercase;
    padding: 12px 24px; border: 1px solid var(--vje-gray-200);
    background: transparent; color: var(--vje-gray-600);
    cursor: pointer; transition: all .3s var(--vje-ease);
    margin-left: -1px;
}
.vje-catalogo__fbtn:first-child { border-radius: 4px 0 0 4px; margin-left: 0; }
.vje-catalogo__fbtn:last-child { border-radius: 0 4px 4px 0; }
.vje-catalogo__fbtn.active,
.vje-catalogo__fbtn:hover { background: var(--vje-black); color: var(--vje-white); border-color: var(--vje-black); z-index: 1; }

.vje-catalogo__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.vje-catalogo__item { position: relative; }
.vje-catalogo__item-img { position: relative; overflow: hidden; margin-bottom: 14px; background: #ddd; aspect-ratio: 3/4; }
.vje-catalogo__item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vje-catalogo__item:hover .vje-catalogo__item-img img { transform: scale(1.03); }

.vje-catalogo__badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    padding: 5px 12px; font-family: var(--vje-font-body);
    font-size: 10px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--vje-white);
}
.vje-catalogo__badge--bk { background: var(--vje-black); }
.vje-catalogo__badge--rd { background: var(--vje-red-bright); }

.vje-catalogo__info { display: flex; justify-content: space-between; align-items: flex-start; }
.vje-catalogo__name { font-family: var(--vje-font-body); font-size: 15px; font-weight: 700; color: var(--vje-black); text-transform: uppercase; }
.vje-catalogo__desc { font-family: var(--vje-font-body); font-size: 13px; color: var(--vje-gray-600); margin-top: 2px; }
.vje-catalogo__price { font-family: var(--vje-font-body); font-size: 18px; font-weight: 700; color: var(--vje-black); text-align: right; }
.vje-catalogo__price-lbl { font-size: 11px; font-weight: 500; color: var(--vje-gray-400); display: block; }

.vje-catalogo__colors { display: flex; gap: 6px; margin-top: 8px; }
.vje-catalogo__dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--vje-gray-200); display: inline-block; }

.vje-catalogo__cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   4 · LÍNEAS DENIM
   ========================================================================== */
.vje-lineas { display: grid; grid-template-columns: 1fr 1fr; }
.vje-lineas__card {
    position: relative; overflow: hidden; min-height: 480px;
    display: flex; flex-direction: column; justify-content: flex-end; padding: 48px;
}
.vje-lineas__bg { position: absolute; inset: 0; }
.vje-lineas__bg img { width: 100%; height: 100%; object-fit: cover; }
.vje-lineas__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.08) 60%); }
.vje-lineas__inner { position: relative; z-index: 1; color: #fff; display: flex; justify-content: space-between; align-items: flex-end; }
.vje-lineas__title {
    font-family: var(--vje-font-display);
    font-size: clamp(32px,4vw,54px); line-height: .95; font-style: italic; color: #fff; margin-bottom: 10px;
}
.vje-lineas__desc { font-family: var(--vje-font-body); font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.8); max-width: 280px; }

/* ==========================================================================
   5 · CÓMO COMPRAR
   ========================================================================== */
.vje-como { display: grid; grid-template-columns: 1fr 1fr; background: var(--vje-black); color: #fff; min-height: 560px; }
.vje-como__left { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.vje-como__wm {
    position: absolute; font-family: var(--vje-font-display);
    font-size: 280px; color: rgba(255,255,255,.03); font-style: italic;
    top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none;
}
.vje-como__title {
    font-family: var(--vje-font-display);
    font-size: clamp(44px,6vw,88px); line-height: .9; font-style: italic;
    margin-bottom: 28px; position: relative; z-index: 1;
}
.vje-como__title em { font-style: italic; color: var(--vje-red); }
.vje-como__desc {
    font-family: var(--vje-font-body); font-size: 15px; line-height: 1.7;
    color: rgba(255,255,255,.7); max-width: 440px; margin-bottom: 36px; position: relative; z-index: 1;
}
.vje-como__btns { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

.vje-como__right { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; gap: 36px; }
.vje-como__step { display: flex; gap: 22px; align-items: flex-start; }
.vje-como__step-num {
    font-family: var(--vje-font-display); font-size: 40px;
    color: var(--vje-red); font-style: italic; line-height: 1; flex-shrink: 0; min-width: 48px;
}
.vje-como__step-title { font-family: var(--vje-font-body); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.vje-como__step-desc { font-family: var(--vje-font-body); font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ==========================================================================
   6 · EDITORIAL
   ========================================================================== */
.vje-editorial { padding: 60px 80px; background: var(--vje-cream); }
.vje-editorial__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; }
.vje-editorial__title {
    font-family: var(--vje-font-display);
    font-size: clamp(40px,6vw,90px); line-height: .9; font-style: italic; color: var(--vje-black);
}
.vje-editorial__right { text-align: right; max-width: 360px; }
.vje-editorial__right p { font-family: var(--vje-font-body); font-size: 14px; color: var(--vje-gray-600); margin-bottom: 10px; }

.vje-editorial__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.vje-editorial__item { position: relative; overflow: hidden; }
.vje-editorial__item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .6s ease; }
.vje-editorial__item:hover img { transform: scale(1.04); }
.vje-editorial__item-lbl {
    position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
    background: #fff; padding: 8px 16px;
    font-family: var(--vje-font-body); font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; white-space: nowrap;
}

/* ==========================================================================
   7 · RECURSOS REVENDEDORAS
   ========================================================================== */
.vje-recursos { padding: 80px 60px; background: var(--vje-gray-800); color: #fff; }
.vje-recursos__inner { max-width: 580px; }
.vje-recursos__title {
    font-family: var(--vje-font-display);
    font-size: clamp(38px,5vw,68px); line-height: .95; font-style: italic; color: #fff; margin-bottom: 18px;
}
.vje-recursos__desc { font-family: var(--vje-font-body); font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.7); margin-bottom: 30px; max-width: 480px; }
.vje-recursos__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   8 · NEWSLETTER + SHOWROOM
   ========================================================================== */
.vje-ns { display: grid; grid-template-columns: 1fr 1fr; }

/* newsletter */
.vje-ns__nl { padding: 80px 60px; background: var(--vje-cream); }
.vje-ns__nl-title {
    font-family: var(--vje-font-display);
    font-size: clamp(34px,4vw,54px); line-height: .95; font-style: italic; color: var(--vje-black); margin-bottom: 14px;
}
.vje-ns__nl-desc { font-family: var(--vje-font-body); font-size: 14px; line-height: 1.6; color: var(--vje-gray-600); margin-bottom: 28px; max-width: 400px; }
.vje-ns__nl-form { display: flex; max-width: 460px; margin-bottom: 10px; }
.vje-ns__nl-input {
    flex: 1; padding: 16px 20px; border: 1px solid var(--vje-gray-200);
    background: #fff; font-family: var(--vje-font-body); font-size: 14px;
    color: var(--vje-gray-600); outline: none;
}
.vje-ns__nl-input::placeholder { color: var(--vje-gray-400); }
.vje-ns__nl-submit {
    padding: 16px 24px; background: var(--vje-black); color: #fff;
    font-family: var(--vje-font-body); font-size: 11px; font-weight: 700;
    letter-spacing: .15em; text-transform: uppercase; border: none; cursor: pointer;
    transition: background .3s; white-space: nowrap;
}
.vje-ns__nl-submit:hover { background: var(--vje-gray-800); }
.vje-ns__nl-note { font-family: var(--vje-font-body); font-size: 12px; color: var(--vje-gray-400); }

/* showroom */
.vje-ns__sr { padding: 80px 60px; background: var(--vje-navy); color: #fff; }
.vje-ns__sr-title {
    font-family: var(--vje-font-display);
    font-size: clamp(34px,4vw,54px); line-height: .95; font-style: italic; color: #fff; margin-bottom: 14px;
}
.vje-ns__sr-desc { font-family: var(--vje-font-body); font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 28px; max-width: 400px; }
.vje-ns__sr-map {
    display: inline-flex; align-items: center; gap: 16px; text-decoration: none; margin-bottom: 22px;
}
.vje-ns__sr-map-icon {
    width: 56px; height: 56px; border-radius: 50%; background: #fff;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vje-ns__sr-map-icon svg { width: 22px; height: 22px; fill: var(--vje-black); }
.vje-ns__sr-map-text {
    font-family: var(--vje-font-body); font-size: 12px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; color: #fff;
}
.vje-ns__sr-btns { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.vje-ns__sr-btn {
    display: inline-block; padding: 12px 20px;
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    font-family: var(--vje-font-body); font-size: 11px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
    transition: background .3s;
}
.vje-ns__sr-btn:hover { background: rgba(255,255,255,.1); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .vje-hero { grid-template-columns: 1fr; }
    .vje-hero__img { min-height: 50vh; }
    .vje-hero__body { padding: 40px 30px; }
    .vje-porque__cards { grid-template-columns: repeat(2,1fr); }
    .vje-catalogo__grid { grid-template-columns: repeat(2,1fr); }
    .vje-como { grid-template-columns: 1fr; }
    .vje-lineas { grid-template-columns: 1fr; }
    .vje-ns { grid-template-columns: 1fr; }
    .vje-editorial__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
    .vje-porque__cards { grid-template-columns: 1fr; }
    .vje-porque__head { flex-direction: column; }
    .vje-porque__head-right { text-align: left; }
    .vje-catalogo__grid { grid-template-columns: 1fr; }
    .vje-hero__stats { gap: 28px; flex-wrap: wrap; }
    .vje-hero__btns { flex-direction: column; }
    .vje-editorial__grid { grid-template-columns: 1fr; }
    .vje-editorial__head { flex-direction: column; align-items: flex-start; }
    .vje-editorial__right { text-align: left; }
}
