
Handle Mushroom Small
/* Importar fuente profesional desde Google Fonts */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap'); /* 1. Variables CSS */ :root { --font-primary: 'Inter', sans-serif; --color-text: #222; --color-text-light: #f0f0f0; --color-subtle: #666; --color-background: #fff; --color-background-soft: #f7f7f7; /* Gris Claro */ --color-dark-section: #1a1a1a; --border-radius: 16px; --max-width: 1000px; } /* Reset y Estilos Base */ body, html { padding: 0; margin: 0; background-color: var(--color-background); } .kowua-landing { font-family: var(--font-primary); color: var(--color-text); } /* 2. Estructura de Secciones */ .kowua-section { padding: 60px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; } .kowua-section-inner { width: 100%; max-width: var(--max-width); } .text-left { text-alig