/* CSS content (all pages) */
:root {
  --blak-text: #555555;
  --navbar-height: 5rem;
  --background-menu: #262b37;
  --menu-color: #fff;
  --menu-contrast-color: #c29a62;
  --banner-full-height: 80vh;
  --banner-height: 65vh;
  --banner-width: 90vw;
  --primary-color: #033e30;
  --secondary-color: #bdcec8;
  --contrast-color: #c29a62;
  --atention-color: #ffb727;
  --font-size-btn: 1.5rem;
  --firs-color: #000a54;
  --second-color: #888;
  --principal-margin: 150px;
  --global-x-margin: 2rem;
}

html {
  scroll-behavior: smooth;
}

ul.nav__link {
  list-style: none;
}

.nav__rs {
  display: inline-block !important;
  width: 30px;
  margin: 0 4px;
}

.nav__rs:hover {
  filter: drop-shadow(0px 0px 5px #c29a62);
}

.nav__link {
  font-weight: normal;
  font-size: calc(var(--navbar-height) * 0.2) !important;
  text-transform: uppercase;
}

.nav__menu {
    z-index: 1000;
}

img.slide-01.stretch {
  max-width: 800px !important;
  min-width: 400px !important;
  display: block;
  margin: auto;
  height: auto !important;
}
#splide-banner-slide01 {
  height: var(--banner-full-height) !important;
  top: 38px;
}

@media screen and (max-width: 1400px) {
  .nav__list {
    column-gap: 2.5rem !important;
  }
}

@media screen and (max-width: 1200px) {
  .nav__list {
    column-gap: 1.5rem !important;
  }
}

@media screen and (max-width: 1100px) {
  .nav__list {
    column-gap: 0.5rem !important;
  }
}

@media screen and (max-width: 770px) {
  img.slide-01.stretch {
    max-width: 400px !important;
  }
}

#ix_services {
  position: relative;
}

.textura-verde {
  position: absolute;
  top: -10rem;
  left: 0;
  width: 640px;
}

.textura-gris {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 600px;
  transform: rotateZ(180deg);
}

.services-grid,
.beneficios-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 8rem;
  flex-wrap: wrap;
}

.service-card,
.beneficio-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding: 20px;
  text-align: center;
  width: 400px;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-content {
  position: relative;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  border-radius: 15px;
}

.card-content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: solid 3px #008080;
  left: 12px;
  top: 12px;
  z-index: -1;
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.card-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.card-button {
  margin-top: 55px;
}

.avm-button {
  position: relative;
  display: inline-block;
  background: #008080;
  color: white;
  border: none;
  padding: 12px 55px;
  border-radius: 15px;
  font-size: 1.8rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.avm-button:hover {
  background: #006666;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
}

.avm-button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: solid 2px #008080;
  left: 7px;
  top: -7px;
  z-index: -1;
}

/* Iconos SVG personalizados */
.certificaciones-icon svg {
  stroke: white;
  stroke-width: 2;
}

.tramites-icon svg {
  stroke: white;
  stroke-width: 2;
}

.capacitaciones-icon svg {
  stroke: white;
  stroke-width: 2;
}

.ttl-bg {
  position: absolute;
  background-color: #44a09e;
  width: 50%;
  height: 2rem;
  left: 0;
  z-index: -1;
}

.ttl-bg::after {
  content: "";
  position: absolute;
  background-color: #3fb9b3;
  width: 110%;
  height: 2rem;
  left: 0;
  top: 100%;
}

.ttl-bg::before {
  content: "";
  position: absolute;
  background-color: #488888;
  width: 90%;
  height: 2rem;
  left: 0;
  top: -100%;
}

#ix_nosotros {
  margin-top: 10rem;
  position: relative;
}

#ix_nosotros .container {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 30px;
}

#ix_nosotros h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  margin-top: -10px;
}

#ix_nosotros .nosotros-texto {
  padding-right: 3rem;
}

#ix_nosotros p {
  font-size: 2rem;
  padding-top: 1rem;
  text-align: justify;
  line-height: 3rem;
}

