html {
  scrollbar-width: thin;
  scrollbar-color: #d4c5a0 #0a1b2e;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #0a1b2e;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4c5a0 0%, #b8a682 100%);
  border-radius: 10px;
  border: 2px solid #0a1b2e;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e8d9b8 0%, #d4c5a0 100%);
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
#header.scrolled {
  background: #253c35;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 197, 160, 0.1);
}
#header nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  #header nav {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  #header nav {
    padding: 0 1.5rem;
  }
}

#header nav .logo:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #header nav .logo {
    height: 38px;
  }
}
#header nav .header-cta-btn {
  background: white;
  color: #253c35;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
}
#header nav .header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 197, 160, 0.4);
  background: #e3fff7;
}
#header nav .header-cta-btn:active {
  transform: translateY(0);
}
#header nav .header-cta-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}
#header nav .header-cta-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  #header nav .header-cta-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }
}
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #253c35;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/BG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 992px) {
  .hero-section::after {
    opacity: 0.1;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 197, 160, 0.1) 0%,
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .hero-section::before {
    width: 100%;
    opacity: 0.6;
  }
}
.hero-section .container-fluid {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-section .row {
  margin: 0;
  align-items: center;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .hero-section .row {
    min-height: auto;
  }
}
.hero-section .hero-content-col {
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1400px) {
  .hero-section .hero-content-col {
    padding: 60px 50px;
  }
}
@media (max-width: 1200px) {
  .hero-section .hero-content-col {
    padding: 50px 40px;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-content-col {
    padding: 40px 30px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-content-col {
    padding: 100px 20px 30px;
  }
}
.hero-section .hero-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1400px) {
  .hero-section .hero-image-col {
    padding: 60px 50px;
  }
}
@media (max-width: 1200px) {
  .hero-section .hero-image-col {
    padding: 50px 40px;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-image-col {
    padding: 40px 30px;
    min-height: 450px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-image-col {
    padding: 30px 20px;
    min-height: 400px;
  }
}
.hero-section .hero-content {
  width: 100%;
  max-width: 580px;
}
@media (max-width: 992px) {
  .hero-section .hero-content {
    max-width: 100%;
  }
}
.hero-section .hero-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.3px;
}
@media (max-width: 1400px) {
  .hero-section .hero-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 1200px) {
  .hero-section .hero-title {
    font-size: 2.1rem;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-title {
    font-size: 1.6rem;
  }
}
.hero-section .hero-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
@media (max-width: 992px) {
  .hero-section .hero-subtitle {
    max-width: 100%;
    text-align: center;
    margin: 0 auto 2rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}
.hero-section .hero-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-family: "Lato", sans-serif;
}
@media (max-width: 992px) {
  .hero-section .hero-credentials {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-credentials {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
}
.hero-section .hero-credentials span {
  font-size: 0.85rem;
  color: hsla(0, 0%, 100%, 0.7);
  font-weight: 400;
}
@media (max-width: 768px) {
  .hero-section .hero-credentials span {
    font-size: 0.8rem;
  }
}
.hero-section .hero-credentials .separator {
  color: #e8d9b8;
  font-weight: 300;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .hero-section .hero-credentials .separator {
    display: none;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-cta {
    display: flex;
    justify-content: center;
  }
}
.hero-section .btn-primary {
  background: white;
  color: #253c35;
  padding: 1rem 2.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px #d1f1e83d;
  border: none;
  cursor: pointer;
}
.hero-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 197, 160, 0.4);
  background: #dffff5;
}
.hero-section .btn-primary:active {
  transform: translateY(0);
}
.hero-section .btn-primary i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.hero-section .btn-primary:hover i {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .hero-section .btn-primary {
    padding: 0.95rem 2rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}
.hero-section .hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section .hero-image-circle {
  position: relative;
  width: 580px;
  height: 580px;
}
@media (max-width: 1400px) {
  .hero-section .hero-image-circle {
    width: 520px;
    height: 520px;
  }
}
@media (max-width: 1200px) {
  .hero-section .hero-image-circle {
    width: 480px;
    height: 480px;
  }
}
@media (max-width: 992px) {
  .hero-section .hero-image-circle {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-image-circle {
    width: 360px;
    height: 360px;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-image-circle {
    width: 300px;
    height: 300px;
  }
}
.hero-section .image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 115%;
  background: radial-gradient(
    circle,
    rgba(212, 197, 160, 0.3) 0%,
    transparent 65%
  );
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}
.hero-section .image-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 112%;
  height: 112%;
  border: 3px solid rgba(0, 0, 0, 0);
  border-top-color: rgba(212, 197, 160, 0.4);
  border-right-color: rgba(212, 197, 160, 0.2);
  border-radius: 50%;
  z-index: 1;
  animation: rotateRing 20s linear infinite;
}
.hero-section .image-ring::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  border: 2px solid rgba(0, 0, 0, 0);
  border-bottom-color: rgba(212, 197, 160, 0.3);
  border-left-color: rgba(212, 197, 160, 0.2);
  border-radius: 50%;
  animation: rotateRingReverse 15s linear infinite;
}

.section-pers{
  color: #fff;
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.3px;
}

.span-pers{
  font-weight: 600;
  color: #ffffff;
}

.p-pers{
  font-size: 1.3rem;
  text-align: center;
  font-weight: 300;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-section .image-ring::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #e8d9b8;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 197, 160, 0.8);
  animation: rotatePoint 20s linear infinite;
}
.hero-section .hero-image-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 118%;
  height: 118%;
  border: 2px dashed rgba(212, 197, 160, 0.25);
  border-radius: 50%;
  z-index: 0;
  animation: rotateRingReverse 25s linear infinite;
  opacity: 0.6;
}
.hero-section .hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border: 6px solid rgba(212, 197, 160, 0.25);
  background: #0a1b2e;
  z-index: 2;
  transition: all 0.4s ease;
}
.hero-section .hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border-color: rgba(212, 197, 160, 0.4);
}
.hero-section .hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.hero-section .hero-badge {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 27, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.4rem;
  border-radius: 25px;
  border: 1px solid rgba(212, 197, 160, 0.3);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.hero-section .hero-badge i {
  color: #e8d9b8;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .hero-section .hero-badge {
    font-size: 0.7rem;
    padding: 0.6rem 1.2rem;
    bottom: 25px;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-badge {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
    bottom: 20px;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@keyframes rotateRing {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateRingReverse {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes rotatePoint {
  0% {
    transform: translateX(-50%) rotate(0deg) translateY(0);
  }
  100% {
    transform: translateX(-50%) rotate(360deg) translateY(0);
  }
}
.videos-section {
  position: relative;
  padding: 60px 0 50px;
  background: linear-gradient(180deg, #1e3a52 0%, #1a2f47 50%, #0f2538 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .videos-section {
    padding: 40px 0 35px;
  }
}
.videos-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(212, 197, 160, 0.08) 0%,
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}
.videos-section .container {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  padding: 0 4rem;
  overflow: visible;
}
@media (max-width: 1200px) {
  .videos-section .container {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  .videos-section .container {
    padding: 0 1.5rem;
    overflow: hidden;
  }
}
.videos-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .videos-section .section-header {
    margin-bottom: 1.5rem;
  }
}
.videos-section .section-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 1.2rem;
  position: relative;
}
.videos-section .section-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
}
.videos-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .videos-section .section-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .videos-section .section-title {
    font-size: 2rem;
  }
}
.videos-section .videos-carousel {
  position: relative;
  padding: 2rem 0;
  overflow: visible;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .videos-section .videos-carousel {
    padding: 2rem 0;
    overflow: visible;
    width: 100%;
    max-width: 920px;
    position: relative;
  }
}
@media (max-width: 768px) {
  .videos-section .videos-carousel {
    max-width: 100%;
    padding: 2rem 0;
    overflow: visible;
  }
}
.videos-section .videos-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .videos-section .videos-viewport {
    width: 100%;
    max-width: 100%;
  }
}
.videos-section .videos-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  overflow-y: visible;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  width: max-content;
  min-width: 100%;
  transition: transform 0.5s ease;
}
.videos-section .videos-track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 769px) {
  .videos-section .videos-track {
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: visible;
    width: max-content;
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .videos-section .videos-track {
    gap: 1rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }
}
.videos-section .video-card {
  flex: 0 0 280px;
  position: relative;
  scroll-snap-align: center;
  z-index: 1;
}
@media (max-width: 1400px) {
  .videos-section .video-card {
    flex: 0 0 260px;
  }
}
@media (max-width: 1200px) {
  .videos-section .video-card {
    flex: 0 0 240px;
  }
}
@media (max-width: 768px) {
  .videos-section .video-card {
    display: block !important;
    flex: 0 0 85%;
    max-width: 280px;
  }
}
.videos-section .video-card.video-card-featured {
  flex: 0 0 300px;
}
@media (max-width: 1400px) {
  .videos-section .video-card.video-card-featured {
    flex: 0 0 280px;
  }
}
@media (max-width: 1200px) {
  .videos-section .video-card.video-card-featured {
    flex: 0 0 260px;
  }
}
@media (max-width: 768px) {
  .videos-section .video-card.video-card-featured {
    flex: 0 0 85%;
    max-width: 300px;
  }
}
.videos-section .video-badge {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: linear-gradient(135deg, #b8a682, #d4c5a0);
  color: #0a1b2e;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-family: "Lato", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(212, 197, 160, 0.4);
}
.videos-section .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(30, 58, 82, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 197, 160, 0.2);
  transition: all 0.4s ease;
  cursor: pointer;
}
.videos-section .video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 197, 160, 0.4);
}
.videos-section .video-wrapper:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(212, 197, 160, 0.95);
}
.videos-section .video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.videos-section .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: rgba(212, 197, 160, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.videos-section .video-play-btn i {
  color: #0a1b2e;
  font-size: 1.4rem;
  margin-left: 4px;
}
.videos-section .video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 10px 30px rgba(212, 197, 160, 0.5);
}
@media (max-width: 768px) {
  .videos-section .video-play-btn {
    width: 55px;
    height: 55px;
  }
  .videos-section .video-play-btn i {
    font-size: 1.2rem;
  }
}
.videos-section .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(212, 197, 160, 0.2);
  border: 2px solid rgba(212, 197, 160, 0.4);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100 !important;
  backdrop-filter: blur(10px);
  pointer-events: auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.videos-section .carousel-nav i {
  color: #e8d9b8;
  font-size: 1.2rem;
}
.videos-section .carousel-nav:hover:not(.disabled) {
  background: rgba(212, 197, 160, 0.3);
  border-color: rgba(212, 197, 160, 0.6);
  transform: translateY(-50%) scale(1.1);
}
.videos-section .carousel-nav.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (min-width: 769px) {
  .videos-section .carousel-nav {
    display: flex !important;
    width: 55px;
    height: 55px;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .videos-section .carousel-nav.carousel-prev {
    left: -80px;
  }
  .videos-section .carousel-nav.carousel-next {
    right: -80px;
  }
  .videos-section .carousel-nav i {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .videos-section .carousel-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .videos-section .carousel-nav.carousel-prev {
    left: 0.5rem;
    width: 42px;
    height: 42px;
  }
  .videos-section .carousel-nav.carousel-next {
    right: 0.5rem;
    width: 42px;
    height: 42px;
  }
}
.banner-strip {
  position: relative;
  padding: 1.5rem 0;
  background: white;
  border-top: 2px solid #d4c5a0;
  border-bottom: 2px solid #d4c5a0;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    #000000,
    black 10%,
    #d4c5a0 90%,
    #000000
  );
}
.banner-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(10, 46, 32, 0.15) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}
.banner-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 27, 46, 0.08) 0%,
    transparent 50%,
    rgba(10, 27, 46, 0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.banner-strip .banner-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: scrollBanner 15s linear infinite;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .banner-strip .banner-track {
    gap: 1.5rem;
    animation-duration: 12s;
  }
}
.banner-strip .banner-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #253c35;
  white-space: nowrap;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  background: #253c3517;
  border: 1px solid #253c35;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.banner-strip .banner-item:hover {
  background: rgba(10, 27, 46, 0.15);
  border-color: rgba(10, 27, 46, 0.3);
  transform: translateY(-2px);
}
.banner-strip .banner-item i {
  font-size: 1.1rem;
  color: #0a1b2e;
  filter: drop-shadow(0 2px 4px rgba(10, 27, 46, 0.2));
}
.banner-strip .banner-item span {
  letter-spacing: 0.3px;
  color: #0a1b2e;
}
@media (max-width: 992px) {
  .banner-strip .banner-item {
    font-size: 0.9rem;
    gap: 0.7rem;
    padding: 0.4rem 1rem;
  }
}
@media (max-width: 768px) {
  .banner-strip .banner-item {
    font-size: 0.85rem;
    gap: 0.6rem;
    padding: 0.35rem 0.9rem;
  }
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.pain-points-section {
  padding: 120px 0;
  background: #253c35;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pain-points-section {
    padding: 80px 0;
  }
}
.pain-points-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
  z-index: 0;
  pointer-events: none;
}
.pain-points-section .container {
  position: relative;
  z-index: 1;
}
.pain-points-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pain-points-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .pain-points-section .section-header {
    margin-bottom: 3.5rem;
  }
}
.pain-points-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  max-width: 950px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}
@media (max-width: 992px) {
  .pain-points-section .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .pain-points-section .section-title {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .pain-points-section .section-title {
    font-size: 1.5rem;
  }
}
.pain-points-section .pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .pain-points-section .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .pain-points-section .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 500px;
  }
}
.pain-points-section .pain-point-card {
  background: #253c35;
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(212, 197, 160, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  cursor: pointer;
}
.pain-points-section .pain-point-card:nth-child(1) {
  transition-delay: 0.08s;
}
.pain-points-section .pain-point-card:nth-child(2) {
  transition-delay: 0.16s;
}
.pain-points-section .pain-point-card:nth-child(3) {
  transition-delay: 0.24s;
}
.pain-points-section .pain-point-card:nth-child(4) {
  transition-delay: 0.32s;
}
.pain-points-section .pain-point-card:nth-child(5) {
  transition-delay: 0.4s;
}
.pain-points-section .pain-point-card:nth-child(6) {
  transition-delay: 0.48s;
}
.pain-points-section .pain-point-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.pain-points-section .pain-point-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 197, 160, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.pain-points-section .pain-point-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4c5a0, transparent);
  transition: transform 0.5s ease;
}
.pain-points-section .pain-point-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #d4c5a0;
  background: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 197, 160, 0.2);
}
.pain-points-section .pain-point-card:hover::before {
  opacity: 1;
}
.pain-points-section .pain-point-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.pain-points-section .pain-point-card:hover .pain-icon {
  transform: scale(1.15) rotate(8deg);
  color: #d4c5a0;
  filter: drop-shadow(0 0 15px #d4c5a0);
}
.pain-points-section .pain-point-card:hover p {
  color: #fff;
  transform: translateY(-2px);
}
.pain-points-section .pain-point-card .pain-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: #d4c5a036;
  border-radius: 50%;
  border: 2px solid rgba(212, 197, 160, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (max-width: 768px) {
  .pain-points-section .pain-point-card .pain-icon {
    width: 80px;
    height: 80px;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
}
.pain-points-section .pain-point-card .pain-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #e8d9b8;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pain-points-section .pain-point-card .pain-icon i {
  position: relative;
  z-index: 1;
}
.pain-points-section .pain-point-card:hover .pain-icon::after {
  opacity: 0.6;
}
.pain-points-section .pain-point-card p {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  color: hsla(0, 0%, 100%, 0.85);
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  transition: all 0.4s ease;
  letter-spacing: 0.2px;
}
@media (max-width: 992px) {
  .pain-points-section .pain-point-card p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .pain-points-section .pain-point-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.single-strategic-card {
  background: #253c35;
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(212, 197, 160, 0.2);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}
.single-strategic-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Efeitos de hover iguais */
.single-strategic-card::before,
.single-strategic-card::after {
  content: "";
  position: absolute;
  transition: 0.5s ease;
  pointer-events: none;
}

.single-strategic-card::before {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 197, 160, 0.15) 0%, transparent 70%);
  opacity: 0;
}

.single-strategic-card::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4c5a0, transparent);
}

