@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/Rubik-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Rubik-Italic";
  src: url("../fonts/Rubik-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/Rubik-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Rubik-BoldItalic";
  src: url("../fonts/Rubik-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

/*
  Tipos de format()
  - opentype (otf)
  - truetype(ttf)
  - embedded-opentype
  - truetype-aat (Apple Advenced Typography)
  - svg
*/

body {
  font-family: "Rubik-Regular", "Rubik-Italic", "Rubik-Bold", "Rubik-BoldItalic",
    sans-serif;
  font-size: 1.1em;
  color: #000000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  height: 100vh;
  padding: 0;
  padding-top: 68px;
}

a:not([href]):not([tabindex]) {
  transition: all 0.3s ease;
  color: #38b;
}

a:not([href]):not([tabindex]):hover {
  text-decoration: none;
  color: #fff;
}

a {
  transition: all 0.3s ease;
  color: #38b;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #3388bb;
}

a:focus {
  outline: none;
}

h1 {
  font-family: "Rubik-Bold", "Rubik-BoldItalic", "Rubik-Regular", sans-serif;
  font-size: 2rem;
  color: #0a4691;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0px;
}

h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 0px;
}

h4 {
  font-family: "Rubik-Bold", "Rubik-BoldItalic", "Rubik-Regular", sans-serif;
  font-size: 1.1em;
  color: #577805;
  margin: 0px;
}

p {
  line-height: 1.2em;
}

hr {
  border: 0;
  border-top: 20px solid;
  width: 100%;
  text-align: left; /* Para o IE */
  margin: 0;
  position: absolute;
  bottom: 0;
}

.w-90 {
  width: 90% !important;
}

.h-5 {
  height: 5% !important;
}

.h-95 {
  height: 95% !important;
}

.ff-bold {
  font-family: "Rubik-Bold", "Rubik-BoldItalic", sans-serif;
}

.ff-description-longo {
  max-width: 60%;
}

.background-right {
  position: absolute;
  right: 0;
  /* bottom: 20px; */
  background-position: 50% 50%;
  border-top-left-radius: 15%;
  border-bottom-left-radius: 5%;
  width: 40%;
  height: 90%;
}

.ff-background-green {
  background-color: #577805;
  border-color: #577805;
}

.ff-background-blue {
  background-color: #0a4691;
  border-color: #0a4691;
}

@media (max-width: 576px) {
  body {
    font-size: 0.8rem;
  }

  section {
    /* background-color: #cce4af; */
    height: 100vh;
    padding-top: 10px;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.8rem;
  }

  .ff-description-longo {
    max-width: 100%;
  }

  .background-right {
    height: 40%;
    width: 80%;
    /* display: none; */
  }
}

/* **** CABECALHO **** */

.ff-img-menu-logo {
  height: 40px;
}

.ff-navbar {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.233);
}

.ff-navbar::after {
  opacity: 1;
}

.navbar-brand {
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}

.navbar-brand:hover,
.ff-navbar.scroll .navbar-brand:hover {
  color: #38b;
}

.ff-navbar.scroll .navbar-brand {
  color: #369;
}

.nav-item {
  list-style: none;
}

.ff-nav-link {
  color: #38b;
}

.ff-navbar.scroll .ff-nav-link {
  color: #369;
}

.ff-navbar.scroll .ff-nav-link:hover,
.ff-navbar.scroll .ff-nav-link.current,
.ff-nav-link:hover,
.dropdown-item:hover,
.nav-link:hover {
  color: #fff;
  background-color: #369;
}

.navbar-toggler {
  border: 1px solid white;
  padding-left: 10px;
  padding-right: 10px;
}

.navbar-toggler-icon {
  color: white;
  padding-top: 6px;
}

.ff-navbar.scroll .navbar-toggler {
  border: 1px solid #707070;
}

.tm-navbar.scroll .navbar-toggler-icon {
  color: #707070;
}

#home {
  width: 100%;
  height: auto;
  padding: 0;
}
/* **** FIM CABECALHO **** */

/* **** RODAPE **** */
#rodape {
  font-size: 0.8em;
  height: 50vh !important;
  padding: 0;
  background-color: #fff;
  color: #035199;
}

#rodape h3 {
  font-family: "Rubik-Regular", "Rubik-Italic", "Rubik-Bold", "Rubik-BoldItalic",
    sans-serif;
  margin-bottom: 0;
}

#rodape hr {
  border: 0;
  border-top: 5px solid #a7d14c;
  width: 50px;
  text-align: left; /* Para o IE */
  margin: 0.3rem auto 0.3rem 0;
}

.ff-rodape-left {
  background-image: url("../img/FarmFeedrodapeLeft.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top left;
}

.ff-rodape-right {
  background-image: url("../img/FarmFeedRodapeRight.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: top right;
}

.ff-rodape-icon {
  width: 35px;
  margin: 0;
}

.ff-logo-rodape {
  width: 90%;
}

@media (max-width: 576px) {
  .ff-logo-rodape {
    width: 60%;
  }

  .ff-copyright {
    font-size: 0.6em;
  }

  #acquaFish {
    padding-top: 68px;
  }
}
/* **** FIM RODAPE **** */

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* Cor verde do WhatsApp */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999; /* Garante que o botão esteja acima de outros elementos */
}

#whatsapp-btn:hover {
  background-color: #128c7e; /* Cor de destaque ao passar o mouse */
}
