

/* =========================================================
   ROOT COLORS
========================================================= */

:root {
  --lares-orange: #f28a00;
  --lares-orange-dark: #dc3210;
  --lares-orange-soft: #fff3e5;

  --lares-teal: #159db4;
  --lares-teal-light: #2ab8c8;
  --lares-teal-soft: #e8f8fa;

  --lares-blue: #0b5ca8;
  --lares-blue-light: #258fca;
  --lares-blue-soft: #eaf5fc;

  --lares-navy: #08083f;
  --lares-navy-light: #11115a;
  --lares-navy-soft: #181866;

  --lares-black: #111111;
  --lares-heading: #08083f;
  --lares-text: #6d6d78;
  --lares-text-light: #8a8a95;

  --lares-white: #ffffff;
  --lares-surface: #ffffff;
  --lares-surface-alt: #f8f8fb;
  --lares-border: #ececf2;

  --top-header-height: 48px;
  --main-header-height: 108px;
  --full-header-height: 156px;

  --container-width: 1650px;

  --header-shadow:
    0 12px 35px rgba(8, 8, 63, 0.12);

  --dropdown-shadow:
    0 22px 55px rgba(8, 8, 63, 0.18);

  --transition: 0.28s ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--full-header-height);
  overflow-x: hidden;
  color: var(--lares-text);
  background: var(--lares-white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.lares-container {
  width: min(
    var(--container-width),
    calc(100% - 140px)
  );
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   FIXED HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 9999;

  width: 100%;
}

.site-header.scrolled .main-header {
  box-shadow: var(--header-shadow);
}

/* =========================================================
   TOP HEADER
========================================================= */

.top-header {
  position: relative;

  height: var(--top-header-height);

  color: var(--lares-white);

  background:
    linear-gradient(
      90deg,
      var(--lares-orange-dark) 0%,
      var(--lares-orange) 48%,
      var(--lares-orange-dark) 100%
    );
}

.top-header::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.18);
}

.top-header-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.top-header-contact {
  min-width: 0;

  display: flex;
  align-items: center;

  gap: 34px;
}

.top-header-contact a {
  min-width: 0;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  color: var(--lares-white);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;

  white-space: nowrap;

  transition:
    opacity var(--transition),
    transform var(--transition);
}

.top-header-contact a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.top-header-contact i {
  color: var(--lares-white);
  font-size: 16px;
}

.top-header-socials {
  height: 100%;

  display: flex;
  align-items: center;

  padding-left: 18px;

  border-left:
    1px solid rgba(255, 255, 255, 0.2);
}

.top-header-socials a {
  width: 43px;
  height: 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--lares-white);

  font-size: 15px;

  transition:
    background-color var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.top-header-socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
  position: relative;

  height: var(--main-header-height);

  background: rgba(255, 255, 255, 0.98);

  border-bottom:
    1px solid rgba(8, 8, 63, 0.07);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transition:
    box-shadow var(--transition),
    background-color var(--transition);
}

.header-container {
  height: 100%;

  display: grid;

  grid-template-columns:
    330px
    minmax(0, 1fr)
    auto
    52px;

  align-items: center;

  gap: 28px;
}

/* =========================================================
   LOGO
========================================================= */

.brand-logo {
  min-width: 0;

  display: inline-flex;
  align-items: center;

  justify-self: start;
}

.brand-logo img {
  width: 240px;
  max-width: 100%;
  height: 72px;

  object-fit: contain;
  object-position: left center;

  transition:
    transform var(--transition);
}

.brand-logo:hover img {
  transform: scale(1.015);
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-navigation {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: clamp(22px, 2.1vw, 46px);
}

.desktop-nav-link {
  position: relative;

  min-height: var(--main-header-height);

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #72727b;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;

  transition:
    color var(--transition);
}

.desktop-nav-link:hover,
.desktop-nav-link.active {
  color: var(--lares-navy);
}

.desktop-nav-link::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 22px;

  width: 0;
  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--lares-orange),
      var(--lares-orange-dark)
    );

  transform: translateX(-50%);

  transition:
    width var(--transition);
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after {
  width: 100%;
}

.dropdown-chevron {
  font-size: 11px;

  transition:
    transform var(--transition);
}

/* =========================================================
   DESKTOP DROPDOWN WRAPPER
========================================================= */

