.elementor-9025 .elementor-element.elementor-element-df9bf6c{--display:flex;}.elementor-9025 .elementor-element.elementor-element-df9bf6c.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-9025 .elementor-element.elementor-element-52448ba{--display:flex;}.elementor-9025 .elementor-element.elementor-element-012fb2d{--display:flex;}.elementor-9025 .elementor-element.elementor-element-3160265{--display:flex;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-9025 .elementor-element.elementor-element-d9734c3{--display:flex;}.elementor-9025 .elementor-element.elementor-element-337e724{--spacer-size:100px;}@media(min-width:768px){.elementor-9025 .elementor-element.elementor-element-df9bf6c{--width:93.907%;}}/* Start custom CSS for html, class: .elementor-element-c0fac50 *//* Updated styling for "Cómo llegar" section to remove shadow and background */
.como-llegar-lardero {
    padding: 40px 20px;
    background-color: transparent; /* Removes gray background */
    border-radius: 0; /* Removes rounded corners */
    box-shadow: none; /* Removes shadow */
    max-width: 1200px;
    margin: 0 auto;
}

/* Title styling */
.como-llegar-lardero h2 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

/* Paragraph styling */
.como-llegar-lardero p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Strong text styling */
.como-llegar-lardero strong {
    color: #333;
}

/* List styling */
.como-llegar-lardero ul {
    padding-left: 20px;
    list-style-type: disc;
}

.como-llegar-lardero ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

/* Map iframe styling */
.mapa-lardero iframe {
    width: 100%;
    height: 450px;
    border: none;
    margin-top: 30px;
}

/* Animation for the section */
.como-llegar-lardero {
    animation: fadeInUp 1s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cb99ed3 *//* Estilo general para la sección de imágenes */
.imagenes-lardero {
    padding: 40px 0;
    background-color: transparent; /* Removes the gray background */
}

.imagenes-contenido {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.columna-imagen {
    flex: 1;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.columna-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Título siempre visible en la parte inferior */
.columna-imagen h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    padding: 10px 0;
    margin: 0;
    text-align: center;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

/* Descripción oculta por defecto */
.columna-imagen p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Efecto hover para mostrar la descripción y agrandar la imagen */
.columna-imagen:hover img {
    transform: scale(1.1);
}

.columna-imagen:hover p {
    opacity: 1;
}

.columna-imagen:hover h3 {
    transform: translateY(20px); /* Mueve ligeramente el título para dar espacio a la descripción */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d42cb12 *//* Estilos generales del acordeón */
.acordeon {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Título principal "Detalles adicionales" */
.informacion-adicional h1 {
    font-size: 28px;  /* Tamaño grande para destacar */
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Estilos de cada elemento del acordeón */
.acordeon-item {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.acordeon-item:hover {
    background-color: #f9f9f9;
    transform: scale(1.02);
}

.acordeon-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.acordeon-item h4 i {
    font-size: 28px;  /* Tamaño más grande para los iconos */
    margin-right: 10px;
}

/* Estilo para el contenido del acordeón */
.acordeon-item p {
    font-size: 16px;
    color: #555;
    display: none;
    padding-top: 10px;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
}

/* Mostrar el contenido cuando el acordeón está activo */
.acordeon-item.active p {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animación de desvanecimiento */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}/* End custom CSS */