/* =====================================================
   RESET CSS
   Água de Okinawa
   ===================================================== */

/* Box Model */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Margens */

*{
    margin:0;
    padding:0;
}

/* HTML */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* Body */

body{
    min-height:100vh;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* Mídia */

img,
picture,
svg,
video,
canvas{
    display:block;
    max-width:100%;
}

/* Formulários */

input,
button,
textarea,
select{
    font:inherit;
}

/* Botões */

button{
    border:none;
    background:none;
    cursor:pointer;
}

/* Links */

a{
    color:inherit;
    text-decoration:none;
}

/* Listas */

ul,
ol{
    list-style:none;
}

/* Tabelas */

table{
    border-collapse:collapse;
    border-spacing:0;
}

/* Textarea */

textarea{
    resize:vertical;
}

/* Imagens */

img{
    height:auto;
}

/* iframe */

iframe{
    border:0;
}

/* Seleção */

::selection{
    background:#0F766E;
    color:#ffffff;
}