@font-face {
  font-family: "calling-code";
  src: url("../fonts/CallingCode-Regular.otf");
  font-weight: 400;
}

@font-face {
  font-family: "inter-18";
  src: url("../fonts/Inter_18pt-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "inter-18";
  src: url("../fonts/Inter_18pt-Medium.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "inter-18";
  src: url("../fonts/Inter_18pt-Bold.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "neue-haas";
  src: url("../fonts/NeueHaasDisplay-Light.ttf");
  font-weight: 300;
}

@font-face {
  font-family: "neue-haas";
  src: url("../fonts/NeueHaasDisplay-Mediu.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "poppins";
  src: url("../fonts/Poppins-Medium.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "poppins";
  src: url("../fonts/Poppins-Bold.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "source-sans-variable";
  src: url("../fonts/SourceSansVariable-Roman.otf");
}

@font-face {
  font-family: "work-sans";
  src: url("../fonts/WorkSans-SemiBold.ttf");
  font-weight: 500;
}

@font-face {
  font-family: "work-sans";
  src: url("../fonts/WorkSans-Bold.ttf");
  font-weight: 600;
}

:root {

  /**
   * coloress
   */

  --white: hsl(0, 0%, 100%);
  --black: #000;
  --grey: #222426;
  --orange: #ea4f1b;
  --orange-light: #ff5e23;
  --background-color: #E3E3E2;

  /**
   * tipografia
   */

  --ff-calling-code: 'calling-code', sans-serif;
  --ff-inter-18: 'inter-18', sans-serif;
  --ff-neue-haas: 'neue-haas', sans-serif;
  --ff-poppins: 'poppins', sans-serif;
  --ff-source-sans: 'source-sans-variable', sans-serif;
  --ff-work-sans: 'work-sans', sans-serif;

  --headline-lg: 5rem;
  --headline-md: 3rem;
  --headline-sm: 2rem;
  --title-lg: 1.8rem;
  --title-md: 1.5rem;
  --title-sm: 1.4rem;

  --fw-500: 500;
  --fw-700: 700;



  --section-padding: 120px;



  --shadow-1: 0px 2px 20px hsla(209, 36%, 72%, 0.2);
  --shadow-2: 0 4px 16px hsla(0, 0%, 0%, 0.06);



  --radius-circle: 50%;
  --radius-12: 12px;
  --radius-6: 6px;
  --radius-4: 4px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}


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

li {
  list-style: none;
}

a,
img,
time,
input,
button,
ion-icon {
  display: block;
}

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

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

* {
  color: var(--grey);
}

html {
  font-size: 10px;
  font-family: var(--ff-inter-18);
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  font-size: 1.6rem;
  color: var(--independece);
  line-height: 1.8;
  overflow: hidden;
}

body.loaded {
  overflow-y: visible;
}

body.nav-active {
  overflow: hidden;
}




/* .container {
  padding-inline: 16px;
} */

.headline-lg {
  font-size: var(--headline-lg);
  color: var(--white);
  font-weight: var(--fw-500);
  line-height: 1.2;
}

.headline-md {
  font-size: var(--headline-md);
  font-weight: var(--fw-700);
}

.headline-lg,
.headline-md {
  font-family: var(--ff-oswald);
}

.headline-md,
.headline-sm {
  line-height: 1.3;
}

.headline-md,
.headline-sm {
  color: var(--midnight-green);
}

.headline-sm {
  font-size: var(--headline-sm);
}

.title-lg {
  font-size: var(--title-lg);
}

.title-md {
  font-size: var(--title-md);
}

.title-sm {
  font-size: var(--title-sm);
}

.social-list {
  display: flex;
}

.section {
  padding-block: var(--section-padding);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.btn {
  background-color: var(--verdigris);
  color: var(--white);
  font-weight: var(--fw-700);
  padding: 12px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.btn::before {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--eerie-black);
  border-radius: var(--radius-6);
  transition: var(--transition-2);
  z-index: -1;
}

.btn:is(:hover, :focus-visible)::before {
  transform: translateX(100%);
}

.w-100 {
  width: 100%;
}

.grid-list {
  display: grid;
  gap: 40px 28px;
}

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

[data-reveal] {
  opacity: 0;
  transition: var(--transition-2);
}

[data-reveal].revealed {
  opacity: 1;
}

[data-reveal="bottom"] {
  transform: translateY(50px);
}

[data-reveal="bottom"].revealed {
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  transform: translateX(0);
}





/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--verdigris);
  display: grid;
  place-items: center;
  z-index: 6;
  transition: var(--transition-1);
}

.preloader.loaded {
  visibility: hidden;
  opacity: 0;
}

.preloader .circle {
  width: 50px;
  height: 50px;
  border: 4px solid var(--white);
  border-radius: var(--radius-circle);
  border-block-start-color: transparent;
  animation: rotate360 1s ease infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 2rem;
  width: 100%;
  padding-block: 16px;
  z-index: 100;
  background-color: var(--black);
  border-radius: 40rem;
  margin-inline: auto;
}

.logo-header img {
  width: 30rem;
}

.global-container {
  max-width: 97%;
  margin-inline: auto;
}

.header.active {
  position: fixed;
  background-color: var(--rich-black-fogra-29);
  animation: headerActive 0.5s ease forwards;
  background-color: var(--black);
}

@keyframes headerActive {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-open-btn {
  color: var(--white);
  font-size: 4rem;
}

.navbar,
.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
}

.navbar {
  right: -300px;
  max-width: 300px;
  background-color: var(--rich-black-fogra-29);
  z-index: 3;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

.navbar.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  position: relative;
  padding-inline: 25px;
  padding-block: 55px 100px;
}

.nav-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2.8rem;
}

.navbar-list {
  margin-block-end: 30px;
  border-block-end: 1px solid var(--white_a10);
}

.navbar-item {
  border-block-start: 1px solid var(--white_a10);
}

.navbar-link {
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 24px;
}

.social-list {
  justify-content: center;
  gap: 20px;
  color: var(--white);
  font-size: 1.8rem;
}

.overlay {
  right: -100%;
  background-color: var(--black);
  opacity: 0.3;
  visibility: hidden;
  transition: var(--transition-2);
  z-index: 2;
}

.overlay.active {
  transform: translateX(-100%);
  visibility: visible;
}

/* NOSOTROS PAGE */

.aliado-section {
  height: 90dvh;
}

.aliado-section .text-side {
  background-color: var(--orange-light);
  justify-content: flex-end;
}

.aliado-section .text-side img {
  width: 30rem;
}

.aliado-section .image-side {
  background-image: url(../images/assets-nosotros/Imagenes/senores.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.aliado-section .image-side img {
  width: 40rem;
}

.orange-side {
  background-color: var(--orange);
}

.nuestra-meta-section .white-side {
  background-image: url(../images/assets-index/iconos/isotipo_fondo.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.isotipo-nosotros-blanco {
  width: 120%;
}

.flecha-meta {
  bottom: 7%;
  right: 7%;
  animation: animacionFlechaMeta 2s infinite ease;
}

.current-tab {
  color: var(--orange);
}

@keyframes animacionFlechaMeta {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-2rem);
  }

  100% {
    transform: translateX(0);
  }
}

.somos-section img {
  top: 20%;
}

/* CONTACTO PAGE */

.form-section-contacto {
  background-color: var(--grey);
}

.form-section-contacto button {
  transition: all 500ms ease;
}

.form-section-contacto button:hover {
  background-color: var(--orange);
}

.mapa-section-contacto {
  height: 80dvh;
}

.mapa-section-contacto iframe {
  height: 80dvh;
}

.orange-side-ubicacion-contacto {
  background-color: var(--orange);
}

/* SERVICIOS PAGE */

.name-servicio {
  top: 60%;
}

.descripcion-servicio-section {
  height: 90rem;
}

.isotipo-nosotros-negro {
  z-index: 0;
}

.texto-desc-servicio {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 400;
}

@media (min-width: 1400px) {
  .texto-desc-servicio {
    font-size: 3.8rem;
  }

  .descripcion-servicio-section {
    padding: 5rem 10rem !important;
    justify-content: space-around !important;
  }

  .subcategorias-servicios-container {
    width: 70%;
    margin-inline: auto;
  }

  .name-servicio-desc img {
    left: 20%;
  }
}

.nuestros-productos-section {
  background-color: var(--orange);
}

.subcategoria {
  height: 60rem;
}

.subcategoria,
.img-subcategoria {
  border-radius: 3.5rem;
}

.name-servicio-desc img {
  left: 8%;
}

/* CATALOGO PAGE */

.clean-filters-btn {
  transition: all 500ms ease;
}

.clean-filters-btn:hover {
  background-color: var(--orange);
  color: var(--white);
}

.subcategoria-catalogo {
  background-color: var(--orange-light);
  color: white;
  font-weight: 500;
  top: 5%;
  left: 5%;
}

.producto-catalogo {
  height: 60rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 5px solid white;
  transition: all 500ms ease;
}

.producto-catalogo:hover {
  border-color: var(--orange-light);
}

.nombre-producto-catalogo-container {
  bottom: 5%;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 90%;
  background-color: white;
}

.flecha-nombre-producto-catalogo-container {
  background-color: var(--orange-light);
}

.numero-pagina-catalogo {
  color: #727272;
  transition: all 500ms ease;
}

.numero-pagina-catalogo:hover {
  background-color: var(--orange-light);
  color: var(--white);
}

.pagina-selected {
  background-color: var(--orange-light) !important;
  color: white;
}

.filter-tipo {
  display: none !important;
}



/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  color: var(--white);
  background-image: url(../images/assets-index/Imagenes/degradado.png);
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-block-end: 60px;
}

.footer-brand {
  background-color: var(--ming);
  padding: 32px;
  border-radius: var(--radius-6);
}

.footer .logo {
  margin-block-end: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-block-start: 12px;
}

.contact-item .item-icon {
  font-size: 4rem;
}

.contact-link {
  display: inline;
  transition: var(--transition-1);
}

.contact-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-list-title {
  color: var(--white);
  font-weight: var(--fw-700);
  margin-block-end: 20px;
}

.footer .text {
  opacity: 0.7;
}

.footer .address {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-start: 20px;
}

.footer .address ion-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.footer-link {
  margin-block-start: 8px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--verdigris);
}

.footer-form .input-field {
  color: var(--white);
  border: 1px solid var(--white_a20);
  border-radius: var(--radius-4);
  padding: 8px 20px;
}

.footer-form .input-field::placeholder {
  color: inherit;
}

.footer-form .btn {
  width: 100%;
  justify-content: center;
  margin-block: 12px 28px;
}

.footer-bottom {
  padding-block: 32px;
  border-block-start: 1px solid var(--white_a20);
}

.footer-bottom .social-list {
  justify-content: flex-start;
  gap: 8px;
  margin-block-start: 16px;
}

.footer-bottom .social-link {
  font-size: 1.4rem;
  padding: 12px;
  background-color: var(--white_a10);
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
}

.footer-bottom .social-link:is(:hover, :focus-visible) {
  background-color: var(--verdigris);
}

/* INDEX */

.hero-section {
  position: relative;
  margin-top: 2rem;
}

.logo-hero {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60rem;
}

.transformamos-section {
  background-color: var(--grey);
  border-radius: 2rem;
  margin-top: 2rem;
  padding-block: 4rem;
  padding-inline: 4rem;
}

.transformamos-section .container {
  border: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 5rem;
  border-radius: 1rem;
  gap: 0rem;
}

.transformamos-section .text-side {
  width: 60%;
}

.transformamos-section .text-side img {
  width: 25rem;
}

.transformamos-section .text-side h2 {
  color: var(--white);
  /* font-size: 5rem; */
  line-height: 1.2;
  /* font-weight: 500; */
  white-space: pre-line;
}

.transformamos-section .text-side a {
  color: var(--white);
  border: 1px solid var(--white);
  width: fit-content;
  border-radius: 4rem;
  padding: .2rem 2rem;
  margin-block: 4rem;
  font-size: 1.3rem;
  transition: all 500ms ease;
}

.transformamos-section .text-side a:hover {
  background-color: var(--orange-light);
}

.transformamos-section .image-side {
  width: 40%;
}

.transformamos-section .image-side img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.numeros-section>div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.numeros-section {
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: 2rem;
  padding: 4rem 3rem;
  width: 33.33%;
  height: 32rem;
  transition: all 500ms ease;
}

.arrow-servicio {
  right: 10%;
}

.card:hover {
  transform: scale(1.05);
}

.card .counter {
  font-size: 9rem;
  display: flex;
  align-items: center;
  line-height: 1;
}

.card h2 {
  font-size: 3.1rem;
}

.card p:last-of-type {
  white-space: pre-line;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--orange-light);
}

.servicios-section {
  position: relative;
  background-color: var(--white);
  margin-top: 2rem;
}

.servicios-section h2 {
  font-weight: 700;
}

.isotipo-servicios {
  left: 20%;
}

.swiper {
  width: 87%;
}

.swiper-slide {
  height: fit-content;
  position: relative;
}

.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 8%;
}

.link-servicio {
  background-color: #ea4f1bec;
  transition: all 500ms ease;
}

.link-servicio:hover {
  background-color: var(--orange);
}

/* .swiper-horizontal {

    & .swiper-button-next,
    & .swiper-button-prev,
    &~.swiper-button-next,
    &~.swiper-button-prev {
      margin-left: 0;
      margin-top: calc(0px - var(--swiper-navigation-size)/2);
      top: var(--swiper-navigation-top-offset, 40%) !important;
    }
  } */

.swiper-button-next {
  left: auto;
  right: 4% !important;
}

.swiper-button-prev {
  right: auto;
  left: 4% !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev {
  background-image: url('../images/assets-index/iconos/flecha_izq.svg');
}

.swiper-button-prev svg {
  display: none;
}

.swiper-button-next {
  background-image: url('../images/assets-index/iconos/flecha-dere.svg');
}

.swiper-button-next svg {
  display: none;
}

.swiper-pagination-bullet {
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px)) !important;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px)) !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-bullet-inactive-color, #585858) !important;
}

