/* =====================================================
   home.css — Estilos Consolidados Progen
   ===================================================== */

.section {
    padding: 100px 0;
    background: var(--cream);
}

.section-dark {
    background-color: var(--ch) !important;
    color: #fff;
    padding: 100px 0;
}

/* ── HERO ── */
.hero-fullscreen {
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.carousel-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 0;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.carousel-caption h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.carousel-caption h1 em {
    color: var(--red);
    font-style: italic;
}

/* ── BOTONES PILL ── */
.btn-progen-primary {
    background: var(--red);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    text-decoration: none;
}

.btn-progen-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176, 37, 36, 0.4);
    background: #901e1d;
}

/* ── EVENTO (BEIGE & VIDEO) ── */
.evento-highlight {
    background: var(--beige);
    padding: 100px 0;
}

.evento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.evento-video-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.evento-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-inner-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    pointer-events: none;
}

/* ── CATTLE CARDS ── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cattle-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: 0.4s;
    display: block;
    text-decoration: none !important;
}

.cattle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cc-img {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.cc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.cattle-card:hover .cc-img img {
    transform: scale(1.05);
}

.cc-badge-wrap {
    position: absolute;
    top: 15px;
    left: 15px;
}

.badge-toro {
    background: var(--ch);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.badge-vaca {
    background: var(--red);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.cc-body {
    padding: 24px;
}

.cc-breed {
    font-size: 10px;
    font-weight: 800;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cc-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 24px;
    font-weight: 700;
    color: var(--ch);
    margin: 8px 0 15px;
}

.cc-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.cc-ranch {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
}

/* ── SUBASTAS COUNTDOWN ── */
.sub-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.sub-cd-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    min-width: 110px;
    backdrop-filter: blur(10px);
}

.sub-cd-num {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
}

.sub-cd-lab {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    display: block;
}

.badge-coming-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.modal-subasta {
    z-index: 11000 !important;
}

.modal-backdrop {
    z-index: 10900 !important;
}

.modal-subasta img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.modal-subasta img:hover {
    transform: scale(1.01);
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .evento-grid {
        grid-template-columns: 1fr;
    }
}