#ix_nosotros .avm-button {
  margin-top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

#ix_nosotros img {
  box-shadow: 30px 30px 0px -17px #3fb9b3;
}

/* Estilos para la sección de beneficios */
#ix_beneficios {
  margin-top: 16rem;
  position: relative;
  background-image: url(/medias/image/amvcs/textura_gris.svg);
  background-position: bottom;
  background-size: 600px;
  background-repeat: no-repeat;
  background-position-x: 100%;
}

.beneficios-titulo {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.beneficio-img .backg {
  width: 240px;
}

.beneficio-card h3 {
  color: #008080;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.beneficio-card p {
  color: #666;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin: 0;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 5rem;
}

#ix_comohacemos {
  position: relative;
  background-color: #f4fafa;
  margin-top: 10rem;
  padding-bottom: 3rem;
}

#ix_comohacemos .laterales {
  position: absolute;
  top: 0;
  width: 18px;
  height: 100%;
  object-fit: cover;
}

#ix_comohacemos .centrales {
  position: absolute;
  width: auto;
  height: 50%;
  top: 25%;
}

#ix_comohacemos .principal {
  position: relative;
  z-index: 1;
}

#ix_comohacemos .principal-movil {
  display: none;
}

#ix_comohacemos h1 {
  color: #008080;
  font-size: 2.5rem;
  text-align: center;
  padding-top: 3rem;
}

#ix_hemosapoyado {
  position: relative;
  margin-top: 10rem;
}

#ix_hemosapoyado .image {
  background: url(/medias/image/amvcs/industrias.webp);
  background-size: cover;
  position: absolute;
  z-index: -1;
  height: 100%;
  right: 0;
  width: 700px;
}

#ix_hemosapoyado .image::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 14%,
    rgba(255, 255, 255, 0) 90%
  );
  width: 30%;
  height: 100%;
  left: 0;
  top: 0;
}

#ix_hemosapoyado h1 {
  text-transform: uppercase;
  color: #333;
  font-size: 2.5rem;
}

ul.avm-list,
#ix_hemosapoyado ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 151%;
}

ul.avm-list li,
#ix_hemosapoyado li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
}

ul.avm-list li::before,
#ix_hemosapoyado li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 28px;
  height: 28px;
  background-image: url("/medias/image/amvcs/casilla_check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#ix_fraseinicio {
  background-image: url(/medias/image/amvcs/frase_inicio.webp);
  margin-top: 7rem;
  padding: 4rem;
  background-size: cover;
}

#ix_fraseinicio .container {
  display: flex;
  align-items: center;
}

#ix_fraseinicio img {
  width: 6rem;
  margin-right: 4rem;
}

#ix_fraseinicio section {
  font-weight: 800;
  font-size: 3.2rem;
  color: #fff;
  max-width: 631px;
  text-align: justify;
}

#contactus .image {
  position: relative;
  width: 40%;
  background: url(/medias/image/amvcs/contacto.webp);
  background-size: cover;
}

#contactus .image::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 60%
  );
  width: 30%;
  height: 100%;
  left: 70%;
  top: 0;
  z-index: 1;
}

#contactus .body {
  display: flex;
}

#contactus .container {
  width: calc(1600px * 0.6);
  margin-left: var(--global-x-margin);
}

#contactus .container h2 {
  color: #008080;
  font-size: 2.5rem;
  text-transform: uppercase;
}

#contactus .container span {
  color: #333;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  display: block;
}

#contactus .container .incontact {
  display: flex;
  flex-wrap: wrap;
}

#contactus .container input,
#contactus .container select {
  background-color: #e7f6f5;
  border: none;
  padding: 10px;
  font-size: 1.3rem;
  margin-right: 15px;
  margin-bottom: 25px;
  color: #1d8d8b;
  width: calc(100% - 15px);
}

