/* Animations */
@media (prefers-reduced-motion:no-preference) {
  main {
    animation: transitionIn 0.75s;
  }

  @keyframes transitionIn {
    from {
      opacity: 0;
      transform: translate3d(0, -10px, 0);
    }

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

/* Broad Definitions */
:root:not([data-theme="dark"]),
[data-theme="light"] {
  --clr-1: #fb8500;
  --clr-2: #023046;
  --clr-3: #fa8400;
  /* BACKGROUND */
  --clr-4: #07222e;

  --clr-7: #2C2C2C;
  --clr-8: #ffffff;
  --lighter-grey: #363d44;

  --primary: var(--clr-7);
  --primary-hover: var(--clr-2);

  --background-color: var(--clr-8);
  --color: var(--clr-7);
  --font-family: 'Maven Pro', sans-serif;

  --scroll-margin: 100px 0 0 0;
}

section {
  scroll-margin: var(--scroll-margin);
}

::selection {
  text-decoration: underline;
  color: var(--clr-1);
  background: none;
}

.special-selection::selection,
.special-selection ::selection {
  color: var(--clr-7);
  background: white;
}

html,
body {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
}

html {
  font-size: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
  cursor: unset;
}

body {
  font-size: 1.125rem;
}

main {
  padding: 0 !important;
}

.white-text h1,
.white-text h2,
.white-text h3,
.white-text p,
.white-text strong,
.white-text small {
  color: var(--clr-8);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2 {
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* h1 {
  font-size: clamp(2.4rem, 2.6vw, 4.2rem) !important;
} */

h1,
h2 {
  font-size: clamp(1.8rem, 3vw, 4rem) !important;
  text-align: center;
  color: var(--clr-1);
}

h1.uppercase-title,
h2.uppercase-title,
h3.uppercase-title,
h4.uppercase-title {
  text-transform: uppercase;
}

p,
strong {
  font-size: 1.2rem;
  /* font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem); */
}

ul,
ol,
li {
  list-style: none !important;
}

ul,
ol {
  padding-left: 0 !important;
  margin: 0;
}

strong {
  font-weight: 700;
}

.skip-content {
  position: absolute;
  left: 0px;
  top: 0;
  transform: translate3d(0, -100%, 0);
  padding: 1rem 3rem;
  background: var(--clr-1);
  color: var(--clr-8);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.skip-content:focus {
  transform: translate3d(0, 0, 0);
  top: 0px;
  z-index: 9999;
  color: var(--clr-8);
}

#main-content {
  scroll-margin: var(--scroll-margin);
}

.grid {
  grid-column-gap: calc(var(--spacing) * 3);
  grid-row-gap: calc(var(--spacing) * 2);
}

.list-grid {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: calc(var(--spacing) * 3);
}

.list-grid li {
  display: flex;
  align-items: center;
}

.list-grid li:not(:last-of-type) {
  margin-bottom: 4rem;
}

.list-grid img {
  max-width: 70px;
  margin-right: 2rem;
  object-fit: contain;
}

.list-grid p {
  max-width: 25ch;
}

.btn {
  font-weight: 900;
  padding: 1rem;
  background: var(--clr-1);
  font-size: 1.2rem;
  text-transform: uppercase;
  border-radius: 31px;
  display: block;
  max-width: max-content;
  text-align: center;
  margin-top: 2.2rem;
}

.btn:hover,
.btn:focus {
  text-decoration: none;
  filter: brightness(0.9);
}

.btn.btn-secondary {
  background: #5CCBFD;
}

.btn.btn-dark {
  color: var(--clr-7);
}

.animated-btn {
  transition: all 0.5s;
  cursor: pointer;
}

.animated-btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.animated-btn span:after {
  content: '\00bb';
  font-weight: 500;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.animated-btn:hover span {
  padding-right: 25px;
}

.animated-btn:hover span:after {
  opacity: 1;
  right: 0;
}

/* INDIVIDUAL COLORED FONT */
.icf-1 {
  color: var(--clr-1);
}

.icf-2 {
  color: var(--clr-2);
}

.icf-3 {
  color: var(--clr-3);
}

.icf-4 {
  color: var(--clr-4);
}

.grey-background {
  background: #39414b;
}

.padding-container {
  padding: 75px 0;
}

.special-container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* SPECIAL CONTAINER */
@media (min-width: 1025px) {

  /* Container para desktop devices only */
  .special-container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (min-width: 1600px) {

  /* FullHD e acima */
  .special-container {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

@media (min-width: 2000px) {

  /* Displays Ultrawide */
  .special-container {
    padding-left: 25rem;
    padding-right: 25rem;
  }

  .going-faster-section>div {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}


/*
===================================================================
-------------------------------HEADER------------------------------
===================================================================
*/
#header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 90px;
  height: 100%;
  width: 100%;
  box-shadow: 3px 0px 5px rgba(0, 0, 0, 0.3);
  background-color: var(--clr-8);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header>div {
  width: 100%;
}

#header_content {
  width: 100%;
  height: inherit;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
}

.logo {
  width: 130px;
  height: auto;
}

#nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  column-gap: 35px;
  row-gap: 10px;
  margin: 0;
}

#menu .link,
#menu .dropdown-toggle {
  display: block;
  padding: 5px;
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--clr-7);
  background: var(--clr-8);
  border: none;
  text-transform: uppercase;
  outline: none;
}

#menu .link:hover,
#menu .link:focus,
#menu .dropdown-toggle:hover,
#menu .dropdown-toggle:focus {
  color: #5e6269;
  text-decoration: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background: #f8f9fa;
  color: var(--grey);
}

.dropdown {
  position: relative;
  display: flex;
  justify-content: center;
}

.dropdown::after {
  content: "";
  background: url(../images/angle-down-solid.svg) no-repeat;
  position: absolute;
  top: 7px;
  right: -16px;
  width: 14px;
  height: 14px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: var(--clr-8);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  width: max-content;
  padding: 1.5rem 2rem;
  border-radius: 23px;
  font-size: 1rem;
  top: 45px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0;
  line-height: 3.2;
}

.dropdown-item.link {
  font-weight: 600 !important;
}

.dropdown-item:not(:last-child) {
  margin-bottom: .6rem;
}

#menu .link.button_red {
  padding: 10px 30px;
  background-color: var(--clr-1);
  color: var(--clr-8);
  border-radius: 10px;
  display: inline-block;
  margin: 0 auto;
}

#menu .link.button_red:hover,
#menu .link.button_red:focus {
  background-color: var(--clr-2);
  text-decoration: underline;
}

#menu .link.button_red:focus-within {
  outline: 3px solid var(--clr-7);
}

.button_red>i {
  font-size: 1.25rem;
  vertical-align: bottom;
  margin-left: 5px;
}

#btn-mobile {
  display: none;
}

