/**
 * Reset CSS - DirectaLog
 * Reset básico para normalizar estilos entre navegadores
 */

/* Reset básico */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    position: relative; /* Garantir que body e html não limitem position fixed do WhatsApp */
}

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

/* Links */
a {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

/* Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Botões */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Inputs */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
