body {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  overflow-x: hidden;
}

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

html {
  font-size: 16px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
header.scrolled .logo {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }
  header.scrolled .logo {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 1.125rem;
    flex: 1;
  }
  header.scrolled .logo {
    font-size: 1.25rem;
  }
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  nav ul {
    gap: 1.25rem;
  }
}
@media (max-width: 480px) {
  nav ul {
    gap: 0.9375rem;
  }
}
nav a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.3125rem;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: transition(width);
}
nav a:hover {
  color: #ffffff;
}
nav a:hover::after {
  width: 100%;
}
nav a.active {
  color: #ffffff;
  pointer-events: none;
  cursor: default;
}
nav a.active::after {
  width: 100%;
  background-color: #be9e21;
  bottom: -8px;
  height: 3px;
}
@media (max-width: 768px) {
  nav a {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  nav a {
    font-size: 0.6875rem;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(26, 26, 26, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 0 3.125rem;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header.scrolled {
  height: 60px;
  padding: 0 3.125rem;
}
@media (max-width: 768px) {
  header {
    padding: 0 1.25rem;
  }
  header.scrolled {
    padding: 0 1.25rem;
  }
}
@media (max-width: 480px) {
  header {
    padding: 0 0.9375rem;
    flex-wrap: wrap;
  }
}
header .logo img {
  height: 60px;
  transition: all 0.3s ease;
}
header.scrolled .logo img {
  height: 40px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 0.375rem;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
@media (max-width: 480px) {
  .menu-toggle {
    display: flex;
  }
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 480px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.98);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .nav-menu.open {
    max-height: 500px;
  }
}
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .nav-menu ul {
    gap: 1.25rem;
  }
}
@media (max-width: 480px) {
  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    padding: 1.25rem;
  }
}
.nav-menu a {
  color: #cccccc;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.3125rem;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: transition(width);
}
.nav-menu a:hover {
  color: #ffffff;
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a.active {
  color: #ffffff;
  pointer-events: none;
  cursor: default;
}
.nav-menu a.active::after {
  width: 100%;
  background-color: #be9e21;
  bottom: -8px;
  height: 3px;
}
@media (max-width: 768px) {
  .nav-menu a {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .nav-menu a {
    font-size: 1.25rem;
    padding-bottom: 0.9375rem;
  }
  .nav-menu a::after {
    display: none;
  }
  .nav-menu a.active {
    color: #be9e21;
  }
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.875rem;
}
@media (max-width: 768px) {
  .language-switcher {
    gap: 0.625rem;
    margin-left: 1.25rem;
  }
}
@media (max-width: 480px) {
  .language-switcher {
    position: absolute;
    top: 50%;
    right: 3.75rem;
    transform: translateY(-50%);
    gap: 0.5rem;
    margin-left: 0;
  }
}
.language-switcher .lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.language-switcher .lang-flag:hover {
  opacity: 1;
  border-color: #ffffff;
  transform: scale(1.1);
}
.language-switcher .lang-flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .language-switcher .lang-flag {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (max-width: 480px) {
  .language-switcher .lang-flag {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 1.5px;
  }
}

footer {
  width: 100%;
  height: 40px;
  font-weight: 400;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 100vh;
}

.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  color: #ffffff;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 80px 3.125rem 3.125rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 80px 1.25rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 80px 1.25rem 1.875rem;
  }
}

.hero-spacer {
  flex: 1;
}

.home-about {
  display: flex;
  min-height: 600px;
  width: 100%;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .home-about {
    flex-direction: column;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .home-about {
    flex-direction: column;
    min-height: auto;
  }
}

.home-about__image {
  width: 50%;
  height: 100%;
  min-height: 600px;
  background-image: url("../images/home-about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .home-about__image {
    width: 100%;
    min-height: 400px;
    order: 2;
  }
}
@media (max-width: 480px) {
  .home-about__image {
    width: 100%;
    min-height: 300px;
    order: 2;
  }
}

.home-about__content {
  width: 50%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .home-about__content {
    width: 100%;
    padding: 3.75rem 2.5rem;
    order: 1;
  }
}
@media (max-width: 480px) {
  .home-about__content {
    width: 100%;
    padding: 2.5rem 1.25rem;
    order: 1;
  }
}

.home-about__frase {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .home-about__frase {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 480px) {
  .home-about__frase {
    font-size: 1.5rem;
    margin-bottom: 1.5625rem;
  }
}

.home-about__frase-2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.7;
  max-width: 500px;
}
@media (max-width: 768px) {
  .home-about__frase-2 {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .home-about__frase-2 {
    font-size: 1.25rem;
    line-height: 1.6;
  }
}

.home-about__content {
  transition: all 0.3s ease;
}
.home-about__content:hover {
  background-color: rgb(20.9, 20.9, 20.9);
}

.home-how {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%), url("../../images/bg-how.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .home-how {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .home-how {
    padding: 3.75rem 1.25rem;
    background-attachment: scroll;
  }
}

.home-how__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .home-how__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .home-how__header {
    margin-bottom: 3.125rem;
  }
}

.home-how__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .home-how__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .home-how__title {
    font-size: 2rem;
  }
}

.home-how__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.home-how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home-how__grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 480px) {
  .home-how__grid {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
}

.home-how__card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.home-how__card:hover {
  border-color: #be9e21;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(190, 158, 33, 0.15);
  background-color: rgba(190, 158, 33, 0.05);
}
@media (max-width: 480px) {
  .home-how__card {
    border-radius: 4px;
  }
}

.home-how__card-image {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.home-how__card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: opacity 0.4s ease;
}
@media (max-width: 768px) {
  .home-how__card-image {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .home-how__card-image {
    height: 200px;
  }
}

.home-how__card:hover .home-how__card-image::after {
  opacity: 0.8;
}

.home-how__card-number {
  position: absolute;
  top: -0.625rem;
  right: -0.625rem;
  width: 90px;
  height: 90px;
  background-color: #be9e21;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0.75rem 0.9375rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 400;
  z-index: 10;
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}
@media (max-width: 480px) {
  .home-how__card-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.home-how__card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .home-how__card-content {
    padding: 2.1875rem;
  }
}
@media (max-width: 480px) {
  .home-how__card-content {
    padding: 1.5625rem;
  }
}

.home-how__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.9375rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .home-how__card-title {
    font-size: 1.375rem;
  }
}
@media (max-width: 480px) {
  .home-how__card-title {
    font-size: 1.125rem;
  }
}

.home-how__card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  flex-grow: 1;
}
@media (max-width: 480px) {
  .home-how__card-text {
    font-size: 1.125rem;
  }
}

.home-how__card-line {
  width: 40px;
  height: 3px;
  background-color: #be9e21;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.home-testimonials {
  display: none;
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
  position: relative;
}
@media (max-width: 768px) {
  .home-testimonials {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .home-testimonials {
    padding: 3.75rem 1.25rem;
  }
}

.home-testimonials__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .home-testimonials__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .home-testimonials__header {
    margin-bottom: 3.125rem;
  }
}

.home-testimonials__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .home-testimonials__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .home-testimonials__title {
    font-size: 2rem;
  }
}

