/* Estilos Globales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Cabecera */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-bold {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    transition: color 0.2s ease;
}

.main-nav a.active {
    color: #0f172a;
}

.main-nav .btn-webmail {
    background-color: #0f172a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
}

.main-nav .btn-webmail:hover {
    background-color: #1e293b;
}

/* Contenido Principal */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 20px;
    letter-spacing: 1px;
}


.btn-primary {
    display: inline-block;
    background-color: #e65c00;
    color: #ffffff;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #cc5200;
}

/* Pie de página */
.main-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 20px 0;
    font-size: 0.9rem;
}
