*{
  text-decoration: none;
}

body{
  text-decoration: none;

}

.contenedorCard{
  width: 100%;
  height: 100%;
  display: flex;

}

.izquierda{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5%;
}

.derecha{
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  .contenedor-img{
    width: 70%;
    height: 70%;

  }
}

.card {
  text-decoration: none;

    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    height: 154px;
    text-align: center;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .card h2 {
    color: #00796b;
    font-size: 24px;
  }
  
  .card p {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .card button {
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .card button:hover {
    background-color: #004d40;
  }
 @media (max-width: 480px) {
  .derecha{
    display: none;
  }
  .contenedorCard{
    display: flex;
    justify-content: center;
    align-items: center;
  }
 }