@charset "UTF-8";
/*! ESTE CSS SE GENERA DESDE assets/scss/main.scss. NO EDITAR css/main.css DIRECTAMENTE. */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 100px;
}

a {
  color: #80cb00;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
a:hover {
  color: rgb(79.763546798, 126.5, 0);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  margin-bottom: 0.7rem;
  font-weight: 600;
  line-height: 1.2;
  color: #333333;
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 0.7rem;
}

body .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.7rem;
  width: 100%;
}
body .container--fluid {
  max-width: 100%;
}

.section {
  padding: 3rem 0;
}
.section--hero {
  padding: 6rem 0;
  background-color: #fff;
  color: #212529;
}
.section--gray {
  background-color: #f8f9fa;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.7rem;
}
.row--center {
  justify-content: center;
}
.row--between {
  justify-content: space-between;
}

.col {
  flex: 1;
  padding: 0 0.7rem;
  margin-bottom: 0.8em;
}
.col--1 {
  flex: 0 0 8.333%;
  max-width: 8.333%;
}
.col--2 {
  flex: 0 0 16.666%;
  max-width: 16.666%;
}
.col--3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col--4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}
.col--5 {
  flex: 0 0 41.666%;
  max-width: 41.666%;
}
.col--6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col--7 {
  flex: 0 0 58.333%;
  max-width: 58.333%;
}
.col--8 {
  flex: 0 0 66.666%;
  max-width: 66.666%;
}
.col--9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col--10 {
  flex: 0 0 83.333%;
  max-width: 83.333%;
}
.col--11 {
  flex: 0 0 91.666%;
  max-width: 91.666%;
}
.col--12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (max-width: 575px) {
  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.header {
  color: #212529;
  padding: 0.8em 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.25rem 0.8em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
}
.header__logo:hover {
  color: #80cb00;
}
.header__logo-image {
  height: 36px;
  width: auto;
  display: block;
}
.header__logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header__nav {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.header__link {
  color: #212529;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: all 0.15s ease-in-out;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
}
.header__link:hover {
  color: #80cb00;
}
.header__link--active {
  color: #80cb00;
  font-weight: 600;
}
.header__link--dropdown::after {
  content: "▾";
  font-size: 0.75rem;
}
.header__link--cta {
  background-color: #80cb00;
  color: #fff;
  padding: 0.5rem 0.8em;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.header__link--cta:hover {
  background-color: #fff;
  color: #80cb00;
  border: 1px solid #80cb00;
}
.header__item {
  position: relative;
  padding: 0.5rem 0;
}
.header__item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  min-width: 220px;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 10;
}
.header__dropdown-link {
  padding: 0.5rem 0.7rem;
  border-radius: 0.25rem;
  color: #212529;
  font-weight: 500;
  font-size: 0.875rem;
}
.header__dropdown-link:hover {
  background-color: rgba(128, 203, 0, 0.12);
  color: #80cb00;
}
.header__item:hover .header__dropdown, .header__item:focus-within .header__dropdown {
  display: flex;
}
.header__menu-toggle {
  display: none;
  background-color: rgba(128, 203, 0, 0.12);
  border: none;
  color: #212529;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.header__menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #212529;
  border-radius: 999px;
  transition: all 0.15s ease-in-out;
}
.header__menu-toggle--active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.header__menu-toggle--active span:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle--active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}
@media (max-width: 800px) {
  .header__nav {
    display: none;
  }
  .header__nav--active {
    display: flex;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 0.7rem 0.8em;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    gap: 0;
    z-index: 20;
  }
  .header__link {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 1rem;
  }
  .header__link--dropdown::after {
    display: none;
  }
  .header__link--cta {
    margin-top: 0.5rem;
    border-radius: 999px;
    padding: 0.5rem 0.8em;
    border-bottom: none;
    justify-content: center;
  }
  .header__item {
    width: 100%;
    padding: 0;
  }
  .header__dropdown {
    display: none !important;
  }
  .header__item::after {
    display: none;
  }
  .header__menu-toggle {
    display: inline-flex;
  }
}

.footer {
  background-color: #fff;
  color: #5f8c76;
  padding: 3rem 0 0.7rem;
  margin-top: 3rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.875rem;
  line-height: 1.625;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0.7rem;
}
.footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid #f3f4f6;
}
@media (max-width: 575px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 0.8em;
  }
}
.footer__brand {
  max-width: 360px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #1f2d26;
  margin-bottom: 0.7rem;
}
.footer__logo::before {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #80cb00, rgb(95.842364532, 152, 0));
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.7);
  display: inline-block;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8em;
}
@media (max-width: 575px) {
  .footer__links {
    grid-template-columns: 1fr;
  }
}
.footer__column h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #1f2d26;
  font-weight: 600;
}
.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer a {
  color: inherit;
  transition: all 0.15s ease-in-out;
}
.footer a:hover {
  color: #80cb00;
}
.footer__bottom {
  padding-top: 0.7rem;
  text-align: center;
  color: #5f8c76;
}