#contactus .container select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #e7f6f5;
  border: none;
  padding: 10px 40px 10px 10px;
  /* espacio para el icono */
  font-size: 1.3rem;
  margin-right: 15px;
  margin-bottom: 25px;
  color: #1d8d8b;
  width: calc(100% - 15px);
  background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23008080" stroke-width="3" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6" /></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px 24px;
}

#contactus .container input::placeholder {
  color: #008080;
  opacity: 1;
}

#contactus .container .name,
#contactus .container .empresa {
  width: calc(50% - 15px);
}

#contactus .container .subject {
  padding-bottom: 200px;
  margin-bottom: 2.5rem;
}

/* Estilos del Footer */
.footer {
  background: #008080;
  color: white;
  padding: 4.5rem 0 2rem 0;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  gap: 2rem;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  margin-bottom: 1rem;
  place-self: center;
}

.logo-shapes {
  width: 200px;
  height: auto;
}

.logo-shapes img {
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
}

.company-description {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 1rem;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
}

.contact-item a {
  color: white;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 40px;
  height: 40px;
}

.contact-text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
}

.page-title {
  position: relative;
  background-size: 100% 100%!important;
  text-align: center;
}

.page-title h1 {
  text-transform: uppercase;
  color: white;
  font-size: 4rem;
  letter-spacing: 0.1rem;
  margin: 0;
  padding: 14rem 0;
}

.catalogo-card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 8rem;
}

.image-card {
  padding: 4rem;
  border-radius: 0 20px 20px 0;
  box-shadow: 12px 0px 11px 4px rgba(50, 150, 130, 0.3);
}

.reverse .image-card {
  border-radius: 20px 0 0 20px;
  box-shadow: -12px 0px 11px 4px rgba(50, 150, 130, 0.3);
}

.image-catalogo {
  position: relative;
  background-size: cover;
  width: 500px;
  height: 320px;
  border-radius: 15px;
}

.image-catalogo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: #008080;
  left: -12px;
  top: -12px;
  z-index: -1;
}

.image-catalogo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: solid 3px #008080;
  left: 12px;
  top: 12px;
  z-index: -1;
}

.content-card {
  width: 575px;
}

.content-card h3 {
  color: #008080;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.content-card p {
  font-size: 1.6rem;
}

ul.avm-list li {
  line-height: 2.5rem;
  margin-left: 3rem;
  padding-left: 2.7rem;
}

ul.avm-list li::after {
  content: "";
  position: absolute;
  left: -2rem;
  top: 3rem;
  width: 90%;
  border-bottom: solid 1px #008080;
}

.catalogo-grid {
  position: relative;
}

.catalogo-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14rem;
  bottom: 0;
  width: 4px;
  background: #b7e4e2;
  transform: translateX(-50%);
  z-index: -1;
  height: calc(100% - 28rem);
}

.catalogo-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 13.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: #008080;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.catalogo-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12.7rem;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border-radius: 50%;
  border: solid 1px #008080;
  transform: translateX(-50%);
  z-index: 2;
}

.banderin {
  height: 150px;
  display: block;
  margin-left: 100%;
  transform: translateX(calc(-100% + var(--global-x-margin)));
}

#certificaciones.catalogo .container,
#tramites.catalogo .container,
#adicionales.catalogo .container {
  position: relative;
}

#certificaciones.catalogo .container::after,
#tramites.catalogo .container::after,
#adicionales.catalogo .container::after {
  content: "";
  position: absolute;
  left: 100%;
  top: -4rem;
  width: 4px;
  height: calc(100% - 10rem);
  background: #18807f;
  z-index: -1;
}

#certificaciones.catalogo .container::before,
#tramites.catalogo .container::before,
#adicionales.catalogo .container::before {
  content: "";
  position: absolute;
  left: calc(100% - 0.9rem);
  top: -4.7rem;
  width: 35px;
  height: 35px;
  background: #18807f;
  z-index: -1;
  border-radius: 20px;
}

