﻿body {
    font-family: Arial, sans-serif;
}

.imgp {
    height: 100%;
    width: auto;
    padding:10px;
}

.carousel-item img {
    width: 100%; 
    height: 60vh; 
    object-fit: cover;
    max-height: 60vh; 
}



/* ESTILO CARDS */
.z {
    background-color: white;
    opacity: 0.8;
    border-radius: 15px;
    color: black;
}

.x {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    min-width: 200px;
    min-height: 250px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

    .x:hover {
        transform: rotateY(180deg);
    }

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    font-size: 20px;
    color: white;
}


.back {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotateY(180deg);
    font-size: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


/*down slider*/

.secondslider {
    display: flex;
}

.left1 {
    display: flex;
    flex-direction: column;
    margin-right: 0px;
}



.right2 {
    border: 1px solid #ccc;
    overflow: hidden;
    position: relative;
    background-color: red;
    height: 100%;
    width: 60%;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.item2 {
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-top-left-radius:25px;
    border-bottom-left-radius:25px;
}

.coloritem1 {
    background-color: #00AFB5;
    color: white;
}
.coloritem2 {
    background-color: #FCBA04;
    color: white;
}
.coloritem3 {
    background-color: #149911;
    color:white;
}


.active {
    opacity: 1;
}


.contslider {
    background-color: white;
    box-shadow: 0 4px 8px black;
    border-radius:25px;
}


.info-section {
}

.info-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 5px;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

    .info-card:hover {
        transform: translateY(-5px);
    }

    .info-card p {
        font-size: 14px; /* Tamaño de fuente reducido */
        line-height: 1.6; /* Mejora la legibilidad */
    }

strong {
    color: #007BFF;
}