.nav-dropdown {
  position: relative;

  height: 100%;

  display: flex;
  align-items: center;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron {
  transform: rotate(180deg);
}

/* =========================================================
   SERVICES AND JOBS DROPDOWN
========================================================= */
.simple-dropdown {
  position: absolute;
  top: calc(100% - 14px);
  left: 0;
  min-width: 375px;
  padding: 10px 0;

  border: 1px solid var(--lares-border);
  border-radius: 6px;

  background: var(--lares-white);
  box-shadow: var(--dropdown-shadow);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(15px);

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

/* .simple-dropdown::before {
  content: "";

  position: absolute;
  top: -10px;
  left: 30px;

  width: 16px;
  height: 16px;

  background: var(--lares-orange);

  transform: rotate(45deg);

  z-index: -1;
} */

.jobs-dropdown-menu {
  left: 50%;

  transform:
    translate(-50%, 15px);
}

.jobs-dropdown-menu::before {
  left: 50%;

  transform:
    translateX(-50%)
    rotate(45deg);
}

.nav-dropdown:hover
.simple-dropdown,
.nav-dropdown:focus-within
.simple-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

.nav-dropdown:hover
.jobs-dropdown-menu,
.nav-dropdown:focus-within
.jobs-dropdown-menu {
  transform:
    translate(-50%, 0);
}

.simple-dropdown-link {
  position: relative;

  min-height: 57px;

  display: flex;
  align-items: center;

  padding: 12px 30px 12px 34px;

  color: var(--lares-navy);

  border-bottom:
    1px solid #f0f0f4;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;

  transition:
    color var(--transition),
    background-color var(--transition),
    padding-left var(--transition);
}

.simple-dropdown-link:last-child {
  border-bottom: 0;
}

.simple-dropdown-link::before {
  content: "";

  position: absolute;
  left: 19px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--lares-teal);

  opacity: 0;

  transform: scale(0);

  transition:
    opacity var(--transition),
    transform var(--transition);
}

.simple-dropdown-link:hover {
  padding-left: 40px;

  color: var(--lares-orange-dark);

  background:
    linear-gradient(
      90deg,
      var(--lares-orange-soft),
      var(--lares-white)
    );
}

.simple-dropdown-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button,
.mobile-close-button,
.mobile-submenu-toggle {
  border: 0;
  cursor: pointer;
}

.mobile-menu-button {
  width: 48px;
  height: 48px;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 6px;

  padding: 0;

  border-radius: 8px;

  background: transparent;

  transition:
    background-color var(--transition);
}

.mobile-menu-button:hover {
  background: var(--lares-orange-soft);
}

.mobile-menu-button span {
  width: 25px;
  height: 2px;

  border-radius: 5px;

  background: var(--lares-navy);

  transition:
    transform var(--transition),
    opacity var(--transition),
    background-color var(--transition);
}

.mobile-menu-button:hover span {
  background: var(--lares-orange-dark);
}

.mobile-menu-button.active
span:nth-child(1) {
  transform:
    translateY(8px)
    rotate(45deg);
}

.mobile-menu-button.active
span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active
span:nth-child(3) {
  transform:
    translateY(-8px)
    rotate(-45deg);
}

/* =========================================================
   MOBILE MENU OVERLAY
========================================================= */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;

  z-index: 1500;

  background:
    rgba(5, 5, 38, 0.62);

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =========================================================
   MOBILE NAVIGATION DRAWER
========================================================= */

.mobile-navigation {
  position: fixed;

  top: 0;
  right: 0;

  z-index: 1510;

  width: min(420px, 92vw);
  height: 100dvh;

  display: flex;
  flex-direction: column;

  overflow-y: auto;

  background: var(--lares-white);

  box-shadow:
    -20px 0 60px rgba(5, 5, 38, 0.3);

  transform: translateX(105%);

  transition:
    transform 0.35s ease;
}

.mobile-navigation.open {
  transform: translateX(0);
}

/* =========================================================
   MOBILE NAVIGATION HEADER
========================================================= */

.mobile-navigation-header {
  min-height: 96px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  padding: 14px 22px;

  border-bottom:
    1px solid var(--lares-border);

  background:
    linear-gradient(
      90deg,
      var(--lares-white),
      var(--lares-blue-soft)
    );
}

.mobile-brand-logo {
  display: inline-flex;
  align-items: center;
}

.mobile-brand-logo img {
  width: 210px;
  height: 68px;

  object-fit: contain;
  object-position: left center;
}

.mobile-close-button {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;

  color: var(--lares-navy);

  background: var(--lares-orange-soft);

  font-size: 20px;

  transition:
    color var(--transition),
    background-color var(--transition),
    transform var(--transition);
}

.mobile-close-button:hover {
  color: var(--lares-white);
  background: var(--lares-orange-dark);

  transform: rotate(90deg);
}

/* =========================================================
   MOBILE NAVIGATION BODY
========================================================= */

.mobile-navigation-body {
  flex: 1;

  padding: 18px 22px;
}

.mobile-nav-link {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 14px;

  border-bottom:
    1px solid var(--lares-border);

  color: var(--lares-navy);

  font-size: 16px;
  font-weight: 700;

  transition:
    color var(--transition),
    padding-left var(--transition);
}

.mobile-nav-link i {
  color: var(--lares-teal);

  font-size: 11px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  padding-left: 5px;

  color: var(--lares-orange-dark);
}

/* =========================================================
   MOBILE DROPDOWN ROW
========================================================= */

.mobile-menu-row {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    50px;

  align-items: center;

  border-bottom:
    1px solid var(--lares-border);
}

.mobile-menu-row
.mobile-nav-link {
  border-bottom: 0;
}

.mobile-submenu-toggle {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  color: var(--lares-navy);

  background: var(--lares-teal-soft);

  transition:
    color var(--transition),
    background-color var(--transition);
}

.mobile-submenu-toggle:hover {
  color: var(--lares-white);
  background: var(--lares-teal);
}

.mobile-submenu-toggle i {
  transition:
    transform var(--transition);
}

.mobile-submenu-toggle.active i {
  transform: rotate(180deg);
}

/* =========================================================
   MOBILE SUBMENU
========================================================= */

.mobile-submenu-list {
  max-height: 0;

  overflow: hidden;

  padding-left: 10px;

  opacity: 0;

  transition:
    max-height 0.42s ease,
    opacity 0.28s ease,
    padding 0.28s ease;
}

.mobile-submenu-list.open {
  max-height: 700px;

  padding-top: 8px;
  padding-bottom: 14px;

  opacity: 1;
}

.mobile-submenu-link {
  min-height: 47px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 12px;

  padding: 9px 12px;

  border-bottom:
    1px solid #f2f2f5;

  color: var(--lares-text);

  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;

  transition:
    color var(--transition),
    background-color var(--transition),
    padding-left var(--transition);
}

.mobile-submenu-link i {
  color: var(--lares-blue);

  font-size: 10px;
}

.mobile-submenu-link:hover {
  padding-left: 17px;

  color: var(--lares-orange-dark);

  background: var(--lares-orange-soft);
}

/* =========================================================
   MOBILE NAVIGATION FOOTER
========================================================= */

.mobile-navigation-footer {
  display: grid;

  gap: 12px;

  padding: 25px 22px;

  color: var(--lares-white);

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(21, 157, 180, 0.35),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      var(--lares-navy),
      var(--lares-blue)
    );
}