.card-buttons {
  margin-top: 7rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.catalogo {
  margin-top: 10rem;
}

.catalogo .container h2 {
  place-self: center;
  color: #008080;
  font-size: 3rem;
}

.catalogo .container .descrip {
  text-align: center;
  font-size: 2.2rem;
  line-height: 3.7rem;
  margin-top: 5rem;
  margin-bottom: 8rem;
  max-width: 1100px;
  justify-self: center;
}

#tramites .catalogo-card::after,
#tramites .catalogo-card::before {
  display: none;
}

#tramites .banderin {
  margin-left: 0;
  transform: translateX(-3rem);
}

#tramites .image-card {
  padding: 0 2rem 0 0;
  box-shadow: none;
}

#tramites .image-catalogo {
  height: 600px;
  width: calc(500px + 4rem);
}

#tramites.catalogo .container::before {
  left: -0.9rem;
}

#tramites.catalogo .container::after {
  left: 0;
}

#tramites .catalogo-card {
  justify-content: space-evenly;
}

#adicionales ul.avm-list li::after {
  display: none;
}

/* Responsive del Footer */
@media (max-width: 768px) {
  /* Responsive para beneficios */
  .beneficios-titulo {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .beneficios-grid,
  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .beneficio-card {
    padding: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  #ix_hemosapoyado .image {
    filter: opacity(0.5);
  }

  #ix_hemosapoyado .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  #ix_nosotros .container {
    grid-template-columns: 1fr;
  }

  #ix_nosotros .nosotros-texto {
    padding-right: 0;
  }

  #ix_fraseinicio {
    padding: 1rem 0;
  }

  #ix_fraseinicio img {
    width: 1.5rem;
    margin-right: 1rem;
  }

  #ix_fraseinicio section {
    font-size: 1.5rem;
    font-weight: 100;
  }

  #ix_nosotros p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  #ix_nosotros h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-top: -2px;
  }

  .ttl-bg {
    width: 100%;
  }

  .ttl-bg::after {
    width: 100%;
  }

  .ttl-bg::before {
    width: 100%;
  }

  /* Responsive para servicios */
  .service-card,
  .beneficio-card {
    width: 100%;
    min-width: 350px;
  }

  .card-content {
    height: 200px;
    padding: 20px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .avm-button {
    font-size: 1.2rem;
  }

  #ix_comohacemos .principal,
  #ix_comohacemos .centrales {
    display: none;
  }

  #ix_comohacemos .principal-movil {
    display: block;
    background: url(/medias/image/amvcs/esquema_celular.webp);
    background-size: cover;
    width: 400px;
    height: 700px;
    margin: 1rem auto 4rem;
  }

  #contactus .image {
    display: none;
  }

  #contactus .container {
    width: 100%;
    margin-left: 7.5px;
  }

  .contact-info {
    place-items: center;
  }

  .footer-section {
    align-items: center;
    text-align: center;
  }

  .page-title h1 {
    font-size: 2rem;
  }

  .catalogo .container h2 {
    font-size: 2.3rem;
  }

  .catalogo .container p {
    font-size: 1.5rem;
    line-height: 2.2rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
  }

  .page-title {
    background-size: cover;
  }

  .reverse {
    flex-direction: column-reverse !important;
  }

  .image-card,
  .content-card {
    padding: 0 !important;
    margin: auto !important;
    box-shadow: none !important;
    width: 100% !important;
  }

  .catalogo-card {
    margin-top: 4rem;
  }

  .image-catalogo {
    width: 100%;
    height: 300px;
    background-position: center;
    margin-top: 2rem;
  }

  .catalogo-grid::after,
  .catalogo-card::after,
  .catalogo-card::before {
    display: none;
  }

  .catalogo-grid {
    margin-left: 0 !important;
  }

  .card-buttons {
    gap: 20px;
  }

  #tramites .image-catalogo {
    width: 100%;
  }

  #tramites ul.avm-list li::after {
    display: none;
  }
}

