@charset "UTF-8";
@import url("../fonts/icones/css/icones.css");
@import url("../fonts/versos/stylesheet.css");
* {
  box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: "Versos", sans-serif;
  font-weight: 400;
  color: #1C1C1C;
  background-color: #C9C7C2;
  line-height: 1.5;
  overflow-x: hidden; }

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: "Versos", sans-serif;
  font-weight: 400;
  line-height: 1.1; }

ul {
  list-style-type: none;
  margin: 0;
  margin-left: 0;
  padding: 0;
  font-size: 24px; }
  @media (max-width: 678px) {
    ul {
      font-size: 14.64px; } }
  ul ul {
    margin-left: 0; }

p {
  line-height: inherit; }

.font-xs {
  font-size: 24px; }
  @media (max-width: 678px) {
    .font-xs {
      font-size: 14.64px; } }

.font-sm {
  font-size: 32px; }
  @media (max-width: 678px) {
    .font-sm {
      font-size: 19.52px; } }

.font-lg {
  font-size: 40px; }
  @media (max-width: 678px) {
    .font-lg {
      font-size: 24.4px; } }

@media (max-width: 678px) {
  body {
    padding-top: 80px; } }
body::-webkit-scrollbar {
  width: 0; }

.logo-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (max-width: 678px) {
    .logo-container {
      display: none; } }

.logo {
  width: 150px;
  transform: translateY(100vh) scale(1);
  /* começa fora da tela, sem escala */
  z-index: 20;
  position: relative; }

header {
  padding-top: 100px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #c9c7c2;
  padding: 24px 64px;
  z-index: 999; }
  header .header-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto; }
  @media (max-width: 678px) {
    header {
      padding: 24px 16px; }
      header .custom-logo {
        width: 86px; } }

.language-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer; }

.language-current {
  font-weight: normal; }

.language-options {
  display: none;
  position: absolute;
  width: 100%;
  list-style: none;
  padding: 4px 0;
  z-index: 999;
  font-size: 16px; }

.language-options li {
  padding: 5px 0; }

.language-options li a {
  color: #333;
  text-decoration: none; }

.language-dropdown:hover .language-options {
  display: block; }

@media (max-width: 678px) {
  .row {
    gap: 24px 0; } }

.section_404 {
  height: calc(100dvh - 323px);
  padding-top: 110px;
  display: flex;
  justify-content: center;
  background-size: 25%;
  z-index: 1;
  text-align: center; }
  .section_404 h1 {
    color: #3e3e8c;
    margin-bottom: 32px;
    font-size: 48px; }
  .section_404 a {
    color: inherit;
    text-decoration: underline; }
  .section_404 img {
    width: 600px;
    margin: 32px auto 0; }
  .section_404::before, .section_404::after {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    background: url(../assets/pattern.png) top left no-repeat;
    background-size: contain;
    top: 100px;
    z-index: -1; }
  .section_404::before {
    left: 0; }
  .section_404::after {
    right: 0; }

section {
  padding: 80px 64px;
  scroll-margin-top: 154px; }
  @media (max-width: 678px) {
    section {
      padding: 50px 16px; } }
  section.dark {
    background-color: #1C1C1C; }

.background-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-position: center 100px;
  pointer-events: none;
  z-index: -1;
  display: block; }
  @media (max-width: 678px) {
    .background-fill {
      display: none; } }

.background-fill-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
  display: none; }
  @media (max-width: 678px) {
    .background-fill-mobile {
      display: block; } }

