@font-face {

  font-family: 'Sk-Bold';
  src: url('../Fonts/Sk-Modernist-Bold.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

@font-face {

  font-family: 'Sk-Mono';
  src: url('../Fonts/Sk-Modernist-Mono.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}

@font-face {

  font-family: 'Sk-Regular';
  src: url('../Fonts/Sk-Modernist-Regular.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
	
}


body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.contacto {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 170px;
    margin-bottom: 70px;
}

.encabezado-contacto h1 {
    font-size: 58px;
    color: #c52825;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Sk-Bold', sans-serif;
}

.encabezado-contacto p {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-family: 'Sk-Regular', sans-serif;
}

.formulario-contacto form {
    display: grid;
    gap: 15px;
}

.formulario-contacto label {
    font-weight: 600;
    font-size: 15px;
    color: #444;
}

.formulario-contacto input,
.formulario-contacto select,
.formulario-contacto textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.formulario-contacto input:focus,
.formulario-contacto select:focus,
.formulario-contacto textarea:focus {
    border-color: #c52825;
}

/* Centrado del botón de enviar */
.boton-enviar {
    background-color: #c52825;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 0 auto; /* Centra el botón */
}

.boton-enviar:hover {
    background-color: #a7221e;
    transform: scale(1.05);
}

/* Centrado del reCAPTCHA */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Espacio entre el captcha y el campo superior */
}

/* Estilos para botones de contacto directo */
.contacto-directo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contacto-directo a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1ebe5e;
    transform: scale(1.05);
}

.btn-calendario {
    background-color: #c52825;
}

.btn-calendario:hover {
    background-color: #a7221e;
    transform: scale(1.05);
}

/* Media Query para dispositivos móviles */
@media (max-width: 600px) {
    .contacto {
        padding: 20px;
    }

    .contacto-directo a {
        font-size: 14px;
    }
}
