body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.fundo-robles-section-unique {
    display: flex;
    justify-content: center;
    align-items: center;
    
    padding: 20px;
}

.card-unique {
    display: flex;
    flex-direction: row;
    width: 1140px;
    height: 382px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.5s ease;
}

.slider-container-unique {
    width: 50%;
    height: 100%;
}

.slider-unique {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slides-unique {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slides-unique img {
    width: 33.33%;
    height: 100%;
    object-fit: cover; 
}

.prev-unique, .next-unique {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
}

.prev-unique {
    left: 10px;
}

.next-unique {
    right: 10px;
}

.content-unique {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
}

.content-unique h2 {
    color: #004d40;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center; 
}

.content-unique p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center; 
}

.conocer-btn-unique {
    background-color: #004d40;
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 16px;
}

.conocer-btn-unique:hover {
    background-color: #00695c;
}

@media (max-width: 768px) {
    .card-unique {
        flex-direction: column; 
        width: 90%; 
        height: auto; 
        margin: 20px 0; 
        justify-content: center; 
        align-items: center; 
    }

    .slider-container-unique {
        width: 100%; 
        height: 250px; 
    }

    .slider-unique {
        height: 250px; 
    }

    .slides-unique {
        width: 300%; 
    }

    .slides-unique img {
        height: 250px; 
    }

    .prev-unique, .next-unique {
        font-size: 12px;
        padding: 5px;
    }

    .content-unique {
        width: 100%; 
        padding: 20px; 
        text-align: center; 
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
    }

    .content-unique h2 {
        font-size: 20px; 
    }

    .content-unique p {
        font-size: 14px; 
        padding: 5px;
    }

    .conocer-btn-unique {
        width: auto; 
        text-align: center;
        font-size: 14px; 
        padding: 10px 15px; 
        margin-top: 15px; 
    }
}

@media (max-width: 480px) {
    .card-unique {
        width: 100%; 
        height: auto;
        justify-content: center; 
        align-items: center; 
    }

    .content-unique {
        width: 100%; 
        padding: 10px 15px; 
        justify-content: center; 
        align-items: center; 
    }

    .content-unique h2 {
        font-size: 18px; 
    }

    .content-unique p {
        font-size: 12px; 
    }

    .conocer-btn-unique {
        font-size: 12px; 
        padding: 8px 10px; 
        margin: 10px 0; 
    }

    .slider-container-unique, .slides-unique img {
        height: 200px; 
    }
}