.hero {
  padding-top: 100px;
  height: 100dvh;
  color: #3e3e8c;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 140px; }
  .hero::before {
    content: "";
    width: 35%;
    height: 30%;
    background: url("../assets/pattern-esquerda.png") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 100px;
    left: 0;
    transform: translateX(-40%); }
    @media (max-width: 678px) {
      .hero::before {
        background: none; } }
  .hero::after {
    content: "";
    width: 35%;
    height: 30%;
    background: url("../assets/pattern-direita.png") center no-repeat;
    background-size: contain;
    position: absolute;
    top: 100px;
    right: 0;
    transform: translateX(40%); }
    @media (max-width: 678px) {
      .hero::after {
        content: none; } }
  .hero .content {
    max-width: 650px;
    width: 100%;
    text-align: center;
    margin: 0 auto; }
    .hero .content h1 {
      font-size: 58px;
      margin-bottom: 8px;
      text-transform: uppercase; }
      @media (max-width: 1300px) {
        .hero .content h1 {
          font-size: 42px; } }
      @media (max-width: 678px) {
        .hero .content h1 {
          font-size: 32px; } }
    .hero .content p {
      font-size: 18px; }
      @media (min-width: 768px) and (max-width: 1366px) {
        .hero .content p {
          font-size: 15px; } }
    .hero .content .btn {
      margin: 40px auto 0; }
  @media (max-width: 678px) {
    .hero {
      height: 75dvh;
      padding-top: 16px;
      padding-bottom: 16px; }
      .hero .logo {
        transform: none !important;
        scale: 1 !important;
        opacity: 1 !important;
        position: static !important;
        y: 0 !important; }
      .hero .background-fill {
        opacity: 0 !important; }
      .hero .content {
        transform: none !important;
        opacity: 1 !important;
        y: 0 !important;
        margin: auto; }
      .hero::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transform: none; }
      .hero:not(.desktop-animation-active) {
        overflow: visible; } }

/* Logo do cliente para efeito parallax */
.client-logo-scroll {
  position: fixed;
  bottom: 50vh;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 10;
  opacity: 0;
  backface-visibility: hidden;
  perspective: 1000px; }
  @media (max-width: 678px) {
    .client-logo-scroll {
      display: none; } }
  .client-logo-scroll img {
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto; }
    @media (max-width: 678px) {
      .client-logo-scroll img {
        max-width: 150px;
        max-height: 100px; } }

/* Overlay que aparece sobre o logo */
.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c1bfba;
  opacity: 0;
  z-index: 10;
  display: block;
  pointer-events: none; }

