@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-weight: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: bold;
}
:root {
  --color-primary: #FC5F29;
  --color-secondary: #040507;
  --color-accent: #404E73;
  --color-whatsapp: #25d366;
  --color-ofert: #c8102e;
  --color-white: #ffffff;
  --color-light-gray: #f5f5f5;
  --color-gray: #e0e0e0;
  --color-dark-gray: #777777;
  --color-dark: #333333;
  --color-ModalBg: rgba(233, 238, 249, 0.6);
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --font-size-base: 16px;
  --transition: all 0.3s ease;
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

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

.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover {
  background-color: var(--color-dark);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.btn--secondary:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.btn--whats {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
}
.btn--whats:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: var(--shadow-md);
          box-shadow: var(--shadow-md);
}
.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.main-header {
  position: fixed;
  padding: 10px 0;
  background: #FFFDFE;
  width: 100%;
  z-index: 9999;
}
.main-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-header__logo {
  height: 60px;
}
.main-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9rem;
}

.main-nav {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 100%;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .main-nav {
    position: relative;
    width: 70%;
  }
}
.main-nav__toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-dark);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 1.5rem;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .main-nav__toggle {
    display: none;
  }
}
.main-nav__list {
  font-family: var(--font-primary);
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--color-primary);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 0.8em;
}
.main-nav__list.is-open {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .main-nav__list {
    -webkit-transition: none;
    transition: none;
    visibility: visible;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: transparent;
  }
}
.main-nav__link {
  display: block;
  padding: 1.2em;
  width: 100%;
  color: white;
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
@media screen and (min-width: 1024px) {
  .main-nav__link {
    border-bottom: none;
    color: var(--color-dark);
  }
}
.main-nav__link:hover {
  background: var(--color-secondary);
}
@media screen and (min-width: 1024px) {
  .main-nav__link:hover {
    color: white;
  }
}

.hero {
  position: relative;
  min-height: 75vh;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  isolation: isolate;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hero {
    min-height: 80vh;
    text-align: left;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/bg-hero.jpg");
  background-size: cover;
  background-position: center right;
  z-index: -1;
}
.hero__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.hero__content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .hero__content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media screen and (min-width: 1280px) {
  .hero__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.hero__title {
  font-family: var(--font-primary);
  font-weight: 100;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__title {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .hero__title {
    font-size: 2.6rem;
  }
}
.hero__description {
  max-width: 780px;
  margin: 0 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .hero__description {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1024px) {
  .hero__description {
    width: 60%;
  }
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .hero__actions {
    gap: 1rem;
  }
}
.hero__actions .btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__actions .btn {
    width: auto;
  }
}

.section__title {
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 0;
}
.section__subtitle {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section__subtitle {
    font-size: 1.125rem;
  }
}

.projects {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .projects {
    padding: 4rem 0;
  }
}
.projects__header {
  text-align: center;
  margin-bottom: 2rem;
}
.projects__title {
  font-family: var(--font-title);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.projects__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.projects__slides {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
  overflow: hidden;
  position: relative;
}
.projects__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  will-change: transform;
}
.projects__control {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.projects__control:hover {
  color: var(--color-secondary);
}

.project {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.project__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.project__image img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  .project__image img {
    height: 500px;
  }
}

.contact {
  position: relative;
  padding: 3rem 0;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 6rem 0;
  }
}
.contact__bg {
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(7, 20, 33, 0.75)), to(rgba(7, 20, 33, 0.75))), url("../images/bg-contact.jpg");
  background-image: linear-gradient(rgba(7, 20, 33, 0.75), rgba(7, 20, 33, 0.75)), url("../images/bg-contact.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.contact__wrap {
  max-width: 1100px;
}
.contact__header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.contact__title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 2.1rem;
  }
}
.contact__subtitle {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.9;
}
.contact__grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .contact__grid {
    -ms-grid-columns: 1fr 2rem 1.1fr;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

/* Bloque: contact-info */
.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-info__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 36px 0.75rem 1fr;
  grid-template-columns: 36px 1fr;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-info__item {
    -ms-grid-columns: 40px 1fr;
    grid-template-columns: 40px 1fr;
  }
}
.contact-info__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}
.contact-info__icon i {
  font-size: 1rem;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .contact-info__icon {
    width: 40px;
    height: 40px;
  }
}
.contact-info__label {
  margin: 0 0 0.15rem 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
  color: var(--color-white);
}
.contact-info__text {
  margin: 0;
  opacity: 0.9;
}