@media (max-width: 1340px) {
  .image-card {
    box-shadow: none !important;
  }

  .banderin,
  .catalogo .container::after,
  .catalogo .container::before {
    display: none;
  }

  .catalogo-grid::after,
  .catalogo-card::after,
  .catalogo-card::before {
    left: 90%;
  }

  .catalogo-grid {
    margin-left: 4rem;
  }

  #tramites .image-card {
    margin-top: 4rem;
  }

  .page-title h1 {
    font-size: 2rem;
  }

  .page-title {
    background-size: cover!important;
    background-position: center!important;
  }
}


#ix_valores {
  margin-top: 1rem;
  background-image: url(/medias/image/amvcs/textura_gris-l.svg);
  background-repeat: no-repeat;
  background-size: 21rem;
  padding-top: 9rem;
}
#ix_valores h2 {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  color: #10a9a2;
  overflow: hidden;
}
#ix_valores h2::after {
  position: absolute;
  content: "";
  width: 1000px;
  height: 4px;
  background-color: #10a9a2;
  top: 1.5rem;
  left: 70%;
}
#ix_valores h2::before {
  position: absolute;
  content: "";
  background-color: #10a9a2;
  width: 20px;
  height: 20px;
  border-radius: 25px;
  top: 1rem;
  left: 70%;
}

#ix_valores .container {
  position: relative;
  height: 680px;
}

#ix_valores .container .eschema {
  position: absolute;
  bottom: 0;
  width: 76rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1480px) {
  #ix_valores .container .eschema {
    width: 64rem;
    bottom: 2.5rem;
  }
}

.valor-card {
  display: flex;
  position: absolute;
  width: 320px;
}

.valor-card h3 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--bg-ico-color);
  font-family: Outfit, sans-serif;
}

.valor-card p {
  font-size: 1.4rem;
  line-height: 2rem;
  margin: 1rem 0;
}

.valor01 {
  top: 14%;
  left: 7%;
  text-align: end;
  --bg-ico-color: #1c6b6d;
  flex-direction: column-reverse;
}
.valor02 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  --bg-ico-color: #1c6b6d;
  text-align: center;
  flex-direction: column-reverse;
}
.valor03 {
  top: 14%;
  right: 7%;
  text-align: start;
  --bg-ico-color: #1c6b6d;
  flex-direction: column-reverse;
}
.valor04 {
  top: 30rem;
  left: 0;
  text-align: end;
  --bg-ico-color: #1c6b6d;
  flex-direction: column;
  padding-left: 45px;
}
.valor05 {
  top: 30rem;
  right: 0;
  text-align: start;
  --bg-ico-color: #1c6b6d;
  flex-direction: column;
  padding-right: 45px;
}

#ix_valores .container .ico {
  display: none;	
}

@media (max-width: 1340px) {
  #ix_valores .container .eschema {
    display: none;
  }
  #ix_valores .container .ico {
    width: 90px;
    height: 70px;
    margin: 1rem auto;
    display: block;
  }

  #ix_valores .container {
    position: initial;
    height: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
  }
  .valor-card {
    flex-direction: column;
    position: initial;
    text-align: justify;
    width: 45%;
    padding: 0;
  }
  .valor02 {
    transform: unset
  }
  .valor-card h3 {
    text-align: center;
  }

  #ix_valores h2::after,
  #ix_valores h2::before {
    left: 80%;
  }
}