.home-testimonials__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .home-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 480px) {
  .home-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
}

.home-testimonials__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.home-testimonials__card::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 5rem;
  color: #be9e21;
  opacity: 0.1;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
}
.home-testimonials__card:hover {
  border-color: #be9e21;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(190, 158, 33, 0.1);
  background: linear-gradient(135deg, rgba(190, 158, 33, 0.08) 0%, rgba(190, 158, 33, 0.02) 100%);
}
@media (max-width: 480px) {
  .home-testimonials__card {
    padding: 1.875rem;
    border-radius: 4px;
  }
}

.home-testimonials__content {
  flex-grow: 1;
  margin-bottom: 1.875rem;
  position: relative;
  z-index: 1;
}

.home-testimonials__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .home-testimonials__text {
    font-size: 0.9375rem;
  }
}
@media (max-width: 480px) {
  .home-testimonials__text {
    font-size: 1.25rem;
  }
}

.home-testimonials__avatar-wrapper {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-testimonials__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #be9e21;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .home-testimonials__avatar {
    width: 50px;
    height: 50px;
  }
}

.home-testimonials__author-info {
  display: flex;
  flex-direction: column;
}

.home-testimonials__author-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
@media (max-width: 480px) {
  .home-testimonials__author-name {
    font-size: 1.25rem;
  }
}

