/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height);
  color: var(--text-color);
  font-weight: var(--font-weight-normal);
  margin: 0;
  padding: 0;
}

/* Reset de elementos específicos */
ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout principal */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content-area {
    flex: 1;
}

/* Container principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Reset de margens e paddings */
.site-header,
.site-content,
.site-footer {
    margin: 0;
    padding: 0;
}

/* Reset de elementos de texto */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

/* Reset de formulários */
input,
button,
select,
textarea {
    margin: 0;
    padding: 0;
    outline: none;
}

/* Manter bordas para campos de formulário (exceto botões) */
input:not([type="submit"]):not([type="button"]):not([type="reset"]),
select,
textarea {
    border: 1px solid #333;
}

/* Remover bordas apenas dos botões */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    border: none;
}

/* Reset de tabelas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reset de links */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset de botões */
button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

/* Reset de listas */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Reset de flexbox */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.column {
    flex: 1;
    padding: 0;
}

/* Reset de grid */
.grid {
    display: grid;
    grid-gap: 0;
    margin: 0;
}

/* Reset de cards */
.card {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

/* Reset de imagens */
img {
    margin: 0;
    padding: 0;
    border: none;
}

/* Reset de ícones */
i,
.icon {
    margin: 0;
    padding: 0;
    font-size: inherit;
    color: inherit;
}

/* Reset de botões de navegação */
.nav-link,
.menu-item {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
}

/* Reset de formatação de texto */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Reset de espaçamento */
.space-top {
    margin-top: 0;
}

.space-bottom {
    margin-bottom: 0;
}

/* Reset de bordas */
.border-none {
    border: none;
}

.border-top {
    border-top: none;
}

.border-bottom {
    border-bottom: none;
}

/* Reset de fundo */
.bg-transparent {
    background: transparent;
}

/* Reset de transições */
.transition-none {
    transition: none;
}

/* Reset de animações */
.animation-none {
    animation: none;
}

/* Reset de interações */
.pointer-none {
    pointer-events: none;
}

/* Reset de visibilidade */
.hidden {
    display: none;
}

/* Reset de opacidade */
.opacity-100 {
    opacity: 1;
}
