/* LS Decor - Estilos Globais do Blog */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap" );

:root {
    --primary-color: #f37021;
    --secondary-color: #005596;
    --text-color: #333333;
    --text-light: #666666;
    --light-gray: #f8f9fa;
    --border-color: #eeeeee;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset e Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-color); line-height: 1.6; background-color: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* Botão Padrão */
.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-primary:hover { background: #00447a; }