.home-testimonials__author-role {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #be9e21;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .home-testimonials__author-role {
    font-size: 0.6875rem;
  }
}

.home-contact {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-image: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%), url("../images/bg-contact-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .home-contact {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .home-contact {
    padding: 3.75rem 1.25rem;
  }
}

.home-contact__frase {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .home-contact__frase {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .home-contact__frase {
    font-size: 2rem;
  }
}

.home-contact__frase-2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  text-align: center;
  margin-bottom: 3.75rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .home-contact__frase-2 {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 480px) {
  .home-contact__frase-2 {
    margin-bottom: 2.5rem;
  }
}

.form-container {
  width: 100%;
  height: auto;
  padding: 0 5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .form-container {
    padding: 0 1.875rem;
  }
}
@media (max-width: 480px) {
  .form-container {
    padding: 0;
  }
}

.contato {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 25px 50px -10px rgba(0, 0, 0, 0.5);
  padding: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contato {
    padding: 2.5rem;
  }
}
@media (max-width: 480px) {
  .contato {
    padding: 1.875rem;
  }
}

form {
  width: 100%;
  height: auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: #cccccc;
}

fieldset {
  width: 100%;
  height: auto;
  padding: 2.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 2.5rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
@media (max-width: 480px) {
  fieldset {
    padding: 1.875rem;
  }
}

legend {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  background-color: #be9e21;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
}

ul.contato-form {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

ul li {
  text-align: left;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  text-align: left;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.1);
}
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.1);
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #be9e21;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(190, 158, 33, 0.1);
}

textarea {
  resize: vertical;
  min-height: 11.25rem;
}
@media (max-width: 480px) {
  textarea {
    min-height: 8.75rem;
  }
}

.error {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #ff6b6b;
  font-weight: 400;
  margin-top: 0.375rem;
  display: none;
}
.error:not(:empty) {
  display: block;
}

.form-button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2.5rem;
}

.bouton-contact {
  background-color: #be9e21;
  border: 2px solid #be9e21;
  border-radius: 4px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  text-align: center;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0px 10px 25px rgba(190, 158, 33, 0.2);
  padding: 1rem 3.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bouton-contact:hover {
  background-color: transparent;
  color: #be9e21;
  box-shadow: 0px 10px 35px rgba(190, 158, 33, 0.3);
  transform: translateY(-2px);
}
.bouton-contact:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .bouton-contact {
    font-size: 1.25rem;
    padding: 0.875rem 2.5rem;
  }
}

.hero-internal {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 6.25rem 3.125rem;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .hero-internal {
    height: 40vh;
    padding: 5rem 1.875rem;
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .hero-internal {
    height: 35vh;
    padding: 3.75rem 1.25rem;
    margin-top: 80px;
  }
}

.hero-internal-about {
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(190, 158, 33, 0.1) 100%), url("../images/bg-about-hero.jpg");
}

.hero-internal__content {
  max-width: 900px;
}

.hero-internal__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .hero-internal__title {
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  .hero-internal__title {
    font-size: 2rem;
  }
}

.about-section {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .about-section {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 3.75rem 1.25rem;
  }
}

.about-section__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-section__container {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
@media (max-width: 480px) {
  .about-section__container {
    gap: 2.5rem;
  }
}

.about-section__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about-section__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-section__title {
    font-size: 2rem;
  }
}

.about-section__content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-section__content p {
  margin: 0;
}
@media (max-width: 480px) {
  .about-section__content {
    font-size: 1.25rem;
  }
}

.about-section__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .about-section__image {
    order: -1;
  }
}