.mobile-navigation-footer > a {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  color:
    rgba(255, 255, 255, 0.92);

  font-size: 14px;
  line-height: 1.5;

  overflow-wrap: anywhere;
}

.mobile-navigation-footer > a i {
  color: var(--lares-orange);
}

.mobile-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 11px;

  padding-top: 15px;
  margin-top: 5px;

  border-top:
    1px solid rgba(255, 255, 255, 0.16);
}

.mobile-social-links a {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, 0.16);

  border-radius: 50%;

  color: var(--lares-white);

  background:
    rgba(255, 255, 255, 0.08);

  transition:
    background-color var(--transition),
    transform var(--transition);
}

.mobile-social-links a:hover {
  background: var(--lares-orange);

  transform: translateY(-3px);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;

  overflow: hidden;

  margin-top: auto;
  padding-top: 70px;

  color: var(--lares-white);

  background:
    radial-gradient(
      circle at 5% 18%,
      rgba(21, 157, 180, 0.2),
      transparent 26%
    ),
    radial-gradient(
      circle at 95% 90%,
      rgba(242, 138, 0, 0.16),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #05052f 0%,
      var(--lares-navy) 48%,
      #0b3e70 100%
    );
}


/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.footer-main-grid {
  position: relative;

  z-index: 1;

  display: grid;
  grid-template-columns:
    1.3fr
    0.8fr
    1.1fr
    1fr;
  /* grid-template-columns:
    1.28fr
    0.72fr
    1.05fr
    0.72fr
    1.1fr; */

  gap: 55px;
  padding: 0 45px 54px;
/* 
  padding-bottom: 54px; */
}