.btn {
  display: inline-block;
  padding: 0.5rem 0.8em;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn:hover {
  opacity: 0.9;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn {
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.btn:hover {
  opacity: 1;
}
.btn--primary {
  background-color: #80cb00;
  color: #fff;
  border-color: #80cb00;
}
.btn--primary:hover {
  background-color: #fff;
  color: #80cb00;
  border-color: #80cb00;
}
.btn--secondary {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}
.btn--secondary:hover {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.btn--success {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
}
.btn--success:hover {
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn--danger {
  background-color: #dc3545;
  color: #fff;
  border-color: #dc3545;
}
.btn--danger:hover {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn--outline {
  background-color: transparent;
  color: #80cb00;
  border-color: #80cb00;
}
.btn--outline:hover {
  background-color: #80cb00;
  color: #fff;
  border-color: #80cb00;
}
.btn--lg {
  padding: 0.7rem 2rem;
  font-size: 1.1rem;
}
.btn--sm {
  padding: 0.25rem 0.7rem;
  font-size: 0.875rem;
}
.btn--block {
  display: block;
  width: 100%;
}

/* .active\:scale-95:active {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
} */
.card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #f8f9fa;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  padding: 0.8em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  color: #343a40;
}
.card__text {
  color: #6c757d;
  margin-bottom: 0.7rem;
  flex: 1;
}
.card__footer {
  padding: 0.7rem 0.8em;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card--horizontal {
  flex-direction: row;
}
.card--horizontal .card__image {
  width: 40%;
  height: auto;
  min-height: 250px;
}
@media (max-width: 575px) {
  .card--horizontal {
    flex-direction: column;
  }
  .card--horizontal .card__image {
    width: 100%;
    height: 200px;
  }
}

.form__group {
  margin-bottom: 0.8em;
}
.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #343a40;
}
.form__input, .form__textarea, .form__select {
  width: 100%;
  padding: 0.5rem 0.7rem;
  font-size: 16px;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: #80cb00;
  box-shadow: 0 0 0 0.2rem rgba(128, 203, 0, 0.25);
}
.form__input::placeholder, .form__textarea::placeholder, .form__select::placeholder {
  color: #6c757d;
}
.form__input--error, .form__textarea--error, .form__select--error {
  border-color: #dc3545;
}
.form__input--error:focus, .form__textarea--error:focus, .form__select--error:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__error {
  display: block;
  margin-top: 0.25rem;
  color: #dc3545;
  font-size: 0.875rem;
}
.form__help {
  display: block;
  margin-top: 0.25rem;
  color: #6c757d;
  font-size: 0.875rem;
}
.form__checkbox, .form__radio {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.form__checkbox input, .form__radio input {
  margin-right: 0.5rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.form__checkbox label, .form__radio label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
}
.form__actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 2rem;
}
@media (max-width: 575px) {
  .form__actions {
    flex-direction: column;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 0.7rem 0.8em;
  border-radius: 0.25rem;
  background-color: #343a40;
  color: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  z-index: 9999;
  transform: translateX(400px);
  transition: transform 0.3s ease-in-out;
  max-width: 350px;
}
.notification--show {
  transform: translateX(0);
}
.notification--info {
  background-color: #17a2b8;
}
.notification--success {
  background-color: #28a745;
}
.notification--error {
  background-color: #dc3545;
}
.notification--warning {
  background-color: #ffc107;
  color: #343a40;
}

.section__title {
  font-size: 3rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.section__subtitle {
  color: #6c757d;
  font-size: 1.05rem;
  margin: 0;
}

.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}
.overlay--active {
  display: block;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  max-width: 500px;
  width: 90%;
  z-index: 1000;
  display: none;
}
.modal--active {
  display: block;
}
.modal__header {
  padding: 0.8em;
  border-bottom: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal__header h3 {
  margin: 0;
}
.modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6c757d;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.15s ease-in-out;
}
.modal__close:hover {
  background-color: #f8f9fa;
  color: #343a40;
}
.modal__body {
  padding: 0.8em;
}
.modal__footer {
  padding: 0.8em;
  border-top: 1px solid #dee2e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sombra-boton {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.125rem;
}
.badge--primary {
  background-color: #80cb00;
}
.badge--success {
  background-color: #28a745;
}
.badge--danger {
  background-color: #dc3545;
}
.badge--warning {
  background-color: #ffc107;
  color: #343a40;
}
.badge--info {
  background-color: #17a2b8;
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid #f8f9fa;
  border-top-color: #80cb00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner--sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}
.spinner--lg {
  width: 60px;
  height: 60px;
  border-width: 6px;
}

.alert {
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert--info {
  background-color: rgb(167, 233.4782608696, 244);
  border-color: rgb(121.6666666667, 222.3913043478, 238.3333333333);
  color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.alert--success {
  background-color: rgb(216.2753623188, 245.7246376812, 223);
  border-color: rgb(175.1304347826, 235.8695652174, 189);
  color: rgb(30.1449275362, 125.8550724638, 52);
}
.alert--warning {
  background-color: #fff4d3;
  border-color: rgb(255, 231.25, 160);
  color: rgb(58, 43.5, 0);
}
.alert--danger {
  background-color: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  border-color: rgb(242.5949367089, 183.4050632911, 189.0759493671);
  color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.cookies-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  padding: 24px 32px;
  max-width: 360px;
  font-family: "Inter", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies-banner .cookies-banner__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.cookies-banner .cookies-banner__icon {
  width: 24px;
  height: 24px;
  background: url('data:image/svg+xml;utf8,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="12" fill="%237ac943"/><path d="M7 12l3 3 7-7" stroke="white" stroke-width="2"/></svg>') no-repeat center/contain;
  display: inline-block;
}
.cookies-banner .cookies-banner__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.cookies-banner .cookies-banner__text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
}
.cookies-banner .cookies-banner__link {
  color: #7ac943;
  text-decoration: underline;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookies-banner .cookies-banner__link:hover {
  color: #5fae2e;
}
.cookies-banner .cookies-banner__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-start;
}
.cookies-banner .cookies-banner__btn {
  min-width: 120px;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookies-banner .cookies-banner__btn--accept {
  background: #7ac943;
  color: #fff;
}
.cookies-banner .cookies-banner__btn--accept:hover {
  background: #5fae2e;
}
.cookies-banner .cookies-banner__btn--reject {
  background: #f5f5f5;
  color: #444;
}
.cookies-banner .cookies-banner__btn--reject:hover {
  background: #e0e0e0;
}
.cookies-banner--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.18s, transform 0.18s;
}
.cookies-banner--visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.18s, transform 0.18s;
}

.contact-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
}
.contact-widget__fab {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #80cb00, #4f8f00);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  box-shadow: 0 14px 26px rgba(58, 99, 9, 0.3);
}
.contact-widget__fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(58, 99, 9, 0.36);
}
.contact-widget__panel {
  position: absolute;
  right: 0;
  bottom: 3.4rem;
  width: min(468px, 100vw - 1.5rem);
  background: #fff;
  border: 1px solid rgba(21, 43, 1, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(20, 39, 4, 0.18);
  padding: 1rem;
  opacity: 0;
  transform: translate3d(24px, 22px, 0) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.contact-widget--open .contact-widget__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}
.contact-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}
.contact-widget__header h3 {
  margin: 0;
  font-size: 1.2rem;
}
.contact-widget__close {
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eff5e8;
  color: #3c5f12;
  font-size: 1rem;
  font-weight: 700;
}
.contact-widget__intro {
  color: #5c6650;
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}
.contact-widget__form {
  display: grid;
  gap: 0.45rem;
}
.contact-widget__label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.2rem;
}
.contact-widget__input {
  width: 100%;
  border: 1px solid #ced9c1;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
}
.contact-widget__input:focus {
  outline: none;
  border-color: #80cb00;
  box-shadow: 0 0 0 3px rgba(128, 203, 0, 0.18);
}
.contact-widget__textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 640px) {
  .contact-widget {
    right: 0.7rem;
    bottom: 0.7rem;
  }
  .contact-widget__panel {
    right: 0;
    bottom: 3.2rem;
    width: min(94vw, 468px);
  }
}
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #80cb00;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(var(--about-columns, 4), minmax(0, 1fr));
  align-items: stretch;
  justify-items: stretch;
  grid-auto-rows: 1fr;
}
@media (max-width: 1200px) {
  .services-list {
    grid-template-columns: repeat(min(3, var(--about-columns, 4)), minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .services-list {
    grid-template-columns: repeat(min(2, var(--about-columns, 4)), minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}
.services-list__item {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  text-align: left;
  height: 100%;
}
.services-list__item--with-media {
  padding: 0.7rem;
  gap: 0.8em;
}
.services-list__media-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f8f9fa;
}
.services-list__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.services-list__item:hover .services-list__media {
  transform: scale(1.1);
}
.services-list__item--placeholder {
  background-color: rgba(128, 203, 0, 0.08);
  border-style: dashed;
  color: #6c757d;
}
.services-list__title {
  font-weight: 600;
  color: #212529;
  text-decoration: none;
  font-size: 1.25rem;
}
.services-list__subtitle {
  margin: -0.35rem 0 0;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.services-list__summary {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
  flex: 1 1 auto;
}
.services-list__cta {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #80cb00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.services-list__cta:hover {
  color: rgb(95.842364532, 152, 0);
}
.services-list__cta::after {
  content: "→";
  margin-left: 0.25rem;
}

.hero {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 500px;
  background: #10151a;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__slide--active {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 12, 18, 0.72) 0%, rgba(8, 12, 18, 0.45) 44%, rgba(8, 12, 18, 0.2) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 760px;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.hero__title {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 0.8em;
  color: #fff;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.625;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: 0.7rem;
}
.hero__dots {
  position: absolute;
  left: clamp(2rem, 4vw, 3.5rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  display: inline-flex;
  gap: 0.45rem;
  z-index: 2;
}
.hero__dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.hero__dot--active {
  background: #80cb00;
  border-color: #80cb00;
}
@media (max-width: 575px) {
  .hero {
    min-height: 440px;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero__media {
  border-radius: 1rem;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(120deg, rgba(128, 203, 0, 0.2), rgba(0, 0, 0, 0.1));
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  position: relative;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-services__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}
.home-services__title::before {
  content: "";
  width: 48px;
  height: 5px;
  border-radius: 999px;
  background: #80cb00;
  flex: 0 0 auto;
}

.services-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  color: #80cb00;
  background: rgba(128, 203, 0, 0.12);
  font-size: 1.6rem;
  line-height: 1;
}

.services-list__summary .iconos {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.services-list__summary .iconos img {
  max-height: 50px;
  height: 50px;
  width: auto;
}
.services-list__summary .iconos {
  padding-top: 0.8em;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.features__item {
  text-align: center;
  padding: 2rem;
}
.features__item-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #80cb00, rgb(160.157635468, 254, 0));
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
}
.features__item-title {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}
.features__item-description {
  color: #6c757d;
}

.why-ecometro__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .why-ecometro__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .why-ecometro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .why-ecometro__grid {
    grid-template-columns: 1fr;
  }
}
.why-ecometro__card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-ecometro__media-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
  background: #f8f9fa;
}
.why-ecometro__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.why-ecometro__card:hover .why-ecometro__media {
  transform: scale(1.1);
}
.why-ecometro__content {
  padding-top: 1.25rem;
  background: transparent;
}
.why-ecometro__title {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
}
.why-ecometro__text {
  margin: 0;
  color: #6c757d;
  line-height: 1.5;
}

.home-cta {
  padding-top: 0;
}
.home-cta__panel {
  background: #80cb00;
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .home-cta__panel {
    grid-template-columns: 1fr;
    gap: 0.8em;
  }
}
.home-cta__content {
  max-width: 760px;
}
.home-cta__title {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: clamp(2rem, 2.8vw, 2.2rem);
  line-height: 1.08;
  font-weight: 700;
  text-transform: none;
}
.home-cta__text {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 1.35vw, 1.5rem);
  line-height: 1.45;
  margin: 0;
}
.home-cta__button {
  justify-self: end;
  background: #f2f2f2;
  color: #1f2937;
  border-radius: 999px;
  padding: 1.15rem 3.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.home-cta__button:hover {
  color: #111827;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .home-cta__button {
    justify-self: start;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-page {
  background-color: #eeeeee;
}
.about-page h1, .about-page h2, .about-page h3 {
  text-transform: none;
}

.about-hero {
  background-color: transparent;
}
.about-hero__content {
  display: flex;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-hero__content {
    grid-template-columns: 1fr;
  }
}
.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
.about-hero__title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
}
.about-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
}
.about-hero__image {
  overflow: hidden;
  width: 450px;
  min-width: 450px;
  height: 350px;
  border-radius: 20px;
  border: 1px solid white;
}
.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-hero__image img:hover {
  transform: scale(1.1);
}

.about-mission__card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about-mission__title {
  margin-bottom: 0.5rem;
}
.about-mission__divider {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #80cb00;
  border-radius: 999px;
  margin: 0.4rem auto 1rem;
}
.about-mission__subtitle {
  margin: 0 auto 2rem;
  max-width: 620px;
  color: rgba(0, 0, 0, 0.65);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.about-value {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.about-value__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 203, 0, 0.15);
  color: #80cb00;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.about-value h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.about-value p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.about-history__title {
  text-align: center;
  margin-bottom: 2rem;
}
.about-history__text {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
  line-height: 1.625;
  font-size: 1.25rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}

.about-team__card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about-team .about-section__header {
  align-items: center;
  text-align: center;
}

.about-section {
  scroll-margin-top: 110px;
}
.about-section__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.about-section__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-section__text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: #212529;
}
.about-section__text p {
  margin: 0;
}
.about-section__cards {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(var(--about-columns, 4), minmax(0, 1fr));
  justify-items: start;
}
.about-section__cards > * {
  width: 100%;
}
@media (max-width: 1200px) {
  .about-section__cards {
    grid-template-columns: repeat(min(3, var(--about-columns, 4)), minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .about-section__cards {
    grid-template-columns: repeat(min(2, var(--about-columns, 4)), minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .about-section__cards {
    grid-template-columns: 1fr;
  }
}

.about-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.8em;
  /* border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: $box-shadow-sm; */
  display: grid;
  gap: 0.5rem;
  text-align: center;
}
.about-card--with-media {
  padding: 0;
  overflow: hidden;
}
.about-card__content {
  padding: 0.8em;
  display: grid;
  gap: 0.5rem;
  text-align: center;
}
.about-card__media-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 20px;
}
.about-card__title {
  font-size: 1.1rem;
  margin: 0;
}
.about-card__title-link {
  color: inherit;
  text-decoration: none;
}
.about-card__title-link:hover {
  color: #80cb00;
}
.about-card__subtitle {
  color: #80cb00;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}
.about-card__text {
  color: #6c757d;
  margin: 0;
}
.about-card__body {
  /* No estoy muy seguro yo de esto */
  display: none;
  color: #212529;
  margin: 0;
  text-align: left;
}
.about-card__body h2, .about-card__body h3 {
  margin: 0.8em 0 0.5rem;
  color: #212529;
}
.about-card__body h2 {
  font-size: 1.4rem;
}
.about-card__body h3 {
  font-size: 1.2rem;
}
.about-card__body p {
  margin: 0.5rem 0;
  line-height: 1.6;
}
.about-card__body strong {
  font-weight: 700;
  color: #212529;
}
.about-card__body a {
  color: #80cb00;
  text-decoration: underline;
}
.about-card__body a:hover {
  color: rgb(95.842364532, 152, 0);
}
.about-card__body ul, .about-card__body ol {
  margin: 0.5rem 0;
  padding-left: 2rem;
  list-style: initial;
}
.about-card__body ol {
  list-style: decimal;
}
.about-card__body li {
  margin: 0.25rem 0;
  line-height: 1.6;
}
.about-card__body blockquote {
  margin: 0.7rem 0;
  padding: 0.7rem;
  border-left: 4px solid #80cb00;
  background: rgba(128, 203, 0, 0.05);
  font-style: italic;
}
.about-card__body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.25rem;
  margin: 0.7rem 0;
}
.about-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.4s ease;
}
.about-card:hover .about-card__media {
  transform: scale(1.1);
}
.about-card--placeholder {
  background-color: rgba(128, 203, 0, 0.08);
  border-style: dashed;
}
.about-card--expanded .about-card__body {
  display: block;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.about-list li::before {
  content: "✓";
  color: #80cb00;
  margin-right: 0.5rem;
}

.about-steps {
  padding-left: 0.8em;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.about-steps li {
  color: #6c757d;
}

.about-contact {
  display: grid;
  gap: 0.7rem;
}
.about-contact a {
  color: #212529;
  font-weight: 600;
}

.about-contact-banner {
  position: relative;
  background: #fff;
  border: 2px solid #80cb00;
  border-radius: 1.6rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}
.about-contact-banner__shape {
  position: absolute;
  left: -1.4rem;
  bottom: -1.2rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(128, 203, 0, 0.08);
  pointer-events: none;
}
.about-contact-banner__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.about-contact-banner__content h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: #1f2937;
  font-weight: 700;
  text-transform: none;
}
.about-contact-banner__content p {
  margin: 0;
  color: #1f2937;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.45;
  max-width: 580px;
}
.about-contact-banner__actions {
  position: relative;
  z-index: 1;
  justify-self: end;
}
.about-contact-banner__button {
  border: 0;
  border-radius: 999px;
  background: #80cb00;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  min-height: 68px;
  min-width: 230px;
  padding: 0.9rem 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-contact-banner__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}

@media (max-width: 600px) {
  .about-hero {
    background-color: transparent;
  }
  .about-hero__content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 600px) and (max-width: 900px) {
  .about-hero__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .about-hero__text {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
  }
  .about-hero__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin: 0;
  }
  .about-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.7);
  }
  .about-hero__image {
    overflow: hidden;
    width: 350px;
    min-width: 350px;
    height: 350px;
    border-radius: 20px;
    border: 1px solid white;
  }
  .about-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .about-hero__image img:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 600px) and (max-width: 900px) {
  .about-contact-banner {
    grid-template-columns: 1fr;
  }
  .about-contact-banner__actions {
    justify-self: start;
  }
  .about-contact-banner__button {
    min-width: 210px;
    min-height: 60px;
  }
}
.courses-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.courses-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.courses-filter {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
}
.courses-filter:hover {
  border-color: rgba(0, 0, 0, 0.18);
}
.courses-filter--active {
  background: #80cb00;
  color: #fff;
  border-color: #80cb00;
  box-shadow: 0 10px 18px rgba(128, 203, 0, 0.25);
}

.courses-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  min-width: 240px;
}

.courses-search__icon {
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.9rem;
}

.courses-search input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  width: 100%;
  color: #212529;
  padding: 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.course-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.15s ease-in-out;
}
.course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}
.course-card__image {
  height: 180px;
  background: #f8f9fa;
  overflow: hidden;
}
.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.course-card__image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 600;
}
.course-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.course-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.course-card__category {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
}
.course-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.5);
}
.course-card__status--abierto {
  background: rgba(128, 203, 0, 0.18);
  color: #1b2d1f;
}
.course-card__status--cerrado {
  background: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.5);
}
.course-card__title {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #1b2d1f;
}
.course-card__summary {
  margin: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}