.about-leadership {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .about-leadership {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .about-leadership {
    padding: 3.75rem 1.25rem;
  }
}
.about-leadership h2 {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .about-leadership h2 {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .about-leadership h2 {
    margin-bottom: 3.125rem;
  }
}

.about-leadership__container {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 7.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .about-leadership__container {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
@media (max-width: 480px) {
  .about-leadership__container {
    gap: 2.5rem;
  }
}

.about-leadership__container:last-child {
  margin-bottom: 0;
}

.about-leadership__image {
  width: 75%;
  height: auto;
}
@media (max-width: 768px) {
  .about-leadership__image {
    order: -1;
  }
}

.about-leadership__photo {
  width: 100%;
  height: auto;
  padding: 40px 20px 0 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-leadership__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about-leadership__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-leadership__title {
    font-size: 2rem;
  }
}

.about-leadership__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.625rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .about-leadership__name {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .about-leadership__name {
    font-size: 1.25rem;
  }
}

.about-leadership__role {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #be9e21;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5625rem;
}

.about-leadership__content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-leadership__content p {
  margin: 0;
}
@media (max-width: 480px) {
  .about-leadership__content {
    font-size: 1.25rem;
  }
}

.about-vision {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .about-vision {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .about-vision {
    padding: 3.75rem 1.25rem;
  }
}

.about-vision__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-vision__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about-vision__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-vision__title {
    font-size: 2rem;
  }
}

.about-vision__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about-vision__text {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .about-vision__text {
    font-size: 1.25rem;
  }
}

.about-values {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .about-values {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .about-values {
    padding: 3.75rem 1.25rem;
  }
}

.about-values__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .about-values__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .about-values__header {
    margin-bottom: 3.125rem;
  }
}

.about-values__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about-values__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-values__title {
    font-size: 2rem;
  }
}

.about-values__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem;
  }
}
@media (max-width: 480px) {
  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.about-values__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.about-values__card:hover {
  border-color: #be9e21;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(190, 158, 33, 0.1);
  background: linear-gradient(135deg, rgba(190, 158, 33, 0.08) 0%, rgba(190, 158, 33, 0.02) 100%);
}
@media (max-width: 480px) {
  .about-values__card {
    padding: 1.875rem;
    border-radius: 4px;
  }
}

.about-values__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .about-values__card-title {
    font-size: 1.125rem;
  }
}

.about-values__card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.about-values__card-line {
  width: 40px;
  height: 3px;
  background-color: #be9e21;
  margin-top: 1.25rem;
}

.about-cta {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(190, 158, 33, 0.08) 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .about-cta {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .about-cta {
    padding: 3.75rem 1.25rem;
  }
}

.about-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .about-cta__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .about-cta__title {
    font-size: 2rem;
  }
}

.about-cta__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .about-cta__text {
    font-size: 1.25rem;
  }
}

.about-cta__button {
  display: inline-block;
  background-color: #be9e21;
  border: 2px solid #be9e21;
  border-radius: 4px;
  padding: 1rem 3.125rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 25px rgba(190, 158, 33, 0.2);
}
.about-cta__button:hover {
  background-color: transparent;
  color: #be9e21;
  box-shadow: 0px 10px 35px rgba(190, 158, 33, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .about-cta__button {
    font-size: 1.25rem;
    padding: 0.875rem 2.5rem;
  }
}

.hero-internal {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 6.25rem 3.125rem;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .hero-internal {
    height: 40vh;
    padding: 5rem 1.875rem;
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .hero-internal {
    height: 35vh;
    padding: 3.75rem 1.25rem;
    margin-top: 80px;
  }
}

.hero-internal-what {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(190, 158, 33, 0.1) 100%), url("../images/bg-what-hero.jpg") center/cover no-repeat;
}

.hero-internal__content {
  max-width: 900px;
}

.hero-internal__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .hero-internal__title {
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  .hero-internal__title {
    font-size: 2rem;
  }
}

.services-expertise {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .services-expertise {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .services-expertise {
    padding: 3.75rem 1.25rem;
  }
}

.services-expertise__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .services-expertise__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .services-expertise__header {
    margin-bottom: 3.125rem;
  }
}

.services-expertise__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .services-expertise__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-expertise__title {
    font-size: 2rem;
  }
}

