.elementor-1087 .elementor-element.elementor-element-a9a5035{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:767px){.elementor-1087 .elementor-element.elementor-element-a9a5035{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1087 .elementor-element.elementor-element-6e571404 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-6e571404 */.elementor-1087 .elementor-element.elementor-element-6e571404{
    margin: 0 auto;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-a9a5035 */.elementor-1087 .elementor-element.elementor-element-a9a5035{
    margin: 0 auto;
}

.card{
    position: relative;
    max-width: 366px;
    max-height: 435px;
    overflow: hidden;
    z-index: 2; 
}

.card img{
    max-height: 435px;
    width: 100%;
     transition: .3s;
}

.verde{
    position: relative;
    max-width: 366px;
    max-height: 435px;
}

.verde::before {
    content: '';
    position: absolute;
    bottom: -20px; /* Sale más hacia abajo */
    right: -20px;  /* Sale más hacia la derecha */
    width: 100%;  /* Ajusta el tamaño según lo necesites */
    height: 100%; /* Ajusta el tamaño según lo necesites */
    background-color: #026442;  /* Color de fondo verde */
    z-index: 1;  /* Asegúrate de que esté por debajo del contenido de la tarjeta */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); /* Sombra para darle profundidad */
    transition: 0.3s ease-in-out; /* Transición suave */
}

.card .intro{
    height: 80px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    color: white;

     transition: .3s;
}

.card .intro h3{
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: bold;
    text-align: center;
     transition: .3s;
    font-family: 'Public Sans';
}
.card .intro p{
    font-size: 20px;
    font-family: 'Public Sans';
    visibility: hidden;
    opacity: 0;
    line-height: 25px;
}

.card .intro span{
    font-weight: bold;
}
.card:hover{
    cursor: pointer;
}

.card:hover .intro{
    opacity: 1;
    visibility: visible;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: .5rem; /* Aumentado el padding para dar espacio extra */
    position: absolute;
    transition: .2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card:hover .intro p{
    opacity: 1;
    visibility: visible;
    transition: .2s;
    text-align: center;
    margin: 0;
}

.card:hover img{
    transform: scale(1.2);
    transition: .2s;
}

@media (max-width:880px){
    .card .intro h3{
        font-size: 28px;
       
    }
    .card .intro p{
        font-size: 18px;
        line-height: 24px ;
    }
}

@media(max-width:425px){
    .card:hover .intro{
        padding: .1rem;
    }
}

@media(max-width:320px){
    .card .intro h3{
        font-size: 20px;
       
    }
    
    .card .intro p{
        font-size: 16px;
    }
    
    .card .intro{
        height:80px;
    }
}/* End custom CSS */