body{
    font-family: 'Inter', sans-serif;
}

.cow-modal{
    background: white;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #666;
    cursor: pointer;
}

.cow-image-container{
    position: relative;
    margin-bottom: 30px;
}

.cow-image{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.status-badge{
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 10px 18px;
    border-radius: 14px;
    font-weight: 600;
    color: #2F5D50;
}

.status-badge i{
    color: #28a745;
    margin-right: 6px;
}

.cow-title{
    font-size: 52px;
    font-weight: 700;
    color: #21493D;
    margin-bottom: 10px;
}

.cow-subtitle{
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 35px;
}

.info-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-card{
    background: #f8f8f8;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s;
}

.info-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.icon-box{
    width: 60px;
    height: 60px;
    background: #E7F0EA;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2F5D50;
    font-size: 22px;
}

.info-label{
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.info-value{
    font-weight: 700;
    margin: 0;
    color: #222;
}

.download-card{
    position: relative;
    z-index: 9999;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.download-card:hover{
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.download-left{
    display: flex;
    align-items: center;
    gap: 18px;
}

.download-icon{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #E7F0EA;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2F5D50;
    font-size: 22px;
}

.download-card h5{
    margin: 0;
    font-weight: 700;
}

.download-card p{
    margin: 0;
    color: #777;
}

@media(max-width:768px){

    .cow-title{
        font-size: 32px;
    }

    .info-grid{
        grid-template-columns: 1fr;
    }

    .cow-image{
        height: 260px;
    }

}

/* =========================
   PADRES SECTION
========================= */

.parents-section{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 28px;
}

/* =========================
   CARD PADRES
========================= */

.parent-card{
    background: #f8f8f8;
    border-radius: 22px;
    padding: 24px;
    transition: 0.3s;
    border: 1px solid #efefef;
}

.parent-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   HEADER
========================= */

.parent-header{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

/* =========================
   ICONOS
========================= */

.parent-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* MADRE */

.parent-icon.mother{
    background: #FCECEF;
    color: #C45A74;
}

/* PADRE */

.parent-icon.father{
    background: #E8F1FB;
    color: #3B6EA8;
}

/* =========================
   TEXTOS
========================= */

.parent-label{
    display: block;
    color: #777;
    font-size: 14px;
    margin-bottom: 4px;
}

.parent-title{
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

/* =========================
   DETALLE
========================= */

.parent-detail{
    background: white;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parent-detail span{
    color: #777;
    font-size: 14px;
}

.parent-detail strong{
    color: #222;
    font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .parents-section{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .parent-card{
        padding: 18px;
    }

    .parent-icon{
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .parent-title{
        font-size: 20px;
    }

    .parent-detail{
        padding: 12px 14px;
    }

}

/* =========================
   TERNEROS MODAL
========================= */

.calf-modal{
    background: white;
    border-radius: 24px;
    padding: 18px;
    position: relative;
}

/* =========================
   IMAGEN
========================= */

.calf-image-container{
    position: relative;
    margin-bottom: 24px;
}

.calf-image{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* =========================
   TITULOS
========================= */

.calf-title{
    font-size: 42px;
    font-weight: 700;
    color: #6A4E2D;
    margin-bottom: 10px;
    line-height: 1.1;
}

.calf-subtitle{
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
}

.icon_bx{
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #E7F0EA;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E7F0EA;
    font-size: 22px;
}
