* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f4f1 0%, #faf9f7 50%, #f0f9f7 100%);
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.12);
  animation: slideDown 0.6s ease-out;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #d4af37 0%, #56b4a0 50%, #c86b4a 100%) 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 180px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
}

nav {
  display: flex;
  gap: 45px;
  align-items: center;
  margin-left: 45px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
  margin-left: 0;
}

.main-nav a {
  white-space: nowrap;
  text-decoration: none;
  color: #a67c00;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav a:hover {
  color: #56b4a0;
  transform: translateY(-2px);
}

.main-nav a:hover::after {
  width: 100%;
}

nav a {
  text-decoration: none;
  color: #a67c00;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover {
  color: #56b4a0;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-selector {
  position: relative;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.social-icon--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-icon--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.35);
}

.lang-btn {
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.lang-btn:hover {
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
  transform: translateY(-3px);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
  backdrop-filter: blur(10px);
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: all 0.2s ease;
  color: #4a4a4a;
}

.lang-option:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.1),
    rgba(86, 180, 160, 0.1)
  );
  color: #2d5a4a;
  padding-left: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.contact-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-icon:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.page-header {
  padding: 100px 60px;
  background: linear-gradient(135deg, #2d5a4a 0%, #1a3a2e 50%, #0d2622 100%);
  text-align: center;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 180, 160, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.page-header h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 15px;
  font-weight: 300;
  animation: slideInUp 0.8s ease-out 0.1s both;
  background: linear-gradient(135deg, #faf9f7, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 16px;
  color: rgba(250, 249, 247, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: slideInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 2;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #faf9f7 0%, #f0f9f7 100%);
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s ease-out;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-item:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.15s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.25s;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(45, 90, 74, 0.1);
  border-color: #d4af37;
  transform: translateY(-4px);
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(86, 180, 160, 0.08)
  );
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(86, 180, 160, 0.15)
  );
}

.question-text {
  font-size: 16px;
  font-weight: 600;
  color: #2d5a4a;
  text-align: left;
  transition: color 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.faq-item.active .question-text {
  color: #56b4a0;
}

.question-icon {
  font-size: 24px;
  color: #d4af37;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  margin-left: 20px;
  line-height: 1;
}

.faq-item.active .question-icon {
  transform: rotate(45deg);
  color: #56b4a0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 25px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
  animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-cta {
  position: relative;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 70px;
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
  background: #102319;
  border: 1px solid rgba(212, 175, 55, 0.18);
  animation: fadeUp 0.9s ease both;
}

.faq-cta::before,
.faq-cta::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: rgba(212, 175, 55, 0.45);
  border-style: solid;
}
.faq-cta::before {
  top: 20px;
  left: 20px;
  border-width: 1px 0 0 1px;
}
.faq-cta::after {
  bottom: 20px;
  right: 20px;
  border-width: 0 1px 1px 0;
}

.glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 0%,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.star {
  display: block;
  margin: 0 auto 28px;
  font-size: 22px;
  letter-spacing: 8px;
  color: #d4af37;
  opacity: 0.8;
  animation: fadeUp 0.9s ease 0.1s both;
}

.faq-cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: #f5efe0;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-bottom: 18px;
  position: relative;
  animation: fadeUp 0.9s ease 0.15s both;
}

.faq-cta p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 239, 224, 0.6);
  letter-spacing: 0.3px;
  margin-bottom: 50px;
  position: relative;
  animation: fadeUp 0.9s ease 0.2s both;
}

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  margin: 0 auto 50px;
  animation: fadeUp 0.9s ease 0.25s both;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  animation: fadeUp 0.9s ease 0.3s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 36px;
  border-radius: 2px;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  cursor: pointer;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-btn-primary {
  background: #d4af37;
  color: #0a1610;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
  background: #e0bf55;
}
.cta-btn-primary:active {
  transform: translateY(-1px);
}

.cta-btn-secondary {
  background: transparent;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.55);
}
.cta-btn-secondary:hover {
  transform: translateY(-3px);
  border-color: #d4af37;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.12);
  background: rgba(212, 175, 55, 0.06);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .faq-cta {
    padding: 55px 30px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

footer {
  background: linear-gradient(135deg, #1f3d32, #0d2622);
  color: white;
  padding: 50px 60px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  margin-top: 0;
  animation: fadeInUp 0.8s ease-out;
}

.footer-links {
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 25px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-bottom {
  opacity: 0.85;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: white;
}

:root {
  --space-inline: clamp(18px, 4vw, 60px);
}

html {
  scroll-behavior: smooth;
}

header {
  padding: 12px var(--space-inline);
  gap: 16px;
}

.logo-img {
  height: 180px;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 90, 74, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #2d5a4a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  display: block;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .faq-grid {
    gap: 30px;
  }

  .faq-section {
    padding: 80px 40px;
  }

  .page-header {
    padding: 80px 40px;
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo-img {
    height: 40px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 60px 20px;
  }

  .page-header h1 {
    font-size: 36px !important;
  }

  .page-header p {
    font-size: 14px !important;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .faq-question {
    padding: 20px;
  }

  .question-text {
    font-size: 14px;
  }

  .faq-answer p {
    padding: 20px;
    font-size: 13px;
  }

  .faq-cta-wrap {
    margin-bottom: 40px !important;
  }

  .faq-cta {
    padding: 50px 24px !important;
    margin: 0 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 30px;
  }

  footer {
    padding: 30px 20px;
    font-size: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links a {
    margin: 0 12px;
  }
}

@media (max-width: 640px) {
  .header-right {
    justify-content: center;
  }

  .language-selector {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    border-radius: 12px;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: unset;
  }

  .page-header h1 {
    font-size: 28px !important;
  }

  .faq-question {
    padding: 16px;
  }

  .question-text {
    font-size: 13px;
  }

  .question-icon {
    font-size: 20px;
    margin-left: 12px;
  }

  .faq-answer p {
    padding: 16px;
    font-size: 12px;
  }

  .faq-cta {
    padding: 36px 20px !important;
  }

  .faq-cta h2 {
    font-size: 22px;
  }
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.social-icon--wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-icon--ig {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
