:root {
  --width: 85%;
  --max-width: 1450px;

  --brand: #053D38;
  --accent: #F26800;
  --darked: #042220;
  --light: #a5cdab;
  --color-text: #6a6a6a;
  --color-slogan: #FFE4CC;
  --color-separator: #fff2e5;
  --color-beige-claro: #F5F0DC;

  --font-primary: 'Inter';
  --font-secondary: 'Moret';

  --border-radius: 25px;
  --hight-slider: 600px;
}

@font-face {
  font-family: 'Inter';
  src: url("../../font/Inter-Regular.woff2") format("woff2 supports variations"),
  url("../../font/Inter-Regular.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url("../../font/Inter-Bold.woff2") format("woff2 supports variations"),
  url("../../font/Inter-Bold.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary), sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #373737;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary), sans-serif;
  margin-bottom: 1rem;
  margin-top: 1rem;
  color: var(--darked);
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 1rem;
}

.py-1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--width);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.color-accent {
  color: var(--accent);
}

.color-slogan {
  color: var(--color-slogan);
}

.color-light {
  color: var(--light);
}

/* Card Utilitario */
.card-base {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px;
  height: 100%;
}

/* ./Card Utilitario */

/* BREADCRUMB */
.nav-breadcrumb {
  margin-top: 10px;
}

.breadcrumb {
  margin-top: 10px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.4rem;
  color: #666;
  font-size: 13px;
}

.breadcrumb__link {
  color: #7F7F7F;
  text-decoration: none;
  font-size: 13px;
}

.breadcrumb__link:hover {
  text-decoration: underline;
}

/* ./BREADCRUMB */
/* Mayor que los mobiles */
@media (width >= 767px) {
  .desk-hidden {
    display: none;
  }
}

/* ./Mayor que los mobiles */

@media (width >= 1024px) {
}
