@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;600;800&display=swap');

:root {
  --primary: #059669;
  /* Emerald 600 */
  --primary-hover: #047857;
  --secondary: #fbbf24;
  /* Amber 400 (Gold) */
  --dark: #0f172a;
  /* Slate 900 */
  --light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--light);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.bienvenidos {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url("../img/Background-1.jpg") no-repeat center top;
  color: #fff;
  background-size: cover;
  background-attachment: fixed !important;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.encabezado {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: var(--transition);
}

.NoEstilo {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.encabezado .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.encabezado .logo img {
  width: 40px;
  height: auto;
}

/*ESTILOS PARA EL BOTON: BUSCAR Y MENU*/
.boton-buscar,
.boton-menu {
  border: 0;
  font-size: 2rem;
  margin: 0;
  padding: 0 .5rem;
  background: transparent;
  color: #fff;
}

/*Cuando el bot├│n est├í enfocada se quita el efecto*/
.boton-buscar:focus,
.boton-menu:focus {
  outline: 0;
}

/*alinear los botones a la derecha*/
.boton-buscar {
  margin-left: auto;
  margin-right: .8rem;
}

/*Estilos bloque buscar */
#bloque-buscar {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.contenedor-bloque-buscar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 3rem;
  margin: 1rem 0;
}

/*selector de atributo*/
.contenedor-bloque-buscar input[type="text"] {
  border: 0;
  border-radius: 5px 0 0 5px;
  padding: 1rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.contenedor-bloque-buscar input[type="Submit"] {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border: 0;
  border-radius: 0 5px 5px 0;
  background: #12AFAF;
  color: #fff;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 0 1rem;
}

/*estilos menu para movil*/
#menu-principal {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

#menu-principal ul {
  padding: 0;
  list-style: none;
  margin: 1rem 0 0 0;
}

#menu-principal ul a {
  display: block;
  padding: .8rem 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  border-top: 1px solid #8c8888;
  text-decoration: none;
}

#menu-principal ul a:hover {
  color: #12AFAF;
}

#menu-principal ul a:hover,
#menu-principal ul li.active a {
  color: #12AFAF;
}