.services-expertise__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.services-expertise__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .services-expertise__list {
    gap: 1.875rem;
  }
}

.services-expertise__item {
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
  padding: 1.875rem;
  border-left: 4px solid #be9e21;
  background-color: rgba(190, 158, 33, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.services-expertise__item:hover {
  background-color: rgba(190, 158, 33, 0.1);
  padding-left: 2.5rem;
}
@media (max-width: 480px) {
  .services-expertise__item {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .services-expertise__item:hover {
    padding-left: 1.25rem;
  }
}

.services-expertise__item-icon {
  font-size: 1.75rem;
  color: #be9e21;
  flex-shrink: 0;
  font-weight: 700;
}

.services-expertise__item-content {
  flex-grow: 1;
}
.services-expertise__item-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .services-expertise__item-content h3 {
    font-size: 1.25rem;
  }
}
.services-expertise__item-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 480px) {
  .services-expertise__item-content p {
    font-size: 1.125rem;
  }
}

.services-leadership {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .services-leadership {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .services-leadership {
    padding: 3.75rem 1.25rem;
  }
}

.services-leadership__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .services-leadership__container {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
@media (max-width: 480px) {
  .services-leadership__container {
    gap: 2.5rem;
  }
}

.services-leadership__image {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .services-leadership__image {
    order: -1;
  }
}

.services-leadership__photo {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-leadership__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .services-leadership__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-leadership__title {
    font-size: 2rem;
  }
}

.services-leadership__subtitle {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .services-leadership__subtitle {
    font-size: 1.375rem;
  }
}
@media (max-width: 480px) {
  .services-leadership__subtitle {
    font-size: 1.125rem;
  }
}

.services-leadership__content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.services-leadership__content p {
  margin: 0;
}
@media (max-width: 480px) {
  .services-leadership__content {
    font-size: 1.25rem;
  }
}

.services-methodology {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .services-methodology {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .services-methodology {
    padding: 3.75rem 1.25rem;
  }
}

.services-methodology__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .services-methodology__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .services-methodology__header {
    margin-bottom: 3.125rem;
  }
}

.services-methodology__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .services-methodology__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-methodology__title {
    font-size: 2rem;
  }
}

.services-methodology__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.services-methodology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-methodology__grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 480px) {
  .services-methodology__grid {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
}

.services-methodology__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.services-methodology__card:hover {
  border-color: #be9e21;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(190, 158, 33, 0.1);
  background: linear-gradient(135deg, rgba(190, 158, 33, 0.08) 0%, rgba(190, 158, 33, 0.02) 100%);
}
@media (max-width: 480px) {
  .services-methodology__card {
    padding: 1.875rem;
    border-radius: 4px;
  }
}

.services-methodology__step {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #be9e21;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .services-methodology__step {
    font-size: 2.25rem;
  }
}

.services-methodology__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .services-methodology__card-title {
    font-size: 1.125rem;
  }
}

.services-methodology__card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.services-methodology__card-line {
  width: 40px;
  height: 3px;
  background-color: #be9e21;
  margin-top: 1.25rem;
}

.services-cta {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(190, 158, 33, 0.08) 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .services-cta {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .services-cta {
    padding: 3.75rem 1.25rem;
  }
}

.services-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .services-cta__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .services-cta__title {
    font-size: 2rem;
  }
}

.services-cta__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .services-cta__text {
    font-size: 1.25rem;
  }
}

