:root {
  --awy-dark: #101820;
  --awy-dark-secondary: #182129;
  --awy-yellow: #0D8FE8;
  --awy-yellow-hover: #147AD6;
  --awy-white: #FFFFFF;
  --awy-border: #DDE2E6;
  --awy-border-dark: rgba(255, 255, 255, 0.12);
  --awy-container: 1240px;
  --awy-radius: 6px;
  --awy-shadow-sm: 0 4px 12px rgba(16, 24, 32, 0.04);
  --awy-font: 'Inter', Arial, sans-serif;
}

.awy-container {
  max-width: var(--awy-container);
  margin: 0 auto;
  padding: 0 24px;
}

.awy-topbar {
  background-color: var(--awy-dark);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--awy-font);
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--awy-border-dark);
}

.awy-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.awy-topbar-left,
.awy-topbar-right {
  display: flex;
  align-items: center;
}

.awy-topbar-left {
  gap: 26px;
  flex-wrap: wrap;
}

.awy-topbar-right {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.awy-topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
  white-space: nowrap;
}

.awy-topbar-contact i {
  color: var(--awy-yellow);
  font-size: 12px;
}

.awy-topbar-contact--location {
  color: inherit;
}

.awy-topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--awy-white);
  font-size: 14px;
}

.awy-topbar-social:hover {
  color: var(--awy-yellow);
}

.awy-topbar a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.awy-topbar a:hover {
  color: var(--awy-yellow);
}

.awy-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--awy-white);
  border-bottom: 1px solid var(--awy-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.awy-header-scrolled {
  box-shadow: var(--awy-shadow-sm);
}

.awy-header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.awy-logo-box {
  flex: 0 0 auto;
}

.awy-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.awy-logo-mark {
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
}

.awy-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.awy-nav-link {
  position: relative;
  color: var(--awy-dark-secondary);
  font-family: var(--awy-font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.awy-nav-link:hover,
.awy-nav-link.active {
  color: var(--awy-yellow);
}

.awy-header-cta {
  display: flex;
  align-items: center;
}

.awy-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: var(--awy-radius);
  background-color: var(--awy-yellow);
  color: var(--awy-white);
  font-family: var(--awy-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.awy-btn-header:hover {
  background-color: var(--awy-yellow-hover);
  color: var(--awy-white);
  transform: translateY(-2px);
}

.awy-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.awy-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--awy-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.awy-footer {
  background-color: var(--awy-dark);
  color: #b2bdc6;
  padding: 80px 0 30px;
  border-top: 1px solid var(--awy-border-dark);
}

.awy-footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.awy-footer-title {
  color: var(--awy-white);
  font-family: var(--awy-font);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.awy-footer-desc,
.awy-footer-links a,
.awy-footer-contact-list li,
.awy-footer-bottom-inner {
  font-family: var(--awy-font);
  font-size: 13px;
  line-height: 1.6;
}

.awy-footer-links,
.awy-footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.awy-footer-links li {
  margin-bottom: 12px;
}

.awy-footer-links a,
.awy-footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.awy-footer-links a:hover,
.awy-footer-contact-list a:hover {
  color: var(--awy-yellow);
}

.awy-footer-contact-list li {
  margin-bottom: 16px;
}

.awy-footer-contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--awy-white);
}

.awy-footer-bottom {
  border-top: 1px solid var(--awy-border-dark);
  padding-top: 30px;
}

.awy-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.awy-mobile-actions {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-color: var(--awy-white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.awy-mob-act-whatsapp,
.awy-mob-act-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--awy-font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.awy-mob-act-whatsapp {
  background-color: #08111f;
  color: var(--awy-white);
}

.awy-mob-act-quote {
  background-color: var(--awy-yellow);
  color: var(--awy-dark);
}

.awy-mob-act-whatsapp svg,
.awy-mob-act-quote svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1099px) {
  .awy-topbar-inner {
    align-items: flex-start;
  }

  .awy-topbar-left {
    gap: 12px 18px;
  }

  .awy-footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .awy-nav {
    gap: 22px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 56px;
  }

  .awy-topbar {
    display: none;
  }

  .awy-header-inner {
    min-height: 80px;
  }

  .awy-logo-mark {
    height: 44px;
    max-width: 180px;
  }

  .awy-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    padding: 40px 24px;
    background-color: var(--awy-white);
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
  }

  .awy-nav.active {
    display: flex;
  }

  .awy-header-cta {
    display: none;
  }

  .awy-hamburger {
    display: flex;
  }

  .awy-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .awy-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .awy-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .awy-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .awy-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .awy-mobile-actions {
    display: flex;
  }
}
