.titulo {
    text-align: center;
    margin: 50px 0 25px;
    color: #34495E;
}
.titulo p {
    margin: 0;
    color: rgba(52, 73, 94, 0.4);
}

.normal img{
    width: 100%;
    height: 100%;
}

.titulo {
    text-align: center;
    color: #34495E;
}

.titulo .container{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-wrap: wrap;
    gap: 20px;
}

.titulo p {
    margin: 0;
    color: rgba(52, 73, 94, 0.4);
}

.container-galeria{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.galeria{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    gap: 40px;
    flex-wrap: wrap;
}

.galeria .box{
    position: relative;
    width: 450px;
    height: 300px;
    background-color: #fff;
    transform-style: preserve-3d;
}

.galeria .box:hover{
    box-shadow:  0 50px 80px rgba(0, 0, 0, .2);
}

.galeria .box .imgBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.galeria .box .contentBx{
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    background-color: #fff;
    transform: translateZ(20px) scaleY(0);
    padding: 40px 25px;transform-origin: top;
    transition: 0.5s;
    transform-style: preserve-3d;
    opacity: .8;
}

.galeria .box .contentBx h2{
    margin-bottom: 20px;
    margin-top: 20px;
}

.galeria .box:hover .contentBx{
    transform: translateZ(20px) scaleY(1);
}

.container-btn{
    margin-top: 20px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.container-btn-escribenos{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-btn-escribenos .btn-escribenos{
    transition: all 0.6s ease;
    text-decoration: none;
    color: #000;
    padding: 20px 50px;
    letter-spacing: 2px;
}

.container-btn-escribenos .btn-escribenos:hover{
    transition: all 0.4s ease;
    color: #fff;
}

.container-btn-escribenos .btn-escribenos::after{
    content: "";
    position: absolute;
    width: 10%;
    height: 100%;
    left: 40px;
    top: 0;
    background-color: #40ca15;
    transform: skew(20deg, 0deg);
    transition: all 0.4s ease;
}

.container-btn-escribenos .btn-escribenos::before{
    content: "";
    position: absolute;
    width: 220px;
    height: 100%;
    left: 50px;
    top: 0;
    transform: skew(20deg, 0deg);
    border: 3px solid #03cc57;
    transition: all 0.4s ease;
    z-index: -1;
}
 
.container-btn-escribenos .btn-escribenos:hover::after{
    background-color: #ffffff31;
    transform: skew(20deg, 0deg) translateX(210px);
}

.container-btn-escribenos .btn-escribenos:hover::before{
    background-color:  #03cc57;
    border: 3px solid #029750;
    transform: skew(20deg, 0deg) scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  .close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
  }