.footer-main-grid > * {
  min-width: 0;
}

/* =========================================================
   FOOTER COMPANY COLUMN
========================================================= */

.footer-logo-box {
  width: 265px;
  min-height: 108px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 23px;
  padding: 12px;

  border:
    1px solid rgba(255, 255, 255, 0.18);

  border-radius: 8px;

  background: var(--lares-white);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22);

  transition:
    transform var(--transition);
}

.footer-logo-box:hover {
  transform: translateY(-3px);
}

.footer-logo {
  width: 238px;
  max-height: 84px;

  object-fit: contain;
}

.footer-description {
  max-width: 350px;

  margin: 0 0 23px;

  color:
    rgba(255, 255, 255, 0.76);

  font-size: 14px;
  line-height: 1.85;
}

/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-column h3 {
  position: relative;

  margin: 0 0 27px;
  padding-bottom: 13px;

  color: var(--lares-white);

  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.footer-column h3::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 45px;
  height: 3px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      var(--lares-orange),
      var(--lares-teal)
    );
}

/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links-list,
.footer-contact-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-links-list {
  display: grid;

  gap: 13px;
}

.footer-links-list a {
  position: relative;

  display: inline-flex;
  align-items: flex-start;

  color:
    rgba(255, 255, 255, 0.77);

  font-size: 16px;
  line-height: 1.55;

  overflow-wrap: anywhere;

  transition:
    color var(--transition),
    transform var(--transition),
    padding-left var(--transition);
}

.footer-links-list a::before {
  content: "";

  position: absolute;
  left: 0;
  top: 9px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--lares-orange);

  opacity: 0;

  transition:
    opacity var(--transition);
}

.footer-links-list a:hover {
  padding-left: 13px;

  color: var(--lares-white);

  transform: translateX(2px);
}

.footer-links-list a:hover::before {
  opacity: 1;
}

.footer-services-list {
  gap: 9px;
}

.footer-services-list a {
  font-size: 16px;
  line-height: 1.5;
}

/* =========================================================
   FOOTER SOCIAL LINKS
========================================================= */

.footer-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;
}

.footer-social-links a {
  width: 41px;
  height: 41px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255, 255, 255, 0.19);

  border-radius: 50%;

  color: var(--lares-white);

  background:
    rgba(255, 255, 255, 0.07);

  transition:
    color var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.footer-social-links a:nth-child(1):hover {
  background: var(--lares-black);
  border-color: var(--lares-black);
}

.footer-social-links a:nth-child(2):hover {
  background: var(--lares-blue);
  border-color: var(--lares-blue);
}

.footer-social-links a:nth-child(3):hover {
  background: var(--lares-orange-dark);
  border-color: var(--lares-orange-dark);
}

.footer-social-links a:nth-child(4):hover {
  background: var(--lares-teal);
  border-color: var(--lares-teal);
}

.footer-social-links a:hover {
  transform: translateY(-4px);
}

/* =========================================================
   FOOTER ADDRESS ICON
========================================================= */