.services-cta__button {
  display: inline-block;
  background-color: #be9e21;
  border: 2px solid #be9e21;
  border-radius: 4px;
  padding: 1rem 3.125rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 25px rgba(190, 158, 33, 0.2);
}
.services-cta__button:hover {
  background-color: transparent;
  color: #be9e21;
  box-shadow: 0px 10px 35px rgba(190, 158, 33, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .services-cta__button {
    font-size: 1.25rem;
    padding: 0.875rem 2.5rem;
  }
}

.hero-internal {
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 6.25rem 3.125rem;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .hero-internal {
    height: 40vh;
    padding: 5rem 1.875rem;
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .hero-internal {
    height: 35vh;
    padding: 3.75rem 1.25rem;
    margin-top: 80px;
  }
}

.hero-internal-process {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(190, 158, 33, 0.1) 100%), url("../images/bg-process-hero.jpg") center/cover no-repeat;
}

.hero-internal__content {
  max-width: 900px;
}

.hero-internal__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .hero-internal__title {
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  .hero-internal__title {
    font-size: 2rem;
  }
}

.process-expertise {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .process-expertise {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .process-expertise {
    padding: 3.75rem 1.25rem;
  }
}

.process-expertise__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .process-expertise__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .process-expertise__header {
    margin-bottom: 3.125rem;
  }
}

.process-expertise__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .process-expertise__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .process-expertise__title {
    font-size: 2rem;
  }
}

.process-expertise__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.process-expertise__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .process-expertise__list {
    gap: 1.875rem;
  }
}

.process-expertise__item {
  display: flex;
  gap: 1.875rem;
  align-items: flex-start;
  padding: 1.875rem;
  border-left: 4px solid #be9e21;
  background-color: rgba(190, 158, 33, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.process-expertise__item:hover {
  background-color: rgba(190, 158, 33, 0.1);
  padding-left: 2.5rem;
}
@media (max-width: 480px) {
  .process-expertise__item {
    padding: 1.25rem;
    gap: 1.25rem;
  }
  .process-expertise__item:hover {
    padding-left: 1.25rem;
  }
}

.process-expertise__item-icon {
  font-size: 1.75rem;
  color: #be9e21;
  flex-shrink: 0;
  font-weight: 700;
}

.process-expertise__item-content {
  flex-grow: 1;
}
.process-expertise__item-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .process-expertise__item-content h3 {
    font-size: 1.25rem;
  }
}
.process-expertise__item-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 480px) {
  .process-expertise__item-content p {
    font-size: 1.125rem;
  }
}

.process-expertise__frase {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 2.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.process-expertise__frase p {
  margin: 0;
}
@media (max-width: 480px) {
  .process-expertise__frase {
    font-size: 1.25rem;
  }
}

.process-way {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .process-way {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .process-way {
    padding: 3.75rem 1.25rem;
  }
}

.process-way__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process-way__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .process-way__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .process-way__title {
    font-size: 2rem;
  }
}

.process-way__content {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.process-way__content p {
  margin: 0;
}
@media (max-width: 480px) {
  .process-way__content {
    font-size: 1.25rem;
  }
}

.process-pillars {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .process-pillars {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .process-pillars {
    padding: 3.75rem 1.25rem;
  }
}

.process-pillars__header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .process-pillars__header {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 480px) {
  .process-pillars__header {
    margin-bottom: 3.125rem;
  }
}

.process-pillars__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .process-pillars__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .process-pillars__title {
    font-size: 2rem;
  }
}

.process-pillars__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}

.process-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .process-pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
@media (max-width: 480px) {
  .process-pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
}

.process-pillars__card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.process-pillars__card:hover {
  border-color: #be9e21;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(190, 158, 33, 0.1);
  background: linear-gradient(135deg, rgba(190, 158, 33, 0.08) 0%, rgba(190, 158, 33, 0.02) 100%);
}
@media (max-width: 480px) {
  .process-pillars__card {
    padding: 1.875rem;
    border-radius: 4px;
  }
}

.process-pillars__number {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #be9e21;
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .process-pillars__number {
    font-size: 2.25rem;
  }
}

.process-pillars__card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .process-pillars__card-title {
    font-size: 1.125rem;
  }
}

.process-pillars__card-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.process-pillars__card-line {
  width: 40px;
  height: 3px;
  background-color: #be9e21;
  margin-top: 1.25rem;
}