.single-strategic-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #d4c5a0;
  background: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 197, 160, 0.2);
}

.single-strategic-card:hover::before {
  opacity: 1;
}

.single-strategic-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Icone preservado */
.single-strategic-card .pain-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.7);
  background: #d4c5a036;
  border-radius: 50%;
  border: 2px solid rgba(212, 197, 160, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.p-et{
  color: #f1f1f1;
}

.single-strategic-card:hover .pain-icon {
  transform: scale(1.15) rotate(8deg);
  color: #d4c5a0;
  filter: drop-shadow(0 0 15px #d4c5a0);
}

.single-strategic-card p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: hsla(0, 0%, 100%, 0.85);
  line-height: 1.75;
  margin: 0;
  font-weight: 400;
  transition: all 0.4s ease;
}


.real-cases-section {
  padding: 100px 0;
  background: #253c35;
  position: relative;
}
@media (max-width: 768px) {
  .real-cases-section {
    padding: 60px 0;
  }
}
.real-cases-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.real-cases-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .real-cases-section .section-header {
    margin-bottom: 2.5rem;
  }
}
.real-cases-section .section-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 1rem;
}
.real-cases-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .real-cases-section .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .real-cases-section .section-title {
    font-size: 2rem;
  }
}
.real-cases-section .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .real-cases-section .cases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.real-cases-section .case-card {
  background: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 197, 160, 0.2);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.real-cases-section .case-card:nth-child(1) {
  transition-delay: 0.1s;
}
.real-cases-section .case-card:nth-child(2) {
  transition-delay: 0.2s;
}
.real-cases-section .case-card.animated {
  opacity: 1;
  transform: translateY(0);
}
.real-cases-section .case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b8a682, #d4c5a0, #e8d9b8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.real-cases-section .case-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 197, 160, 0.5);
  background: hsla(0, 0%, 100%, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.real-cases-section .case-card:hover::before {
  transform: scaleX(1);
}
.real-cases-section .case-card:hover .case-number {
  color: #e8d9b8;
  transform: scale(1.1);
}
.real-cases-section .case-card .case-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(212, 197, 160, 0.3);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  display: block;
}
@media (max-width: 768px) {
  .real-cases-section .case-card .case-number {
    font-size: 3rem;
  }
}
.real-cases-section .case-card .case-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .real-cases-section .case-card .case-title {
    font-size: 1.5rem;
  }
}
.real-cases-section .case-card .case-description {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  color: hsla(0, 0%, 100%, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.real-cases-section .case-card .case-description strong {
  color: #e8d9b8;
  font-weight: 600;
}
@media (max-width: 768px) {
  .real-cases-section .case-card .case-description {
    font-size: 1rem;
  }
}
.real-cases-section .case-card .case-result {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 197, 160, 0.2);
}
.real-cases-section .case-card .case-result .result-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(212, 197, 160, 0.2),
    rgba(184, 166, 130, 0.15)
  );
  border: 1px solid rgba(212, 197, 160, 0.3);
  color: #e8d9b8;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.target-audience-section {
  padding: 120px 0;
  background: #253c35;
  position: relative;
}
@media (max-width: 768px) {
  .target-audience-section {
    padding: 80px 0;
  }
}
.target-audience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 197, 160, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.target-audience-section .container {
  position: relative;
  z-index: 1;
}
.target-audience-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.target-audience-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .target-audience-section .section-header {
    margin-bottom: 3.5rem;
  }
}
.target-audience-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.target-audience-section .section-title .highlight-text {
  color: #e8d9b8;
  position: relative;
}
.target-audience-section .section-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  opacity: 0.5;
}
@media (max-width: 992px) {
  .target-audience-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .target-audience-section .section-title {
    font-size: 2rem;
  }
}
.target-audience-section .audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .target-audience-section .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .target-audience-section .audience-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 500px;
  }
}
.target-audience-section .audience-card {
  background: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(212, 197, 160, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  cursor: pointer;
}
.target-audience-section .audience-card:nth-child(1) {
  transition-delay: 0.1s;
}
.target-audience-section .audience-card:nth-child(2) {
  transition-delay: 0.2s;
}
.target-audience-section .audience-card:nth-child(3) {
  transition-delay: 0.3s;
}
.target-audience-section .audience-card:nth-child(4) {
  transition-delay: 0.4s;
}
.target-audience-section .audience-card.animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.target-audience-section .audience-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 197, 160, 0.12) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.target-audience-section .audience-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  transition: transform 0.5s ease;
}
.target-audience-section .audience-card:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(212, 197, 160, 0.5);
  background: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 197, 160, 0.2);
}
.target-audience-section .audience-card:hover::before {
  opacity: 1;
}
.target-audience-section .audience-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.target-audience-section .audience-card:hover i {
  transform: scale(1.15) rotate(8deg);
  color: #e8d9b8;
  filter: drop-shadow(0 0 15px rgba(212, 197, 160, 0.6));
}
.target-audience-section .audience-card:hover h3 {
  color: #fff;
  transform: translateY(-3px);
}
.target-audience-section .audience-card i {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(212, 197, 160, 0.7);
  background: rgba(212, 197, 160, 0.08);
  border-radius: 50%;
  border: 2px solid rgba(212, 197, 160, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media (max-width: 768px) {
  .target-audience-section .audience-card i {
    width: 90px;
    height: 90px;
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
  }
}
.target-audience-section .audience-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.6;
  margin: 0;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .target-audience-section .audience-card h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .target-audience-section .audience-card h3 {
    font-size: 1.05rem;
    line-height: 1.5;
  }
}
.service-pillars-section {
  padding: 120px 0;
  background: #253c35;
  position: relative;
}
@media (max-width: 768px) {
  .service-pillars-section {
    padding: 80px 0;
  }
}
.service-pillars-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 197, 160, 0.06) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.service-pillars-section .container {
  position: relative;
  z-index: 1;
}
.service-pillars-section .section-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.service-pillars-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .service-pillars-section .section-header {
    margin-bottom: 3.5rem;
  }
}
.service-pillars-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.service-pillars-section .section-title .highlight-text {
  color: #e8d9b8;
  position: relative;
}
.service-pillars-section .section-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  opacity: 0.5;
}
@media (max-width: 992px) {
  .service-pillars-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .service-pillars-section .section-title {
    font-size: 2rem;
  }
}
.service-pillars-section .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .service-pillars-section .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}
@media (max-width: 768px) {
  .service-pillars-section .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
  }
}
.service-pillars-section .pillar-item {
  background: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(15px);
  border: 1.5px solid rgba(212, 197, 160, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-30px);
  cursor: pointer;
}
.service-pillars-section .pillar-item:nth-child(1) {
  transition-delay: 0.08s;
}
.service-pillars-section .pillar-item:nth-child(2) {
  transition-delay: 0.16s;
}
.service-pillars-section .pillar-item:nth-child(3) {
  transition-delay: 0.24s;
}
.service-pillars-section .pillar-item:nth-child(4) {
  transition-delay: 0.32s;
}
.service-pillars-section .pillar-item:nth-child(5) {
  transition-delay: 0.4s;
}
.service-pillars-section .pillar-item:nth-child(6) {
  transition-delay: 0.48s;
}
.service-pillars-section .pillar-item.animated {
  opacity: 1;
  transform: translateX(0);
}
.service-pillars-section .pillar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b8a682, #d4c5a0, #e8d9b8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.service-pillars-section .pillar-item:hover {
  transform: translateX(12px) scale(1.02);
  border-color: rgba(212, 197, 160, 0.5);
  background: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 197, 160, 0.15);
}
.service-pillars-section .pillar-item:hover::after {
  transform: scaleX(1);
}
.service-pillars-section .pillar-item:hover .pillar-number {
  background: linear-gradient(135deg, #b8a682, #d4c5a0);
  color: #0a1b2e;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(212, 197, 160, 0.4);
}
.service-pillars-section .pillar-item:hover h3 {
  color: #e8d9b8;
}
.service-pillars-section .pillar-item .pillar-number {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: rgba(212, 197, 160, 0.1);
  border: 2px solid rgba(212, 197, 160, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #e8d9b8;
  transition: all 0.5s ease;
  position: relative;
}
@media (max-width: 768px) {
  .service-pillars-section .pillar-item .pillar-number {
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
  }
}
.service-pillars-section .pillar-item h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  padding-top: 0.5rem;
  transition: color 0.4s ease;
}
@media (max-width: 768px) {
  .service-pillars-section .pillar-item h3 {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
.differential-steps-section {
  padding: 120px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #253c35;
  position: relative;
  overflow: hidden;
}
@media (max-width: 992px) {
  .differential-steps-section {
    padding: 100px 0;
  }
}
@media (max-width: 768px) {
  .differential-steps-section {
    padding: 80px 0;
  }
}
.differential-steps-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(212, 197, 160, 0.08) 0%,
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}
.differential-steps-section .container {
  position: relative;
  z-index: 1;
}
.differential-steps-section .combined-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
@media (max-width: 1200px) {
  .differential-steps-section .combined-content {
    gap: 4rem;
  }
}
@media (max-width: 992px) {
  .differential-steps-section .combined-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (max-width: 768px) {
  .differential-steps-section .combined-content {
    gap: 3rem;
  }
}
.differential-steps-section .differential-content {
  max-width: 100%;
}
.differential-steps-section .differential-content .section-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 1rem;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.differential-steps-section .differential-content .section-label.animated {
  opacity: 1;
  transform: translateY(0);
}
.differential-steps-section .differential-content .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  letter-spacing: -0.5px;
}
.differential-steps-section .differential-content .section-title.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .differential-steps-section .differential-content .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .differential-steps-section .differential-content .section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
}
.differential-steps-section .differential-content .differential-items {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
@media (max-width: 768px) {
  .differential-steps-section .differential-content .differential-items {
    gap: 1.5rem;
  }
}
.differential-steps-section .differential-content .differential-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: hsla(0, 0%, 100%, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 197, 160, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.differential-steps-section
  .differential-content
  .differential-item:nth-child(1) {
  transition-delay: 0.1s;
}
.differential-steps-section
  .differential-content
  .differential-item:nth-child(2) {
  transition-delay: 0.2s;
}
.differential-steps-section
  .differential-content
  .differential-item:nth-child(3) {
  transition-delay: 0.3s;
}
.differential-steps-section
  .differential-content
  .differential-item:nth-child(4) {
  transition-delay: 0.4s;
}
.differential-steps-section
  .differential-content
  .differential-item:nth-child(5) {
  transition-delay: 0.5s;
}
.differential-steps-section
  .differential-content
  .differential-item:nth-child(6) {
  transition-delay: 0.6s;
}
.differential-steps-section .differential-content .differential-item.animated {
  opacity: 1;
  transform: translateX(0);
}
.differential-steps-section .differential-content .differential-item:hover {
  transform: translateX(10px);
  border-color: rgba(212, 197, 160, 0.4);
  background: hsla(0, 0%, 100%, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.differential-steps-section .differential-content .differential-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #e8d9b8;
}
.differential-steps-section .differential-content .differential-item i {
  font-size: 1.8rem;
  color: #d4c5a0;
  margin-top: 0.2rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.differential-steps-section .differential-content .differential-item p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.7;
  margin: 0;
}
.differential-steps-section
  .differential-content
  .differential-item
  p
  .highlight-text {
  color: #e8d9b8;
  font-weight: 600;
}
@media (max-width: 768px) {
  .differential-steps-section .differential-content .differential-item p {
    font-size: 1rem;
  }
}
.differential-steps-section .process-steps-content .section-header {
  text-align: left;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.differential-steps-section .process-steps-content .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .section-header {
    margin-bottom: 3.5rem;
  }
}
.differential-steps-section .process-steps-content .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}
.differential-steps-section
  .process-steps-content
  .section-title
  .highlight-text {
  color: #e8d9b8;
  position: relative;
}
.differential-steps-section
  .process-steps-content
  .section-title
  .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  opacity: 0.5;
}
@media (max-width: 992px) {
  .differential-steps-section .process-steps-content .section-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .differential-steps-section .process-steps-content .section-title {
    font-size: 1.7rem;
  }
}
.differential-steps-section .process-steps-content .steps-timeline {
  max-width: 100%;
  position: relative;
  padding-left: 3rem;
  --progress-height: 0px;
  --progress-start: 0px;
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .steps-timeline {
    padding-left: 2rem;
  }
}
.differential-steps-section .process-steps-content .steps-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(212, 197, 160, 0.2);
  z-index: 0;
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .steps-timeline::before {
    left: 20px;
    width: 2px;
  }
}
.differential-steps-section .process-steps-content .steps-timeline::after {
  content: "";
  position: absolute;
  left: 30px;
  top: var(--progress-start, 0px);
  width: 3px;
  height: var(--progress-height, 0px);
  background: linear-gradient(
    180deg,
    #e8d9b8 0%,
    rgba(212, 197, 160, 0.8) 100%
  );
  z-index: 1;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(212, 197, 160, 0.6);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .steps-timeline::after {
    left: 20px;
    width: 2px;
  }
}
.differential-steps-section .process-steps-content .step-item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .step-item {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}
.differential-steps-section .process-steps-content .step-item:last-child {
  margin-bottom: 0;
}
.differential-steps-section .process-steps-content .step-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.differential-steps-section .process-steps-content .step-item .step-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(212, 197, 160, 0.1);
  border: 3px solid rgba(212, 197, 160, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212, 197, 160, 0.5);
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.8);
}
@media (max-width: 768px) {
  .differential-steps-section .process-steps-content .step-item .step-number {
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
    border-width: 2.5px;
  }
}
.differential-steps-section
  .process-steps-content
  .step-item.visible
  .step-number {
  transform: scale(1);
  border-color: rgba(212, 197, 160, 0.5);
  color: rgba(212, 197, 160, 0.8);
}
.differential-steps-section
  .process-steps-content
  .step-item.active
  .step-number {
  background: linear-gradient(
    135deg,
    rgba(212, 197, 160, 0.2),
    rgba(184, 166, 130, 0.15)
  );
  border-color: #e8d9b8;
  color: #e8d9b8;
  box-shadow: 0 0 20px rgba(212, 197, 160, 0.4);
  transform: scale(1.1);
}
.differential-steps-section .process-steps-content .step-item .step-content {
  flex: 1;
  padding-top: 0.8rem;
}
.differential-steps-section .process-steps-content .step-item .step-content h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.6);
  line-height: 1.6;
  margin: 0;
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .differential-steps-section
    .process-steps-content
    .step-item
    .step-content
    h3 {
    font-size: 1.1rem;
  }
}
.differential-steps-section
  .process-steps-content
  .step-item.visible
  .step-content
  h3 {
  color: hsla(0, 0%, 100%, 0.9);
}
.differential-steps-section
  .process-steps-content
  .step-item.active
  .step-content
  h3 {
  color: #fff;
  font-weight: 600;
  transform: translateX(5px);
}
.differential-steps-section
  .process-steps-content
  .step-item:hover
  .step-number {
  transform: scale(1.15);
  background: linear-gradient(135deg, #b8a682, #d4c5a0);
  color: #0a1b2e;
  border-color: #e8d9b8;
  box-shadow: 0 0 25px rgba(212, 197, 160, 0.5);
}
.differential-steps-section
  .process-steps-content
  .step-item:hover
  .step-content
  h3 {
  color: #e8d9b8;
  transform: translateX(8px);
}
.testimonials-section {
  padding: 120px 0;
  background: #253c35;
  position: relative;
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 0;
  }
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 197, 160, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.testimonials-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}
@media (max-width: 992px) {
  .testimonials-section .container {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .testimonials-section .container {
    padding: 0 1.5rem;
  }
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.testimonials-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .testimonials-section .section-header {
    margin-bottom: 3rem;
  }
}
.testimonials-section .section-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 0.8rem;
}
.testimonials-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.testimonials-section .section-title .highlight-text {
  color: #e8d9b8;
  position: relative;
}
.testimonials-section .section-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  opacity: 0.5;
}
@media (max-width: 992px) {
  .testimonials-section .section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .testimonials-section .section-title {
    font-size: 1.9rem;
  }
}
.testimonials-section .testimonials-carousel {
  position: relative;
  padding: 1rem 0 2rem;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 3%,
    black 97%,
    transparent 100%
  );
}
.testimonials-section .testimonials-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
  will-change: transform;
  width: fit-content;
}
@media (max-width: 768px) {
  .testimonials-section .testimonials-track {
    gap: 1.2rem;
  }
}
.testimonials-section .testimonial-card {
  flex: 0 0 320px;
  min-width: 320px;
  max-width: 320px;
  background: hsla(0, 0%, 100%, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 197, 160, 0.15);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  flex-shrink: 0;
}
.testimonials-section .testimonial-card.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .testimonials-section .testimonial-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    padding: 1.8rem 1.6rem;
  }
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    padding: 2rem 1.8rem;
  }
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 197, 160, 0.3);
  background: hsla(0, 0%, 100%, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.testimonials-section .testimonial-card .testimonial-stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  color: #e8d9b8;
  font-size: 0.9rem;
}
.testimonials-section .testimonial-card .testimonial-stars i {
  color: #e8d9b8;
}
.testimonials-section .testimonial-card .testimonial-text {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .testimonials-section .testimonial-card .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}
.testimonials-section .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 197, 160, 0.1);
}
.testimonials-section .testimonial-card .testimonial-author .author-info {
  flex: 1;
}
.testimonials-section
  .testimonial-card
  .testimonial-author
  .author-info
  .author-name {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.testimonials-section
  .testimonial-card
  .testimonial-author
  .author-info
  .author-role {
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  color: hsla(0, 0%, 100%, 0.6);
}
.faq-section {
  position: relative;
  padding: 120px 0;
  background: #253c35;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
}
.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(212, 197, 160, 0.05) 0%,
    transparent 60%
  );
  z-index: 0;
  pointer-events: none;
}
.faq-section .container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 1200px) {
  .faq-section .container {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  .faq-section .container {
    padding: 0 1.5rem;
  }
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.faq-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .faq-section .section-header {
    margin-bottom: 3rem;
  }
}
.faq-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
}
.faq-section .section-title .highlight-text {
  color: #e8d9b8;
  position: relative;
}
.faq-section .section-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  opacity: 0.5;
}
@media (max-width: 992px) {
  .faq-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .faq-section .section-title {
    font-size: 2rem;
  }
}
.faq-section .faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .faq-section .faq-content {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .faq-section .faq-list {
    order: 2;
  }
}
.faq-section .faq-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.faq-section .faq-image.animated {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .faq-section .faq-image {
    order: 1;
    transform: translateY(-20px);
    margin-bottom: 0;
  }
  .faq-section .faq-image.animated {
    transform: translateY(0);
  }
}
.faq-section .faq-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}
@media (max-width: 992px) {
  .faq-section .faq-image img {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .faq-section .faq-image img {
    max-width: 100%;
    border-radius: 8px;
  }
}
.faq-section .faq-item {
  background: hsla(0, 0%, 100%, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 197, 160, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .faq-item:hover {
  border-color: rgba(212, 197, 160, 0.25);
  background: hsla(0, 0%, 100%, 0.04);
}
.faq-section .faq-item.active {
  border-color: rgba(212, 197, 160, 0.4);
  background: hsla(0, 0%, 100%, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.faq-section .faq-item.active .faq-question {
  border-bottom: 1px solid rgba(212, 197, 160, 0.15);
}
.faq-section .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-section .faq-item.active .faq-answer {
  max-height: 2000px;
}
.faq-section .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .faq-section .faq-question {
    padding: 1.2rem 1.5rem;
  }
}
.faq-section .faq-question h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .faq-section .faq-question h3 {
    font-size: 0.95rem;
  }
}
.faq-section .faq-question i {
  color: #e8d9b8;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-section .faq-question:hover h3 {
  color: #e8d9b8;
}
.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .faq-section .faq-answer {
    padding: 0 1.5rem;
  }
}
.faq-section .faq-answer p {
  margin: 0;
  padding: 1rem 0;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: hsla(0, 0%, 100%, 0.85);
}
@media (max-width: 768px) {
  .faq-section .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.8rem 0;
  }
}
.about-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #2f4e45 0%, #253c35 100%);
  position: relative;
}
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 197, 160, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.about-section .container {
  position: relative;
  z-index: 1;
}
.about-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .about-section .section-header {
    margin-bottom: 3rem;
  }
}
.about-section .section-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 1rem;
}
.about-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media (max-width: 992px) {
  .about-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 2rem;
  }
}
.about-section .about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.about-section .about-content-wrapper.animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .about-section .about-content-wrapper {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about-section .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-section .about-map {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 197, 160, 0.2);
}
@media (max-width: 768px) {
  .about-section .about-map {
    height: 300px;
    order: 1;
  }
}
.about-section .about-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
}
.about-section .about-map iframe:hover {
  filter: grayscale(0%) brightness(1);
}
@media (max-width: 768px) {
  .about-section .about-text {
    order: 2;
  }
}
.about-section .about-text p {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.about-section .about-text p:last-child {
  margin-bottom: 0;
}
.about-section .about-text p strong {
  color: #e8d9b8;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-section .about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}
.final-cta-section {
  padding: 100px 0;
  background: #253c35;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .final-cta-section {
    padding: 70px 0;
  }
}
.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 197, 160, 0.08) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.final-cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 1200px) {
  .final-cta-section .container {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  .final-cta-section .container {
    padding: 0 1.5rem;
  }
}
.final-cta-section .cta-content {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.final-cta-section .cta-content.animated {
  opacity: 1;
  transform: translateY(0);
}
.final-cta-section .cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
@media (max-width: 992px) {
  .final-cta-section .cta-title {
    font-size: 2.3rem;
  }
}
@media (max-width: 768px) {
  .final-cta-section .cta-title {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}
@media (max-width: 576px) {
  .final-cta-section .cta-title {
    font-size: 1.7rem;
  }
}
.final-cta-section .cta-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  color: hsla(0, 0%, 100%, 0.8);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .final-cta-section .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.final-cta-section .btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #b8a682 0%, #d4c5a0 100%);
  color: #0a1b2e;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(212, 197, 160, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.final-cta-section .btn-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4c5a0 0%, #e8d9b8 100%);
  transition: left 0.4s ease;
  z-index: -1;
}
.final-cta-section .btn-large i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.final-cta-section .btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 197, 160, 0.4);
}
.final-cta-section .btn-large:hover::before {
  left: 0;
}
.final-cta-section .btn-large:hover i {
  transform: translateX(4px);
}
.final-cta-section .btn-large:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .final-cta-section .btn-large {
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}
.contact-form-section {
  padding: 120px 0;
  background: #0a1b2e;
  position: relative;
}
@media (max-width: 768px) {
  .contact-form-section {
    padding: 80px 0;
  }
}
.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 197, 160, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.contact-form-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.contact-form-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact-form-section .section-header.animated {
  opacity: 1;
  transform: translateY(0);
}
.contact-form-section .section-label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8d9b8;
  margin-bottom: 1rem;
}
.contact-form-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}
.contact-form-section .section-title .highlight-text {
  color: #e8d9b8;
  position: relative;
}
.contact-form-section .section-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8d9b8, transparent);
  opacity: 0.5;
}
@media (max-width: 992px) {
  .contact-form-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .contact-form-section .section-title {
    font-size: 2rem;
  }
}
.contact-form-section .section-subtitle {
  font-family: "Lato", sans-serif;
  font-size: 1.05rem;
  color: hsla(0, 0%, 100%, 0.7);
  margin: 0;
  line-height: 1.6;
}
.contact-form-section .contact-form-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.contact-form-section .contact-form-wrapper.animated {
  opacity: 1;
  transform: translateY(0);
}
.contact-form-section .contact-form {
  background: hsla(0, 0%, 100%, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 197, 160, 0.2);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .contact-form-section .contact-form {
    padding: 2rem 1.5rem;
  }
}
.contact-form-section .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-form-section .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
}
.contact-form-section .contact-form .form-group {
  margin-bottom: 2rem;
}
.contact-form-section .contact-form .form-group label {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
}
.contact-form-section .contact-form .form-group input,
.contact-form-section .contact-form .form-group select,
.contact-form-section .contact-form .form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: hsla(0, 0%, 100%, 0.05);
  border: 1.5px solid rgba(212, 197, 160, 0.2);
  border-radius: 10px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form-section .contact-form .form-group input::placeholder,