.course-card__cta {
  margin-top: auto;
  font-weight: 600;
  color: #80cb00;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.course-card:hover .course-card__image img {
  transform: scale(1.06);
}

.courses-empty {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.boton-info {
  color: #80cb00;
  border-color: #80cb00;
}

.listo {
  display: flex;
  justify-content: center;
}

.contenedor-sostenibilidad {
  background-color: #046a38;
}
.contenedor-sostenibilidad h2 {
  text-transform: none;
  color: #fff;
}
.contenedor-sostenibilidad button {
  background-color: #80cb00;
}

.alumnos {
  background-color: rgba(4, 106, 56, 0.05);
}
.alumnos .numeros {
  color: #046a38;
}

.cursos footer {
  margin-top: 0px;
}

@media (max-width: 768px) {
  .courses-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .courses-search {
    width: 100%;
  }
}
.tools-page h2 {
  text-transform: none;
}

.tools-hero {
  background: transparent;
  padding-bottom: 1.5rem;
}
.tools-hero__subtitle {
  color: rgba(0, 0, 0, 0.65);
  max-width: 720px;
}

.tools-tabs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.tools-tab {
  color: rgba(0, 0, 0, 0.45);
}
.tools-tab--active {
  color: #1b2d1f;
  position: relative;
}
.tools-tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.9rem;
  width: 32px;
  height: 2px;
  background: #80cb00;
}