/*
===================================================================
-------------------------------FOOTER------------------------------
===================================================================
*/
#footer,
#footer>section {
  padding-bottom: 0;
  margin-bottom: 0;
}

#footer .footer-background {
  background: var(--clr-2);
}

#footer a {
  color: white;
}

#footer a:hover {
  filter: brightness(0.8);
}

.footer-social {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 0 20px 0;
}

.footer-social .social-links a {
  padding: 10px;
  margin-left: 10px;
}

#footer hr {
  border-top: 2px solid white;
}

.footer-information {
  padding: 25px 0 40px 0;
}

.footer-information strong {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-information a {
  padding-bottom: 20px;
}

.footer-information address {
  display: flex;
  gap: 150px;
  grid-gap: 150px;
}

.footer-information .link-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-information .link-with-icon img {
  margin-top: 5px;
}

.footer-copyright-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  background: var(--clr-1);
}

.footer-copyright-line .footer-clixs a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-copyright-line .footer-clixs img {
  max-height: 40px;
}



/* ==================== Homepage ==================== */
.btn-style {
  display: inline-block;
  padding: 20px 40px;
  font-size: 1.2rem !important;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 15px;
  color: white;
}

.btn-style:hover {
  text-decoration: none;
  filter: brightness(1.10);
}

.home-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 90vh;
  margin-bottom: 0;
  background: url(../images/banner-top_img.jpg);
  background-size: cover;
  background-position: center;
}

.banner-text-wrapper {
  margin-bottom: 10%;
}

.banner-text-wrapper img {
  margin-bottom: 50px;
}

.banner-text-wrapper h1 {
  text-align: left;
  font-size: 2.5rem !important;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
}

.banner-targe {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7%;
}

.banner-targe p {
  padding: 10px 25px 10px 14%;
  font-size: 1.5rem !important;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-2);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%);
}

#main-content {
  margin-bottom: 0;
  background: var(--clr-2);
}

#main-content ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 25px;
}

#main-content ul>li {
  max-width: 300px;
}

#main-content li>img {
  max-height: 90px;
  margin-bottom: 25px;
}

#main-content h3 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--clr-1);
}

#main-content p {
  font-size: 1.2rem !important;
  line-height: 1.2;
  color: white;
}