@media (max-width: 768px) {

  #ix_valores {
    background-size: 13rem;
  }
  .valor-card {
    width: 100%;
  }
  .valor-card h3 {
    font-size: 1.4rem;
  }
  .valor-card p {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
  #ix_valores h2::after,
  #ix_valores h2::before {
    display: none;
  }

  .valor01 {
    background-image: url(/medias/image/amvcs/textura_foco.svg);
    background-position: right;
  }
  .valor02 {
    background-image: url(/medias/image/amvcs/experiencia_verde.svg);
    background-position: left;
  }
  .valor03 {
    background-image: url(/medias/image/amvcs/acompanamiento_verde.svg);
    background-position: right;
  }
  .valor04 {
    background-image: url(/medias/image/amvcs/actualizacion_verde.svg);
    background-position: left;
  }
  .valor05 {
    background-image: url(/medias/image/amvcs/resultados_verde.svg);
    background-position: right;
  }
  .valor-card {
    background-repeat: no-repeat;
  }
}

      .filosofia .container {
  display: flex;
  flex-direction: row;
}
.filosofia .container::before {
  content: "";
  width: 2px;
  height: 80%;
  background-color: var(--bg-ico-color);
  margin-right: 3rem;

}
.filosofia .title {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: var(--bg-ico-color);
  position: relative;
}
.filosofia .title h2 {
  font-size: 3rem;
  margin: 2rem 4rem;
  color: white;
}
.filosofia .container img {
  height: 100%;
  display: block;
  width: 150px;
  align-self: center;
}
.filosofia .container .title::before {
  position: absolute;
  content: "";
  width: 5000px;
  height: 100%;
  background-color: var(--bg-ico-color);
  margin-right: 3rem;
  left: 1rem;
  z-index: -1;
  transform: translateX(-100%);
}
.filosofia .container .title::after {
  position: absolute;
  content: "";
  width: 77px;
  height: 100%;
  background-color: var(--bg-ico-color);
  margin-right: 3rem;
  left: 100%;
  z-index: -1;
}
.filosofia .container section {
  font-size: 2rem;
  margin-left: 3rem;
  margin-top: auto;
  margin-bottom: auto;
  text-align: justify;

}

@media (max-width: 1340px) {
  .filosofia .container {
    flex-direction: column;
    position: relative;
  }

  .filosofia .container img {
    position: absolute;
    left: 0;
    transform: translateX(calc(-50% - 2pX));
  }

  .filosofia .title {
    background-color: transparent;
  }

  .filosofia .title h2 {
    color: var(--bg-ico-color);
  }

  .filosofia .container .title::after,
  .filosofia .container .title::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .filosofia .container section {
  font-size: 1.5rem;
  }
  .catalogo .container .descrip {
      font-size: 2rem;
      line-height: 3rem;
      margin-bottom: 5rem;
  }
}


.modalidades {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3rem
}

.modalidades .m-card {
    background: #214c52;
    padding: 1rem;
    width: 150px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    position: relative;
}

.modalidades .m-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: solid 1px #008080;
    left: 8px;
    top: 8px;
    z-index: -1;
}

.modalidades .m-card span {
    font-size: 1rem;
    color: #fff;
    line-height: 1rem;
    margin-top: 1rem;
}

.modalidades .m-card img {
    width: 60px;
    height: 60px;
}


.cat-capacita {
    margin-top: 6rem;
}

.cat-capacita .bandera {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-position-y: center !important;
    padding-left: 4rem;
}

.cat-capacita h2 {
    margin: 0;
    font-size: 160%;
    color: #fff;
    text-transform: uppercase;
    width: 350px;
}

.cat-capacita .cap-image {
    width: 343px;
    height: 191px;
    background-size: cover !important;
    position: relative;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7%;
}

.cat-capacita .cap-image::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: solid 3px rgb(15 168 160);
    left: 12px;
    top: 12px;
    z-index: -1;
}

.cat-capacita .bandera.seguridad {
    background: url(/medias/image/amvcs/banderin_cadena_suministro.svg) no-repeat;
}

.cat-capacita .seguridad .cap-image {
    background: url(/medias/image/amvcs/ban_seguridad.webp);
}

.cat-capacita .bandera.industrial {
    background: url(/medias/image/amvcs/banderin_seguridad.svg) no-repeat;
    justify-content: right;
    padding-left: 0;
    padding-right: 4rem;
}

.cat-capacita .industrial .cap-image {
    background: url(/medias/image/amvcs/ban_industrial.webp);
}

.cat-capacita .bandera.calidad {
    background: url(/medias/image/amvcs/banderin_mejora.svg) no-repeat;
}

.cat-capacita .calidad .cap-image {
    background: url(/medias/image/amvcs/ban_calidad.webp);
}

