/* ============================
   SERVICE FEATURE
============================ */

.service-feature {
    max-width: 1200px;
    margin: 60px auto;
    padding: 32px;

    border: 2px solid #c40000;
    border-radius: 30px;
    background: #fff;
}

/* ============================
   HEADER
============================ */

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-left: -32px;
}

.service-title {
    background: #c40000;
    color: #fff;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    font-weight: 700;

    padding: 12px 22px;
    border-radius: 0 8px 8px 0;
}

/* Botón volver */
.service-back {
    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;
    background: #c40000;
    color: #fff;

    font-size: 20px;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   CONTENT
============================ */

.service-content {
    display: flex;
    gap: 40px;
    justify-content: space-between;

    margin-bottom: 32px;
}

.service-item {
    flex: 1;
    text-align: center;
}

.service-item img {
    width: 240px;
    height: 200px;
    object-fit: contain;
    background-color: #edecec;
    border-radius: 16px;
    padding: 12px;
    box-sizing: border-box;
}

.service-item ul {
    width: 248px;     
    margin: 12px auto 0;   
    padding-left: 18px;    
    text-align: left;
}

.service-item li {
    font-size: 16px;
    margin-bottom: 6px;
}

/* ============================
   ACTION
============================ */

.service-action{
     width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 32px;
}

.service-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    font-family: 'Made Okine Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.service-btn:hover {
    background: #9f0000;
}

/* ============================
   ANIMACION
============================ */

.service-feature {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.hidden {
    display: none;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        gap: 24px;
    }

    .service-header {
        flex-direction: row;
    }
}
