@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
    --black: #080808;
    --black2: #0e0e0e;
    --black3: #141414;
    --black4: #1c1c1c;
    --white: #f5f5f0;
    --white2: #999;
    --orange: #FF5C00;
    --gold: #c8a96e;
    --gold-border: rgba(200, 169, 110, 0.18);
    --wine-dark: #3a0d18;
    --muted: #555;
    --f-display: 'Bebas Neue', sans-serif;
    --f-body: 'Barlow', sans-serif;
    --f-cond: 'Barlow Condensed', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--f-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--orange);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].visible {
    opacity: 1;
    transform: none;
}

[data-reveal][data-d="1"] {
    transition-delay: 0.1s;
}

[data-reveal][data-d="2"] {
    transition-delay: 0.22s;
}

[data-reveal][data-d="3"] {
    transition-delay: 0.36s;
}

[data-reveal][data-d="4"] {
    transition-delay: 0.5s;
}

.eyebrow {
    font-family: var(--f-cond);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.btn-primary {
    background: var(--orange);
    color: var(--black);
    font-family: var(--f-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 34px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, transform .2s;
}

.btn-primary:hover {
    background: #ff7a2a;
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--white);
    font-family: var(--f-cond);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: opacity .2s, color .2s;
}

.btn-ghost:hover {
    opacity: 1;
    color: var(--gold);
}

.btn-gold-outline {
    color: var(--gold);
    font-family: var(--f-cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid var(--gold-border);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, color .2s, transform .2s;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-wa {
    background: #25D366;
    color: #000;
    font-family: var(--f-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s;
}

.btn-wa:hover {
    transform: translateY(-3px);
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.78) contrast(1.05) saturate(0.9);
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-bg img.loaded {
    opacity: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.95) 0%, rgba(8, 8, 8, 0.4) 40%, rgba(8, 8, 8, 0.05) 100%), linear-gradient(to right, rgba(8, 8, 8, 0.3) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 80px 100px;
    max-width: 700px;
}

.hero-gold-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.hero-eyebrow {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero-eyebrow::before {
    display: none;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 7vw, 90px);
    line-height: 0.88;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 15px;
    line-height: 1.85;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.6);
    max-width: 440px;
    margin-bottom: 36px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 13px 28px;
    transition: background .25s;
}

.hero-cta:hover {
    background: #e8c98e;
    border-color: #e8c98e;
}

.hero-cta svg {
    transition: transform .2s;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 50%, transparent);
    opacity: 0.25;
}

/* PRESENCIA */
#presencia {
    padding: 140px 80px;
    background: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

#presencia::before {
    content: 'MDZ';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-display);
    font-size: 380px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 169, 110, 0.04);
    pointer-events: none;
    user-select: none;
}

.pres-left {
    position: sticky;
    top: 120px;
}

.pres-left .eyebrow {
    margin-bottom: 24px;
}

.pres-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 6vw, 80px);
    line-height: 0.92;
    margin-bottom: 28px;
}

.pres-title .g {
    color: var(--gold);
}

.pres-title .s {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.pres-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--white2);
    margin-bottom: 16px;
}

.pres-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
}

.ps-num {
    font-family: var(--f-display);
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    display: block;
}

.ps-label {
    font-family: var(--f-cond);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.pres-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pcard {
    background: var(--black3);
    padding: 36px 40px;
    border-left: 2px solid transparent;
    transition: border-color .3s, background .3s, padding-left .3s var(--ease);
}

.pcard:hover {
    border-color: var(--gold);
    background: var(--black4);
    padding-left: 48px;
}

.pcard-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.pcard-num {
    font-family: var(--f-display);
    font-size: 40px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-border);
    transition: -webkit-text-stroke .3s;
}

.pcard:hover .pcard-num {
    -webkit-text-stroke: 1px var(--gold);
}

.pcard-title {
    font-family: var(--f-cond);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pcard-body {
    font-size: 13px;
    line-height: 1.8;
    color: var(--white2);
    margin-bottom: 14px;
}

.pcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.ptag {
    font-family: var(--f-cond);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    padding: 4px 10px;
}

/* BODEGAS */
#bodegas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 75vh;
    background: var(--wine-dark);
    position: relative;
    overflow: hidden;
}

.bodegas-img {
    position: relative;
    overflow: hidden;
}

.bodegas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.05) saturate(0.75) brightness(0.85);
    transition: transform 0.8s var(--ease);
}

#bodegas:hover .bodegas-img img {
    transform: scale(1.04);
}

.bodegas-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--wine-dark) 100%);
}

.bodegas-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 80px 60px 60px;
    position: relative;
    z-index: 1;
}

.bodegas-eyebrow {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.6);
    margin-bottom: 24px;
}

.bodegas-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 6vw, 84px);
    line-height: 0.9;
    margin-bottom: 28px;
}

.bodegas-title span {
    display: block;
    color: var(--gold);
}

.bodegas-body {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(245, 245, 240, 0.65);
    margin-bottom: 36px;
    max-width: 420px;
}

.bodegas-list {
    list-style: none;
    margin-bottom: 44px;
}

.bodegas-list li {
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.6);
    padding: 11px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.bodegas-list li::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* STATS */
#stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    background: var(--black);
}

.sband {
    padding: 72px 40px;
    text-align: center;
    border-right: 1px solid var(--gold-border);
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.sband:last-child {
    border-right: none;
}

.sband:hover {
    background: var(--black3);
}

.sband::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .5s var(--ease);
}

.sband:hover::before {
    transform: scaleX(1);
}

.sband-num {
    font-family: var(--f-display);
    font-size: clamp(56px, 6vw, 80px);
    line-height: 1;
    color: var(--orange);
    display: block;
    margin-bottom: 8px;
}

.sband-label {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
}

/* COBERTURA */
#cobertura {
    padding: 140px 80px;
    background: var(--black2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.cob-visual {
    position: relative;
}

.cob-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: contrast(1.05) saturate(0.9);
}

.cob-img-secondary {
    position: absolute;
    width: 54%;
    aspect-ratio: 1;
    object-fit: cover;
    bottom: -36px;
    right: -36px;
    border: 3px solid var(--black2);
    filter: contrast(1.05) saturate(0.9);
}

.cob-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--orange);
    padding: 18px 22px;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.cob-badge-text {
    font-family: var(--f-display);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--black);
}

.cob-text .eyebrow {
    margin-bottom: 24px;
}

.cob-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 6vw, 80px);
    line-height: 0.92;
    margin-bottom: 28px;
}

.cob-title em {
    font-style: normal;
    color: var(--orange);
}

.cob-lead {
    font-size: 15px;
    line-height: 1.85;
    color: var(--white2);
    margin-bottom: 40px;
}

.cob-features {
    display: flex;
    flex-direction: column;
}

.cfeat {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 18px;
    transition: padding-left .3s var(--ease);
}

.cfeat:hover {
    padding-left: 8px;
}

.cfeat:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cfeat-num {
    font-family: var(--f-display);
    font-size: 13px;
    color: var(--orange);
    padding-top: 3px;
}

.cfeat-title {
    font-family: var(--f-cond);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.cfeat-body {
    font-size: 13px;
    line-height: 1.75;
    color: var(--white2);
}

/* CTA */
#cta {
    padding: 160px 80px;
    background: var(--black3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-size: clamp(140px, 20vw, 260px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 92, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(58, 13, 24, 0.4) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner .eyebrow {
    justify-content: center;
    margin-bottom: 28px;
}

.cta-title {
    font-family: var(--f-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.9;
    margin-bottom: 24px;
}

.cta-title em {
    font-style: normal;
    color: var(--gold);
}

.cta-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white2);
    max-width: 480px;
    margin: 0 auto 48px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ */
#faq {
    padding: 120px 80px;
    background: var(--black);
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 100px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-left .eyebrow {
    margin-bottom: 24px;
}

.faq-left-title {
    font-family: var(--f-display);
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 0.92;
    margin-bottom: 20px;
}

.faq-left-title em {
    font-style: normal;
    color: var(--orange);
}

.faq-left-body {
    font-size: 13px;
    line-height: 1.85;
    color: var(--white2);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--orange);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 92, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 18px;
    font-weight: 300;
    transition: transform .35s var(--ease), background .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: var(--black);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-a p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--white2);
    padding-bottom: 24px;
    padding-right: 50px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    #stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .sband:nth-child(2) {
        border-right: none;
    }

    .sband:nth-child(3) {
        border-right: 1px solid var(--gold-border);
        border-top: 1px solid var(--gold-border);
    }

    .sband:nth-child(4) {
        border-top: 1px solid var(--gold-border);
    }
}

@media (max-width: 900px) {
    .hero-bg img {
        object-position: 65% top;
    }

    .hero-content {
        padding: 0 24px 64px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(48px, 11vw, 72px);
    }

    .hero-desc {
        font-size: 13px;
        max-width: 320px;
    }

    #presencia {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 80px 24px;
    }

    #presencia::before {
        display: none;
    }

    .pres-left {
        position: static;
    }

    #bodegas {
        grid-template-columns: 1fr;
    }

    .bodegas-img {
        height: 300px;
    }

    .bodegas-img::after {
        background: linear-gradient(to top, var(--wine-dark) 20%, transparent 60%);
    }

    .bodegas-text {
        padding: 48px 24px 64px;
    }

    #cobertura {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 24px;
    }

    .cob-img-secondary,
    .cob-badge {
        display: none;
    }

    .cob-img-main {
        aspect-ratio: 4/3;
    }

    #cta {
        padding: 100px 24px;
    }

    #faq {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 24px;
    }

    .faq-left {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-bg img {
        object-position: 70% top;
    }

    .hero-content {
        padding: 0 20px 56px;
    }

    .hero-title {
        font-size: clamp(44px, 12vw, 64px);
    }

    .hero-desc {
        display: none;
    }

    #presencia,
    #cobertura,
    #cta,
    #faq {
        padding: 64px 16px;
    }

    .bodegas-text {
        padding: 40px 16px 56px;
    }

    #stats-band {
        grid-template-columns: 1fr 1fr;
    }

    .sband {
        padding: 48px 20px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-wa,
    .btn-primary,
    .btn-gold-outline {
        justify-content: center;
        width: 100%;
    }
}