.home-about-section {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.about-image-wrapper {
  min-width: 50%;
  max-width: 50%;
}

.about-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.about-text-wrapper {
  flex-grow: 1;
  padding: 50px;
}

.about-text-wrapper h2 {
  text-align: left;
  margin-bottom: 20px;
}

.about-text-wrapper p {
  font-size: 1.2rem !important;
  font-weight: 700;
  color: var(--clr-2);
}

.home-2nd-infoline {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 75px 0;
  background: linear-gradient(90deg, rgba(2, 48, 71, 1) 75%, rgba(251, 132, 1, 1) 75%);
}

.home-2nd-infoline>div {
  max-width: 360px;
}

.home-2nd-infoline h2 {
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}

.infoline-special-title h2 {
  position: relative;
}

.infoline-special-title span {
  position: absolute;
  top: 30px;
  right: 55px;
  font-size: 160px !important;
  line-height: 0;
}

.home-2nd-infoline p {
  font-size: 1.2rem !important;
  line-height: 1.2;
  color: white;
}

.need-our-help {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.need-our-help h3 {
  margin-bottom: 20px;
  font-size: 1.8rem !important;
  font-weight: 500;
}

.need-our-help a {
  border-radius: 50px;
  background-color: var(--clr-2);
}

.home-pillars-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.home-pillars {
  display: flex;
  margin-bottom: var(--block-spacing-vertical);
}

.home-pillars>div {
  min-width: 25%;
  max-width: 25%;
  min-height: 480px;
  padding: 50px 40px;
}

.home-pillars strong {
  display: block;
  margin-bottom: 15px;
  font-size: 2rem !important;
  color: var(--clr-1);
}

.home-pillars p {
  font-weight: 600;
}

.pillars-objective {
  background: url(../images/pilares-objetivo_img.jpg);
  background-position: center;
  background-size: cover;
}

.pillars-deferential {
  background: url(../images/pilares-diferencial_img.jpg);
  background-position: center;
  background-size: cover;
}

.pillars-innovation {
  background: url(../images/pilares-inovacao_img.jpg);
  background-position: center;
  background-size: cover;
}

.pillars-partnership {
  background: url(../images/pilares-parceria_img.jpg);
  background-position: center;
  background-size: cover;
}

.solutions_blue-line>div,
.solutions_darker-line>div {
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
}

.solutions-icon {
  min-width: 123px;
  margin-right: 75px;
}

.solutions-icon img {
  display: block;
  margin: 0 auto;
}

.solutions_blue-line {
  background: var(--clr-2);
}

.solutions_darker-line {
  background: var(--clr-4);
}

.solutions-text-box {
  padding: 30px 50px;
  border: 5px solid white;
  border-radius: 35px;
  background: var(--clr-1);
}

.solutions-text-box p {
  color: white;
}

.hiring-cards-list {
  display: grid;
  grid-template-columns: .125fr 1fr .125fr 1fr .125fr 1fr .125fr 1fr .125fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

.hiring-card {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 300px;
  background: var(--clr-1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px 70px 30px;
  grid-row: 2 / 4;
}

.hiring-card.card-blue {
  background: #073144;
  grid-row: 1 / 3;
}

.hiring-card:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.hiring-card:nth-child(2) {
  grid-column-start: 4;
  grid-column-end: 5;
}

.hiring-card:nth-child(3) {
  grid-column-start: 6;
  grid-column-end: 7;
}

.hiring-card:nth-child(4) {
  grid-column-start: 8;
  grid-column-end: 9;
}

.hiring-card:nth-child(5) {
  grid-column-start: 10;
  grid-column-end: 11;
}

.hiring-card::before {
  content: '';
  display: block;
  position: absolute;
  top: -7%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 125%;
  height: 130px;
  border-radius: 300px 300px 0 0;
  z-index: -1;
  background: #db7216;
}

.hiring-card.card-blue::before {
  background: #06222E;
  top: unset;
  bottom: -7%;
  border-radius: 0 0 300px 300px;
}

.hiring-img-wrapper {
  padding: 30px;
  background: #fff;
  border-radius: 50%;
  max-width: 130px;
  width: 100%;
  height: auto;
}

.hiring-text {
  font-weight: bold;
  text-align: center;
}

.hiring-text strong {
  display: block;
  color: #023047;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.2;
}

.hiring-card.card-blue .hiring-text strong {
  color: #FB8500;
}

.hiring-text p {
  color: #fff;
  font-size: .85rem;
  font-weight: bold;
}

.team-section h2 {
  text-align: center;
  margin-bottom: 10px;
}

.team-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
  padding: 100px 0;
  background: url('../images/equipe-background_img.jpg');
  background-position: center;
  background-size: cover;
}

.team-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 50px;
  width: 400px;
  border-radius: 50px 0 50px 0;
  background: white;
}

.team-card img {
  margin-bottom: 30px;
}

.team-card h3 {
  margin-bottom: 0px;
  font-size: 1.8rem !important;
  color: var(--clr-1);
}

.team-card strong {
  display: block;
  margin-bottom: 25px;
}

.clients-and-partners h2 {
  text-align: center;
  margin-bottom: 0;
}

.clients-and-partners>div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.swiper-slide img.logos {
  width: 500px;
  height: 200px;
  object-fit: contain;
}

.clients-and-partners .swiper-button-next,
.clients-and-partners .swiper-button-prev {
  color: #11191f;
  border: unset;
  background: none;
}

.depoiments-section {
  padding-top: 50px;
  padding-bottom: 25px;
  background: var(--clr-2);
}

.depoiments-section>h2 {
  color: white;
}

.depoiments-title {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.depoiments-title img {
  max-width: 250px;
}

.depoiments-title small {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-1);
}

.depoiments-title h3 {
  font-size: 3rem;
  color: var(--clr-1);
}

.depoiments-slide>p {
  margin-top: 30px;
  text-align: left;
  font-size: 1.5rem !important;
  line-height: 1.7;
}

.blog-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.see-more-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.see-more-button > p {
  font-weight: 600;
  text-transform: uppercase;
}

#fasthunting-home-page .see-more-button {
  margin-top: 25px;
}

.form-wrapper {
  display: block;
  max-width: 1050px;
  padding: 50px;
  margin: 0 auto;
  border-radius: 50px;
  box-shadow: 0px 2px 20px #00000026;
}

.form-wrapper>h2 {
  font-size: 2.5rem !important;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clr-2);
}