.process-cta {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(190, 158, 33, 0.08) 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .process-cta {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .process-cta {
    padding: 3.75rem 1.25rem;
  }
}

.process-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .process-cta__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  .process-cta__title {
    font-size: 2rem;
  }
}

.process-cta__text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #cccccc;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .process-cta__text {
    font-size: 1.25rem;
  }
}

.process-cta__button {
  display: inline-block;
  background-color: #be9e21;
  border: 2px solid #be9e21;
  border-radius: 4px;
  padding: 1rem 3.125rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 25px rgba(190, 158, 33, 0.2);
}
.process-cta__button:hover {
  background-color: transparent;
  color: #be9e21;
  box-shadow: 0px 10px 35px rgba(190, 158, 33, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .process-cta__button {
    font-size: 1.25rem;
    padding: 0.875rem 2.5rem;
  }
}

.contact-hero {
  min-height: 50vh;
  height: auto;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(190, 158, 33, 0.1) 100%), url("../images/bg-contact-hero.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 9.375rem 3.125rem 9.375rem;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 7.5rem 1.875rem 7.5rem;
    margin-top: 80px;
  }
}
@media (max-width: 480px) {
  .contact-hero {
    padding: 5rem 1.25rem 5rem;
    margin-top: 80px;
  }
}

.contact-hero__content {
  max-width: 900px;
}

.contact-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 2.75rem;
  }
}
@media (max-width: 480px) {
  .contact-hero__title {
    font-size: 2rem;
  }
}

.contact-hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #cccccc;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .contact-hero__subtitle {
    font-size: 1.25rem;
  }
}

.contact-form-section {
  width: 100%;
  padding: 6.25rem 3.125rem;
  background-color: #1a1a1a;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 5rem 1.875rem;
  }
}
@media (max-width: 480px) {
  .contact-form-section {
    padding: 3.75rem 1.25rem;
  }
}

.form-container {
  width: 100%;
  height: auto;
  padding: 0 5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .form-container {
    padding: 0 1.875rem;
  }
}
@media (max-width: 480px) {
  .form-container {
    padding: 0;
  }
}

.contato {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 25px 50px -10px rgba(0, 0, 0, 0.5);
  padding: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contato {
    padding: 2.5rem;
  }
}
@media (max-width: 480px) {
  .contato {
    padding: 1.875rem;
  }
}

form {
  width: 100%;
  height: auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  color: #cccccc;
}

fieldset {
  width: 100%;
  height: auto;
  padding: 2.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  margin: 2.5rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
@media (max-width: 480px) {
  fieldset {
    padding: 1.875rem;
  }
}

legend {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  background-color: #be9e21;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.25rem;
}

ul.contato-form {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}

ul li {
  text-align: left;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  text-align: left;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: all 0.3s ease;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #4c4c4c;
}
input::placeholder,
textarea::placeholder {
  color: #4c4c4c;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #be9e21;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(190, 158, 33, 0.1);
}

textarea {
  resize: vertical;
  min-height: 11.25rem;
}
@media (max-width: 480px) {
  textarea {
    min-height: 8.75rem;
  }
}

.error {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #ff6b6b;
  font-weight: 400;
  margin-top: 0.375rem;
  display: none;
}
.error:not(:empty) {
  display: block;
}

.form-button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2.5rem;
}

.bouton-contact {
  background-color: #be9e21;
  border: 2px solid #be9e21;
  border-radius: 4px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  text-align: center;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0px 10px 25px rgba(190, 158, 33, 0.2);
  padding: 1rem 3.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.bouton-contact:hover {
  background-color: transparent;
  color: #be9e21;
  box-shadow: 0px 10px 35px rgba(190, 158, 33, 0.3);
  transform: translateY(-2px);
}
.bouton-contact:active {
  transform: translateY(0);
}
@media (max-width: 480px) {
  .bouton-contact {
    font-size: 1.25rem;
    padding: 0.875rem 2.5rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-title {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(2.25rem, 8vw, 4.6875rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.875rem;
  animation: fadeInUp 1s ease 0.2s both;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    max-width: unset;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    max-width: unset;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}
@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=main.css.map */