.swiper-pagination-bullet {
  margin: 0 15px !important;
}

.servicios-section {
  background-image: url(../images/assets-index/iconos/isotipo_fondo.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}

.text-side-opinion h3 {
  color: var(--orange);
}

.tarjeta-opinion {
  border-radius: 9rem 7rem 7rem 9rem;
}

.opiniones-section {
  background-color: var(--grey);
  background-image: url(../images/assets-index/iconos/isotipo_fondo_naranja.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
}


.ubicacion-section {
  background-color: var(--orange);
}

.contacto-section {
  background-color: var(--grey);
}

.text-side-contacto h2 {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 2rem;
}

.line-separacion-contacto {
  width: 1px;
  height: auto;
  background-color: var(--white);
}

.contacto-submit-btn {
  color: var(--white);
  padding: .5rem 4rem;
  border: 1px solid var(--white);
  border-radius: 2rem;
  font-weight: 500;
  font-size: 1.8rem;
  margin-inline: auto;
  transition: all 500ms ease;
}

.contacto-submit-btn:hover {
  background-color: var(--orange);
}

.info-section>div {
  background-color: var(--grey);
}

.info-section {
  overflow: hidden;
}

.image-side-info {
  width: 45%;
}

.text-side-info {
  width: 55%;
}


/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--verdigris);
  color: var(--white);
  padding: 16px;
  font-size: 2rem;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  z-index: 3;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--eerie-black);
}

