
  
  .contacto-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Oscurece la imagen para resaltar el texto */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:50px 20px;
  }
  
  .contacto-texto {
    color: white;
    text-align: center;
    max-width: 800px;
  }
  
  .contacto-texto h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #c01121	;
  }
  
  .contacto-texto p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contacto-portada {
      height: auto;
      padding: 60px 0;
    }
  
    .contacto-texto h1 {
      font-size: 2rem;
    }
  
    .contacto-texto p {
      font-size: 1rem;
    }
  }
  