/*---------------------------------------
  SLIDER TESTIMONIOS
-----------------------------------------*/
.testimonios-slider-native {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonios-slides-wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}

.testimonios-slides-wrapper .testimonio-item {
  min-width: 370px;
  max-width: 480px;
  flex: 1 1 0;
  border-radius: 16px;
  background: #fff;
  padding: 12px 18px;
}

.testimonios-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonios-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1c4e9;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
  opacity: 0.7;
}

.testimonios-dot.active {
  background: var(--primary-color);
  opacity: 1;
}
@media (max-width: 991px) {
  .testimonios-slides-wrapper .testimonio-item {
    min-width: 220px;
    max-width: 320px;
  }
}
@media (max-width: 576px) {
  .testimonios-slides-wrapper {
    gap: 12px;
  }
  .testimonios-slides-wrapper .testimonio-item {
    min-width: 85vw;
    max-width: 95vw;
    padding: 10px 8px;
  }
}
/*---------------------------------------
  TESTIMONIOS SCROLL HORIZONTAL
-----------------------------------------*/
.testimonios-scroll {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
.testimonios-scroll::-webkit-scrollbar {
  height: 8px;
  background: #eee;
}
.testimonios-scroll::-webkit-scrollbar-thumb {
  background: #d1c4e9;
  border-radius: 4px;
}
.testimonios-scroll .testimonio-item {
  min-width: 370px;
  max-width: 480px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 2px 12px rgba(112,62,151,0.08);
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  padding: 12px 18px;
}

@media (max-width: 991px) {
  .testimonios-scroll .testimonio-item {
    min-width: 260px;
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .testimonios-scroll {
    gap: 16px;
    padding-bottom: 8px;
  }
  .testimonios-scroll .testimonio-item {
    min-width: 85vw;
    max-width: 95vw;
    padding: 10px 8px;
  }
}
/*---------------------------------------
  TESTIMONIOS AVATAR
-----------------------------------------*/
.testimonio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  background: #fff;
  margin-right: 8px;
}

/*---------------------------------------
  TESTIMONIOS CARD
-----------------------------------------*/
.testimonios-card {
  min-height: 160px;
  padding: 18px 18px 18px 18px;
}

.testimonios-content {
  width: 100%;
}

.testimonios-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.testimonios-content blockquote {
  background: #f9f9f9;
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 14px 28px 14px 24px;
  margin: 0;
  width: 480px;
  font-size: 1.1em;
  color: var(--dark-color);
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.testimonios-content .blockquote-footer {
  font-size: 15px;
  color: var(--secondary-color);
  margin-top: 8px;
}

.testimonio-item {
  width: 440px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  gap: 5px !important;
  /* Sin espacio entre avatar y bloque */
  height: 100%;
}

@media (max-width: 768px) {
  .testimonios-content {
    flex-direction: column;
    gap: 24px 12px;
    align-items: center;
    width: 100%;
  }

  .testimonio-item {
    width: 95vw;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
  }

  .testimonios-content blockquote {
    width: 95vw;
    max-width: 340px;
    font-size: 1em;
    padding: 10px 8px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .testimonio-avatar {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .testimonios-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px 20px;
  }

  .testimonio-item {
    width: 95vw;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
  }

  .testimonios-content blockquote {
    width: 95vw;
    max-width: 360px;
    font-size: 1em;
    padding: 12px 10px;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .testimonio-avatar {
    width: 64px;
    height: 64px;
    margin-right: 16px;
  }
}

/*---------------------------------------
  INFO CARDS (NUEVA SECCIÓN)
-----------------------------------------*/
.info-cards-section {
  background: var(--section-bg-color);
}

.info-card {
  background: #fff;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 2px 16px rgba(112, 62, 151, 0.08);
  padding: 32px 16px 24px 16px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border-color);
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.info-card:hover {
  box-shadow: 0 4px 24px rgba(112, 62, 151, 0.18);
  border-color: var(--secondary-color);
}

.info-number {
  font-size: 38px;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  display: block;
  margin-bottom: 10px;
}

.info-label {
  font-size: 18px;
  color: var(--tertiary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0;
}

/* Aliados Comerciales dentro de info-card */
.aliados-card {
  min-height: 260px;
  padding: 40px 16px 32px 16px;
}

.aliados-logos-wrap {
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .info-card {
    min-height: 140px;
    padding: 24px 8px 16px 8px;
  }

  .aliados-card {
    min-height: 140px;
  }
}

/*---------------------------------------
  INFO CARDS (NUEVA SECCIÓN)
-----------------------------------------*/
.info-cards-section {
  background: var(--section-bg-color);
}

.info-card {
  background: #fff;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 2px 16px rgba(112, 62, 151, 0.08);
  padding: 32px 16px 24px 16px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border-color);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.info-card:hover {
  box-shadow: 0 4px 24px rgba(112, 62, 151, 0.18);
  border-color: var(--secondary-color);
}

.info-number {
  font-size: 38px;
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  display: block;
  margin-bottom: 10px;
}

.info-label {
  font-size: 22px;
  color: var(--tertiary-color);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

/* Aliados Comerciales dentro de info-card */
.aliados-card {
  min-height: 140px;
  padding: 24px 8px 16px 8px;
}

.aliados-logos-wrap {
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.aliado-logo {
  max-width: 90px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.2s, transform 0.2s;
  margin: 6px 8px;
}

.aliado-logo:hover {
  filter: none;
  transform: scale(1.08);
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #703e97;
  --secondary-color: #22a9a2;
  --tertiary-color: #e56b9c;
  --section-bg-color: #f9f9f9;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #e9eaeb;
  --featured-border-color: #727aab;

  --body-font-family: 'DM Sans', sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --menu-font-size: 12px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -3px;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--secondary-color);
  letter-spacing: -3px;
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

::selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--secondary-color);
  color: var(--white-color);
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.section-title-wrap {
  background: var(--tertiary-color);
  border-radius: var(--border-radius-small);
  padding: 10px 30px;
}

.section-title-wrap h2 {
  color: var(--primary-color);
  font-size: 40px;
  background: transparent;
}

/* Alinear el texto en contacto */
#section_5 .section-title-wrap {
  padding-left: 12px;
  padding-right: 12px;
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/

/* Icono de la barra de navegación */
.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  color: var(--primary-color);
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}

/* Icono de la barra de navegación */
.is-sticky .navbar-icon {
  background: var(--primary-color);
  color: var(--white-color);
}

/*Iconos del form del footer*/
.form-check-icon {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn,
.navbar .custom-btn {
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar .custom-btn {
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 8px 22px;
}

/* Hover del boton de numero de telefono en la barra de navegación */
.navbar .custom-btn:hover {
  background: var(--primary-color);
  border-color: transparent;
  color: var(--tertiary-color);
}

.custom-btn {
  background: var(--tertiary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

/* Hover del boton personalizado */
.custom-btn:hover {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--p-color);
}

/* Hover del boton con borde personalizado */
.custom-border-btn:hover {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION no tocar grasia
-----------------------------------------*/
.sticky-wrapper {
  position: relative;
  z-index: 222;
  height: auto !important;
}

/* Barra de navegación sticky */
.is-sticky,
.is-sticky .navbar .container {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
}

/* Barra de navegación sticky, titulo novex store*/
.is-sticky .navbar-brand,
.is-sticky .navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-bottom: 10px;
  vertical-align: middle;
}

/* Secciones de nav bar */
.is-sticky .navbar-nav .nav-link {
  color: var(--p-color);
}

/*Boton de numero de telefono en la barra de navegación*/
.is-sticky .navbar .custom-btn {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Hover del boton de numero de telefono en la barra de navegación */
.is-sticky .navbar .custom-btn:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.navbar {
  background: transparent;
  position: absolute;
  z-index: 9;
  right: 0;
  left: 0;
  transition: all 0.3s;
  padding-top: 15px;
  padding-bottom: 0;
}

.navbar .container {
  border-radius: var(--border-radius-small);
  padding: 10px 25px;
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
  margin-right: 20px;
  margin-left: 20px;
}

/* Secciones de nav bar */
.navbar-nav .nav-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: color 0.3s;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link::after {
  content: "";
  background: transparent;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Hover para secciones de nav bar */
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  background: var(--tertiary-color);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--tertiary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 300px;
  padding-bottom: 330px;
}

@media screen and (min-width: 991px) {
  .hero {
    height: 60vh;
  }
}

.hero-title,
.hero h2 {
  background: var(--primary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
  border-radius: var(--border-radius-large);
  display: inline-block;
  padding: 8px 24px;
}

.hero-title {
  font-size: 44px;
}

.hero h2 {
  font-size: 38px;
}

.hero-text {
  position: relative;
  z-index: 22;
  top: 70px;
}

/* Carrusel */
.hero-carousel {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  margin-top: 85px;
  position: absolute;
  display: block;
  z-index: 1;
}

/* Imagenes del carrusel */
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel .carousel-item img {
  height: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  object-fit: contain;

}

.hero-image-wrap {
  background: var(--white-color);
  border-radius: 100%;
  width: 350px;
  height: 350px;
  position: absolute;
  z-index: 22;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 22;
  top: 0;
  width: 100%;
  min-width: 550px;
}

.hero svg {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  pointer-events: none;
}

/*---------------------------------------
  CINTILLO ANIMADO
-----------------------------------------*/
.cintillo-container {
  background-color: #f8e1e1;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 1px solid #ffcdd2;
  width: 100%;
  position: relative;
  z-index: 10;
  margin-top: 0px;
  margin-bottom: 64px;
}

.cintillo-texto {
  display: inline-block;
  animation: desplazar 30s linear infinite;
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  color: #d32f2f;
  padding-left: 100%;
}

.cintillo-item {
  margin: 0 40px;
  display: inline-block;
}

@keyframes desplazar {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 991.98px) {
  .cintillo-container {
    margin-top: 0px;
  }
}

@media (max-width: 575.98px) {
  .cintillo-container {
    margin-top: 0px;
  }
}

.about-thumb {
  padding-right: 20px;
  padding-left: 20px;
}

.about-us-picture {
  width: 600px;
  height: 500px;
  object-fit: cover;
  margin-right: 12px;
}

/* Igualar altura de los blogs y alinear contenido */
.projects-thumb {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.projects-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*---------------------------------------
  CLIENTS
-----------------------------------------*/

.clients-item-height {
  height: 120px;
}

.clients-image {
  display: block;
  max-width: 100px;
  margin: auto;
  transition: all ease 0.2s;
}

.clients-image:hover {
  transform: scale(1.3);
}


/*---------------------------------------
  SERVICES
-----------------------------------------*/
.services,
.featured {
  background: var(--section-bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.services-thumb {
  background: var(--white-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 20px 10px 32px 20px;
  /* Padding para tarjetas de ofertas */
  transition: all 0.5s;
}

.services-thumb-up {
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
}

.services-thumb:hover {
  border: 2px solid var(--secondary-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

.services-thumb:hover .services-icon-wrap {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}

.services-icon-wrap {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  transform: rotate(-35deg) translateY(55px);
  transition: all ease 0.5s;
}

.services-icon {
  font-size: 90px;
  position: relative;
  bottom: 15px;
}

.services-thumb:hover .services-price-wrap {
  background: var(--secondary-color);
}

.services-thumb:hover .services-price-overlay {
  background: var(--primary-color);
}

.services-price-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 3px 10px 6px 15px;
  transition: all ease 0.5s;
}

.services-price-text {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.services-price-overlay {
  background: var(--secondary-color);
  border-bottom-left-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  pointer-events: none;
}


/*---------------------------------------
  PROJECTS
-----------------------------------------*/
.projects-thumb {
  background: var(--section-bg-color);
  border: 2px solid var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 40px;
  transition: all ease 0.5s;
}

.projects-thumb:hover {
  border-color: var(--secondary-color);
}

.projects-thumb:hover .projects-image,
.projects-thumb:focus .projects-image {
  transform: rotate(0) translateY(0);
}

.projects-thumb .popup-image {
  display: block;
  width: 100%;
  height: 100%;
}

.projects-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
  transform: rotate(10deg) translateY(80px);
  transition: all ease 0.5s;
}

.projects-title {
  margin-bottom: 20px;
}

.projects-tag {
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}


.product-price .currency {
  display: inline-block;
  margin-right: 5px;
}

/* Espacio del precio en Promociones */
.services .product-price {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

/*---------------------------------------
  CONTACT
-----------------------------------------*/
.contact {
  background: var(--section-bg-color);
}

.contact-info {
  background: var(--white-color);
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 60px 30px 30px 30px;
  height: 100%;
}

.contact-info-border-start {
  border-right: 1px solid var(--border-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.contact-form {
  margin-left: 0;
  /* full width in its column */
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  background: var(--white-color);
  box-shadow: none;
  border: 2px solid var(--border-color);
  color: var(--primary-color) !important;
  margin-bottom: 24px;
  padding-top: 16px;
  /* para el grosor del form */
  padding-bottom: 16px;
  outline: none;
}

.form-floating>label {
  color: var(--p-color);
}

.form-check-inline {
  vertical-align: middle;
  width: 100%;
  position: relative;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 0;
}

.custom-form .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-label-text {
  color: var(--p-color);
  display: block;
  font-size: copyright-font-size;
  margin-top: 5px;
}

.form-check-input[type=checkbox] {
  background: var(--white-color);
  border: 2px solid var(--border-color);
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 40px 50px;
}

.form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form-check-input:hover,
.form-check-input:checked {
  background-color: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: transparent;
  border-color: var(--secondary-color);
}

.custom-form .form-floating textarea {
  min-height: 170px;
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: #fff !important;
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}


.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--tertiary-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.site-footer-title {
  font-size: var(--menu-font-size);
  color: var(--dark-color);
  text-transform: uppercase;
}

.copyright-text-wrap p,
.copyright-text {
  font-size: var(--copyright-font-size);
}

.copyright-text {
  border-right: 1px solid var(--border-color);
  padding-right: 25px;
  margin-right: 20px;
}

.copyright-text-wrap a {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-large);
  font-size: var(--copyright-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px 2px 5px 2px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.social-icon-link:hover {
  background: var(--secondary-color);
  border-color: transparent;
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .hero {
    padding-top: 380px;
    padding-bottom: 380px;
  }

  .hero-image-wrap {
    top: -50px;
    width: 400px;
    height: 400px;
  }

  .hero-image {
    min-width: 650px;
  }

  .hero-title,
  .hero h2 {
    font-size: var(--h2-font-size);
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar .container {
    background: var(--white-color);
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }

  .navbar-icon {
    background: var(--tertiary-color);
    color: var(--white-color);
    width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .navbar .custom-btn {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
  }

  .navbar-toggler .navbar-toggler-icon,
  .navbar-toggler .navbar-toggler-icon:before,
  .navbar-toggler .navbar-toggler-icon:after {
    background: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-left: 0;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding-top: 200px;
    padding-bottom: 400px;
  }

  .hero-text {
    top: 0;
    margin-bottom: 120px;
  }

  .about-thumb {
    padding-right: 0;
    padding-left: 0;
  }

  .about-numbers {
    font-size: 42px;
  }

  .services-thumb-up {
    bottom: 0;
    margin-bottom: 32px;
  }

  .services-thumb {
    margin-bottom: 32px;
    padding-bottom: 270px;
  }

  .services-icon-wrap {
    width: 45%;
    height: 60%;
  }

  .services .col-lg-10 .row .col-lg-6:last-child,
  .projects .col-lg-4:last-child {
    margin-bottom: 0;
  }

  .projects-thumb {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .contact-info {
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    padding: 40px 30px;
  }

  .contact-info-border-start {
    border-right: 0;
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-small) var(--border-radius-small) 0 0;
  }
}

@media screen and (max-width: 575px) {
  .navbar .container {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .custom-btn,
  .navbar .custom-btn {
    font-size: 13px;
    padding: 6px 12px;
  }

  .navbar-icon {
    font-size: var(--copyright-font-size);
    width: 35.5px;
    height: 35.5px;
    line-height: 35.5px;
  }

  .hero-image-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-image {
    min-width: inherit;
  }
}

.brands-slider {
  display: block !important;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.brands-slider .slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
}

.clients-image {
  max-height: 200px;
  width: auto;
}

/*---------------------------------------
  ARREGLOS PARA VISTA DEL MOVIL
-----------------------------------------*/
@media (max-width: 991.98px) {
  .navbar .d-lg-none {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .navbar-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Cintillo responsive */
@media (max-width: 991.98px) {
  .cintillo-container {
    margin-top: -10 !important;
  }
}

@media (max-width: 575.98px) {
  .cintillo-container {
    margin-top: -100px !important;
  }
}

.testimonios-slider .slick-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 10px;
}

.testimonio-item {
  width: 100% !important;
  max-width: 600px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 8px 10px !important;
  height: auto !important;
  transition: transform 0.3s ease;
}

.testimonio-avatar {
  margin-right: 10px;
}

.testimonios-slider blockquote {
  margin-left: 0;
}

.testimonios-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 20px;
  display: flex !important;
  justify-content: center;
  padding: 0;
}

.testimonios-slider .slick-dots li {
  margin: 0 5px;
}

.testimonios-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: #ccc;
  border: none;
  text-indent: -9999px;
}

.testimonios-slider .slick-dots li.slick-active button {
  background: var(--primary-color);
}

@media (max-width: 991px) {
  .testimonios-slider {
    overflow: hidden;
    padding: 0 10px;
  }

  .testimonios-slider .slick-list {
    margin: 0 -10px;
  }

  .testimonios-slider .slick-slide {
    margin: 0 10px;
  }

  .testimonio-item {
    width: 100%;
    max-width: 500px;
    gap: 12px;
    transform: scale(0.97);
  }

  .testimonios-slider .slick-current .testimonio-item {
    transform: scale(1);
  }

  .testimonios-slider .slick-dots {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (max-width: 576px) {
  .testimonios-slider .slick-slide {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 8px;
  }

  .testimonio-item {
    width: 95%;
    max-width: none;
    flex-direction: row;
    gap: 8px;
  }

  .testimonios-slider blockquote {
    width: 100%;
    font-size: 0.95em;
    padding: 10px 8px;
    box-sizing: border-box;
  }
}