/* Bloque: contact-form */
.contact-form__row {
  margin-bottom: 0.9rem;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  padding: 0.9rem 1rem;
  border-radius: 0.25rem;
  outline: none;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.contact-form__input:focus, .contact-form__textarea:focus {
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.12);
  -webkit-box-shadow: 0 0 0 3px rgba(76, 11, 91, 0.25);
          box-shadow: 0 0 0 3px rgba(76, 11, 91, 0.25);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form__submit {
  margin-top: 0.25rem;
  font-weight: 700;
  border-radius: 0.5rem;
}

.c-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-whatsapp:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.c-whatsapp__icon {
  width: 32px;
  height: 32px;
  color: white;
}
@media (max-width: 768px) {
  .c-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  .c-whatsapp__icon {
    width: 28px;
    height: 28px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1240px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}

.main-footer {
  background: #262626;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  padding: 0.9rem 0;
}
.main-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .main-footer__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.main-footer__copy {
  margin: 0;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.main-footer__social {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.main-footer__social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 34px;
  height: 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-decoration: none;
}
.main-footer__social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.main {
  position: relative;
  top: 80px;
}

.services {
  padding: 3rem 0;
  background: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .services {
    padding: 4rem 0;
  }
}
.services__header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 768px) {
  .services__header {
    margin-bottom: 2.5rem;
  }
}
.services__header--products {
  margin-top: 40px;
}
.services__icon {
  font-size: 2.25rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.services__title {
  font-family: var(--font-primary);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .services__title {
    font-size: 2.25rem;
  }
}
.services__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 820px;
}
.services__grid {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .services__grid {
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.service {
  background: var(--color-white);
  overflow: hidden;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.service__image {
  height: 350px;
}
@media screen and (min-width: 1024px) {
  .service__image {
    height: 400px;
  }
}
.service__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__image--padding img {
  -o-object-fit: contain;
     object-fit: contain;
}
.service__content {
  text-align: center;
}
.service:nth-child(3n+1) .service__title {
  background: var(--color-accent);
}
.service:nth-child(3n+2) .service__title {
  background: var(--color-secondary);
}
.service:nth-child(3n+3) .service__title {
  background: #2F6B81;
}
.service__title {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  padding: 1.25em;
  color: white;
}
.service__description {
  color: var(--color-dark-gray);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service__text {
  padding: 0.5rem 2rem;
}
.service__list {
  padding: 1.5em;
  text-align: center;
}
.service__list li {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .service__list + .btn--whats {
    margin: 15px;
    padding: 0.5rem;
    font-size: 0.9rem;
  }
}
@media screen and (min-width: 1024px) {
  .service__list + .btn--whats {
    padding: 1rem;
    font-size: 1rem;
  }
}
.service .btn {
  margin: 0 auto;
  font-weight: 600;
  margin-bottom: 1rem;
}

.certification__image {
  margin: auto;
}

.stats {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.stats__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.stat {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  text-align: center;
  margin: 1rem 0;
}

.stat__icon {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.counter {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-secondary);
}

.stat p {
  margin-top: 0.5rem;
  color: #555;
  font-size: 0.95rem;
}

.why {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .why {
    padding: 4rem 0;
  }
}
.why__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 2.5rem auto;
}
.why__title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .why__title {
    font-size: 2.25rem;
  }
}
.why__subtitle {
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0 auto;
  font-size: 1rem;
}
.why__grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .why__grid {
    -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Tarjetas */
.why-card {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .why-card {
    text-align: center;
  }
}
.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
@media screen and (min-width: 768px) {
  .why-card__icon {
    margin: 0 auto 0.75rem auto;
  }
}
.why-card__icon i {
  font-size: 1.75rem;
}
.why-card__title {
  text-transform: uppercase;
  color: var(--color-dark);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.3px;
  margin: 0.25rem 0 0.5rem 0;
}
.why-card__text {
  color: var(--color-dark-gray);
  line-height: 1.8;
  font-size: 0.98rem;
}
@media screen and (min-width: 768px) {
  .why-card__text {
    margin: 0 auto;
  }
}

.clients {
  position: relative;
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .clients {
    padding: 4rem 0;
  }
}
.clients__bg {
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.85)), to(rgba(255, 255, 255, 0.9))), url("../images/bg-auditoria.jpg");
  background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)), url("../images/bg-auditoria.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.clients__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 768px) {
  .clients__header {
    margin-bottom: 2.5rem;
  }
}
.clients__title {
  font-family: var(--font-primary);
  text-transform: uppercase;
  color: var(--color-secondary);
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .clients__title {
    font-size: 2.25rem;
  }
}
.clients__subtitle {
  color: var(--color-dark);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0 auto;
  font-size: 1rem;
}
.clients__grid {
  display: -ms-grid;
  display: grid;
  gap: 1px;
  background: var(--color-gray);
  -ms-grid-columns: 1fr 1px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .clients__grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Item logo */
.client-logo {
  background: var(--color-white);
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 2.25rem 1rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-filter: grayscale(100%) contrast(95%);
          filter: grayscale(100%) contrast(95%);
  opacity: 0.9;
}
.client-logo:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.client-logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .client-logo img {
    max-width: 180px;
  }
}

.about {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .about .container {
    padding: 4rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .about {
    padding: 4rem 2rem;
  }
}
.about__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .about__header {
    width: 100%;
  }
}
.about__header h2 {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .about__header h2 {
    font-size: 2.4rem;
  }
}
.about__gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .about__gallery {
    width: 48%;
  }
}
.about__gallery-item {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.about__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 48%;
  }
}
.about__content {
  margin-top: 2rem;
}
.about__content .about__title {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
}
.about__content .about__text {
  color: var(--color-dark);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-align: justify;
}
.about__content .about__brochure {
  text-align: center;
  margin-top: 2rem;
}
.about__content .about__brochure .about__brochure-link {
  text-decoration: none;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.about__content .about__brochure .about__brochure-link:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.about__content .about__brochure .about__brochure-link:hover .about__brochure-text {
  color: var(--color-primary-dark, #0056b3);
}
.about__content .about__brochure .about__brochure-text {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.about__content .about__img {
  margin: 0 auto;
  width: 280px;
  display: block;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.about__brochure-link:hover .about__content .about__img {
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}