.tools-section {
  margin-bottom: 3rem;
}

.tools-message {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.tool-card__image {
  height: 210px;
  background: #f8f9fa;
  overflow: hidden;
}
.tool-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tool-card__image-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 600;
}
.tool-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.tool-card__body h3 {
  margin: 0;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.tool-card__body p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}
.tool-card__summary {
  color: rgba(0, 0, 0, 0.65);
}
.tool-card__summary p,
.tool-card__summary ul,
.tool-card__summary ol {
  margin: 0 0 0.5rem;
}
.tool-card__summary p:last-child,
.tool-card__summary ul:last-child,
.tool-card__summary ol:last-child {
  margin-bottom: 0;
}
.tool-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tool-card__status {
  font-size: 0.85rem;
  font-weight: 600;
}
.tool-card__status--available {
  color: #80cb00;
}
.tool-card__status--pending {
  color: rgba(0, 0, 0, 0.45);
}
.tool-card__cta {
  background: #80cb00;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.tool-card:hover .tool-card__image img {
  transform: scale(1.1);
}

.tools-stats {
  background: #0d2218;
  color: #fff;
  border-radius: 1.5rem;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.tools-stat {
  text-align: left;
}
.tools-stat__value {
  display: block;
  font-size: 3rem;
  color: #80cb00;
  font-weight: 700;
}
.tools-stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.tools-excellence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}
.tools-excellence__info h2 {
  margin-bottom: 1.5rem;
}
.tools-excellence__info, .tools-excellence__cta {
  height: 100%;
}
.tools-excellence__cta {
  background: #fff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.tools-excellence__cta h3 {
  margin-top: 0;
}
.tools-excellence__cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.tools-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.tools-feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(128, 203, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #80cb00;
}