#contact-form label {
  display: none;
}

#contact-form input,
#contact-form textarea {
  border: none;
  border-bottom: 1px solid #bbbaba;
  border-radius: 0;
}

#contact-form textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
  height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
  max-height: 200px;
}

#contact-form .required-label {
  color: #8398a5;
}

#contact-form #submit-btn {
  display: block;
  margin: 0 auto;
  margin-right: 0;
  max-width: 150px;
  border-radius: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background: #023047;
}

#contact-form #submit-btn:hover {
  filter: brightness(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  border: unset;
  background: none;
}

.swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  padding: 0;
  background: none;
  border: 2px solid white;
}

.swiper-pagination-bullet-active {
  border: none;
  opacity: 1;
  background-color: white;
}

.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 100px !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;


  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

/* NOVIDADES AND PUBLICAÇÕES STYLES */
.blog-banner {
  display: flex;
  align-items: center;
  height: 50vh;
  background: url('../images/news-banner_img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#blog_grid, .blog-home-wrapper  {
  --gap-posts: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap-posts);
}

.div_feed {
  min-width: 370px;
  flex: 0 1 calc(33% - var(--gap-posts));
}

.title-blog {
  width: 100%;
  font-size: 35px;
  text-align: center;
  color: var(--main-color);
}
.box-card-blog {
  box-shadow: 0px 2px 20px #00000026;
}
.imagem_feed img {
  height: 220px;
  width: 100%;
}
.img-blog {
  width: 100%;
  object-fit: cover;
  height: 200px;
}
.box-card-blog .div-text {
  padding: 20px 30px;
}
.div-text {
  max-height: 180px;
  min-height: 180px;
  background-color: #fff;
}
.title-blog-index {
  margin: 10px 0px;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  text-transform: uppercase;
  color: var(--clr-1);
}
.text-blog-index {
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  color: #000000;
}
.div-text:hover, .text-blog-index:hover {
  text-decoration: none !important;
}
.more-blog {
  display: flex;
  justify-content: center;

  font-weight: 600;
  font-size: 18px;
}

.pagination > li > a,
.pagination > li > span {
  margin-bottom: 150px;

  color: #000000;
}

.individual-post-banner {
  position: relative;
  margin-bottom: 50px;
  height: 400px;
  width: 100%;
}

