@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "TT Commons Pro bold";
  src: url(../fonts/tt-commons-bold.otf) format("opentype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Glacial Indifference";
  src: url(../fonts/glacial-indifference.regular.otf) format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Bebas Neue";
  src: url(../fonts/bebasneue-regular.otf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url(../fonts/ibm-plex-sans.regular.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "League Spartan";
  src: url(../fonts/leaguespartan-variablefont_wght.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url(../fonts/montserrat-variablefont_wght.ttf);
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.container {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.back-to-top-button {
  position: fixed;
  bottom: 20px;
  z-index: 100000;
  right: 20px;
  background-color: #4b0a96;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.back-to-top-button:hover {
  background-color: #3e077e;
}

/*header e navbar*/

header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}

#navbar {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #272727;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Montserrat", sans-serif;
}

.konekcia-logo {
  left: 2%;
  position: absolute;
}

.konekcia-logo img {
  height: 40px;
  margin-left: 20px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 60px;
}

.nav-item a,
.btn-cad {
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 17px;
}

.nav-item:hover {
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  transition: 0.18s;
}

.nav-item .active a {
  color: #1d1d1d;
  border-bottom: solid 3px #f28c28;
}

.language-selector {
  position: absolute;
  right: 6%;
  z-index: 1000;
  cursor: pointer;
  color: white;
  font-size: 18px;
}

.language-selector ul {
  position: absolute;
  top: 100%;
  z-index: 99999;
  right: 0;
  background: #f2f2f2;
  list-style: none;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  display: none;
}

.language-selector ul li {
  padding: 8px 12px;
  cursor: pointer;
  color: #1d1d1d;
  font-weight: 600;
  align-items: center;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.language-selector ul li:hover {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.language-selector ul li img {
  width: 50px;
  height: auto;
  border-radius: 100px;
  margin-right: 12px;
}

#lang-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

#lang-btn img {
  width: 50px;
  height: auto;
  border-radius: 100px;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.nav-list.active {
  transform: translateX(0);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*fim da header e da navbar*/
/*hero section*/

.hero-section {
  width: 100%;
  height: 900px;
  background-color: #101010;
  display: flex;
  justify-content: center;
  color: white;
}

.hero-content {
  height: 100%;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.hero-content-1 {
  display: flex;
  flex-direction: column;
  margin-left: 4%;
  align-items: start;
}

.hero-section h1 {
  font-size: 22.6px;
  margin-top: 6%;
  margin-bottom: 26px;
  font-weight: 300;
  font-family: "IBM Plex Sans", sans-serif;
}

.hero-section span {
  font-weight: bold;
  color: #6e17a8;
}

.hero-section h3 {
  font-size: 23.2px;
  margin-top: 4%;
  font-weight: 300;
  width: 100%;
  text-align: start;
  font-family: "IBM Plex Sans", sans-serif;
}

.hero-section img {
  height: 25%;
  margin-top: 4%;
}

.hero-buttons {
  display: flex;
  margin-left: 4%;
  align-items: start;
  justify-content: space-between;
}

.button-type1 {
  background-color: #6e17a8;
  border: none;
  font-family: "montserrat", sans-serif;
  font-size: 16px;
  color: white;
  padding: 12px 34px;
  border-radius: 42px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-type1:hover {
  background-color: #58136f;
}

.social-media-buttons-field {
  display: flex;
  gap: 1px;
  margin-left: 24px;
}

.social-media-button {
  background-color: transparent;
  border: none;
  font-size: 45px;
  color: white;
  padding: 12px 16px;
  border-radius: 42px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-media-button:hover {
  color: rgb(197, 197, 197);
}

/*fim da hero section*/
/*inicio da whyKonekcia Section*/

.whyKonekcia-section {
  width: 100%;
  background-color: #272727;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.whyKonekcia-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 0 20px;
}

.whyKonekcia-content-top {
  display: flex;
  width: 100%;
  margin-top: 8%;
  flex-direction: column;
}

.whyKonekcia-content-top h2 {
  font-size: 90px;
  font-family: "TT Commons Pro bold", sans-serif;
  font-weight: 600;
  text-align: right;
  margin-bottom: 12px;
}

.whyKonekcia-content-top h2::before {
  content: "";
  display: block;
  width: 290px;
  height: 4px;
  background-color: #6e17a8;
  margin-bottom: 1px;
  margin-left: auto;
}

.whyKonekcia-content-top h4 {
  font-size: 20px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  text-align: right;
  margin-bottom: 12px;
}

.whyKonekcia-content-top span {
  color: #6e17a8;
}

.whyKonekcia-content-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.box {
  background-color: transparent;
  perspective: 1000px;
  cursor: pointer;
  min-height: 300px;
  width: 100%;
  position: relative;
}

.box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 15px;
}

.box3-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: 15px;
}

.box:hover .box-inner,
.box:hover .box3-inner {
  transform: rotateY(180deg);
}

.box-front,
.box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.box-front {
  background-color: #6e17a8;
  z-index: 2;
}

.box-front h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.box-back p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.box1 {
  grid-row: span 2;
  min-height: 625px;
}

.box2 {
  grid-column: span 2;
}

.box3 {
  grid-row: span 1.8;
}

.box4 {
  grid-column: span 2;
}

.box5 {
  grid-row: span 2;
  grid-column: 3;
  grid-row: 2 / 4;
  min-height: 625px;
}

.whyKonekcia-content-bottom h2 {
  font-size: 23px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  text-align: center;
  margin: 50px auto;
}

.whyKonekcia-content-bottom span {
  color: #d0b54c;
  font-weight: bold;
}

.box-front {
  position: relative;
  z-index: 2;
  justify-content: start;
}

.box-back {
  background-color: #6e17a8;
  transform: rotateY(180deg);
  z-index: 1;
  display: flex;
  justify-content: start;
  padding: 17px;
}

.box-back h3 {
  font-family: "League Spartan";
  font-size: 47px;
  color: white;
  margin: 30px auto;
  margin-bottom: 15px;
}

/*box 1*/

.box1-field {
  background-color: #904dbd;
  padding: 30px 20px;
  margin-top: 12%;
  border-radius: 8px;
  text-justify: inter-word;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 100;
  font-family: "Glacial Indifference", sans-serif;
}

.box1-field span {
  font-weight: bold;
  color: #d19efd;
  font-size: 23px;
}

.box1-field ul {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  margin-bottom: 20px;
}

.box1-field h5 {
  font-family: "Glacial Indifference", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

/*box 2*/

.box2-h1 {
  font-family: "League Spartan";
  font-size: 50px;
  color: rgb(255, 255, 255);
  margin-top: 30px;
  margin-left: -35%;
}

.box2-field {
  background-color: #904dbd;
  display: flex;
  padding: 7px 10px;
  border-radius: 8px;
  text-justify: inter-word;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 100;
  font-family: "Glacial Indifference", sans-serif;
}

.box2-field-left {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.box2-field-right {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  text-align: center;
  font-size: 28px;
}

.box2-field-right h5 {
  font-family: "Glacial Indifference", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.box2-field span {
  font-weight: bold;
  color: #d19efd;
  font-size: 23px;
}

.box2-field ul {
  display: flex;
  flex-direction: column;
  margin-left: 24px;
}

/*box 3*/

.box3-h1 {
  font-family: "League Spartan";
  font-size: 50px;
  color: rgb(255, 255, 255);
  margin-top: 30px;
  margin-left: -20%;
}

.box3-field {
  background-color: #904dbd;
  display: flex;
  padding: 7px 10px;
  border-radius: 8px;
  text-justify: inter-word;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 100;
  font-family: "Glacial Indifference", sans-serif;
}

.box3-field-right {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.box3-field-left {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 0px auto;
  text-align: left;
  font-size: 28px;
}

.box3-field span {
  font-weight: bold;
  color: #d19efd;
  font-size: 23px;
}

.box3-field h2 {
  font-family: "Glacial Indifference", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.box3-field ul {
  display: flex;
  flex-direction: column;
  margin-left: 24px;
}

/*box 4*/

.box4-field {
  background-color: #904dbd;
  display: flex;
  flex-direction: column;
  padding: 7px 10px;
  border-radius: 8px;
  text-justify: inter-word;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 100;
  font-family: "Glacial Indifference", sans-serif;
}

.box4-field span {
  font-weight: bold;
  color: #d19efd;
  font-size: 23px;
}

.box4-field ul {
  display: flex;
  flex-direction: column;
  margin-left: 24px;
}

/*box 5*/

.box5-field {
  background-color: #904dbd;
  padding: 30px 20px;
  margin-top: 12%;
  border-radius: 8px;
  text-justify: inter-word;
  text-align: left;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 100;
  font-family: "Glacial Indifference", sans-serif;
}

.box5-field span {
  font-weight: bold;
  color: #d19efd;
  font-size: 23px;
}

.box5-field ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 20px;
}

.box5-field h5 {
  font-family: "Glacial Indifference", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 26%;
}

/*fim da whyKonekcia Section*/
/*inicio da ourServices*/

.ourServices-section {
  background-color: #101010;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.ourServices-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 0 20px;
}

.ourServices-content-top {
  display: flex;
  width: 100%;
  margin-top: 8%;
  flex-direction: column;
}

.ourServices-content-top h2 {
  font-size: 90px;
  font-family: "TT Commons Pro bold", sans-serif;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px;
}

.ourServices-content-top h2::before {
  content: "";
  display: block;
  width: 290px;
  height: 4px;
  background-color: #6e17a8;
  margin-bottom: 1px;
}

.ourServices-content-top h4 {
  font-size: 23px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  text-align: left;
  margin-bottom: 12px;
}

.ourServices-content-top span {
  color: #6e17a8;
}

.services-list {
  display: flex;
  width: 100%;
  margin-top: 7%;
  justify-content: center;
  gap: 10%;
}

.left-services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.rigth-services-list {
  display: flex;
  flex-direction: column;
  margin-top: 5%;
  gap: 100px;
}

.item {
  position: relative;
  width: 450px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.item img {
  width: 100%;
  height: 300px;
  position: relative;
  border-radius: 5px;
  z-index: 2;
  object-fit: cover;
}

.item-bottom {
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  color: tomato;
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.item-bottom-left {
  padding: 10px 12px;
  color: #ffffff;
  font-size: 55px;
  font-weight: 100;
}

.item-bottom-rigth {
  padding: 10px 12px;
}

.item-bottom-rigth h1 {
  font-family: "TT Commons Pro bold", sans-serif;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px #904dbd;
}

.item-bottom-rigth p {
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 30px;
  color: #ffffff;
}

.item-bottom-rigth button {
  margin-top: 5%;
  font-family: "IBM Plex Sans", sans-serif;
  background-color: transparent;
  border: 0.5px solid #ffffff;
  color: #ffffff;
  padding: 13px 60px;
  font-size: 16px;
  border-radius: 7px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.item-bottom-rigth button:hover {
  background-color: #ffffff;
  color: #272727;
}

.backImage1 {
  position: absolute;
  top: -7px;
  left: 9px;
  width: 97%;
  height: 300px;
  background-color: #6a1b9a;
  border-radius: 17px;
  z-index: 1;
}

.backImage2 {
  position: absolute;
  top: 7px;
  left: -8px;
  width: 97%;
  height: 300px;
  background-color: #6a1b9a;
  border-radius: 17px;
  z-index: 1;
}

.backImage3 {
  position: absolute;
  top: 7px;
  left: 22px;
  width: 97%;
  height: 300px;
  background-color: #6a1b9a;
  border-radius: 17px;
  z-index: 1;
}

.backImage4 {
  position: absolute;
  top: -7px;
  left: -8px;
  width: 97%;
  height: 300px;
  background-color: #6a1b9a;
  border-radius: 17px;
  z-index: 1;
}

.bottom-services-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 7%;
}

.bottom-services-list h1 {
  font-family: "TT Commons Pro bold", sans-serif;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 0px #904dbd;
  margin-left: 25px;
}

.bottom-services-list p {
  font-size: 18px;
  margin-bottom: 5%;
  margin-top: 10px;
  margin-left: 30px;
  color: #ffffff;
  font-family: "montserrat", sans-serif;
}

.bottom-services-list button {
  margin-top: 2%;
  position: relative;
  z-index: 100;
  margin-left: 30px;
  font-family: "IBM Plex Sans", sans-serif;
  background-color: transparent;
  border: 0.5px solid #ffffff;
  width: 200px;
  color: #ffffff;
  padding: 13px 60px;
  font-size: 16px;
  border-radius: 7px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.bottom-services-list button:hover {
  background-color: #ffffff;
  color: #272727;
}

.bottom-item {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 300px;
}
.bottom-item img {
  position: relative;
  z-index: 0;
}

/* --- Estilos do Efeito Expansível --- */

.more-info {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s ease-out,
    opacity 0.4s ease,
    margin 0.4s ease;
}

.more-info p {
  font-size: 15px;
  color: #d1d1d1;
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.5;
  border-left: 2px solid #6e17a8;
  padding-left: 10px;
}

.item.active .more-info {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}

.expand-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.item.active .expand-btn i {
  transform: rotate(180deg);
}

.item.active .expand-btn {
  background-color: #ffffff;
  color: #272727;
  border-color: #ffffff;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.info-list li {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
  line-height: 1.4;
}

.info-list li::before {
  content: "•";
  color: #6e17a8;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.intro-text {
  font-weight: 600;
  color: #ffffff !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
}

/*fim da ourservices*/

/*inicio da aboutUS*/

.aboutUs-section {
  width: 100%;
  background-color: #272727;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.aboutUs-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  margin-top: 43%;
  padding: 0 20px;
}

.aboutUs-content-top h2 {
  font-family: "TT Commons Pro bold";
  font-size: 90px;
  text-align: end;
  margin-right: 2%;
  margin-top: 5%;
}

.aboutUs-content-top h2::before {
  content: "";
  display: block;
  width: 290px;
  height: 4px;
  background-color: #6e17a8;
  margin-bottom: 1px;
  margin-left: auto;
}

.infos-field {
  width: 70%;
  margin: 7% auto;
  display: flex;
  gap: 10%;
}

.infos-field h1 {
  font-family: "TT Commons Pro bold", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.infos-field h1::after {
  content: "";
  display: block;
  width: 223px;
  height: 2px;
  background-color: #6e17a8;
  margin-bottom: 20px;
}

.infos-field p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.infos-field span {
  font-weight: 600;
  color: #904dbd;
}

/*founders*/

/*founder 1*/

.aboutUs-founders-profile {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: 5% auto;
  gap: 50px;
}

.founder1,
.founder2 {
  display: flex;
  align-items: center;
  margin-top: 5%;
  position: relative;
}

.linha::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #6e17a8;
  margin: 9% auto 15px;
}

.founder1 img,
.founder2 img {
  position: relative;
  width: 340px;
  height: auto;
  margin-right: 30px;
  z-index: 2;
}

.FP2-backImage {
  position: absolute;
  top: -11px;
  right: 40px;
  width: 340px;
  height: calc(92% + 30px);
  background-color: #6e17a8;
  border-radius: 5px;
  z-index: 1;
}

.FP-backImage {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 340px;
  height: calc(92% + 30px);
  background-color: #6e17a8;
  border-radius: 5px;
  z-index: 1;
}

.founders-infos-field {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.founders-infos-field p {
  font-size: 18px;
  font-family: "Montserrat";
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.founders-infos-field h1 {
  font-size: 54px;
  font-family: "TT Commons Pro bold";
  margin-bottom: 15px;
  color: white;
}

.founders-infos-field h3 {
  font-size: 22px;
  font-family: "montserrat";
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.founders-infos-field i {
  color: #ffffff;
  font-size: 50px;
  font-style: normal;
}

.social-media {
  display: flex;
  margin-top: 3%;
  gap: 1%;
  align-items: center;
}
.social-media h5 {
  font-size: 22px;
  font-family: "montserrat";
  font-weight: 200;
}

/*founder 2*/

.founders-infos-field2 {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-right: 40px;
}

.founders-infos-field2 p {
  font-size: 18px;
  text-align: end;
  font-family: "Montserrat";
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.founders-infos-field2 h1 {
  font-size: 54px;
  text-align: end;
  font-family: "TT Commons Pro bold";
  margin-bottom: 15px;
  color: white;
}

.founders-infos-field2 h3 {
  font-size: 22px;
  text-align: end;
  font-family: "montserrat";
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 20px;
  color: #d0d0d0;
}

.founders-infos-field2 i {
  color: #ffffff;
  font-size: 50px;
  font-style: normal;
}

.social-media2 {
  display: flex;
  margin-top: 3%;
  justify-content: end;
  gap: 1%;
  align-items: center;
}
.social-media2 h5 {
  font-size: 22px;
  text-align: end;
  font-family: "montserrat";
  font-weight: 200;
}

.social-media2-mobile {
  display: none;
}

/*fim da aboutUs section*/

/*inicio da contato section*/

.contact-section {
  width: 100%;
  background-color: #101010;
  background-size: cover;
  display: flex;
  justify-content: center;
  height: 1000px;
}

.contact-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 0 20px;
}

.contact-content-top h1 {
  font-family: "Bebas Neue";
  font-size: 120px;
  font-weight: 100;
  margin-right: 2%;
  margin-top: 5%;
}

.contact-content-top h1::before {
  content: "";
  display: block;
  width: 190px;
  height: 4px;
  background-color: #6e17a8;
  margin-bottom: 1px;
}

.contact-content-top p {
  font-family: "montserrat";
  font-size: 22px;
  font-weight: 300;
  margin-right: 2%;
  text-align: justify;
  margin-bottom: 3%;
}

.contact-content-top span {
  font-weight: 600;
  color: #ab7cca;
}

.contact-infos {
  display: flex;
  flex-direction: column;
}

.contact-infos h2 {
  font-family: "Bebas Neue";
  font-weight: 300;
  font-size: 40px;
  margin-bottom: 2%;
}

.social-medias-contacts {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.SMC {
  display: flex;
  gap: 12px;
}

.SMC i {
  font-size: 27px;
  font-weight: 600;
  text-align: center;
}

.SMC h4 {
  font-family: "montserrat";
  text-align: center;
  margin-top: 5px;
  font-weight: 300;
}

.SMC span {
  font-weight: 600;
}

.horarios {
  margin-top: 4%;
  display: flex;
}

.horarios i {
  font-size: 27px;
  margin-right: 12px;
}

.horarios-title span {
  font-family: "montserrat";
  text-align: center;
  margin-top: 5px;
  font-weight: 600;
}

.horarios-title p {
  font-family: "montserrat";
  margin-top: 5px;
  font-weight: 300;
}

/*fim da contato section*/
/*inicio da requestQuote section*/

.requestQuote-section {
  width: 100%;
  background-color: #121212;
  background-size: cover;
  display: flex;
  justify-content: center;
}

.requestQuote-content {
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin: 10% auto;
  color: white;
  padding: 0 40px;
}

.requestQuote-content-left {
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
}

/* Título mobile - oculto por padrão */
.requestQuote-mobile-title {
  display: none;
  font-family: "TT Commons Pro bold", sans-serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

.requestQuote-content-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.requestQuote-content-form label {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  display: block;
}

.requestQuote-content-form span {
  color: #ff0000;
  margin-left: 2px;
}

.requestQuote-content-form input[type="text"],
.requestQuote-content-form input[type="email"] {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 12px 15px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
}

.requestQuote-content-form input[type="text"]:focus,
.requestQuote-content-form input[type="email"]:focus {
  border-color: #6e17a8;
  box-shadow: 0 0 0 2px rgba(110, 23, 168, 0.2);
}

.requestQuote-content-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.requestQuote-content-form textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 12px 15px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  min-height: 120px;
  resize: vertical;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
}

.requestQuote-content-form textarea:focus {
  border-color: #6e17a8;
  box-shadow: 0 0 0 2px rgba(110, 23, 168, 0.2);
}

.requestQuote-content-form button {
  background-color: #6e17a8;
  border: none;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-end;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.requestQuote-content-form button:hover {
  background-color: #58136f;
  transform: translateY(-2px);
}

.requestQuote-content-form button:active {
  transform: translateY(0);
}

.requestQuote-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.requestQuote-content-right h1 {
  font-family: "TT Commons Pro bold", sans-serif;
  font-size: 90px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.requestQuote-content-right img {
  height: auto;
  width: 100%;
  max-width: 650px;
  margin: 30px 0;
}

.requestQuote-content-right p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-top: 20px;
}

.ver-mais-icon {
  color: white;
  font-size: 40px;
  font-family: "Glacial Indifference";
  font-weight: 500;
  text-shadow: -2px 2px 0px rgba(0, 0, 0, 0.3);
  justify-content: top;
  display: flex;
  text-align: left;
}


.copyRight {
  height: 50px;
  align-items: center;
  display: flex;
  background-color: #272727;
  justify-content: center;
}

.copyRight h1{
  font-size: 18px;
  font-family: "Glacial Indifference";
  text-align: center;
  justify-content: center;
  color: #fff;
  font-weight: 100;
}

.form-response {
    display: none;
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-response.success {
    background: linear-gradient(135deg, #73cc77 0%, #043316 100%);
    color: #ffffff;
    font-family: "Glacial Indifference";
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-response.success::before {
    content: "✓ ";
    font-size: 20px;
    margin-right: 8px;
}

.form-response.error {
    background: linear-gradient(135deg, #ce2e63 0%, #f5576c 100%);
    color: #ffffff;
    font-family: "Glacial Indifference";
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.form-response.error::before {
    content: "⚠ ";
    font-size: 20px;
    margin-right: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo opcional para o botão durante o envio */
button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}