.consulting-page {
  background: #f3f2ee;
  color: #1f1f1f;
}
.consulting-page h4 {
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: #80cb00;
  text-decoration-color: #80cb00;
  color: rgb(51, 51, 51, var(--tw-text-opacity, 1));
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75rem;
  text-decoration-line: underline;
}
.consulting-page footer {
  margin-top: 0px;
}

.background-verde {
  background-color: #80cb00;
}

h1 {
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  font-weight: 700;
}

.consulting-hero {
  background: linear-gradient(120deg, #f7f6f2, #efefea);
  position: relative;
  overflow: hidden;
}
.consulting-hero::before, .consulting-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(0px);
  pointer-events: none;
}
.consulting-hero::after {
  width: 220px;
  height: 220px;
  background: rgba(0, 0, 0, 0.06);
  bottom: -120px;
  left: 8%;
}

.consulting-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .consulting-hero__grid {
    grid-template-columns: 1fr;
  }
}

.consulting-hero__media {
  border-radius: 1.4rem;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.consulting-hero__slider {
  position: relative;
  height: 320px;
  border-radius: 1.4rem;
  overflow: hidden;
}

.consulting-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.consulting-hero__slide.active {
  opacity: 1;
}
.consulting-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.4rem;
}

.consulting-hero__image {
  height: 320px;
  border-radius: 1rem;
  background: linear-gradient(135deg, #3b3f45, #6d7076 55%, #a5a8ad 100%);
  position: relative;
  overflow: hidden;
}
.consulting-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 60%);
}

