@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lenia Sans", "Outfit", "Inter", sans-serif;
  background-color: #1F3041;
  color: #ffffff;
  min-height: 100vh;
  width: 100%;
  padding-top: 82px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.header {
  background-color: #1F3041;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 0.6rem 0;
  background-color: rgba(31, 48, 65, 0.95);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .header-container {
    padding: 0 1.5rem;
  }
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  height: 45px;
  width: auto;
  transition: height 0.3s ease;
}
@media (max-width: 768px) {
  .logo {
    height: 38px;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav {
  display: flex;
  align-items: center;
}
.nav ul {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background-color: rgb(34.29375, 53.1, 71.90625);
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.active {
    right: 0;
  }
  .nav ul {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.95rem;
}
.nav-link:hover {
  color: #9E8166;
  background-color: rgba(158, 129, 102, 0.05);
}
.nav-link.active {
  color: #ffffff;
  background-color: #9E8166;
}
@media (max-width: 1024px) {
  .nav-link {
    font-size: 1.2rem;
    padding: 1.2rem 1.5rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    background-color: transparent;
    display: block;
  }
  .nav-link.active {
    background-color: rgba(158, 129, 102, 0.1);
    color: #9E8166;
    border-left: 4px solid #9E8166;
    padding-left: 1.25rem;
  }
  .nav-link:last-child {
    border-bottom: none;
  }
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .nav-overlay.active {
    display: block;
  }
}

.footer {
  background-color: #9E8166;
  padding: 3rem 0;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0;
  }
}

.footer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .footer-container {
    padding: 0 1.5rem;
  }
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
}

.footer-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}
@media (max-width: 768px) {
  .footer-text p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .footer-right {
    flex-direction: column;
    gap: 2rem;
  }
}

.social-icons {
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 1024px) {
  .social-icons {
    justify-content: center;
  }
}

.social-link {
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .social-link {
    width: 38px;
    height: 38px;
  }
}
.social-link:hover {
  background-color: #fff;
  color: #9E8166;
  transform: translateY(-5px) rotate(8deg);
}

.footer-logo img {
  height: 45px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.footer-logo img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .footer-logo img {
    height: 38px;
  }
}

.hero {
  position: relative;
  min-height: 600px;
  height: 90vh;
  max-height: 900px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 600px;
    flex-direction: column;
  }
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero-bg-container {
    position: relative;
    height: 50vh;
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .hero-bg-container {
    height: 50vh;
    min-height: 350px;
  }
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  background-color: #1F3041;
}
@media (max-width: 1024px) {
  .hero-bg-img {
    object-position: 85% 25% !important;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 48, 65, 0.4) 0%, rgba(31, 48, 65, 0.15) 100%);
}
@media (max-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(31, 48, 65, 0.2) 0%, rgba(31, 48, 65, 0.7) 100%);
  }
}

