.btn-contacto {
    background-color: #ED1B24;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    padding: 15px 40px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-contacto:hover {
    background-color: #a01a1f;
    transform: scale(1.05);
  }

  .about-us-section h3 {
    color: #0E0F3F;
    margin-bottom: 15px;
  }
  
  .about-us-section p {
    text-align: justify;
  }
  
  .about-us-section .row img {
    width: 100%;          /* Que ocupe todo el ancho del contenedor */
    height: 250px;        /* Altura fija horizontal */
    object-fit: cover;    /* Recorta la imagen si no entra, sin deformar */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  @media (max-width: 767px) {
    .about-us-section .row img {
      height: 180px;
    }
  }
  
  
  .about-us-section img:hover {
    transform: scale(1.02);
  }

  .fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-visible {
    opacity: 1;
    transform: translateX(0);
  }

  /* Estilo solo para móviles */
@media (max-width: 767px) {
  .texto{
    text-align: center;
    margin-top: 10px !important;
  }
}