.consulting-hero__badge {
  position: absolute;
  right: 1.5rem;
  bottom: -1.2rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.consulting-hero__badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #80cb00;
}

.consulting-hero__content {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.12s forwards;
}

.consulting-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.7rem;
}

.consulting-hero__title {
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  margin-bottom: 0.7rem;
  font-weight: bold;
  line-height: 1;
}

.consulting-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 2rem;
}

.consulting-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.consulting-highlight {
  color: #80cb00;
}

.consulting-section {
  position: relative;
}

.consulting-section--light {
  background: #f7f6f2;
}

.consulting-section__header {
  margin-bottom: 3rem;
}

.consulting-section__header--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.consulting-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.5rem;
}

.consulting-section__title {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 0.7rem;
}

.consulting-title {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.consulting-title h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.consulting-title__line {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: #80cb00;
}

.consulting-section__text {
  color: rgba(0, 0, 0, 0.65);
  font-size: 1rem;
}

.consulting-subtitle {
  margin-top: 0.8em;
  margin-bottom: 0.7rem;
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0);
  line-height: 1.625;
}

.consulting-specialties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.consulting-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 0.8em;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards;
}
.consulting-card:nth-child(2) {
  animation-delay: 0.1s;
}
.consulting-card:nth-child(3) {
  animation-delay: 0.2s;
}

.consulting-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  color: #80cb00;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.consulting-card__title {
  font-size: 1.25rem;
  margin: 0;
}

.consulting-card__title-link {
  color: inherit;
  text-decoration: none;
}
.consulting-card__title-link:hover {
  color: #80cb00;
}

.consulting-card__text {
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
}

.consulting-card__link {
  margin-top: auto;
  font-weight: 600;
  color: #80cb00;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.consulting-card__link-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.consulting-acv {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .consulting-acv {
    grid-template-columns: 1fr;
  }
}

.consulting-acv__visual {
  display: flex;
  justify-content: center;
}

.acv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  background: #fff;
  padding: 0.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  width: min(460px, 100%);
}

.acv-tile {
  position: relative;
  background: #eceeea;
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
  min-height: 180px;
  transition: background 0.4s ease;
}
.acv-tile:hover {
  background: #e4e7e2;
}

.acv-tile__content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.acv-tile__content--producto,
.acv-tile__content--fin {
  flex-direction: row-reverse;
  text-align: right;
}

.acv-tile__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 92px;
  flex-shrink: 0;
}

.acv-icon {
  width: 44px;
  height: 44px;
  color: #5b5f63;
}

.acv-tile__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #303336;
  margin: 0;
  text-align: center;
}

.acv-tile__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.acv-tile__meta--right {
  align-items: flex-end;
  text-align: right;
}

.acv-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #80cb00;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.acv-tag--small {
  font-size: 0.6rem;
  padding: 0.15rem 0.5rem;
}

.acv-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.2rem;
  color: #5b5f63;
  font-size: 0.72rem;
}

.acv-list--right {
  text-align: right;
}

.acv-list--center {
  text-align: center;
}

.acv-list__accent {
  color: #5a8c22;
  font-weight: 600;
}

.acv-stage {
  margin-top: 0.4rem;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
}

.acv-arc {
  position: absolute;
  width: 160%;
  height: 160%;
  border-radius: 50%;
  border: 1px solid rgba(128, 203, 0, 0.1);
  pointer-events: none;
}

.acv-arc--tl {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.acv-arc--tr {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.acv-arc--bl {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.acv-arc--br {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.acv-arrow {
  position: absolute;
  color: #80cb00;
  font-size: 1.6rem;
}

.acv-arrow--right {
  top: 0.8rem;
  right: 0.8rem;
}

.acv-arrow--down {
  right: 0.8rem;
  bottom: 0.8rem;
  transform: rotate(90deg);
}

.acv-arrow--up {
  left: 0.8rem;
  top: 0.8rem;
  transform: rotate(-90deg);
}

.acv-arrow--left {
  left: 0.8rem;
  bottom: 0.8rem;
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .acv-grid {
    width: 100%;
  }
  .acv-tile {
    min-height: 160px;
  }
  .acv-tile__icon {
    width: 70px;
  }
  .acv-icon {
    width: 36px;
    height: 36px;
  }
}
.consulting-benefits {
  display: grid;
  gap: 0.8em;
  margin-top: 2rem;
}
.consulting-benefits li {
  position: relative;
  padding-left: 2rem;
  color: rgba(0, 0, 0, 0.65);
}
.consulting-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(128, 203, 0, 0.2);
  color: #80cb00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.consulting-benefits--icons {
  margin-top: 0.7rem;
}
.consulting-benefits--icons li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  padding-left: 0;
  align-items: flex-start;
}
.consulting-benefits--icons li::before {
  content: none;
}

.consulting-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(128, 203, 0, 0.2);
  color: #80cb00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.consulting-certifications {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.consulting-certifications__logos {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.consulting-certifications__list {
  display: grid;
  gap: 2rem;
}

.consulting-check {
  background: #fff;
  border-radius: 1rem;
  padding: 0.8em 0.8em;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.consulting-check h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.consulting-check p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.consulting-check__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(128, 203, 0, 0.18);
  color: #80cb00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.consulting-process {
  background: #f7f6f2;
}

.consulting-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8em;
}