.contact-form-section .contact-form .form-group select::placeholder,
.contact-form-section .contact-form .form-group textarea::placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}
.contact-form-section .contact-form .form-group input:focus,
.contact-form-section .contact-form .form-group select:focus,
.contact-form-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #e8d9b8;
  background: hsla(0, 0%, 100%, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 197, 160, 0.1);
}
.contact-form-section .contact-form .form-group input:hover,
.contact-form-section .contact-form .form-group select:hover,
.contact-form-section .contact-form .form-group textarea:hover {
  border-color: rgba(212, 197, 160, 0.3);
}
.contact-form-section .contact-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4c5a0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}
.contact-form-section .contact-form .form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form-section .contact-form .btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.main-footer {
  background: #253c35;
  border-top: 1px solid rgba(212, 197, 160, 0.06);
  padding: 45px 0 20px;
  font-family: "Lato", sans-serif;
  position: relative;
}
.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 197, 160, 0.12),
    transparent
  );
}
.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
@media (max-width: 1200px) {
  .main-footer .container {
    padding: 0 3rem;
  }
}
@media (max-width: 768px) {
  .main-footer .container {
    padding: 0 1.5rem;
  }
}
.main-footer .footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .main-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.main-footer .footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  .main-footer .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }
}
.main-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.main-footer .contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: hsla(0, 0%, 100%, 0.65);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
  font-size: 0.8rem;
}
.main-footer .contact-item:hover {
  color: #e8d9b8;
  transform: translateX(2px);
}
.main-footer .contact-item i {
  font-size: 0.85rem;
  color: #e8d9b8;
  width: 16px;
  text-align: center;
}
.main-footer .contact-item span {
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .main-footer .contact-item {
    font-size: 0.75rem;
    gap: 0.7rem;
  }
  .main-footer .contact-item span {
    font-size: 0.75rem;
  }
  .main-footer .contact-item i {
    font-size: 0.8rem;
    width: 14px;
  }
}
.main-footer .footer-social {
  display: flex;
  gap: 0.6rem;
}
.main-footer .social-link {
  width: 36px;
  height: 36px;
  background: rgba(212, 197, 160, 0.05);
  border: 1px solid rgba(212, 197, 160, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8d9b8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.main-footer .social-link:hover {
  background: rgba(212, 197, 160, 0.1);
  border-color: rgba(212, 197, 160, 0.2);
  transform: translateY(-2px);
  color: #d4c5a0;
}
@media (max-width: 768px) {
  .main-footer .social-link {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
}
.main-footer .footer-bottom {
  text-align: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 197, 160, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.main-footer .footer-bottom p {
  margin: 0;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 0.75rem;
  line-height: 1.6;
}
.main-footer .footer-bottom p.cnpj {
  color: hsla(0, 0%, 100%, 0.4);
  font-size: 0.7rem;
  font-weight: 400;
}
.whatsapp-bubble {
  position: fixed;
  bottom: 72px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-bubble:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  background: #20ba5a;
}
.whatsapp-bubble:active {
  transform: translateY(-1px) scale(1.05);
}
.whatsapp-bubble i {
  color: #fff;
}
@media (max-width: 768px) {
  .whatsapp-bubble {
    width: 52px;
    height: 52px;
    bottom: 64px;
    right: 16px;
    font-size: 1.4rem;
  }
}
.scroll-to-top {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #b8a682, #d4c5a0);
  border: 1px solid rgba(212, 197, 160, 0.12);
  border-radius: 50%;
  color: #0a1b2e;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 197, 160, 0.3);
  background: linear-gradient(135deg, #d4c5a0, #e8d9b8);
}
@media (max-width: 768px) {
  .scroll-to-top {
    width: 38px;
    height: 38px;
    bottom: 16px;
    right: 16px;
    font-size: 0.85rem;
  }
} /*# sourceMappingURL=style.css.map */
