/* ── HERO ── */
.hero {
    background: var(--ch);
    min-height: 540px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .018) 39px, rgba(255, 255, 255, .018) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .018) 39px, rgba(255, 255, 255, .018) 40px);
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(176, 37, 36, .18);
    border: 1px solid rgba(176, 37, 36, .28);
    color: #e87877;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: var(--r-full);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 em {
    color: #e87877;
    font-style: normal;
}

.hero-sub {
    font-size: 15px;
    color: rgba(182, 186, 188, .9);
    margin-bottom: 32px;
    max-width: 480px;
}

/* ── HERO STATS ── */
.hero-stats {
    display: flex;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Línea sutil de división */
    gap: 0;
}

.hero-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 24px;
}

.hero-stat:last-child {
    border: none;
    margin: 0;
    padding: 0;
}

.hero-stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    /* #FFFFFF */
    line-height: 1;
}

.hero-stat-l {
    font-size: 11px;
    color: var(--lgray);
    /* #B6BABC */
    margin-top: 4px;
    letter-spacing: .02em;
    text-transform: none;
}

/* ── CARRUSEL ── */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-carousel-wrap {
    width: 100%;
    max-width: 550px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-carousel-wrap img {
    height: 420px;
    object-fit: cover;
}

/* ── SECCIONES ── */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--beige);
}

.section-dark {
    background: var(--ch);
}

.sec-tag {
    font-size: 10px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sec-h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dg);
    line-height: 1.2;
}

.sec-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
}

.sec-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

/* ── CATTLE CARDS ── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cattle-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.22s ease;
    text-decoration: none;
    display: block;
}

.cattle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-hover);
}

.cc-img {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: var(--beige);
    position: relative;
}

.cc-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
}

.cc-body {
    padding: 16px;
}

.cc-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dg);
    margin-bottom: 9px;
}

/* ── RANCH STRIP ── */
.ranch-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ranch-chip {
    background: #fff;
    border-radius: var(--r-md);
    padding: 18px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.2s;
}

.ranch-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-card);
}

.ranch-ava {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ── AUCTIONS ── */
.at-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.countdown {
    display: flex;
    gap: 14px;
}

.cd-unit {
    text-align: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    padding: 16px 20px;
    min-width: 72px;
}

.cd-n {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
}

.cd-l {
    font-size: 10px;
    color: var(--lgray);
    text-transform: uppercase;
    margin-top: 5px;
}