.individual-post-banner img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.individual-post-banner::after {
  content: '';
  display: block;
  height: 400px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent linear-gradient(75deg, #023047 0%, #4D4A32 50%, #FB8500 100%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 0.86;
}

.individual-post-section {
  margin-bottom: 0;
}

.individual-post {
  margin-bottom: 75px;
}

.individual-post-section .see-more-button {
  justify-content: center;
}

.desc-post,
.desc-post p,
.desc-post a,
.desc-post span,
.desc-post label {
  color: #000;
}

.share-a2a {
  font-size: 16px;
  letter-spacing: 2.2px;
  color: #000;
}
.a2a_kit a {
  margin: 10px 10px;
}

.a2a_svg,
.a2a_count {
  border-radius: 11px !important;
  padding: 5px !important;
}

.share-option {
  flex-wrap: wrap;
}

.titulo-post h1 {
  font-size: 22px;
  text-align: left !important;
  color: var(--clr-2) !important;
}

.fontdatapost {
  letter-spacing: 2px;
  color: #000000;
}
.align-left-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.align-right-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.img-width {
  width: 200px !important;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 138px;
  border: none !important;

  letter-spacing: 2px;
}

.pagination > li > a,
.pagination > li > span {
  border: none !important;
  margin: 0;
}

.pagination > li > span:hover {
  cursor: default;
  color: #000;
  background-color: transparent;
}

.pagination > li > a:hover,
.pagination > li > a:focus {
  color: #000;
  background-color: transparent;
}

.pagination > li > a > i {
  padding: 0;

  font-size: 22px;
  color: var(--main-color);
}









@media (max-width: 1600px) {

  /* Container para notebook only */
  .home-2nd-infoline {
    padding: 75px 30px;
    gap: 20px;
  }

  .need-our-help h3 {
    text-align: center;
    line-height: 1.2;
  }

  .infoline-special-title span {
    top: 15px;
    right: 70px;
  }
}

@media (min-width: 2000px) {
  /* Query for Ultrawide+ */

}

/* Email modal */
.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

dialog>article>a.close {
  background-size: cover;
  width: 30px;
  height: 30px;
}

.modal-content h3 {
  color: var(--clr-4);
  font-size: 2rem;
  margin: 1rem 0 0.6rem 0;
}

.modal-content img {
  height: 70px;
}

/* ------------------------------ VAGAS -----------------*/
.titulo-secao {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
}

.form-busca {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
  align-items: center;
}

.input-busca {
  padding: 14px 20px;
  border-radius: 20px;
  border: 2px solid #FB8500;
  outline: none;
  font-size: 16px;
  flex: 1;
}

.container-vagas {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 30px;
}

.card-vaga {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-vaga h3 {
  margin-bottom: 10px;
  min-height: 50px;
}

.cliente {
  font-weight: bold;
  margin-bottom: 10px;
}

.descricao {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-read {
  display: inline-block;
  padding: 10px 20px;
  background: #FB8500;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  max-width: 320px;
}

.input-wrapper {
  position: relative;
  flex: 1;
}

.btn-clear {
  position: absolute;
  width: 20px;
  right: 12px;
  top: 23px;
  padding: 0;
  margin: 0;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  font-size: 35px;
  cursor: pointer;
  color: #999;
}

.btn-clear:hover {
  color: #000;
}

.btn-clear:focus {
  box-shadow: none;
}

.btn-search {
  display: inline-block;
  max-width: 200px;
  padding: 14px 20px;
  background: #FB8500;
  color: white;
  border-radius: 20px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-search:hover {
  opacity: 0.85;
}

/* ------------------------------- VAGA -----------------------------*/

.pagina-vaga {
  background: white;
}

.header-vaga {
  background: linear-gradient(90deg, #FB8500, #033047);
  font-size: 60px;
  padding: 70px 160px 70px 160px;
}
.header-vaga h1{
  color: white;
  text-align: left;
}

.conteudo-vaga {
  display: flex;
  gap: 100px;
  padding: 0px 160px 0px 160px;
  justify-content: space-between;
}

.descricao-vaga {
  background: #fff;
  padding-top: 50px;
  flex: 2;
}

.descricao-vaga p{
  padding-bottom: 30px;
}

.formulario-vaga {
  background: #fff;
  flex: 2;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px #00000029;
  margin-top: -180px;
}

.formulario-vaga form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.formulario-vaga h2 {
  color: #0F3544;
  text-align: left;
  font-size: 60px;
}

.formulario-vaga input,
.formulario-vaga button {
  padding: 12px;
  border-radius: 20px;
  border: 2px solid #FB8500;
}

.formulario-vaga button {
  background: #FB8500;
  color: white;
  font-weight: bold;
  border: none;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.formulario-vaga button:hover {
  background-color: #e56f00;
}

#curriculo {
  opacity: 0;
  position: absolute;
  width: fit-content;
  z-index: -1;
}

.custom-file-upload {
  display: flex;
  width: 100%;
  background-color: #FB8500;
  color: white;
  text-align: left;
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.custom-file-upload:hover {
  background-color: #e56f00;
}