.consulting-step {
  background: #fff;
  border-radius: 1.2rem;
  padding: 0.8em 0.8em;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}
.consulting-step h3 {
  margin: 0.7rem 0 0.5rem;
  font-size: 1.1rem;
}
.consulting-step p {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
}

.consulting-step__number {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #80cb00;
}

.consulting-cta {
  color: #fff;
}
.consulting-cta p {
  color: rgba(255, 255, 255, 0.75);
}
.consulting-cta .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.consulting-cta .btn--outline:hover {
  background: #fff;
  color: #1c1f1b;
  border-color: #fff;
}

.consulting-clients {
  background: #fff;
}

.clients-carousel {
  overflow: hidden;
  padding: 2rem 0;
}

.clients-carousel__track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  width: max-content;
}

.clients-carousel__track.is-ready {
  animation: clientsMarquee 130s linear infinite;
}

.clients-carousel:hover .clients-carousel__track.is-ready {
  animation-play-state: paused;
}

.clients-carousel__item {
  flex: 0 0 auto;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-carousel__img {
  height: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.clients-carousel__item:hover .clients-carousel__img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes clientsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.consulting-cta__content {
  background: linear-gradient(120deg, rgba(128, 203, 0, 0.18), rgba(255, 255, 255, 0.04));
  background: #1c1f1b;
  border-radius: 1.5rem;
  padding: 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 2rem;
  align-items: center;
}
.consulting-cta__content h2 {
  color: #fff;
  font-size: 2rem;
  padding-bottom: 0.8em;
  font-weight: 700;
  text-transform: none;
}
@media (max-width: 900px) {
  .consulting-cta__content {
    grid-template-columns: 1fr;
  }
}

.consulting-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .consulting-cta__actions {
    justify-content: flex-start;
  }
}

.consulting-logos {
  margin-top: 0;
}

.consulting-logos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.8em;
  align-items: center;
  margin-top: 2rem;
}

.consulting-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  text-align: center;
}

.consulting-logo__img {
  height: 100%;
  max-height: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

.consulting-logo:hover .consulting-logo__img {
  filter: grayscale(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .consulting-hero__media,
  .consulting-hero__content,
  .consulting-card {
    animation: none;
    opacity: 1;
  }
  .consulting-hero__slide {
    transition: none;
  }
}
@media (max-width: 900px) {
  .consulting-hero__slider {
    height: 280px;
  }
}
@media (max-width: 575px) {
  .consulting-hero__slider {
    height: 220px;
  }
}
.blog-page .section--blog .services-list {
  margin-top: 2rem;
}
.blog-page .section--blog .services-list__item--blog .services-list__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.blog-page .section--blog .services-list__item--blog .services-list__title-link,
.blog-page .section--blog .services-list__item--blog .services-list__title-text {
  flex: 1 1 auto;
  min-width: 0;
}
.blog-page .section--blog .services-list__item--blog .services-list__date {
  flex: 0 0 auto;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.blog-article-page .section--blog-article .blog-article {
  width: min(100%, 960px);
  margin: 0 auto;
}
.blog-article-page .section--blog-article .blog-article__back {
  display: inline-block;
  margin-bottom: 0.8em;
  color: #6c757d;
  text-decoration: none;
  font-weight: 600;
}
.blog-article-page .section--blog-article .blog-article__back:hover {
  color: #80cb00;
}
.blog-article-page .section--blog-article .blog-article__header {
  margin-bottom: 0.8em;
}
.blog-article-page .section--blog-article .blog-article__title {
  margin-bottom: 0.5rem;
}
.blog-article-page .section--blog-article .blog-article__subtitle {
  margin-bottom: 0;
}
.blog-article-page .section--blog-article .blog-article__media {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.blog-article-page .section--blog-article .blog-article__media img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-article-page .section--blog-article .blog-article__content {
  color: #212529;
  line-height: 1.7;
  width: min(100%, 860px);
  margin: 0 auto;
}
.blog-article-page .section--blog-article .blog-article__content h2,
.blog-article-page .section--blog-article .blog-article__content h3,
.blog-article-page .section--blog-article .blog-article__content h4 {
  margin-top: 0.8em;
  margin-bottom: 0.5rem;
}
.blog-article-page .section--blog-article .blog-article__content p,
.blog-article-page .section--blog-article .blog-article__content ul,
.blog-article-page .section--blog-article .blog-article__content ol,
.blog-article-page .section--blog-article .blog-article__content blockquote {
  margin-bottom: 0.7rem;
}
.blog-article-page .section--blog-article .blog-article__content ul,
.blog-article-page .section--blog-article .blog-article__content ol {
  padding-left: 1.25rem;
}
.blog-article-page .section--blog-article .blog-article__content a {
  color: #80cb00;
}
.blog-article-page .section--blog-article .blog-article__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#paidReports .paid-reports-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
#paidReports .paid-report-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
#paidReports .paid-report-item:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}
#paidReports .paid-report-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
#paidReports .paid-report-title {
  margin: 0;
  color: #1f2a37;
  font-size: 1.1rem;
  line-height: 1.25;
}
#paidReports .paid-report-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#paidReports .paid-report-meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.97rem;
  color: rgba(0, 0, 0, 0.72);
}
#paidReports .paid-report-meta-label {
  color: rgba(0, 0, 0, 0.58);
}
#paidReports .paid-report-actions {
  flex: 0 0 auto;
}
@media (max-width: 575px) {
  #paidReports .paid-report-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }
  #paidReports .paid-report-actions {
    width: 100%;
  }
}

