        
        /* Estilos para el contenido de la sección de contacto */
        .contact-form__wrapper {
            background-color: rgba(255, 255, 255, 0.8); /* Color de fondo con transparencia */
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
            max-width: 900px;
            margin: 0 auto; /* Centrar el contenido */
        }

        .contact-form__wrapper h2 {
            margin-bottom: 200px;
        } 
        .contact-section {
    background-size: cover;
    background-position: center;
}

.error{
	display: none;
	color: red;
}

    .modal {
      display: none; /* Oculto por defecto */
      position: fixed; /* Posicionamiento absoluto */
      z-index: 1; /* Sobreponer a otros elementos */
      left: 0;
      top: 0;
      width: 100%; /* Ancho completo */
      height: 100%; /* Alto completo */
      overflow: auto; /* Permitir scroll si el contenido es alto */
      background-color: rgba(0, 0, 0, 0.4); /* Fondo semitransparente */
    }

    .modal-content {
      background-color: #fefefe;
      margin: 15% auto; /* Posicionamiento en el centro */
      padding: 20px;
      border: 1px solid #888;
      width: 80%; /* Ancho del contenido */
    }

    .modal-header {
      padding: 20px;
      text-align: center;
      border-bottom: 1px solid #e8e8e8;
    }

    .modal-title {
      font-size: 1.5em;
      font-weight: bold;
    }

    .modal-body {
      padding: 20px;
    }

    .modal-message {
      font-size: 1em;
      margin-bottom: 10px;
    }

    .modal-close {
      color: #aaa;
      float: right;
      font-size: 28px;
      font-weight: bold;
    }

    .modal-close:hover,
    .modal-close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer;
    }
    
   	#contenedor-carga{
   		background-color: rgba(244, 244, 244, 0.9);
   		height: 100%;
   		width: 100%;
   		position: fixed;
   		z-index: 10000;
   		display: none;
   	}
   	
   	#carga{
   		border: 15px solid #ccc;
   		border-top-color: #0d6efd;
   		height: 100px;
   		width: 100px;
   		border-radius: 100%;
   		
   		position: absolute;
   		top: 0;
   		left: 0;
   		right: 0;
   		bottom: 0;
   		margin: auto;
   		
   		-webkit-animation: girar 1.5s linear infinite;
   		-o-animation: girar 1.5s linear infinite;
   		animation: girar 1.5s linear inifinite;
   	}
   	
   	@keyframes girar{
   		from{ transform: rotate(0deg); }
   		to{ transform: rotate(360deg); }
   	}
   	
   	#alerta-error {
	  display: none; /* Oculta la alerta por defecto */
	  background-color: #83b3fc; /* Color de fondo rojo claro */
	  color: #721c21; /* Color de texto rojo oscuro */
	  padding: 20px;
	  border-radius: 5px;
	  margin-bottom: 20px; /* Añade un margen inferior */
	  z-index: 10000;
	}
	
	#alertaBoton {
	  background-color: #dc3545; /* Color de fondo rojo */
	  color: white;
	  padding: 10px 20px;
	  border: none;
	  border-radius: 5px;
	  cursor: pointer;
	}