.back-top-btn.active {
  transform: translateY(-10px);
  opacity: 1;
}

.numero-pagina-catalogo {
  padding: 1.5rem;
  border-radius: 1rem;
}

.hero-section {
  border-radius: 24px !important;
}

.img-hero-servicio {
  border-radius: 24px !important;
}





/*-----------------------------------*\
  #MEDIA 
\*-----------------------------------*/

@media (min-width: 768px) {
  :root {
    --headline-lg: 8rem;
    --headline-md: 4.8rem;

  }

  .container {
    max-width: 750px;
    width: 100%;
    margin-inline: auto;
  }

  .header .btn {
    display: block;
  }

  .nav-open-btn {
    margin-inline-start: auto;
  }

  .header .container {
    gap: 40px;
  }


  /**
   * FOOTER
   */

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .contact-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom .social-list {
    margin-block-start: 0;
  }

}




@media (min-width: 992px) {


  .container {
    max-width: 940px;
  }


}



@media (min-width: 1200px) {

  .container {
    max-width: 1200px;
  }



  /**
   * HEADER
   */

  .header {
    padding-block: 24px;
  }

  .nav-open-btn,
  .overlay,
  .navbar-top,
  .navbar .social-list {
    display: none;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .navbar {
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar-link {
    --title-md: 1.4rem;
    font-weight: var(--fw-500);
    padding-inline: 16px;
    text-transform: capitalize;
    transition: all 500ms ease;
  }

  .navbar-link:hover {
    color: var(--orange);
  }


  /**
   * FOOTER
   */

  .footer {
    background-size: auto;
  }

  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: 1 / 5;
    padding: 28px 56px;
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    align-items: center;
  }

  .footer .logo {
    margin-block-end: 0;
  }

  .contact-list {
    justify-content: space-between;
  }

  .contact-list::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--white_a20);
  }

  .contact-item {
    margin-block-start: 0;
  }

}