.hero-content {
  position: relative;
  width: 450px;
  max-width: 100%;
  height: 100%;
  margin-left: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  z-index: 3;
  padding: 3rem 4rem;
  background-color: rgba(31, 48, 65, 0.92);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1024px) {
  .hero-content {
    width: 100%;
    margin-left: 0;
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1F3041;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 3.5rem 1.5rem;
  }
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-title br {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgb(242.8068181818, 245.3295454545, 248.6931818182);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-subtitle br {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.cta-button {
  background-color: #9E8166;
  color: #ffffff;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: fit-content;
  box-shadow: 0 10px 25px rgba(158, 129, 102, 0.3);
}
@media (max-width: 1024px) {
  .cta-button {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cta-button {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
.cta-button:hover {
  background-color: rgb(167.894, 141.852, 117.606);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(158, 129, 102, 0.4);
}
.cta-button:active {
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

.about-section {
  scroll-margin-top: 80px;
  background-color: #ffffff;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 12rem;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .about-section {
    padding-top: 6rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding-top: 5rem;
    padding-bottom: 12rem;
  }
}

.about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .about-container {
    padding: 0 1.5rem;
    gap: 3rem;
  }
}

.about-content {
  flex: 1;
}
@media (max-width: 1024px) {
  .about-content {
    width: 100%;
    max-width: 800px;
  }
}

.about-title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  font-size: 4.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  letter-spacing: -0.05em;
}
@media (max-width: 1024px) {
  .about-title {
    font-size: 3.5rem;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .about-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
}

.text-dark {
  color: #1F3041;
  text-transform: none;
  font-size: 4rem;
}
@media (max-width: 1024px) {
  .text-dark {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .text-dark {
    font-size: 2.4rem;
  }
}

.text-accent {
  color: #A88B73;
  text-transform: uppercase;
  font-size: 5rem;
}
@media (max-width: 1024px) {
  .text-accent {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .text-accent {
    font-size: 3.2rem;
  }
}

.about-subtitle {
  color: #888;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.4;
  max-width: 90%;
}
@media (max-width: 1024px) {
  .about-subtitle {
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
  }
  .about-subtitle br {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
  }
}

.about-description {
  color: rgb(47.46875, 73.5, 99.53125);
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 95%;
  font-weight: 400;
}
.about-description strong {
  color: #1F3041;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .about-description {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about-description {
    font-size: 1rem;
  }
}

.about-image-container {
  flex: 0 0 350px;
  height: 500px;
  position: relative;
  z-index: 15;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .about-image-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 450px;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .about-image-container {
    height: 480px;
    max-width: 320px;
  }
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.about-image:hover {
  transform: scale(1.05);
}

.services-curve {
  scroll-margin-top: 100px;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 1.2rem;
  pointer-events: none;
}
.services-curve::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-color: #1F3041;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .services-curve::before {
    top: 50px;
  }
}
@media (max-width: 768px) {
  .services-curve {
    height: 200px;
  }
}

.curve-content {
  position: relative;
  z-index: 11;
  padding-bottom: 0.5rem;
}

.services-section {
  background-color: #1F3041;
  padding: 0 0 8rem 0;
  margin-top: -2px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .services-section {
    padding-bottom: 5rem;
  }
}

.services-title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .services-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

.services-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  justify-content: center;
}
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .services-container {
    padding: 0 1.5rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
}
.service-icon-box {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  z-index: 2;
}

.service-icon {
  width: 70px;
  height: auto;
}

.service-content-box {
  background-color: rgba(39.234375, 60.75, 82.265625, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  padding: 4.5rem 2rem 3rem;
  border-radius: 12px;
  margin-top: -3.5rem;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.2;
}
.service-title .highlight {
  color: #A88B73;
}

.service-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.representations-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
  text-align: center;
}

.representations-header {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.rep-title {
  font-size: 2.5rem;
  color: #1F3041;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}

.rep-subtitle {
  font-size: 1.1rem;
  color: #555;
}
.rep-subtitle strong {
  color: #A88B73;
}

.carousel-container-outer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
}

.carousel-arrow {
  background: transparent;
  border: none;
  color: #1F3041;
  cursor: pointer;
  padding: 1rem;
}
.carousel-arrow:hover {
  color: #A88B73;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .carousel-track-wrapper {
    max-width: 540px;
  }
}
@media (max-width: 600px) {
  .carousel-track-wrapper {
    max-width: 280px;
  }
}

.carousel-track-container {
  display: flex;
  gap: 40px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 600px) {
  .carousel-track-container {
    gap: 0;
  }
}

.carousel-card {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
@media (max-width: 600px) {
  .carousel-card {
    flex: 0 0 100%;
    margin: 0 auto;
  }
}

.Rep-logo {
  max-height: 140px;
  width: auto;
  max-width: 100%;
  filter: none;
  transition: transform 0.3s ease;
}
.Rep-logo:hover {
  transform: scale(1.05);
}

.consultancy-section {
  padding: 6rem 0;
  background-color: #ffffff;
  text-align: center;
}

.consultancy-header {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.consultancy-title {
  font-size: 2.5rem;
  color: #1F3041;
  margin-bottom: 1rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.consultancy-subtitle {
  font-size: 1.1rem;
  color: #555;
}
.consultancy-subtitle strong {
  color: #A88B73;
}

.process-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 4rem auto;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.process-icon-box {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon-box .process-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.process-label {
  color: #1F3041;
  font-weight: 600;
  line-height: 1.4;
}

.process-connector {
  width: 100px;
  height: 2px;
  background-color: #ddd;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .process-connector {
    width: 2px;
    height: 50px;
    margin-top: 0;
  }
}

.clients-section {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #eee;
}

.clients-title {
  font-size: 2rem;
  color: #1F3041;
  margin-bottom: 3rem;
  font-family: "Outfit", sans-serif;
}

.clients-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .clients-carousel-wrapper {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}

.fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.fade-overlay.left {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.fade-overlay.right {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.clients-carousel-track {
  display: flex;
  gap: 2rem;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.client-card {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.client-logo-placeholder {
  width: 130px;
  height: 130px;
  background-color: #1F3041;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.client-logo-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s;
}
.client-logo-img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.contact-section {
  scroll-margin-top: 80px;
  padding: 6rem 0;
  background-color: #1F3041;
  color: #fff;
  position: relative;
  z-index: 5;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 6rem;
  padding: 0 2rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .contact-container {
    padding: 0 1.5rem;
  }
}

.contact-info {
  flex: 1;
}

.contact-title {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  line-height: 1.1;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #A88B73;
}

.contact-logo-container {
  opacity: 1;
  max-width: 200px;
}
.contact-logo-container img {
  width: 100%;
  height: auto;
}

.contact-form-wrapper {
  flex: 1;
  width: 100%;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-height: 400px;
  /* Garante altura para a animação */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #1F3041;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  background: #f8f9fa;
  color: #1F3041;
  font-family: inherit;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9E8166;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(158, 129, 102, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #9E8166;
  color: #ffffff;
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: 1rem;
}
.submit-btn:hover {
  background: rgb(167.894, 141.852, 117.606);
  transform: translateY(-2px);
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}
.success-message .success-icon {
  width: 80px;
  height: 80px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}
.success-message .success-icon svg {
  width: 40px;
  height: 40px;
  color: white;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 1s ease forwards 0.4s;
}
.success-message h3 {
  font-size: 1.8rem;
  color: #1F3041;
  margin-bottom: 0.5rem;
  font-family: "Outfit", sans-serif;
}
.success-message p {
  color: #555;
  font-size: 1.1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

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