/*
Theme Name: Mobles Vallcorba
Author: Spreadit
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =====================
   BASE GLOBAL
===================== */

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont,
        'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: #233D7C;
    background: #fff;
}

/* =====================
   CONTENIDO PRINCIPAL
===================== */

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 16px;
}

/* Tipografía base */
h1,
h2,
h3 {
    font-weight: 600;
    margin-top: 0;
}

/* Texto */
p {
    line-height: 1.6;
}

/* Links SOLO en contenido */
main a {
    color: #233D7C;
    text-decoration: none;
}

/* Botones SOLO en contenido */
main button {
    font-family: inherit;
    cursor: pointer;
}