:root {
    --color-verde: #9dcd24;
    --color-texto: #ffffff;
}

.container3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.fila {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.columna {
    width: 100%;
    max-width: 500px;
}

.área-título {
    margin-bottom: 30px;
}



.descripcion {
    color: var(--color-texto);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.btn-wrap {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}


.price_style1 {
    color: var(--color-verde);
    font-size: 1.5rem;
    font-weight: 600;
}

.price_style1 del {
    color: var(--color-verde);
    opacity: 0.7;
}

.product-image3 {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: auto;
    z-index: 1;
}

@media (max-width: 1200px) {
    .product-image {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .space {
        padding: 60px 0;
    }

    .sec-title {
        font-size: 1.5 rem;
    }

    .btn-wrap {
        gap: 20px;
    }

    .product-image3 {
        width: 100%;
        max-width: 300px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 30px auto 0;
        opacity: 0.8;
    }
}



.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    /* Color de fondo al pasar el mouse */
}

.gallery-img img {
    width: 100%;
    /* Asegura que la imagen ocupe todo el ancho del contenedor */
    height: 400px;
    /* Establece una altura fija */
    object-fit: cover;
    /* Mantiene la proporción de la imagen y la recorta si es necesario */
}

/* Servicios */

.gallery-content p {
    margin: 15px 10px;
}

.icon-container-servicio {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.icon-btn-servicio {
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
    font-size: 18px;
    width: 40px;
    height: 40px;
    color: white;
}

.icon-whatsapp {
    background-color: var(--background-marron);
}

.icon-ojo {
    background-color: var(--background-marron);
}

a.icon-btn-servicio.icon-ojo:hover,
a.icon-btn-servicio.icon-whatsapp:hover {
    background-color: var(--background-verde);
    color: white;
}

.icon-btn-servicio:hover {
    opacity: 0.8;
}