﻿/* Reset y tipografía básica */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f8fb;
    margin: 0;
    padding: 20px;
    color: #333;
}

/* Layout vertical/horizontal centrado para la página de soporte */
body.support-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Tarjeta principal */
.card {
    position: relative;            /* para ubicar el switcher */
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    border-left: 8px solid #6EC1E4;
    width: 100%;
    max-width: 700px;
}

/* Selector de idioma, dentro de la tarjeta */
.lang-switcher {
    position: absolute;
    top: 20px;       /* ajusta según tu padding */
    right: 20px;     /* ajusta según tu padding */
    display: flex;
    align-items: center;
}

.lang-switcher label {
    margin-right: 8px;
    font-weight: 600;
    font-size: 14px;
}

.lang-switcher select {
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Logo dentro de la tarjeta */
.logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
}

/* Información de contacto */
.info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Enlaces */
a {
    color: #6EC1E4;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}