@media (300px < width < 400px) {

  /* !INDEX PAGE */
  .header .container {
    padding-inline: 2rem;
  }

  .logo-header img {
    width: 17rem;
  }

  .logo-hero {
    width: 20rem;
  }

  .transformamos-section .image-side {
    display: none;
  }

  .transformamos-section .text-side {
    width: 100%;
  }

  .transformamos-section .container {
    padding-inline: 2rem;
  }

  .transformamos-section .text-side h2 {
    font-size: 2rem;
  }

  .numeros-section>div {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .card h2 {
    font-size: 2.1rem;
  }

  .card p:last-of-type {
    font-size: 1.6rem;
  }

  .servicios-section h2 {
    font-size: 3rem;
  }

  .isotipo-servicios {
    width: 3rem !important;
    left: 1%;
  }

  .tarjetas-opinion-container {
    flex-direction: column;
  }

  .tarjeta-opinion {
    width: 100% !important;
    border-radius: 24px;
  }

  .text-side-opinion h3 {
    font-size: 1.5rem;
  }

  .stars-redes-opinion-container {
    flex-direction: column;
  }

  .ubicacion-section {
    flex-direction: column;
    padding: 3rem !important;
  }

  .text-side-ubicacion {
    width: 100% !important;
  }

  .text-side-ubicacion h2 {
    margin-top: 2rem;
  }

  .texto-ubicacion {
    margin-top: 3rem !important;
    margin-bottom: 3rem;
  }

  .mapa-side-ubicacion {
    width: 100% !important;
  }

  .footer {
    padding: 3rem !important;
  }

  .footer div {
    position: relative;
    top: inherit;
    bottom: inherit;
    left: inherit;
    right: inherit;
    flex-direction: column;
    text-align: center;
    margin-top: 2rem;
  }

  .footer div a {
    font-size: 1.1rem;
  }

  .footer div p {
    font-size: 1.1rem
  }

  .footer div p img {
    width: 4rem !important;
  }

  .footer>img {
    width: 100% !important;
    margin-top: 3rem;
  }

  .footer-social-links-container {
    display: flex !important;
    flex-direction: row !important;
  }

  .footer-social-links-container a img {
    width: 3rem;
  }

  .contacto-section {
    padding: 2rem !important;
  }

  .contacto-section>div {
    padding: 2rem !important;
    flex-direction: column !important;
    gap: 4rem;
  }

  .text-side-contacto h2 {
    font-size: 4rem !important;
  }

  .text-side-contacto img {
    margin-top: 4rem;
  }

  form input,
  form textarea {
    font-size: 1.5rem !important;
  }

  .contacto-submit-btn {
    font-size: 1.5rem;
  }

  .info-section>img {
    display: none;
  }

  .info-section {
    flex-direction: column;
  }

  .info-section>div {
    width: 100%;
    padding: 2rem !important;
  }

  .text-side-info>div {
    flex-direction: column !important;
    padding: 2rem !important;
  }

  .linea-divisoria-horario {
    width: 100% !important;
    height: 1px !important;
    margin-bottom: 3rem !important;
  }

  .telefonos-horarios p img {
    width: 2rem !important;
    height: 2rem !important;
  }

  .telefonos-horarios p:last-of-type {
    margin-bottom: 3rem;
  }

  .navbar {
    top: 0%;
    background-color: var(--grey);
  }

  /* ! NOSOTROS PAGE */

  .aliado-section {
    height: fit-content;
  }

  .aliado-section .text-side {
    width: 100% !important;
  }

  .aliado-section>div {
    flex-direction: column-reverse !important;
  }

  .aliado-section .image-side {
    width: 100%;
    height: 35rem;
  }

  .aliado-section .image-side img {
    width: 65%;
  }

  .aliado-section .text-side h2 {
    font-size: 1.6rem;
  }

  .aliado-section .text-side {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .transformamos-section {
    padding-block: 2rem !important;
    padding-inline: 2rem !important;
  }

  .transformamos-section .text-side img {
    width: 18rem;
    margin-block: 3rem;
  }

  .nuestra-meta-section {
    flex-direction: column;
  }

  .orange-side {
    width: 100% !important;
    overflow: hidden;
  }

  .flecha-meta {
    transform: rotate(90deg) !important;
    margin-bottom: 1rem;
  }

  .white-side {
    width: 100% !important;
  }

  .white-side h2 {
    text-align: center;
    font-size: 2rem;
  }

  .somos-section p {
    font-size: 2.2rem;
  }

  .somos-section img {
    width: 60% !important;
  }

  .somos-section svg {
    width: 250% !important;
  }

  /* ! CATALOGO PAGE */
  .titulo-catalogo {
    font-size: 4rem !important;
  }

  .titulo-catalogo>img {
    width: 4rem !important;
  }

  .filtros-section {
    flex-direction: column;
  }

  .filtros-section select {
    width: 100%;
  }

  .clean-filters-btn {
    padding-block: 2rem;
  }

  .rendering-products-section {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  /*  ! CONTACTO PAGE */

  .form-section-contacto {
    padding: 2rem !important;
  }

  .form-section-contacto>div {
    flex-direction: column;
    gap: 4rem;
    padding: 3rem !important;
  }

  .text-side-form-contacto {
    width: 100% !important;
  }

  .text-side-form-contacto>div>p {
    font-size: 2.8rem !important;
    line-height: 1.1;
  }

  .text-side-form-contacto>div>img {
    width: 85% !important;
  }

  .text-side-form-contacto>p {
    margin-top: 5rem !important;
  }

  .form-side-contacto {
    width: 100% !important;
  }

  .form-side-contacto>form>div {
    flex-direction: column;
    width: 100% !important;
  }

  .form-side-contacto>form>div>div {
    width: 100% !important;
  }

  .mapa-section-contacto {
    flex-direction: column;
    height: fit-content;
    overflow: hidden !important;
  }

  .orange-side-ubicacion-contacto {
    width: 100% !important;
    padding: 4rem !important;
  }

  .orange-side-ubicacion-contacto>p {
    font-size: 2rem;
  }

  .orange-side-ubicacion-contacto>img {
    width: 70% !important;
  }

  iframe {
    width: 100% !important;
  }

  /* ! SERVICIOS PAGE */

  .hero-section {
    border-radius: 24px !important;
  }

  .img-hero-servicio {
    border-radius: 24px !important;
  }

  .descripcion-servicio-section {
    flex-direction: column !important;
    height: fit-content;
  }

  .text-side-desc-servicio {
    width: 100% !important;
  }

  .name-servicio-desc {
    font-size: 4rem !important;
  }

  .name-servicio-desc img {
    height: 40px !important;
    left: -35px !important;
    display: none;
  }

  .texto-desc-servicio {
    font-size: 1.8rem !important;
  }

  .image-side-desc-servicio {
    width: 100% !important;
    overflow: hidden;
    border-radius: 24px;
  }

  .nuestros-productos-section {
    padding-block: 4rem !important;
    padding-inline: 2rem !important;
  }

  .nuestros-productos-section>h2>svg {
    display: none;
  }

  .nuestros-productos-section>h2 {
    text-align: center !important;
    font-size: 4rem !important;
  }

  .subcategorias-servicios-container {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    margin-top: 5rem !important;
  }

  .name-subcatedoria {
    font-size: 2rem !important;
    align-items: center;
  }

  .texto-subcategoria {
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    margin-top: 1rem !important;
  }

  /* ! VISTA PRODUCTO PAGE */

  .producto-container {
    padding: 1rem !important;
  }

}

@media (401px < width < 767px) {

  /* !INDEX PAGE */
  .header .container {
    padding-inline: 2rem;
  }

  .logo-header img {
    width: 17rem;
  }

  .logo-hero {
    width: 20rem;
  }

  .transformamos-section .image-side {
    display: none;
  }

  .transformamos-section .text-side {
    width: 100%;
  }

  .transformamos-section .container {
    padding-inline: 2rem;
  }

  .transformamos-section .text-side h2 {
    font-size: 2rem;
  }

  .numeros-section>div {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  .card h2 {
    font-size: 2.1rem;
  }

  .card p:last-of-type {
    font-size: 1.6rem;
  }

  .servicios-section h2 {
    font-size: 3rem;
  }

  .isotipo-servicios {
    width: 3rem !important;
    left: 1%;
  }

  .tarjetas-opinion-container {
    flex-direction: column;
  }

  .tarjeta-opinion {
    width: 100% !important;
    border-radius: 24px;
  }

  .text-side-opinion h3 {
    font-size: 1.5rem;
  }

  .stars-redes-opinion-container {
    flex-direction: column;
  }

  .ubicacion-section {
    flex-direction: column;
    padding: 3rem !important;
  }

  .text-side-ubicacion {
    width: 100% !important;
  }

  .text-side-ubicacion h2 {
    margin-top: 2rem;
  }

  .texto-ubicacion {
    margin-top: 3rem !important;
    margin-bottom: 3rem;
  }

  .mapa-side-ubicacion {
    width: 100% !important;
  }

  .footer {
    padding: 3rem !important;
  }

  .footer div {
    position: relative;
    top: inherit;
    bottom: inherit;
    left: inherit;
    right: inherit;
    flex-direction: column;
    text-align: center;
    margin-top: 2rem;
  }

  .footer div a {
    font-size: 1.1rem;
  }

  .footer div p {
    font-size: 1.1rem
  }

  .footer div p img {
    width: 4rem !important;
  }

  .footer>img {
    width: 100% !important;
    margin-top: 3rem;
  }

  .footer-social-links-container {
    display: flex !important;
    flex-direction: row !important;
  }

  .footer-social-links-container a img {
    width: 3rem;
  }

  .contacto-section {
    padding: 2rem !important;
  }

  .contacto-section>div {
    padding: 2rem !important;
    flex-direction: column !important;
    gap: 4rem;
  }

  .text-side-contacto h2 {
    font-size: 4rem !important;
  }

  .text-side-contacto img {
    margin-top: 4rem;
  }

  form input,
  form textarea {
    font-size: 1.5rem !important;
  }

  .contacto-submit-btn {
    font-size: 1.5rem;
  }

  .info-section>img {
    display: none;
  }

  .info-section {
    flex-direction: column;
  }

  .info-section>div {
    width: 100%;
    padding: 2rem !important;
  }

  .text-side-info>div {
    flex-direction: column !important;
    padding: 2rem !important;
  }

  .linea-divisoria-horario {
    width: 100% !important;
    height: 1px !important;
    margin-bottom: 3rem !important;
  }

  .telefonos-horarios p img {
    width: 2rem !important;
    height: 2rem !important;
  }

  .telefonos-horarios p:last-of-type {
    margin-bottom: 3rem;
  }

  .navbar {
    top: 0%;
    background-color: var(--grey);
  }

  /* ! NOSOTROS PAGE */

  .aliado-section {
    height: fit-content;
  }

  .aliado-section .text-side {
    width: 100% !important;
  }

  .aliado-section>div {
    flex-direction: column-reverse !important;
  }

  .aliado-section .image-side {
    width: 100%;
    height: 35rem;
  }

  .aliado-section .image-side img {
    width: 65%;
  }

  .aliado-section .text-side h2 {
    font-size: 1.6rem;
  }

  .aliado-section .text-side {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .transformamos-section {
    padding-block: 2rem !important;
    padding-inline: 2rem !important;
  }

  .transformamos-section .text-side img {
    width: 18rem;
    margin-block: 3rem;
  }

  .nuestra-meta-section {
    flex-direction: column;
  }

  .orange-side {
    width: 100% !important;
    overflow: hidden;
  }

  .flecha-meta {
    transform: rotate(90deg) !important;
    margin-bottom: 1rem;
  }

  .white-side {
    width: 100% !important;
  }

  .white-side h2 {
    text-align: center;
    font-size: 2rem;
  }

  .somos-section p {
    font-size: 2.2rem;
  }

  .somos-section img {
    width: 60% !important;
  }

  .somos-section svg {
    width: 250% !important;
  }

  /* ! CATALOGO PAGE */
  .titulo-catalogo {
    font-size: 4rem !important;
  }

  .titulo-catalogo>img {
    width: 4rem !important;
  }

  .filtros-section {
    flex-direction: column;
  }

  .filtros-section select {
    width: 100%;
  }

  .clean-filters-btn {
    padding-block: 2rem;
  }

  .rendering-products-section {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  /*  ! CONTACTO PAGE */

  .form-section-contacto {
    padding: 2rem !important;
  }

  .form-section-contacto>div {
    flex-direction: column;
    gap: 4rem;
    padding: 3rem !important;
  }

  .text-side-form-contacto {
    width: 100% !important;
  }

  .text-side-form-contacto>div>p {
    font-size: 2.8rem !important;
    line-height: 1.1;
  }

  .text-side-form-contacto>div>img {
    width: 85% !important;
  }

  .text-side-form-contacto>p {
    margin-top: 5rem !important;
  }

  .form-side-contacto {
    width: 100% !important;
  }

  .form-side-contacto>form>div {
    flex-direction: column;
    width: 100% !important;
  }

  .form-side-contacto>form>div>div {
    width: 100% !important;
  }

  .mapa-section-contacto {
    flex-direction: column;
    height: fit-content;
    overflow: hidden !important;
  }

  .orange-side-ubicacion-contacto {
    width: 100% !important;
    padding: 4rem !important;
  }

  .orange-side-ubicacion-contacto>p {
    font-size: 2rem;
  }

  .orange-side-ubicacion-contacto>img {
    width: 70% !important;
  }

  iframe {
    width: 100% !important;
  }

  /* ! SERVICIOS PAGE */

  .hero-section {
    border-radius: 24px !important;
  }

  .img-hero-servicio {
    border-radius: 24px !important;
  }

  .descripcion-servicio-section {
    flex-direction: column !important;
    height: fit-content;
  }

  .text-side-desc-servicio {
    width: 100% !important;
  }

  .name-servicio-desc {
    font-size: 4rem !important;
  }

  .name-servicio-desc img {
    height: 40px !important;
    left: -35px !important;
    display: none;
  }

  .texto-desc-servicio {
    font-size: 1.8rem !important;
  }

  .image-side-desc-servicio {
    width: 100% !important;
    overflow: hidden;
    border-radius: 24px;
  }

  .nuestros-productos-section {
    padding-block: 4rem !important;
    padding-inline: 2rem !important;
  }

  .nuestros-productos-section>h2>svg {
    display: none;
  }

  .nuestros-productos-section>h2 {
    text-align: center !important;
    font-size: 4rem !important;
  }

  .subcategorias-servicios-container {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    margin-top: 5rem !important;
  }

  .name-subcatedoria {
    font-size: 2rem !important;
    align-items: center;
  }

  .texto-subcategoria {
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    margin-top: 1rem !important;
  }
}

@media (768px < width < 1200px) {

  .navbar.active {
    background-color: var(--grey);
  }

  .transformamos-section .text-side h2 {
    font-size: 2.5rem !important;
  }

  .image-side {
    display: flex;
  }

  .card .counter {
    font-size: 6rem;
  }

  .card h2 {
    line-height: 1;
  }

  .card {
    height: 36rem;
  }

  .card p:last-of-type {
    white-space: normal;
    margin-top: 1rem;
  }

  .isotipo-servicios {
    left: 5%;
  }

  .tarjeta-opinion {
    height: 14rem !important;
  }

  .text-side-opinion>p {
    font-size: .8rem;
    line-height: 1.1;
  }

  .text-side-opinion h3 {
    font-size: 1.25rem;
    line-height: 1;
  }

  .stars-opinion-container img {
    width: 1rem !important;
  }

  .stars-redes-opinion-container {
    flex-direction: column;
  }

  .ubicacion-section h2 {
    font-size: 4rem !important;
  }

  .texto-ubicacion {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  .contacto-section {
    padding: 2rem !important;
  }

  .contacto-section>div {
    padding: 3rem !important;
    gap: 2rem;
  }

  .text-side-contacto h2 {
    font-size: 4rem !important;
  }

  .text-side-contacto p {
    font-size: 1.8rem !important;
    line-height: 2rem !important;
  }

  .text-side-info {
    padding: 2rem !important;
  }

  .text-side-info>div {
    padding: 2rem !important;
  }

  .telefonos-horarios h3 {
    font-size: 1.7rem !important;
    line-height: 2rem !important;
  }

  .telefonos-horarios p img {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }

  .telefonos-horarios p {
    font-size: 1.75rem !important;
    line-height: 1 !important;
  }

  .horas-horarios h3 {
    font-size: 1.7rem !important;
    line-height: 2rem !important;
  }

  .horas-horarios p img {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }

  .horas-horarios p {
    font-size: 1.75rem !important;
    line-height: 1 !important;
  }

  /* ! NOSOTROS PAGE */

  .aliado-section {
    height: fit-content;
  }

  .aliado-section .text-side {
    width: 100% !important;
  }

  .aliado-section>div {
    flex-direction: column-reverse !important;
  }

  .aliado-section .image-side {
    width: 100%;
    height: 35rem;
  }

  .aliado-section .image-side img {
    width: 65%;
  }

  .aliado-section .text-side h2 {
    font-size: 1.6rem;
  }

  .aliado-section .text-side {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .transformamos-section {
    padding-block: 2rem !important;
    padding-inline: 2rem !important;
  }

  .transformamos-section .text-side img {
    width: 18rem;
    margin-block: 3rem;
  }

  .nuestra-meta-section {
    flex-direction: column;
  }

  .orange-side {
    width: 100% !important;
    overflow: hidden;
  }

  .flecha-meta {
    transform: rotate(90deg) !important;
    margin-bottom: 1rem;
  }

  .white-side {
    width: 100% !important;
  }

  .white-side h2 {
    text-align: center;
    font-size: 2rem;
  }

  .somos-section p {
    font-size: 2.2rem;
  }

  .somos-section img {
    width: 60% !important;
  }

  .somos-section svg {
    width: 250% !important;
  }

  .aliado-section .image-side {
    background-position: top;
  }

  .header .container {
    padding-inline: 2rem;
  }

  .logo-header img {
    width: 17rem;
  }

  /* ! CATALOGO PAGE */
  .rendering-products-section {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /*  ! CONTACTO PAGE */

  .form-section-contacto {
    padding: 2rem !important;
  }

  .form-section-contacto>div {
    flex-direction: column;
    gap: 4rem;
    padding: 3rem !important;
  }

  .text-side-form-contacto {
    width: 100% !important;
  }

  .text-side-form-contacto>div>p {
    font-size: 2.8rem !important;
    line-height: 1.1;
  }

  .text-side-form-contacto>div>img {
    width: 85% !important;
  }

  .text-side-form-contacto>p {
    margin-top: 5rem !important;
  }

  .form-side-contacto {
    width: 100% !important;
  }

  .form-side-contacto>form>div {
    flex-direction: column;
    width: 100% !important;
  }

  .form-side-contacto>form>div>div {
    width: 100% !important;
  }

  .mapa-section-contacto {
    flex-direction: column;
    height: fit-content;
    overflow: hidden !important;
  }

  .orange-side-ubicacion-contacto {
    width: 100% !important;
    padding: 4rem !important;
  }

  .orange-side-ubicacion-contacto>p {
    font-size: 2rem;
  }

  .orange-side-ubicacion-contacto>img {
    width: 70% !important;
  }

  iframe {
    width: 100% !important;
  }

  /* ! SERVICIOS PAGE */

  .hero-section {
    border-radius: 24px !important;
  }

  .img-hero-servicio {
    border-radius: 24px !important;
  }

  .descripcion-servicio-section {
    flex-direction: column !important;
    height: fit-content;
  }

  .text-side-desc-servicio {
    width: 100% !important;
  }

  .name-servicio-desc {
    font-size: 4rem !important;
  }

  .name-servicio-desc img {
    height: 40px !important;
    left: -35px !important;
    display: none;
  }

  .texto-desc-servicio {
    font-size: 1.8rem !important;
  }

  .image-side-desc-servicio {
    width: 100% !important;
    overflow: hidden;
    border-radius: 24px;
  }

  .nuestros-productos-section {
    padding-block: 4rem !important;
    padding-inline: 2rem !important;
  }

  .nuestros-productos-section>h2>svg {
    display: none;
  }

  .nuestros-productos-section>h2 {
    text-align: center !important;
    font-size: 4rem !important;
  }

  .subcategorias-servicios-container {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    margin-top: 5rem !important;
  }

  .name-subcatedoria {
    font-size: 2rem !important;
    align-items: center;
  }

  .texto-subcategoria {
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    margin-top: 1rem !important;
  }
}