@import "../whatsapp/index.css";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --g900: #0a2417;
  --g800: #0f3621;
  --g700: #165c35;
  --g600: #1e7345;
  --g500: #27924e;
  --g300: #6dc490;
  --g200: #a8deba;
  --g100: #d6f0e0;
  --g50: #eef8f2;
  --a500: #d4792a;
  --a400: #e8953e;
  --a100: #fdecd2;
  --n900: #0f1714;
  --n700: #2d3b33;
  --n500: #5c6b62;
  --n300: #b4beb8;
  --n100: #edf0ee;
  --n50: #f7f9f8;
  --white: #ffffff;
  --text-dark: #212529;
  --text-gray: #6b6b6b;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 30.62px;
  letter-spacing: 0.05em;
  text-align: left;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px;
}

header {
  margin-bottom: 30px;
}

.logo-dropdown {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  margin: 25px 0px 25px 25px;
  border: none;
  color: #06545b;
}

.logo-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}

.logo-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.logo-menu.open + .logo-arrow,
.logo-dropdown:has(.logo-menu.open) .logo-arrow {
  transform: rotate(180deg);
}

.logo-trigger:focus,
.logo-trigger:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.logo-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 6px;
  list-style: none;

  background: #ffffff;
  border-radius: 10px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 100;
}

.logo-menu.open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.logo-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.logo-menu li a:hover {
  background-color: #50ad8e7d;
  /* color: #ffffff; */
}

.logo-menu li.disabled {
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #9ca3af;
  cursor: default;
}

.nav-contact-btn {
  margin-right: 20px;
  background: var(--a400);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}


/*  FOOTER  */
.site-footer {
  background: linear-gradient(
    135deg,
    var(--g300) 0%,
    var(--g200) 55%,
    var(--g100) 100%
  );
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
}
.footer-col-title {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--text-dark);
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text-dark);
}
.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom p {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-dark);
}
.footer-bottom a {
  color: var(--text-dark);
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer {
    padding: 32px 20px;
    padding-bottom: 50px;
  }
}