.contacto {
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .contacto {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.contacto-imagen {
    background-image: url('./../img/contacto.webp');
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    position: relative;
    min-height: 400px;
    width: 100%; 
    height: 100%;
}

.contenedor-formulario {
    width: min(95%, 90rem);
    margin: 4rem auto;
}

/* Info */
.contact-info {
    margin-top: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem; 
    margin-bottom: 15px; 
  }
  
  .contact-item i {
    color: var(--primario-oscuro); /* Replace with your preferred icon color */
    font-size: 24px; /* Adjust the icon size */
  }
  
  .contact-item span {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px; /* Adjust the size of the service label */
  }
  
  .contact-item p {
    margin: 0;
    font-size: 14px; /* Adjust the size of the contact detail */
  }
  