.caja-cuadro{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 40px auto;
}


.cuadro{
    width: 320px;
    color: antiquewhite;
    background: transparent;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}


.cuadro:hover{
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 20px rgb(255, 255, 255);
}

.cuadro img{
     width: 100%;
    padding: 10px;
    margin: 0 auto;
}

.cuadro-texto{
    text-align: center;
    color: antiquewhite;
}

.cuadro-texto p{
    padding: 20px;
}


/*para los terminos y condiciones*/
footer{
    margin-top: 50px;
    background: transparent;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a{
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/*para celular*/
@media (max-width: 768px){
    .footer p{
        font-size: 12px;
      }
    
      .footer-links{
        gap: 6px;
      }

    .video-servicios {
        bottom: 20px;
    }

    .video-servicios a {
        font-size: 16px;
        padding: 12px 28px;
    }

    .container{
        padding-top: 100px;
    }

    #logo img{
        width: 250px;
        margin-top: -60px;
    }

    #menu{
        margin-top: 0px;
    }

    #menu ul{
        gap:15px;
        padding:  6px 12px;
    }

    #menu ul li a{
        font-size: 16px;
    }

    #texto{
        width: 90%;
        padding: 15px;
    }

    #texto h1{
        font-size: 26px;
    }

    #texto p{
        font-size: 14px;
    }

    #video video{
        border-radius:15px;
        height: 220px;
    }

    .caja-cuadro{
        display: flex;
        flex-direction: column;
        width: 90%;
        gap: 30px;
    }

    .cuadro{
        flex-direction: column;
        text-align: center;
    }

    .cuadro img{
         max-height: 220px;
        object-fit: cover;
        border-radius: 10px;
    }

    .cuadro-texto h3{
        font-size: 18px;
    }


    .cuadros{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .servicio-card img{
        height: 130px;
    }

    .container .from{
        width: 90%;
        max-width: 320px;
        margin-top: 40px;
    }

    .card{
        gap: 12px;
        padding: 15px;
    }

    .socialContainer{
        width: 45px;
        height: 45px;
    }
}