/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Contenedor Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Título Principal */
.title {
    text-align: center;
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 30px;
}

/* Tarjeta de Información Personal */
.profile-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Para dispositivos pequeños */
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 40px;
}

/* Foto de Perfil */
.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Imagen redondeada */
    object-fit: cover; /* Asegura que la imagen se ajuste sin deformarse */
    margin-right: 20px;
    border: 3px solid #0056b3;
}

/* Información de Perfil */
.profile-info {
    max-width: 600px;
}

.name {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.career {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

/* Sección de Contacto */
.contact-section {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Formulario */
.support-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.support-form label {
    font-weight: bold;
    font-size: 1rem;
}

.support-form input,
.support-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.support-form textarea {
    resize: none; /* Deshabilita el cambio de tamaño manual */
}

.submit-button {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Responsividad */
@media (max-width: 768px) {
    .profile-card {
        flex-direction: column; /* Cambia a columna en pantallas pequeñas */
        text-align: center;
    }

    .profile-photo {
        margin-right: 0;
        margin-bottom: 20px; /* Espacio entre la foto y el texto */
    }
}

/* redes */
/* Sección de Redes Sociales */
.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-media h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

/* Contenedor de Íconos */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espaciado entre íconos */
}

/* Estilo de Íconos */
.social-icon {
    display: inline-block;
    width: 60px; /* Tamaño del icono */
    height: 60px;
    line-height: 60px; /* Centrar el icono verticalmente */
    background-color: #f5f5f5;
    border-radius: 50%; /* Hacer los iconos redondos */
    text-align: center;
    color: #333;
    font-size: 1.5rem; /* Tamaño del icono dentro del círculo */
    transition: all 0.3s ease; /* Animación al pasar el cursor */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
}

.social-icon:hover {
    color: #fff;
    background-color: #007bff; /* Color de fondo al pasar el cursor */
    transform: scale(1.1); /* Aumentar el tamaño ligeramente */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Sombra más destacada */
}


