:root {
  --blue: #0a1b8c;
  --gray: #f2f2f2;
  --dark: #111;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--dark);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.slider-section .slick-dots{
  display: flex;
  gap: 8px;
  position: absolute;
  right: 5%;
  bottom: 10%;
}

.slider-section .slick-dots .slick-active button{
  background-color: #fff;
}

.slider-section .slick-dots button{
  width: 10px;
  height: 10px;
  background-color: #c7c7c7;
  font-size: 0;
}

.container {
  width: 88%;
  max-width: 1180px;
  margin: auto;
}

/* HEADER */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  padding: 30px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu{
  position: relative;
  display: flex;
  gap: 30px;
  background-color: #CBCBCB;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
  padding: 12px 6px;
  font-size: small;
}

.menu a:hover{
  opacity: 0.7;
}

.menu::after{
  content: '';
  background: url(../images/menu-curve.png) no-repeat;
  position: absolute;
  left: -137px;
  top: 0;
  width: 140px;
  height: 45px;
  background-size: 100% 100%;
}

.menu::before{
  content: '';
  background: url(../images/menu-curve.png) no-repeat;
  transform: rotateY(180deg);
  position: absolute;
  right: -137px;
  top: 0;
  width: 140px;
  height: 45px;
  background-size: 100% 100%;
}

/* DROPDOWN MENU */
.menu ul {
  list-style: none;
}

.menu li {
  position: relative;
}

.menu li > a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.menu li > ul {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: #747474;
  min-width: 200px;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu li:hover > ul {
  display: flex;
}

.menu li ul li {
  position: static;
}

.menu li ul li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  font-size: 13px;
  color: #fff;
}

.menu li ul li a:hover {
  background-color: #b3b3b3;
  opacity: 1;
}

/* HERO */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-box {
  position: relative;
  background: var(--blue);
  color: #fff;
  padding: 48px 42px;
  max-width: 360px;
  margin-left: 6%;
}

.hero-box h1 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .04em;
}

/* LOGO CENTRAL */
.logo-center {
  background: #dcdcdc;
  text-align: center;
}

/* TEXTO INSTITUCIONAL */
.text-section {
  padding: 90px 0 120px;
}

.text-section p {
  max-width: 780px;
  margin: auto;
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

/* CORTES DIAGONAIS */
.image-cut {
  position: relative;
}

.image-cut img {
  width: 100%;
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 90%);
}

.image-cut.reverse img {
  clip-path: polygon(0 12%, 100% 0, 100% 90%, 0 100%);
}

/* PRODUTOS */
.produtos {
  padding: 120px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.label {
  background: var(--blue);
  color: #fff;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: .12em;
  display: inline-block;
  margin-bottom: 26px;
}

.produtos-text p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 420px;
}

.buttons {
  margin-top: 32px;
}

.buttons a {
  display: inline-block;
  border: 1px solid #999;
  padding: 10px 18px;
  font-size: 12px;
  text-decoration: none;
  color: #111;
  margin-right: 10px;
  margin-bottom: 10px;
}

/* SOBRE */
.sobre {
  padding: 120px 0;
}

.sobre-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sobre-text p {
  font-size: 15px;
  line-height: 1.8;
}

/* AREAS */
.areas {
  padding: 100px 0;
}

.areas p {
  max-width: 600px;
  line-height: 1.8;
}

/* MARCAS */
.marcas {
  padding: 110px 0;
  text-align: center;
}

.marcas p {
  margin-top: 26px;
  font-size: 14px;
}

/* CONTATO */
.contato {
  padding: 120px 0;
  background: #fafafa;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.form textarea {
  height: 120px;
}

.form button {
  background: var(--dark);
  color: #fff;
  padding: 14px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
}

.site-main{
  max-width: 1300px;
  margin: 0 auto;
}
.entry-header{
  margin-top: 100px;
  font-size: 0;
}

/* FOOTER */
footer {
  position: relative;
  background: #f1f1f1;
  margin-top: 100px;
  display: inline-block !important;
  width: 100% !important;
}

footer:before{
    content: '';
    background: url(../images/bg-footer.jpg) no-repeat;
    position: absolute;
    left: 0;
    top: -45px;
    width: 100%;
    height: 45px;
    background-size: 100% 100%;
  }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-box {
    margin-left: 0;
    margin: auto;
  }

  .hero {
    height: 75vh;
  }

  .image-cut img,
  .image-cut.reverse img {
    clip-path: none;
  }
}
