﻿/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Tags */
:root
{
    --color-primary: rgb(22, 209, 115); /* #16d173; */
    --color-secundary: rgb(36, 243, 137); /* #24f389; */
    --color-text: rgb(250, 250, 250); /* #fafafa */
    --color-text-dark: rgb(118, 118, 119); /* #767677 */
    --color-bg: rgb(18, 18, 21); /* #121215 */
    --color-bg-50: rgb(18, 18, 21, .5);
    --color-bg-dark: rgb(36, 36, 39); /* #242427 */
    --color-border: rgb(45, 45, 48); /* #2d2d30 */
    --color-black: rgb(0, 0, 0); /* #000 */
    --color-white: rgb(255, 255, 255); /* #fff */
    --color-green: rgb(5, 223, 114); /* #05df72 */
    --color-red: rgb(255, 100, 103); /* #ff6467 */
    --color-yellow: rgb(253, 199, 0); /* #fdc700 */
    --color-whatsapp: rgb(37, 211, 102); /* 25d366 */
    --color-whatsapp-0: rgba(37, 211, 102, 0);
    --color-whatsapp-50: rgba(37, 211, 102, .5);
}
*, ::before, ::after { margin: 0; padding: 0; border: 0; box-sizing: border-box; text-decoration: none; background: none; color: inherit; }
html { scroll-behavior: smooth; line-height: 2em; font-size: 62.5%; }
body { font-family: "Inter", sans-serif; font-size: 1.4rem; font-weight: normal; overflow-wrap: break-word; background-color: var(--color-bg); color: var(--color-text); }
ul, ol { list-style: none; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; border-spacing: 0; }