.texto-encabezado {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.texto-encabezado .display-4 {
  margin-top: 4rem;
}

.texto-encabezado .btn-primary {
  margin-top: 1rem;
}

.btn-primary {
  color: #fff;
  background-color: #12AFAF;
  border-color: transparent;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.btn-primary:hover {
  color: #fff;
  background-color: #009500;
  border-color: transparent;
}

.alinear-texto-encabezado-centro {
  text-align: center;
}

.flecha-bajar a {
  display: inline-block;
  color: #fff;
  font-size: 4rem;
  -webkit-animation: flecha-animada 2s ease-in-out infinite;
  animation: flecha-animada 2s ease-in-out infinite;
}

/*efecto de la flecha para abajo*/
@-webkit-keyframes flecha-animada {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes flecha-animada {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* */
.agencia {
  background: #12AFAF;
  color: #fff;
}

/* cambiar la imagen de agencia */
.agencia img {
  width: 102%;
  margin: 0 auto;
  display: block;
}

/*-------Tu mejor eleccion -------*/
.color-span-1 {
  color: #12AFAF;
}

.tu-mejor-eleccion ul,
.tu-mejor-eleccion ul li {
  list-style: none;
}

.tu-mejor-eleccion ul li .fa {
  list-style: none;
  font-size: 2.8rem;
  background: #009500;
  border-radius: 50%;
  width: 5.0rem;
  height: 5.0rem;
  line-height: 5.0rem;
  color: white;
}

.tu-mejor-eleccion ul li .contenedor-eleccion h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: .8rem;
}

.tu-mejor-eleccion ul li {
  min-height: 10.5rem;
}

/*-------NUESTROS SERVICIOS -------*/
.servicios {
  background: url("../img/Background-2.jpg") no-repeat center center;
  color: white;
  background-size: cover;
  background-attachment: fixed !important;
}

.color-span-2 {
  color: white;
}

.servicios article {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1rem 0;
}

.servicios img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60px;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  overflow: hidden;
  margin-right: 1rem;
}

.servicios h3 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  margin: 0;
  font-size: 1.1rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.servicios h3 a {
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.servicios h3 a::after {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 2rem;
  margin-left: 1rem;
  opacity: .5;
  position: relative;
  left: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.servicios h3 a:hover::after {
  left: -.5rem;
  opacity: 1;
  color: #12AFAF;
}

/*-------SECCION PIE DE PAGINA -------*/
.piedepagina {
  background: #111111;
  color: white;
  text-align: center;
  font-size: .9rem;
}

.piedepagina .redes-sociales {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.piedepagina .redes-sociales a {
  color: white;
  font-size: 2rem;
  margin: 0 .5rem;
  opacity: .7;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.piedepagina .redes-sociales a:hover {
  opacity: 1;
}

.ir-arriba {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 3rem;
  color: #12AFAF;
  text-decoration: none;
  z-index: 99999;
  line-height: 0;
  display: none;
  -webkit-transition: all .5 ease;
  transition: all .5 ease;
}

.ir-arriba:hover {
  outline: 0;
  text-decoration: none;
  color: white;
}

/*----------------------------------------------------------
EMPIEZAN LAS MEDIAS QUERIES
-----------------------------------------------------------*/
@media (min-width: 768px) {
  #menu-principal {
    height: auto !important;
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-left: auto;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  #menu-principal ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 0 0;
  }

  #menu-principal ul li a {
    padding: .8rem;
    text-transform: capitalize;
    margin: 0 .3rem;
    border-top: 0px;
    border-bottom: 4px solid transparent;
    -webkit-transition: all .5 ease;
    transition: all .5 ease;
  }

  #menu-principal ul li.active a,
  #menu-principal ul li a:hover {
    color: #12AFAF;
    border-bottom: 4px solid;
  }

  .boton-buscar {
    margin-left: 1rem;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  #bloque-buscar {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    position: absolute;
    width: 20rem;
    right: 3rem;
    top: 4rem;
    -webkit-transition: all .5 ease;
    transition: all .5 ease;
  }

  /* ------- Seccion Servicios ----*/
  .servicios article {
    margin: 1rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .servicios img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 160px;
    -ms-flex: 0 0 160px;
    flex: 0 0 160px;
    overflow: hidden;
    margin-right: 0;
    margin-bottom: 1rem;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }

  .servicios article:hover img {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .servicios h3 a::after {
    display: none;
  }

  .servicios h3 {
    margin: 0 0 .5rem 0;
    font-size: 1.5rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
  }

  .servicios h3 a {
    display: block;
    width: 100%;
  }

  .servicios p {
    width: 100%;
  }

  .btn-info {
    margin-top: auto;
  }

  .paginas-internas .lista-servicios .col-md-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .paginas-internas .lista-servicios .item-servicios {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .paginas-internas .lista-servicios .item-servicios .btn-primary {
    margin-top: auto;
  }
}

@media (min-width: 992px) {
  html {
    font-size: 16px;
  }

  .tu-mejor-eleccion ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 7rem;
  }

  .tu-mejor-eleccion ul li .fa {
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-right: 1rem;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }

  .tu-mejor-eleccion ul li:hover .fa {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background: #12AFAF;
  }

  .contenedor-eleccion {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0px;
    -ms-flex: 1 0 0px;
    flex: 1 0 0px;
  }

  .tu-mejor-eleccion u li .contenedor-eleccion h4 {
    margin-top: 0;
    font-size: 1rem;
  }

  .tu-mejor-eleccion ul:first-child .fa {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-left: 1rem;
    margin-right: 0;
  }

  .tu-mejor-eleccion u li p {
    font-size: .85rem;
  }
}

/*------------------------
Estilos pagina nosotros
---------------------------*/
.paginas-internas .bienvenidos {
  height: 60vh;
}

.paginas-internas .ruta {
  background: #12AFAF;
  color: white;
}

.paginas-internas .ruta a {
  color: white;
  text-decoration: none;
}

.paginas-internas .ruta a:hover {
  text-decoration: underline;
}

.paginas-internas .card-header a {
  color: #12AFAF;
  text-decoration: none;
}

.paginas-internas .card .card-header a {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.paginas-internas .card .card-header a:hover {
  text-decoration: underline;
  color: #12AFAF;
  cursor: pointer;
}

/* ---------------------------------
Fundadores y Colaboradores --------*/
.pd-top {
  padding-top: .5rem;
}

/*-------------------------------------
ESTILO PAGINAS SERVICIOS
--------------------------------------*/
.paginas-internas .lista-servicios {
  background: #12AFAF;
}

.paginas-internas .lista-servicios h2 {
  color: white;
}

.paginas-internas .lista-servicios .item-servicios {
  background: white;
  text-align: center;
  border: 5px solid gray;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.paginas-internas .lista-servicios .item-servicios img {
  height: 125px;
  width: 125px;
  background-repeat: no-repeat;
  background-position: 50%;
  border-radius: 50%;
  background-size: 100% auto;
  margin-bottom: 1rem;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.paginas-internas .lista-servicios .item-servicios:hover img {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*---------------------------------------------
MEDIA QUERIES PARA IMG EQUIPO METHRIKS Y COLABORADORES
-----------------------------------------------*/
@media (min-width: 1200px) {
  .paginas-internas .lista-servicios .item-servicios img {
    margin-left: 6rem;
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  .paginas-internas .lista-servicios .item-servicios img {
    margin-left: 4rem;
  }
}

@media (min-width: 992px) and (max-width: 1099px) {
  .paginas-internas .lista-servicios .item-servicios img {
    margin-left: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .paginas-internas .lista-servicios .item-servicios img {
    margin-left: 2rem;
  }
}

/* ---------------------------------
SECCION DE ULTIMOS PROYECTOS
------------------------------------ */
.ultimos-proyectos a {
  text-decoration: none;
}

.ultimos-proyectos a h4 {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  color: black;
}

.ultimos-proyectos .container {
  padding-left: 0;
  padding-right: 0;
}

.ultimos-proyectos .owl-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: .3rem 0;
}

.ultimos-proyectos .owl-prev,
.ultimos-proyectos .owl-next {
  font-size: 3rem;
  margin: 0 .5rem;
  color: #12AFAF;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.ultimos-proyectos .owl-prev:hover,
.ultimos-proyectos .owl-next:hover {
  color: #009500;
}

/* ------------------------------------
ARREGLOS DE LA WEB
--------------------------------------*/
/*---------------------------------------------
MEDIA QUERIES PARA IMG BACKGROUND  INDEX ALTURA
-----------------------------------------------*/
@media (min-height: 320px) and (max-height: 360px) {
  .bienvenidos {
    height: 160vh;
  }
}

@media (min-height: 361px) and (max-height: 419px) {
  .bienvenidos {
    height: 150vh;
  }
}

@media (min-height: 420px) and (max-height: 489px) {
  .bienvenidos {
    height: 120vh;
  }
}

@media (min-height: 490px) {
  .bienvenidos {
    height: 100vh;
  }
}

/*# sourceMappingURL=estilos.css.map */
/* Premium Styles and Alignment Refinements */
.service-card {
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 24px;
  transition: var(--transition);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card p {
  color: #fff;
  opacity: 1;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.service-card h3 {
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.service-card img {
  width: 96px !important;
  height: 96px !important;
  margin-bottom: 1.5rem;
  object-fit: contain;
  transform: scale(1.2);
  /* Boost visibility by 20% */
}

.eleccion-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eleccion-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.client-logo {
  max-width: 140px;
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Logo Carousel / Slider Styles */
.logo-slider {
  height: 150px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-slider::before,
.logo-slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: '';
  height: 150px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.logo-slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.logo-slider::before {
  left: 0;
  top: 0;
}

.logo-track {
  animation: scroll 30s linear infinite;
  display: flex;
  width: calc(250px * 16);
}

.logo-track:hover {
  animation-play-state: paused;
}

.slide {
  height: 150px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.slide .client-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
  filter: grayscale(100%);
  opacity: 0.6;
}

.slide:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(2.2);
}

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

  100% {
    transform: translateX(calc(-250px * 8));
  }
}