/* Estilos para componentes específicos */

/* Logo y branding */
.logo {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Secciones de contenido */
.description {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: left;
    color: var(--text-lighter);
}

/* Sistema de botones */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

/* Contenedor de enlaces/botones */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Footer */
.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9em;
}

/* Header component */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.header .logo {
    font-size: 1.8em;
    margin-bottom: 0;
}

/* Navigation */
.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-main);
    padding: 2rem;
    margin-bottom: 2rem;
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content {
    color: var(--text-lighter);
    line-height: 1.6;
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}