.reports-page {
  background: linear-gradient(180deg, #f6f7f4 0%, #f1f2ef 100%);
}
.reports-page__header {
  max-width: 980px;
  margin-bottom: 2rem;
}
.reports-page__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 0.5rem;
}
.reports-page__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}
.reports-page__subtitle {
  margin: 0;
  max-width: 76ch;
  color: rgba(0, 0, 0, 0.66);
  font-size: 1.05rem;
}

.reports-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 0 0.7rem;
  margin-bottom: 0.8em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.reports-nav__item {
  border: 0;
  background: transparent;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.58);
  font-weight: 700;
  white-space: nowrap;
}
.reports-nav__item.is-active {
  background: rgba(128, 203, 0, 0.14);
  color: #1f2937;
}

.report-panel {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
  padding: clamp(1.2rem, 2.4vw, 2.4rem);
}
.report-panel h2 {
  margin: 0 0 0.7rem;
  color: black;
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  font-family: "Inter", sans-serif;
  text-transform: none;
}
.report-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #80cb00;
}
.report-panel h4 {
  margin: 0 0 0;
  font-size: 1rem;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  color: black;
}
.report-panel p {
  color: rgba(0, 0, 0, 0.7);
}
.report-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}
.report-panel ul li {
  color: rgba(0, 0, 0, 0.7);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.7rem;
}
@media (max-width: 1000px) {
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .report-grid {
    grid-template-columns: 1fr;
  }
}

.report-card {
  background: #f8f9f4;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-top: 2rem;
}

.legal-policy__container {
  max-width: 980px;
}
.legal-policy__header {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.legal-policy__header p:last-child {
  margin-bottom: 0;
}

.legal-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.legal-card h2 {
  margin-bottom: 0.8rem;
}
.legal-card p,
.legal-card ul {
  margin-bottom: 0.8rem;
}
.legal-card ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.legal-table-wrapper {
  overflow-x: auto;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #e7eaee;
  vertical-align: top;
  font-size: 0.95rem;
}
.legal-table th {
  background: #f6f8f9;
  font-weight: 700;
  color: #1f2a37;
}

.error-page {
  background: radial-gradient(circle at 10% 20%, rgba(128, 203, 0, 0.12), transparent 40%), radial-gradient(circle at 85% 10%, rgba(0, 128, 96, 0.12), transparent 35%), linear-gradient(180deg, #f7fceb 0%, #ffffff 45%);
}

.error404 {
  min-height: calc(100vh - 220px);
  padding: 3rem 1rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.error404__scene {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error404__planet {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: linear-gradient(180deg, #00b700 0% 18%, #d6dbe0 18% 21%, #3fc100 21% 38%, #d6dbe0 38% 41%, #7dcd00 41% 58%, #d6dbe0 58% 61%, #b9da00 61% 78%, #d6dbe0 78% 81%, #f2e600 81% 100%);
  box-shadow: 0 18px 42px rgba(53, 92, 9, 0.22);
}
.error404__orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 2px dashed rgba(56, 96, 14, 0.28);
  animation: spin404 24s linear infinite;
}
.error404__number {
  position: absolute;
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(36, 66, 9, 0.82);
  text-shadow: 0 6px 18px rgba(82, 128, 17, 0.25);
}
.error404__leaf {
  position: absolute;
  width: 56px;
  height: 32px;
  background: linear-gradient(140deg, #8fd12c, #5f9b1b);
  border-radius: 60% 40% 60% 40%;
  transform-origin: center;
  box-shadow: 0 10px 22px rgba(54, 94, 14, 0.25);
}
.error404__leaf--one {
  top: 20%;
  left: 16%;
  --leaf-angle: -28deg;
  transform: rotate(var(--leaf-angle));
  animation: floatLeaf404 3.6s ease-in-out infinite;
}
.error404__leaf--two {
  top: 72%;
  right: 14%;
  --leaf-angle: 18deg;
  transform: rotate(var(--leaf-angle));
  animation: floatLeaf404 4.2s ease-in-out infinite 0.4s;
}
.error404__leaf--three {
  top: 30%;
  right: 6%;
  --leaf-angle: 55deg;
  transform: rotate(var(--leaf-angle));
  animation: floatLeaf404 3.8s ease-in-out infinite 0.8s;
}
.error404__content {
  background: #ffffff;
  border: 1px solid rgba(30, 58, 8, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 44px rgba(24, 44, 6, 0.1);
}
.error404__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(128, 203, 0, 0.16);
  color: #426d10;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.error404__title {
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.error404__text {
  color: #44513a;
  margin-bottom: 1.5rem;
}
.error404__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.error404__hint {
  font-size: 0.95rem;
  color: #5e6a54;
  margin-bottom: 0;
}
.error404__hint a {
  font-weight: 600;
}

@keyframes spin404 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatLeaf404 {
  0%, 100% {
    transform: translateY(0) rotate(var(--leaf-angle, 0deg));
  }
  50% {
    transform: translateY(-10px) rotate(var(--leaf-angle, 0deg));
  }
}
@media (max-width: 992px) {
  .error404 {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }
  .error404__scene {
    min-height: 300px;
  }
  .error404__planet {
    width: 230px;
    height: 230px;
  }
  .error404__orbit {
    width: 290px;
    height: 290px;
  }
}
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 0.7rem;
}

.mt-3 {
  margin-top: 0.8em;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.7rem;
}

.mb-3 {
  margin-bottom: 0.8em;
}

.mb-4 {
  margin-bottom: 2rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

/*# sourceMappingURL=main.css.map */
