*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

/* Define la animación */
@keyframes fade {
    0% { opacity: 3; } /* Inicio: totalmente visible */
    50% { opacity: 0.5; } /* Mitad: semi-transparente */
    100% { opacity: 1; } /* Fin: totalmente visible nuevamente */
}

.mision{
    padding: 0% 0 0 0 ;
    font-family: 'Copperplate' sans-serif;
    font-weight: bold;
    line-height: 2; /* Espaciado entre líneas */
    letter-spacing: 0.5px; /* Espaciado entre letras */
    color: #2c19ad; /* Color del texto */
    margin-bottom: 1.5%; /* Márgenes inferiores */
    animation: fade 2s ease-in-out infinite; /* Nombre de la animación, duración, función de temporización, repetición */
    font-size: 50px; /* Tamaño de la fuente */
}

.mision:hover{
    font-size: 350%; /* Aumenta el tamaño de la fuente*/
}

body{
    background: #1c1c1c;
}

/*--texto--*/

.row{
    background: rgb(200, 255, 255); 
}


*, ::before, ::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.servicio{
    width: 600px;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 15px auto;
    border-radius: 20px;
    box-shadow: 5px 8px 12px black;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: none; /* Evita la autocapitalización */
}

.servicio:hover {
    transform: scale(1.1);
    box-shadow: 13px 15px 37px black;
}

.servicio img{
    width: 100%;
    height: 100%;
}
.servicio p {
    font-size: 2.6rem;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
    text-transform: none; /* Evita la autocapitalización */
}

.row{
    height: 450px;
    width: 1400px;
    margin: auto;
}

.col{
  margin: 100px auto;
}
.imagen {
    position: absolute;
    left: 75px;
    top: 150px;
    
}
.textouno {
    position: absolute;
    left: 188px;
    top: 161px;
    font-size: 50px;
    color: whitesmoke;
}
.textodos {
    position: absolute;
    left: 90px;
    top: 190px;
    right: 1000px;
    color: whitesmoke;
    
}

.btn {
    position: relative;
    left: 90px;
    top: -290px;
}