:root {
  /* Colors */
  --color-primary: #c8da3c;
  --color-primary-dark: #5a5c4c;
  --color-primary-light: #bfc2a8;
  --color-gray-medium: #c3c3c3;
  --color-gray-light: #f6f7f2;
  --color-dark: #222222;
  --color-white: #ffffff;

  /* Font Family */
  --font-body: "Open Sans", sans-serif;
  --font-heading: "Poppins", sans-serif;

  /* Container */
  --container: 1280px;

  /* Border Radius */
  --border-radius: 4px;
  --border-radius-sm: 2px;
  --boder-radius-md: 6px;
  --border-radius-large: 8px;
  --border-radius-full: 9999px;

  /* Filter Drop Shadow */
  --filter-drop-shadow: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.15));
  --filter-drop-shadow-hover: drop-shadow(0 0px 10px rgba(0, 0, 0, 0.25));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-flow: column nowrap;
  min-height: 100dvh;
  position: relative;
}

main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

p {
  line-height: 1.5em !important;
}

button {
  border: none;
  background-color: transparent;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 44px;
  font-size: 14px;
  text-transform: uppercase;
  width: fit-content;
  gap: 8px;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: var(--border-radius-large);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-dark);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 218, 60, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
  padding: 14px 30px;
  border-radius: var(--border-radius-large);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 34, 34, 0.2);
}

.only-mobile {
  display: none;
}

.only-desktop {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .only-mobile {
    display: block;
  }
  .only-desktop {
    display: none;
  }
}

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

.breadcrumb {
  background-color: var(--color-gray-light);
  padding: 8px 0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list-item {
  color: var(--color-primary-dark);
  font-size: 12px;
  text-decoration: none;
}

.breadcrumb-list-item a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.breadcrumb-list-item a:hover {
  color: var(--color-dark);
  text-decoration: underline;
}

.breadcrumb-list-item.active {
  color: var(--color-dark);
  font-weight: 500;
}

.breadcrumb-list-item:not(:last-child)::after {
  content: ">";
  margin: 0 5px;
}

.float_whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: var(--filter-drop-shadow);
  z-index: 99;
  transform: scale(1);
  transition: all 0.3s ease-in;
  animation: pulse 2s infinite;
}

/* START Footer */
.footer {
  display: flex;
  flex-flow: column nowrap;
  background-color: var(--color-dark);
}

.footer .footer_wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.footer .divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-gray-medium);
  opacity: 0.2;
}

.footer .footer_content {
  padding: 72px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  justify-content: center;
  color: var(--color-white);
}

.footer .footer_content > .footer_about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer .footer_content > .footer_links h2 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer_content > .footer_about img {
  width: auto;
  max-width: 100%;
  height: 72px;
  object-fit: contain;
}

.footer .footer_content > .footer_about p {
  font-size: 14px;
  line-height: 1.5em;
}

.footer .footer_content > .footer_about a {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 600;
}

.footer .footer_content > .footer_links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer .footer_content > .footer_links .footer_links_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer .footer_content > .footer_links .footer_links_list > li a {
  color: var(--color-gray-medium);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .footer_content > .footer_links li a:hover {
  color: var(--color-white);
}

.footer .footer_copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-gray-medium);
  padding: 16px 0;
  font-size: 14px;
}

@media only screen and (max-width: 1024px) {
  .footer .footer_content {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* END Footer */

/* KEYFRAMES */
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }

  70% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(0.9);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes fadeIn {
  from {
    background-color: rgba(0, 0, 0, 0);
  }
  to {
    background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fadeOut {
  from {
    background-color: rgba(0, 0, 0, 0.8);
  }
  to {
    background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}
