/* 
   ESTILO MODERNO
   Basado en bordes suaves, sombras y colores vibrantes (Esmeralda/Índigo)
*/

:root {
    --primary-color: #10b981;
    --secondary-color: #6366f1;
    --text-color: #1f2937;
    --bg-color: #f9fafb;
    --header-bg: #ffffff;
    --footer-bg: #111827;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.main-nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    margin-left: 32px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.welcome-hero {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    margin-bottom: 48px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.welcome-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card, .product-card {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 24px;
    background: #fff;
}

.btn-primary {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 14px 28px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