@media (max-width: 1340px) {
    .cat-capacita .cap-image {
        width: 225px;
        height: 129px;
        border-radius: 7px;
    }

    .cat-capacita h2 {
        font-size: 150%;
        width: 90%;
    }

    .cat-capacita .industrial h2 {
        text-align: right;
    }

}

@media (max-width: 768px) {
    .cat-capacita .bandera {
        background-image: none;
        padding-left: 0;
    }

    .cat-capacita .cap-image {
        display: none;
    }

    .cat-capacita h2 {
        font-size: 140%;
        width: 100%;
        background-color: #168a88;
        padding: 1rem .5rem 1rem 2rem;
        position: relative;
    }

    .cat-capacita h2::before {
        content: '';
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 2.8rem solid transparent;
        border-bottom: 2.8rem solid transparent;
        border-left: 1.5rem solid #FFF;
    }

    .cat-capacita .bandera.industrial {
        padding-right: 0;
    }

    .cat-capacita .industrial h2 {
        text-align: left;
        background-color: #1c6b6d;
        padding: 1.2rem 2.1rem;
    }

    .cat-capacita .industrial h2::before {
        left: calc(100% - 1.5rem);
        border-right: 1.5rem solid #FFF;
        border-left: none;
    }
}

.cat-lists {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 5rem;
}

.cat-lists ul {
    list-style-type: none;
    padding: 2rem;
    font-size: 115%;
    margin: 1rem;
    width: 450px;
}


.cat-lists ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 15px;
    margin-top: 15px;
    border-bottom: solid 1px #10a9a2;
    padding-bottom: 16px;
}


.cat-lists ul li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url("/medias/image/amvcs/casilla_check.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-title {
  margin-top: 6rem;
  padding-top: 4rem;
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  color: #10a9a2;
  overflow: hidden;
  text-transform: uppercase;
  padding-bottom: 7rem;
  background-position-x: 90%;
  background-repeat: no-repeat;
  background-position-y: 1rem;
  background-size: 7.5rem;
}
.faq-title::after {
  position: absolute;
  content: "";
  width: 1000px;
  height: 4px;
  background-color: #008080;
  top: 1rem;
  left: 77%;
}
.faq-title::before {
  position: absolute;
  content: "";
  background-color: #008080;
  width: 20px;
  height: 20px;
  border-radius: 25px;
  top: 0.5rem;
  left: 77%;
}

@media (max-width: 1120px) {
  .faq-title {
    font-size: 2.5rem;
    background-image: none!important;
    padding-bottom: 0;
  }
  .faq-title::after,
  .faq-title::before {
    display: none;
  }

}





    /* Estilos para la sección de FAQ */
  .preguntas {
    padding: 4rem 0;
    position: relative;
  }

  .faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
  }

  .faq-question:hover {
    background: #f8f9fa;
  }

  .faq-question h3 {
    color: #008080;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    border: solid 1px #008080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
  }

  .faq-icon svg {
    width: 35px;
    height: 35px;
    fill: #008080;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-answer p {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
  }

  #tramites.faq-title {
    background-position-x: 10%!important;
  }
  #tramites.faq-title::before {
    left: 350px!important;
  }
  #tramites.faq-title::after {
    left: 0!important;
    width: 350px!important;
  }


  /* Responsive para FAQ */
  @media (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
      padding: 0 1rem;
    }

    .faq-container {
      padding: 0 1rem;
    }

    .faq-question {
      padding: 1.2rem;
    }

    .faq-question h3 {
      font-size: 1rem;
    }

    .faq-item.active .faq-answer {
      padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .faq-answer p {
      font-size: 1rem;
    }
  }


  /* Botón Volver Arriba */
  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #008080;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
  }

  .scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .scroll-to-top:hover {
    background: #006666;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
    fill: white;
  }

  /* Responsive para el botón */
  @media (max-width: 768px) {
    .scroll-to-top {
      bottom: 20px;
      left: 20px;
      width: 45px;
      height: 45px;
    }

    .scroll-to-top svg {
      width: 18px;
      height: 18px;
    }
  }