.footer-address-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-address-icon {
  width: 30px;
  min-height: 30px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.footer-address-icon i {
  color: var(--lares-teal-light);
  font-size: 22px;
}

.footer-address {
  max-width: 270px;
  margin: 0;
  color: var(--lares-white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}
.footer-address-icon i {
  color: var(--lares-orange);
  font-size: 22px;
}

.footer-contact-list {
  display: grid;

  gap: 17px;
}

.footer-contact-list li {
  display: grid;

  grid-template-columns:
    30px
    minmax(0, 1fr);

  align-items: center;

  gap: 12px;
}

.footer-contact-list i {
  color: var(--lares-orange);

  font-size: 21px;

  text-align: center;
}

.footer-contact-list li:nth-child(2) i {
  /* color: var(--lares-teal-light); */
   color: var(--lares-orange);
}

.footer-contact-list a {
  color:
    rgba(255, 255, 255, 0.91);

  font-size: 16px;
  line-height: 1.55;

  overflow-wrap: anywhere;

  transition:
    color var(--transition);
}

.footer-contact-list a:hover {
  color: var(--lares-orange);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  position: relative;

  z-index: 1;

  min-height: 76px;

  border-top:
    1px solid rgba(255, 255, 255, 0.14);

  background:
    rgba(2, 2, 28, 0.18);
}

.footer-bottom-inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.footer-bottom p {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 22px;
}

.footer-bottom-links a {
  color:
    rgba(255, 255, 255, 0.68);

  font-size: 13px;

  transition:
    color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--lares-orange);
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-chat-button {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 1600;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon-ring {
  width: 58px;
  height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border:
    3px solid var(--lares-white);

  border-radius: 50%;

  color: var(--lares-white);

  background:
    linear-gradient(
      135deg,
      #25d366,
      #14ad50
    );

  font-size: 31px;

  box-shadow:
    0 14px 34px rgba(20, 173, 80, 0.38),
    0 0 0 7px rgba(37, 211, 102, 0.12);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-chat-button:hover
.whatsapp-icon-ring {
  transform:
    translateY(-4px)
    scale(1.04);

  box-shadow:
    0 17px 40px rgba(20, 173, 80, 0.48),
    0 0 0 10px rgba(37, 211, 102, 0.13);
}

/* =========================================================
   WHATSAPP TOOLTIP
========================================================= */

.floating-tooltip {
  position: absolute;

  right: 72px;
  top: 50%;

  min-width: max-content;

  padding: 9px 13px;

  border-radius: 7px;

  color: var(--lares-white);

  background: var(--lares-navy);

  font-size: 12px;
  font-weight: 700;

  box-shadow:
    0 10px 25px rgba(8, 8, 63, 0.22);

  opacity: 0;
  visibility: hidden;

  transform:
    translate(8px, -50%);

  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
}

.floating-tooltip::after {
  content: "";

  position: absolute;

  top: 50%;
  right: -5px;

  width: 10px;
  height: 10px;

  background: var(--lares-navy);

  transform:
    translateY(-50%)
    rotate(45deg);
}

.whatsapp-chat-button:hover
.floating-tooltip,
.whatsapp-chat-button:focus-visible
.floating-tooltip {
  opacity: 1;
  visibility: visible;

  transform:
    translate(0, -50%);
}

/* =========================================================
   UP AND DOWN SCROLL BUTTON
========================================================= */

.scroll-direction-button {
  position: fixed;

  right: 27px;
  bottom: 95px;

  z-index: 1590;

  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0;

  border-radius: 50%;

  color: var(--lares-white);

  background:
    linear-gradient(
      135deg,
      var(--lares-orange),
      var(--lares-orange-dark)
    );

  cursor: pointer;

  box-shadow:
    0 12px 28px rgba(220, 50, 16, 0.34);

  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.scroll-direction-button:hover {
  transform: translateY(-4px);

  box-shadow:
    0 16px 34px rgba(220, 50, 16, 0.42);
}

.scroll-direction-button i {
  font-size: 15px;
}

/* =========================================================
   LARGE LAPTOP RESPONSIVE
========================================================= */

@media (max-width: 1500px) {
  .lares-container {
    width: min(
      1320px,
      calc(100% - 50px)
    );
  }

  .header-container {
    grid-template-columns:
      270px
      minmax(0, 1fr)
      auto
      46px;

    gap: 20px;
  }

  .brand-logo img {
    width: 242px;
  }

  .desktop-navigation {
    gap: 24px;
  }

  .desktop-nav-link {
    font-size: 14px;
  }

  .footer-main-grid {
  grid-template-columns:
    1.25fr
    0.8fr
    1.1fr
    1fr;

  gap: 40px;
}
}

/* =========================================================
   SMALL LAPTOP RESPONSIVE
========================================================= */

@media (max-width: 1250px) {
  .header-container {
    grid-template-columns:
      235px
      minmax(0, 1fr)
      auto
      44px;

    gap: 16px;
  }

  .brand-logo img {
    width: 215px;
  }

  .desktop-navigation {
    gap: 18px;
  }

  .desktop-nav-link {
    font-size: 13px;
  }

  .simple-dropdown {
    min-width: 330px;
  }

  .footer-main-grid {
    gap: 24px;
  }
}

/* =========================================================
   TABLET AND MOBILE MENU
========================================================= */

@media (max-width: 1100px) {
  :root {
    --main-header-height: 92px;
    --full-header-height: 140px;
  }

  .lares-container {
    width: calc(100% - 34px);
  }

  .header-container {
    grid-template-columns:
      minmax(0, 1fr)
      auto
      auto;

    gap: 20px;
  }

  .header-login-btn {
    display: none;
  }

  .brand-logo img {
    width: 225px;
    height: 72px;
  }

  .desktop-navigation {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .footer-main-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 43px 34px;
  }

  .footer-company-column {
    grid-column: span 2;
  }
}

/* =========================================================
   TABLET FOOTER
========================================================= */

@media (max-width: 850px) {
  .footer-main-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .footer-company-column {
    grid-column: span 2;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {
  :root {
    --top-header-height: 42px;
    --main-header-height: 78px;
    --full-header-height: 120px;
  }

  .lares-container {
    width: calc(100% - 28px);
  }

  /* Top header */

  .top-header-inner {
    justify-content: center;
  }

  .top-header-contact {
    width: 100%;

    justify-content: space-between;

    gap: 12px;
  }

  .top-header-contact a {
    font-size: 12px;
  }

  .top-header-contact
  a:first-child span {
    display: none;
  }

  .top-header-socials {
    display: none;
  }

  /* Main header */

  .header-container {
    gap: 12px;
  }

  .brand-logo img {
    width: 182px;
    height: 60px;
  }

  .mobile-menu-button {
    width: 42px;
    height: 42px;
  }

  /* Mobile menu */

  .mobile-navigation {
    width: min(360px, 94vw);
  }

  .mobile-navigation-header {
    min-height: 84px;

    padding: 11px 17px;
  }

  .mobile-brand-logo img {
    width: 188px;
    height: 60px;
  }

  .mobile-navigation-body {
    padding: 15px 18px;
  }

  .mobile-nav-link {
    min-height: 56px;

    font-size: 15px;
  }

  .mobile-navigation-footer {
    padding: 22px 18px;
  }

  /* Footer */

  .site-footer {
    padding-top: 53px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;

    gap: 37px;

    padding-bottom: 39px;
  }

  .footer-company-column {
    grid-column: auto;
  }

  .footer-logo-box {
    width: 238px;
    min-height: 102px;
  }

  .footer-logo {
    width: 214px;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-address {
    max-width: 100%;
  }

  .footer-bottom {
    min-height: auto;
  }

  .footer-bottom-inner {
    min-height: auto;

    flex-direction: column;
    justify-content: center;

    gap: 12px;

    padding-top: 21px;
    padding-bottom: 21px;

    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;

    gap: 15px;
  }

  /* Floating buttons */

  .whatsapp-chat-button {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-icon-ring {
    width: 53px;
    height: 53px;

    font-size: 28px;
  }

  .floating-tooltip {
    display: none;
  }

  .scroll-direction-button {
    right: 18px;
    bottom: 79px;

    width: 44px;
    height: 44px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .lares-container {
    width: calc(100% - 24px);
  }

  .top-header-contact a {
    font-size: 11px;
  }

  .brand-logo img {
    width: 160px;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-navigation {
    width: 94vw;
  }

  .mobile-brand-logo img {
    width: 170px;
  }

  .footer-logo-box {
    width: 220px;
  }

  .footer-logo {
    width: 198px;
  }

  .footer-column h3 {
    font-size: 19px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .brand-logo img {
    width: 145px;
  }

  .top-header-contact {
    gap: 7px;
  }

  .top-header-contact a {
    font-size: 10px;
  }

  .mobile-navigation-header {
    padding-left: 13px;
    padding-right: 13px;
  }

  .mobile-navigation-body {
    padding-left: 14px;
    padding-right: 14px;
  }
}


/*======================================================
LOGIN BUTTON
======================================================*/

.header-login-btn{

    height:46px;

    padding:0 24px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    border:none;
    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--lares-orange),
        var(--lares-orange-dark)
    );

    color:#fff;

    font-size:15px;
    font-weight:700;

    cursor:pointer;

    transition:.35s ease;

}

.header-login-btn i{

    font-size:15px;

}

.header-login-btn:hover{

    background:linear-gradient(
        135deg,
        var(--lares-navy),
        var(--lares-blue)
    );

    transform:translateY(-2px);

    box-shadow:0 12px 25px rgba(8,8,63,.25);

}

/*======================================================
LOGIN OVERLAY
======================================================*/

.login-overlay{

    position:fixed;

    inset:0;

    background:rgba(5,5,35,.45);

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:999999;

}

.login-overlay.active{

    opacity:1;

    visibility:visible;

}

/*======================================================
LOGIN RIGHT PANEL
======================================================*/

.login-popup{

    width:430px;

    max-width:100%;

    height:100vh;

    background:#fff;

    overflow-y:auto;

    border-radius:0;

    padding:35px;

    box-shadow:-20px 0 50px rgba(0,0,0,.20);

    transform:translateX(100%);

    transition:transform .35s ease;

}

.login-overlay.active .login-popup{

    transform:translateX(0);

}

/*======================================================
TOP BAR
======================================================*/

.login-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;

    padding-bottom:18px;

    border-bottom:1px solid #ececec;

}

.login-top a{

    display:flex;

    align-items:center;

    gap:8px;

    color:var(--lares-blue);

    font-weight:700;

    text-decoration:none;

}

.login-top a:hover{

    color:var(--lares-orange-dark);

}

.login-close{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:var(--lares-orange);

    color:#fff;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.login-close:hover{

    background:var(--lares-navy);

    transform:rotate(90deg);

}

/*======================================================
TITLE
======================================================*/

.login-popup h2{

    margin:0;

    color:var(--lares-navy);

    font-size:30px;

    font-weight:800;

}

.login-popup p{

    margin:10px 0 28px;

    color:#777;

    line-height:1.6;

}

/*======================================================
FORM
======================================================*/

.login-group{

    margin-bottom:22px;

}

.login-group label{

    display:block;

    margin-bottom:8px;

    color:var(--lares-navy);

    font-size:15px;

    font-weight:700;

}

.login-group input,

.login-group select{

    width:100%;

    height:50px;

    padding:0 16px;

    border:1px solid #d9d9d9;

    border-radius:8px;

    background:#fff;

    color:#333;

    font-size:15px;

    transition:.3s;

}

.login-group input:focus,

.login-group select:focus{

    outline:none;

    border-color:var(--lares-orange);

    box-shadow:0 0 0 3px rgba(242,138,0,.15);

}

/*======================================================
SUBMIT BUTTON
======================================================*/

.login-submit{

    width:100%;

    height:52px;

    border:none;

    border-radius:8px;

    background:linear-gradient(
        135deg,
        var(--lares-orange),
        var(--lares-orange-dark)
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.login-submit:hover{

    background:linear-gradient(
        135deg,
        var(--lares-navy),
        var(--lares-blue)
    );

}

/*======================================================
MESSAGE
======================================================*/

#loginMessage{

    margin-top:18px;

    text-align:center;

    font-size:14px;

    font-weight:600;

    color:#dc3545;

}

/*======================================================
SCROLLBAR
======================================================*/

.login-popup::-webkit-scrollbar{

    width:8px;

}

.login-popup::-webkit-scrollbar-track{

    background:#f4f4f4;

}

.login-popup::-webkit-scrollbar-thumb{

    background:var(--lares-orange);

    border-radius:20px;

}

/*======================================================
MOBILE
======================================================*/

@media(max-width:768px){

.login-popup{

    width:100%;

}

}
.mobile-login-btn{

    width:100%;

    height:50px;

    margin-top:20px;

    border:none;

    border-radius:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    background:linear-gradient(
        135deg,
        var(--lares-orange),
        var(--lares-orange-dark)
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.mobile-login-btn:hover{

    background:linear-gradient(
        135deg,
        var(--lares-navy),
        var(--lares-blue)
    );

}
/* @media(max-width:1100px){

.header-container{

    display:grid;

    grid-template-columns:
    auto
    auto
    auto;

    align-items:center;

}

.desktop-navigation{

    display:flex;

}

.desktop-navigation a,
.nav-dropdown{

    display:none;

}

.header-login-btn{

    display:flex;

    margin-left:auto;

}

.mobile-menu-button{

    display:flex;

}

} */