/* ============================================
   RESET CSS - LP TruScale IaaS
   ============================================
   
   Reset básico para normalizar estilos entre navegadores
*/

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML e Body */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-gotham-book);
  font-size: 18px;
  font-style: normal;
  font-weight: 325;
  line-height: 27px;
  color: #1D1616;
  background-color: var(--color-bg-white);
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

/* Paragraphs */
p {
  margin: 0;
  padding: 0;
  font-family: var(--font-gotham-book);
  font-size: 18px;
  font-style: normal;
  font-weight: 325;
  line-height: 27px;
  color: #1D1616;
}

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

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  opacity: var(--opacity-hover);
}

/* Buttons */
button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  transition: var(--transition-normal);
}

button:focus,
a:focus {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

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

/* Forms */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Remove default styles */
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* Strong and Bold */
strong, b {
  font-family: var(--font-gotham-bold);
  font-weight: var(--font-weight-bold);
}

/* Sections */
section {
  position: relative;
  overflow-x: hidden;
}

/* Remove outline on click for non-interactive elements */
div:focus,
span:focus {
  outline: none;
}
