/*
Theme Name: robordignon-landingpage
Theme URI: https://www.rbordignon.com.br
Author: Felipe Dias
Author URI: https://www.linkedin.com/in/felipe-dias-1a6302181/
Description: robordignon-landingpage
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,700;1,400&family=Noto+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

html {
  font-family: 'Noto Sans', sans-serif;
  overflow: auto;
  scroll-behavior: smooth;
  margin: 0 !important;
}

/* Reset css */
:root {
  --white: #fff;
  --white2: #F7F7F7;
  --yellow: #FFE600;
  --blue: #005274;
  --black: #000;
}

* {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5 {
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
  color: #000;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: var(--yellow);
}

button {
  cursor: pointer;
}

ul,
menu {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

.hidden {
  display: inline-block;
  border: none;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  color: transparent;
  background-color: transparent;
}

body {
  background-color: var(--white2);
  margin: 0;

}

.container {
  max-width: 85%;
  margin: 0 auto;
}

.link-btn {
  display: flex;
  width: 300px;
  padding: 14.642px;
  justify-content: center;
  align-items: flex-start;
  gap: 7.321px;
  flex-shrink: 0;
  border-radius: 5.857px;
  background: var(--yellow);
  margin-top: 2rem;
  font-weight: bold;
  transition: all .3s;
}

.link-btn:hover {
  background-color: #000;
  color: #fff;
}

.title {
  text-align: center;
  font-family: Recoleta;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.line {
  display: inline-block;
  width: 14rem;
  height: 1px;
  background-color: var(--yellow);
}

.gap-style {
  display: inline-block;
  background-color: var(--yellow);
  height: 61px;
  width: 100%;
}

.btn {
  display: inline-flex;
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--yellow);
  width: 100px;
  outline: none;
  border: none;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media screen and (min-width:1300px) {
  .container {
    max-width: 1100px;
  }
}

/* @media screen and (min-width:1700px) {
  .container {
    max-width: 1500px;
  }
} */

/* animation */

[data-anime] {
  transition: 0.3s;
  opacity: 0;
}

[data-anime='left'] {
  transform: translate3d(-50px, 0px, 0px);
}

[data-anime='right'] {
  transform: translate3d(50px, 0, 0);
}

.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}