:root {
    --primary-color: #f8d8e3;
    --secondary-color: #2c1810;
    --accent-color: #e68fa3;
    --text-color: #2c1810;
    --background-color: #fff9fa;
}

/* body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
} */

.prodContent {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 2rem;
}

/* .prodContent>h1 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
} */

.product-section {
    display: flex;
    align-items: center;
    /* min-height: 80vh; */
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.product-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-section.right {
    flex-direction: row;
}

.product-section.left {
    flex-direction: row-reverse;
}

.product-media {
    flex: 1;
    height: 249px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-media img,
.product-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-media:hover img,
.product-media:hover video {
    transform: scale(1.05);
}

.product-content {
    flex: 1;
    padding: 3rem;
}

.product-section.right .product-content {
    padding-right: 6rem;
}

.product-section.left .product-content {
    padding-left: 6rem;
}

.product-content>h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.product-content>p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits {
    list-style: none;
}

.benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefits li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .product-section {
        flex-direction: column !important;
        padding: 2rem 0;
    }

    .product-media {
        width: 100%;
        height: 300px;
        /* margin-bottom: 2rem; */
    }

    .product-content {
        padding: 1rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }
}


/* ################################ */


.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 4s ease-in-out;
    transform: scale(1); /* Inicial sin zoom */
}

.image.show {
    opacity: 1;
    transform: scale(1.1); /* Zoom lento */
}

.infoPop{
    display: none;
    justify-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    max-width: 100%;
    height: fit-content;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color:#ffffff;
    border-radius: 10px;
    padding: 3rem;
}
.infoPop>p, .infoPop>ul>li{
    line-height: 1.5;
}
.txt{
    line-height: 1.8;
    font-size: 1.2rem;
    text-align: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}
.videos{
    width: 33.33%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 0 auto;
    border: none; 
}

@media (max-width: 768px) {
    .videos{
        width: 90%;
    }
}