.home_section_1 {
  padding-top: 0;
  position: relative;
  z-index: 20; }
  .home_section_1 .cards {
    margin-top: -10vh; }
    @media (max-width: 678px) {
      .home_section_1 .cards {
        margin-top: -16px; } }
  .home_section_1 .content h2 {
    font-size: 40px;
    color: #3e3e8c;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px; }
    @media (max-width: 678px) {
      .home_section_1 .content h2 {
        font-size: 24px; } }
  .home_section_1 .content img {
    display: block;
    margin: 0 auto;
    margin-bottom: -150px; }
  .home_section_1 .content iframe,
  .home_section_1 .content video {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
    object-fit: contain;
    margin-bottom: -150px;
    aspect-ratio: 16 / 9; }

.home_section_2 {
  padding-top: 80px;
  background-color: #c1bfba;
  position: relative;
  z-index: 15; }
  .home_section_2 .quote {
    position: relative;
    max-width: 670px;
    margin: 0 auto; }
    .home_section_2 .quote p {
      font-size: 40px;
      color: #3e3e8c;
      text-align: center; }
      @media (max-width: 678px) {
        .home_section_2 .quote p {
          font-size: 24px; } }
      .home_section_2 .quote p:last-child {
        margin-top: 16px;
        font-size: 20px;
        color: #232322; }
        @media (max-width: 678px) {
          .home_section_2 .quote p:last-child {
            font-size: 16px; } }
    .home_section_2 .quote::before {
      content: "\0E82F";
      font-size: 64px;
      font-family: "icones";
      display: block;
      text-align: center;
      color: #3e3e8c;
      margin-top: 80px;
      margin-bottom: 60px; }
      @media (max-width: 678px) {
        .home_section_2 .quote::before {
          font-size: 48px;
          margin-top: 40px;
          margin-bottom: 40px; } }

.home_section_3 {
  padding-top: 80px;
  padding-bottom: 0;
  background-color: #c1bfba;
  position: relative;
  z-index: 15; }
  @media (max-width: 678px) {
    .home_section_3 {
      padding-top: 40px; } }
  .home_section_3 h2 {
    font-size: 40px;
    color: #3e3e8c;
    text-align: center;
    margin-bottom: 40px; }
    @media (max-width: 678px) {
      .home_section_3 h2 {
        font-size: 24px; } }

.products {
  display: grid;
  max-width: 1000px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; }
  @media (max-width: 678px) {
    .products {
      grid-template-columns: 1fr; } }
  .products .product-card {
    background-color: #c9c7c1;
    border-bottom: 3px solid #3e3e8c;
    border-radius: 10px 10px 0 0;
    margin-top: 40px;
    position: relative; }
    .products .product-card:hover img {
      transform: scale(1.3);
      transition: 300ms ease-in; }
    @media (max-width: 678px) {
      .products .product-card {
        text-align: center; } }
    .products .product-card a {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .products .product-card img {
      transform: scale(1.2);
      position: relative;
      top: -40px;
      width: 235px;
      height: 286px;
      object-fit: contain; }
    .products .product-card h3 {
      color: #3e3e8c;
      font-size: 20px;
      padding: 0 24px 40px;
      text-align: center; }
    @media (max-width: 678px) {
      .products .product-card {
        border-radius: 10px; } }

.cards {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
  justify-content: center;
  gap: 20px; }
  @media (max-width: 678px) {
    .cards {
      grid-template-columns: 1fr; } }
  .cards .card {
    background-color: #3e3e8c;
    color: #fff;
    text-align: center;
    padding: 48px 36px;
    border-radius: 10px 10px 0 0;
    border: 0;
    border-bottom: 3px solid #0E8396;
    font-size: 14px;
    margin-bottom: 0; }
    .cards .card:hover {
      background-color: #0E8396; }
      .cards .card:hover .card-number {
        color: #fff; }
    .cards .card h3 {
      font-size: 20px;
      margin-bottom: 12px; }
    .cards .card img {
      width: 56px;
      height: 56px;
      object-fit: cover;
      margin: 0 auto 20px; }
    .cards .card-number {
      font-size: 40px;
      color: #0E8396;
      margin-bottom: 12px; }
    @media (max-width: 678px) {
      .cards .card {
        border-radius: 10px; } }

.cover {
  padding-top: 150px;
  height: 50dvh;
  background-size: cover;
  background-position: center; }
  @media (max-width: 678px) {
    .cover {
      height: 30dvh; } }

section.product-cover {
  padding-top: 150px;
  height: 40dvh;
  background-size: cover;
  background-position: center; }

.products_section_1 {
  background: url(../assets/pattern.png) top left no-repeat;
  background-size: 25%; }

.products_section_2 .content {
  display: flex;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto; }
  @media (max-width: 678px) {
    .products_section_2 .content {
      flex-direction: column; } }
  .products_section_2 .content > div {
    border-radius: 8px;
    background-color: #c0bfbb;
    padding: 40px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 40px; }
    @media (max-width: 678px) {
      .products_section_2 .content > div {
        gap: 20px;
        padding: 20px; } }
    .products_section_2 .content > div:nth-child(1)::before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      margin-top: -20px;
      margin-left: 40px;
      width: 40px;
      height: 40px;
      background-image: url(../assets/icone-produtos.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 2; }
      @media (max-width: 678px) {
        .products_section_2 .content > div:nth-child(1)::before {
          margin-left: 20px; } }
    .products_section_2 .content > div:nth-child(2) {
      text-align: left;
      grid-auto-flow: column;
      direction: rtl; }
      @media (max-width: 678px) {
        .products_section_2 .content > div:nth-child(2) {
          grid-auto-flow: row;
          direction: ltr; } }
    .products_section_2 .content > div p {
      font-size: 23.5px;
      max-width: 240px;
      line-height: 1.2;
      margin-bottom: 0 !important; }
      @media (max-width: 678px) {
        .products_section_2 .content > div p {
          font-size: 16px; } }
    .products_section_2 .content > div:first-child {
      color: #0E8396; }
      .products_section_2 .content > div:first-child .btn {
        background-color: #0E8396; }
    .products_section_2 .content > div:last-child {
      color: #594b36; }
      @media (min-width: 678px) {
        .products_section_2 .content > div:last-child {
          flex-direction: row-reverse; } }
      .products_section_2 .content > div:last-child .btn {
        background-color: #594b36; }
    .products_section_2 .content > div > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 600; }
      .products_section_2 .content > div > div p {
        margin-bottom: 8px !important; }
      .products_section_2 .content > div > div img {
        position: relative;
        top: -40px;
        max-width: 280px;
        width: 280px;
        height: auto;
        object-fit: contain;
        margin: -100px -40px -50px; }
        @media (max-width: 678px) {
          .products_section_2 .content > div > div img {
            top: 0;
            margin: 0 auto;
            max-width: 181px;
            width: 181px;
            margin: -80px -40px 0px; } }

.about_section_1 .content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px; }
  .about_section_1 .content h1 {
    color: #3e3e8c;
    font-size: 40px;
    margin-bottom: 12px; }

.about_section_2 {
  padding-top: 10px;
  padding-bottom: 0;
  background-color: #c1bfba; }
  .about_section_2 .cards {
    margin-top: -60px;
    max-width: 1000px; }

/* AOS - Estilos personalizados para animações */
[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition-property: transform, opacity; }
  [data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1; }

[data-aos="fade-right"] {
  transform: translateX(-30px);
  opacity: 0;
  transition-property: transform, opacity; }
  [data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1; }

[data-aos="fade-left"] {
  transform: translateX(30px);
  opacity: 0;
  transition-property: transform, opacity; }
  [data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1; }

[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
  transition-property: transform, opacity; }
  [data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1; }

/* Elementos que devem ter transição mais suave */
.card[data-aos],
.product-card[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.zero_section_1 {
  background: url("../assets/pattern.png") top left no-repeat;
  background-size: 25%;
  padding-bottom: 0; }
  .zero_section_1 .content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px; }
    .zero_section_1 .content h1 {
      color: #0E8396;
      font-size: 40px;
      margin-bottom: 12px; }
  .zero_section_1 .products-list {
    max-width: 1000px;
    margin: 40px auto 0; }
    .zero_section_1 .products-list .product {
      display: flex;
      gap: 40px;
      align-items: center;
      position: relative; }
      @media (max-width: 678px) {
        .zero_section_1 .products-list .product {
          flex-direction: column;
          align-items: flex-start; } }
      .zero_section_1 .products-list .product a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .zero_section_1 .products-list .product-image {
        border-right: 3px solid #0E8396;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
        flex-shrink: 0; }
        @media (max-width: 678px) {
          .zero_section_1 .products-list .product-image {
            border-radius: 10px; } }
      .zero_section_1 .products-list .product-text h3 {
        font-size: 30px;
        color: #0E8396;
        margin-bottom: 16px; }
      .zero_section_1 .products-list .product-text p {
        margin-bottom: 0; }
      .zero_section_1 .products-list .product + .product {
        margin-top: 40px; }

.all_section_1 {
  background: url("../assets/pattern.png") top left no-repeat;
  background-size: 25%;
  padding-bottom: 0; }
  .all_section_1 .content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px; }
    .all_section_1 .content h1 {
      color: #826950;
      font-size: 40px;
      margin-bottom: 12px; }
  .all_section_1 .products-list {
    max-width: 1000px;
    margin: 40px auto 0; }
    .all_section_1 .products-list .product {
      display: flex;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
      padding: 40px 0; }
      @media (max-width: 678px) {
        .all_section_1 .products-list .product {
          flex-direction: column;
          align-items: flex-start; } }
      .all_section_1 .products-list .product::before {
        content: "";
        width: 4000px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #c1bfba;
        z-index: -1; }
      .all_section_1 .products-list .product:nth-child(odd)::before {
        content: none; }
      .all_section_1 .products-list .product a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .all_section_1 .products-list .product-image {
        border-right: 3px solid #826950;
        border-radius: 10px 0 0 10px;
        overflow: hidden;
        flex-shrink: 0; }
        @media (max-width: 678px) {
          .all_section_1 .products-list .product-image {
            border-radius: 10px; } }
      .all_section_1 .products-list .product-text h3 {
        font-size: 30px;
        color: #826950;
        margin-bottom: 16px; }
      .all_section_1 .products-list .product-text p {
        margin-bottom: 0; }

.product_section_1 {
  padding-bottom: 220px; }
  .product_section_1 .content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px; }
    .product_section_1 .content h1 {
      color: #826950;
      font-size: 40px;
      margin-bottom: 24px; }
  .product_section_1.zero-clinquer h1 {
    color: #0E8396; }
  .product_section_1.zero-clinquer .highlight-area .btn {
    background-color: #0E8396; }
  .product_section_1 .highlight-area {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center; }
    .product_section_1 .highlight-area .btn {
      width: 100%;
      background-color: #826950; }
      .product_section_1 .highlight-area .btn + .btn {
        margin-top: 12px; }

.product_section_2 {
  background-color: #c0bfba;
  padding-top: 10px;
  padding-bottom: 0; }
  .product_section_2 .product-cover {
    display: block;
    max-width: 1000px;
    margin: auto;
    margin-top: -150px;
    margin-bottom: 32px; }
    @media (max-width: 678px) {
      .product_section_2 .product-cover {
        height: auto;
        max-width: 100%; } }
  .product_section_2 .product-content {
    max-width: 1000px;
    margin: auto;
    font-size: 20px;
    padding-bottom: 60px; }
    .product_section_2 .product-content h1,
    .product_section_2 .product-content h2,
    .product_section_2 .product-content h3,
    .product_section_2 .product-content h4,
    .product_section_2 .product-content h5,
    .product_section_2 .product-content h6 {
      color: #826950;
      text-transform: uppercase; }
    .product_section_2 .product-content h3 {
      font-size: 30px;
      margin-bottom: 24px; }
    .product_section_2 .product-content h4,
    .product_section_2 .product-content h5,
    .product_section_2 .product-content h6 {
      font-size: 20px;
      color: #826950;
      margin-bottom: 18px; }
    .product_section_2 .product-content ul {
      list-style-type: disc;
      list-style-position: inside;
      font-size: 20px; }
      .product_section_2 .product-content ul:not(:last-child) {
        margin-bottom: 24px; }
      .product_section_2 .product-content ul li {
        line-height: 1.5; }
        .product_section_2 .product-content ul li + li {
          margin-top: 4px; }
    .product_section_2 .product-content table {
      text-transform: uppercase;
      font-size: 14px; }
      .product_section_2 .product-content table * {
        border: 0;
        background-color: transparent; }
      .product_section_2 .product-content table tr:not(:last-child) td {
        border-bottom: 2px solid #826950; }
      .product_section_2 .product-content table td:not(:last-child) {
        border-right: 2px solid #826950; }
      .product_section_2 .product-content table td:has(mark) {
        background-color: #c9c8c1;
        color: #826950;
        font-weight: bold; }
        .product_section_2 .product-content table td:has(mark) mark {
          color: inherit; }
    .product_section_2 .product-content .wp-block-columns {
      padding: 32px 0 16px; }
      .product_section_2 .product-content .wp-block-columns:nth-child(odd) {
        position: relative;
        z-index: 1; }
        .product_section_2 .product-content .wp-block-columns:nth-child(odd)::before {
          content: "";
          width: 2000px;
          height: 100%;
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%);
          background-color: #b9b8b3;
          z-index: -1; }
  .product_section_2.zero-clinquer .product-content h3,
  .product_section_2.zero-clinquer .product-content h4 {
    color: #0E8396; }
  .product_section_2.zero-clinquer .product-content table {
    border-color: #0E8396; }
    .product_section_2.zero-clinquer .product-content table td:has(mark) {
      color: #0E8396; }

.contact_section_1 {
  background: url(../assets/pattern.png) top left no-repeat;
  background-size: 25%;
  background-color: #c0bfba;
  padding-top: 140px; }
  .contact_section_1 .content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px; }
    .contact_section_1 .content h1 {
      color: #3e3e8c;
      font-size: 40px;
      margin-bottom: 72px; }
    .contact_section_1 .content form > p {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px; }
      .contact_section_1 .content form > p br {
        display: none; }
    .contact_section_1 .content form input:not([type="submit"]),
    .contact_section_1 .content form textarea,
    .contact_section_1 .content form select {
      background-color: #c9c8c1;
      border-radius: 15px;
      padding: 18px 32px;
      border: 0;
      box-shadow: none;
      height: auto;
      color: #595856;
      margin-bottom: 0; }
      .contact_section_1 .content form input:not([type="submit"])::placeholder,
      .contact_section_1 .content form textarea::placeholder,
      .contact_section_1 .content form select::placeholder {
        color: #3e3e8c;
        text-transform: uppercase;
        font-size: 12px; }
    .contact_section_1 .content form select {
      text-transform: uppercase;
      font-size: 12px;
      color: #3e3e8c; }
    .contact_section_1 .content form .wpcf7-not-valid-tip {
      display: none; }
    .contact_section_1 .content form textarea {
      padding-top: 64px;
      font-size: 20px; }
    .contact_section_1 .content form input[type="submit"] {
      justify-self: flex-end; }
    .contact_section_1 .content form .wpcf7-spinner {
      display: none; }
    .contact_section_1 .content form .subject {
      grid-column: span 2;
      position: relative; }
      .contact_section_1 .content form .subject label {
        position: absolute;
        top: 18px;
        left: 32px;
        color: #3e3e8c;
        z-index: 10;
        text-transform: uppercase;
        font-size: 12px; }
  @media (max-width: 678px) {
    .contact_section_1 {
      padding-top: 100px; }
      .contact_section_1 .content h1 {
        font-size: 32px; } }

.contact_section_2 .location {
  display: flex;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto; }
  @media (max-width: 678px) {
    .contact_section_2 .location {
      flex-direction: column; } }
.contact_section_2 .address {
  background-color: #3e3e8c;
  color: #fff;
  font-size: 14px;
  padding: 26px 36px;
  border-radius: 15px; }
  .contact_section_2 .address h3 {
    font-size: 24px;
    margin-bottom: 18px; }
  .contact_section_2 .address h4 {
    font-size: 10px; }
.contact_section_2 .map {
  border-radius: 15px;
  overflow: hidden; }
  .contact_section_2 .map img {
    height: 100%;
    object-fit: cover; }
  @media (max-width: 678px) {
    .contact_section_2 .map {
      height: 300px; } }
.contact_section_2 .contact-info {
  max-width: 1000px;
  margin: 70px auto 0;
  display: flex;
  align-items: center; }
  @media (max-width: 678px) {
    .contact_section_2 .contact-info {
      flex-direction: column;
      gap: 16px; } }
  .contact_section_2 .contact-info > div:last-child p {
    margin-bottom: 0; }
  .contact_section_2 .contact-info ul {
    font-size: 14px; }
  .contact_section_2 .contact-info h3 {
    font-size: 30px;
    color: #3e3e8c;
    margin-bottom: 24px; }
  .contact_section_2 .contact-info .social-icons {
    display: none; }

footer {
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 12px;
  background-color: #c9c7c2;
  position: relative;
  z-index: 100; }
  @media (max-width: 678px) {
    footer {
      padding: 48px 0;
      text-align: center; }
      footer * {
        overflow: hidden; } }
  footer h3 {
    font-size: 12px;
    font-weight: normal;
    color: #3e3e8c;
    text-transform: uppercase;
    margin-bottom: 14px; }
  footer ul li {
    line-height: 1.2;
    font-size: 14px;
    color: #595856; }
  footer a {
    color: inherit;
    font-size: 14px;
    font-weight: normal; }
  footer .social-icons {
    display: flex;
    align-items: center;
    margin-top: 24px; }
    @media (max-width: 678px) {
      footer .social-icons {
        justify-content: center; } }
    footer .social-icons a {
      font-size: 26px; }
  @media (max-width: 678px) {
    footer {
      padding: 16px;
      flex-direction: column;
      gap: 16px; } }

@media (max-width: 678px) {
  iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto; } }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 8px;
  padding: 8px;
  z-index: 999;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer; }
  .menu-toggle:focus {
    border: 0;
    outline: none; }
  @media (max-width: 678px) {
    .menu-toggle {
      display: block; } }
  .menu-toggle span {
    width: 100%;
    background-color: #3e3e8c;
    height: 2px;
    position: relative;
    display: block;
    transition: 300ms; }
    .menu-toggle span::before, .menu-toggle span::after {
      content: "";
      width: 100%;
      background-color: #3e3e8c;
      height: 2px;
      display: block;
      position: absolute;
      transition: 300ms; }
    .menu-toggle span::before {
      bottom: 100%;
      margin-bottom: 8px; }
    .menu-toggle span::after {
      top: 100%;
      margin-top: 8px; }
  .menu-toggle.menu-open span {
    background: transparent; }
    .menu-toggle.menu-open span::before {
      transform: rotate(-45deg);
      bottom: 0;
      margin: 0;
      background-color: #c9c7c1; }
    .menu-toggle.menu-open span::after {
      transform: rotate(45deg);
      top: 0;
      margin: 0;
      background-color: #c9c7c1; }

.menu-content {
  width: calc(100% - 136px * 2); }
  .menu-content nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px; }
    .menu-content nav > ul > li {
      position: relative;
      font-size: 12px; }
      .menu-content nav > ul > li > a {
        color: #84837e; }
      @media (min-width: 678px) {
        .menu-content nav > ul > li:hover > a {
          color: #3e3e8c; } }
      .menu-content nav > ul > li:has(ul) > a::after {
        content: "▼";
        display: inline-block;
        margin-left: 8px;
        font-size: 6px;
        vertical-align: super; }
      .menu-content nav > ul > li a {
        font-size: 12px;
        font-weight: 500;
        display: block; }
        @media (max-width: 678px) {
          .menu-content nav > ul > li a {
            font-size: 16px; } }
        .menu-content nav > ul > li a:hover {
          color: #3e3e8c !important; }
      .menu-content nav > ul > li ul {
        align-items: flex-start; }
        .menu-content nav > ul > li ul li {
          flex-shrink: 0; }
          .menu-content nav > ul > li ul li ul {
            flex-direction: column; }
      .menu-content nav > ul > li > ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; }
        .menu-content nav > ul > li > ul > li {
          border-radius: 0 0 4px 4px;
          padding: 8px;
          flex-shrink: 0;
          border-top: 2px solid #3e3e8c; }
          .menu-content nav > ul > li > ul > li > a {
            text-transform: uppercase; }
          .menu-content nav > ul > li > ul > li:nth-child(2) {
            background-color: #826950; }
            .menu-content nav > ul > li > ul > li:nth-child(2) > a {
              color: #594B36; }
          .menu-content nav > ul > li > ul > li:first-child {
            background-color: #0E8396; }
            .menu-content nav > ul > li > ul > li:first-child > a {
              color: #3e3e8c; }
          .menu-content nav > ul > li > ul > li:nth-child(3) {
            background-color: #9c9a95; }
            .menu-content nav > ul > li > ul > li:nth-child(3) > a {
              color: #6a6963 !important; }
          .menu-content nav > ul > li > ul > li:last-child {
            background-color: #84837e; }
            .menu-content nav > ul > li > ul > li:last-child > a {
              color: #3e3e8c; }
            .menu-content nav > ul > li > ul > li:last-child > ul a {
              color: #c9c7c1; }
          .menu-content nav > ul > li > ul > li > ul a {
            color: #c9c7c1;
            display: block; }
      @media (min-width: 678px) {
        .menu-content nav > ul > li:hover ul {
          display: flex; } }
  .menu-content .btn {
    margin-top: 24px; }
  @media (max-width: 678px) {
    .menu-content {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      padding: 0;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      background: #3e3e8c;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      z-index: 998;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      will-change: transform; }
      .menu-content .head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 32px 66px 24px 16px; }
        .menu-content .head .custom-logo {
          filter: brightness(100) saturate(100);
          width: 86px;
          position: relative;
          top: -10px; }
      .menu-content nav {
        display: block;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; }
        .menu-content nav::-webkit-scrollbar {
          width: 0; }
        .menu-content nav::-webkit-scrollbar-track {
          background: rgba(62, 62, 140, 0.1);
          border-radius: 2px; }
        .menu-content nav::-webkit-scrollbar-thumb {
          background: rgba(62, 62, 140, 0.3);
          border-radius: 2px; }
          .menu-content nav::-webkit-scrollbar-thumb:hover {
            background: rgba(62, 62, 140, 0.5); }
        .menu-content nav > ul {
          display: block !important;
          gap: 0; }
          .menu-content nav > ul > li a {
            padding: 8px 16px;
            color: #c9c7c1 !important;
            padding: 4px 16px 0;
            display: block; }
          .menu-content nav > ul > li > ul {
            position: static;
            display: block;
            background: transparent;
            box-shadow: none;
            margin-top: 8px; }
            .menu-content nav > ul > li > ul > li {
              border-radius: 0;
              border-top: 0;
              padding: 16px 0; }
              .menu-content nav > ul > li > ul > li:first-child > a {
                padding-bottom: 0; }
              .menu-content nav > ul > li > ul > li > ul {
                margin-top: 0; }
          .menu-content nav > ul > li:has(ul) > a::after {
            display: none; }
          .menu-content nav > ul > li:last-child {
            padding: 16px 0; }
      .menu-content .language-selector {
        flex-shrink: 0;
        position: relative;
        margin: 0;
        display: flex;
        justify-content: center; } }
    @media (max-width: 678px) and (max-width: 320px) {
      .menu-content .language-selector {
        gap: 8px;
        padding: 20px 16px 28px 16px; } }
  @media (max-width: 678px) {
        .menu-content .language-selector::before {
          content: "";
          position: absolute;
          top: -2px;
          left: 24px;
          right: 24px;
          height: 1px;
          background: linear-gradient(90deg, transparent 0%, rgba(62, 62, 140, 0.3) 50%, transparent 100%); }
        .menu-content .language-selector .language-box {
          color: #c9c7c1;
          font-size: 16px;
          font-weight: 500;
          text-align: center;
          text-decoration: none; } }
      @media (max-width: 678px) and (max-width: 320px) {
        .menu-content .language-selector .language-box {
          font-size: 14px;
          padding: 14px 8px; } }
  @media (max-width: 678px) {
          .menu-content .language-selector .language-box.current {
            color: white;
            font-weight: bold;
            cursor: default; }
          .menu-content .language-selector .language-box:first-child::after {
            content: "/";
            margin: 0 4px; }
      .menu-content.open {
        display: flex;
        right: 0; }
        .menu-content.open nav {
          animation: slideInContent 0.6s ease-out 0.2s both; }
        .menu-content.open .language-selector {
          animation: slideInLanguage 0.6s ease-out 0.4s both; } }

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(62, 62, 140, 0.15);
  backdrop-filter: blur(3px);
  z-index: 997;
  opacity: 0;
  transition: all 0.4s ease;
  inset: 0; }
  .menu-overlay.active {
    display: block;
    opacity: 1; }

.mobile-language {
  display: none; }
  @media (max-width: 678px) {
    .mobile-language {
      display: block; } }

.desktop-language {
  display: block; }
  @media (max-width: 678px) {
    .desktop-language {
      display: none; } }

@keyframes slideInContent {
  from {
    opacity: 0;
    transform: translateY(20px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes slideInLanguage {
  from {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
body.menu-scroll-locked {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important; }

html.menu-scroll-locked {
  overflow: hidden !important; }

@media (max-width: 678px) {
  .header-container {
    justify-content: space-between;
    align-items: center; }

  .menu-content:not(.open) nav > ul {
    display: none !important; } }
.btn {
  display: block;
  padding: 6px 24px;
  background-color: #3e3e8c;
  color: #fff;
  width: fit-content;
  text-transform: uppercase;
  border-radius: 500px;
  font-size: 12px; }
  .btn:hover, .btn:focus {
    color: #fff !important; }
  @media (max-width: 678px) {
    .btn {
      padding: 6px 16px; } }

/*# sourceMappingURL=main.css.map */
