/* Contenedor principal */
.contact-container {
    flex: 1;
    padding-left: 2em;
}

.contact-center-header {
    text-align: center;
    /* Centra el texto y el separador en el contenedor */
    max-width: 42rem;
    margin: 0 auto;
}

/* Título */
.contact-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Contenedor del separador */
.divider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}

/* Separador */
.divider {
    width: 25%;
    height: 3px;
    border-radius: 50px;
    background-image: linear-gradient(to top, #63b7cc 40%, #66bace);
}


/* Encabezados de las secciones */
.contact-heading {
    text-align: center;
    font-size: 2em;
    /* text-lg */
    font-weight: bold;
    /* font-semibold */
    /* color: #1f2937; */
    color: white;
    /* text-gray-900 */
    margin: 0.5rem 0;
    /* mb-2 */
}

/* Listas de información */
.contact-list {
    font-size: 1.20em;
    list-style-type: disc;
    /* list-disc */
    padding-left: 1rem;
    /* list-inside */
    color: white;
    /* text-gray-500 */
    margin-bottom: 1rem;
    text-align: center;
}

.contact-list li {
    margin-bottom: 0.25rem;
    /* space-y-1 */
}

/* Estilos para modo oscuro (si es necesario) */
.dark .contact-heading,
.dark .contact-list {
    color: #111827;
    /* dark:text-slate-950 */
}

.dark .contact-heading {
    color: white;
    /* dark:text-white */
}








.email-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1em;
}

.icon {
    height: 24px;
    /* equivalent to 1.5rem (6/4) */
    width: 24px;
    /* equivalent to 1.5rem (6/4) */
    color: #9CA3AF;
    /* equivalent to text-gray-400 */
    margin-right: 8px;
    /* equivalent to 0.5rem */
}

.email-list {
    display: flex;
    flex-direction: column;
}

.email-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    font-size: 20px;
}

.email-link:hover {
    color: #2563EB;
    /* equivalent to text-blue-600 */
}