

@import url('https://fonts.googleapis.com/css2?family=Ultra&family=Lato:ital,wght@0,400;0,700;1,400&family=VT323&display=swap');






/* ==========================================================
   CARRETE DE SERVICIOS - TIPOGRAFÍA LIMPIA
   ========================================================== */

.carrete-servicios {
  display: inline-block;
  height: 1.2em;            /* Altura ajustada para texto sin fondo */
  overflow: hidden;
  vertical-align: middle;
  position: relative;
  
  /* ESTILO DE TEXTO */
  font-family: 'Lato', sans-serif !important;
  font-weight: 700;
  color: #132414;           /* Verde Oscuro */
  text-transform: none !important; 
}

.lista-servicios {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  animation: carruselLimpio 15s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.lista-servicios li {
  height: 1.2em;            /* Debe coincidir con el wrapper */
  line-height: 1.2em;
  display: block;
  white-space: nowrap;
}


.punteo-servicios {
  list-style-type: square; /* Solo esta lista tendrá cuadrados */
  color: RED;
}



/* ANIMACIÓN AJUSTADA A 1.2em */
@keyframes carruselLimpio {
  0%, 13%   { transform: translateY(0); }               /* Frase 1 */
  16%, 29%  { transform: translateY(-1.2em); }         /* Frase 2 */
  32%, 45%  { transform: translateY(-2.4em); }         /* Frase 3 */
  48%, 61%  { transform: translateY(-3.6em); }         /* Frase 4 */
  64%, 77%  { transform: translateY(-4.8em); }         /* Frase 5 */
  80%, 93%  { transform: translateY(-6.0em); }         /* Frase 6 */
  100%      { transform: translateY(-7.2em); }         /* Salto al inicio */
}









.btn-presupuesto {
  display: inline-block;
  padding: 12px 30px;
  background-color: #EFEFE6;
  color: #2B3990;
  font-family: 'VT323', monospace !important;
  font-size: 1.8rem;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease; /* Transición enfocada en el movimiento */
  
  /* Sombra: x-2px (izquierda), y 2px (abajo), blur 0 */
  box-shadow: -10px 10px 0px 0px #2B3990;
}

/* EFECTO HOVER: Solo se agranda un poco */
.btn-presupuesto:hover {
  transform: scale(1.05); /* Se agranda un 5% */
  background-color: #EFEFE6; /* Mantenemos el fondo original */
  color: #2B3990; /* Mantenemos el color original */
}

/* EFECTO CLICK: Se "hunde" hacia la sombra */
.btn-presupuesto:active {
  box-shadow: 0px 0px 0px 0px #2B3990;
  transform: translate(-10px, 10px) scale(1.02); /* Mantiene un poquito de escala pero se desplaza */
}

.cta-container {
  margin-top: 50px; /* Este es el "aire" que buscás */
  display: block;
  width: 100%;
}

/* Opcional: si querés que el botón respire también por debajo */
.btn-presupuesto {
  margin-bottom: 20px;
  /* ... el resto de tu código de botón ... */
}






.btn-tienda {
  display: inline-block;
  padding: 12px 30px;
  background-color: #EFEFE6;
  color: #2B3990;
  font-family: 'VT323', monospace !important;
  font-size: 1.8rem;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease; /* Transición enfocada en el movimiento */
  
  /* Sombra: x-2px (izquierda), y 2px (abajo), blur 0 */
  box-shadow: -10px 10px 0px 0px #00a79d;
}

/* EFECTO HOVER: Solo se agranda un poco */
.btn-tienda:hover {
  transform: scale(1.05); /* Se agranda un 5% */
  background-color: #EFEFE6; /* Mantenemos el fondo original */
  color: #2B3990; /* Mantenemos el color original */
}

/* EFECTO CLICK: Se "hunde" hacia la sombra */
.btn-tienda:active {
  box-shadow: 0px 0px 0px 0px #2B3990;
  transform: translate(-10px, 10px) scale(1.02); /* Mantiene un poquito de escala pero se desplaza */
}


/* Opcional: si querés que el botón respire también por debajo */
.btn-tienda {
  margin-bottom: 20px;
  /* ... el resto de tu código de botón ... */
}























@import url('https://fonts.googleapis.com/css2?family=Ultra&display=swap');

.marquee-static-container {
    width: 100%;
    overflow: hidden; /* Evita que aparezca la barra de scroll lateral al entrar */
    text-align: center;
    padding: 20px 0;
}

.phrase-slide {
    display: inline-block;
    font-family: 'Ultra', serif !important;
    color: #efefe6;
    font-size: 3.5rem;
    line-height: 1.2;
    white-space: normal; /* Permite que en móvil se acomode en líneas si es muy larga */
    
    /* Animación: nombre, duración, modo (forwards hace que se quede al final) */
    animation: slideInStop 3s ease-out forwards;
}

@keyframes slideInStop {
    0% {
        transform: translateX(100%); /* Empieza fuera a la derecha */
        opacity: 0;
    }
    100% {
        transform: translateX(0); /* Termina en su posición original */
        opacity: 1;
    }
}

/* Ajuste para teléfonos */
@media (max-width: 768px) {
    .phrase-slide {
        font-size: 1.8rem;
        padding: 0 15px;
    }
}







/* 2. Tipografía para el cuerpo (Párrafos, listas, etc.) */
body, p, span, li, a {
    font-family: 'Lato', sans-serif !important;
}

/* 3. Tipografía para Títulos (H1 al H6) */
h1, .title-a, .title-s, .intro-title {
    font-family: 'Ultra', serif !important;
    color:  #132414;
     /* Ultra no necesita bold, ya es gruesa */
}

h2,{
    font-family: 'lato', serif !important;
    font-color:  #132414;
     
}

/* 4. Tipografía para Botones */
.button, .btn, button, .button-a, .button-big {
    font-family: 'VT323', monospace !important;
}
a {
  color: #1e1e1e;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: #2b3990;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.p-r {
  position: relative;
}

.color-a {
  color: #0078ff;
}

.color-d {
  color: #f5f5f5;
}

.color-text-a {
  color: #4e4e4e;
}

.box-shadow,
.paralax-mf,
.service-box,
.work-box,
.card-blog {
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.box-shadow-a,
.button:hover {
  box-shadow: 0 0 0 4px #cde1f8;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
}

.display-6 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
}

.avatar {
  width: 32px;
  height: 32px;
  margin-right: 4px;
  overflow: hidden;
}

.bg-image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}


.overlay-banner {
  background-color: #191C18;
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 60%;
}



.overlay-banner2 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  
  /* Eliminamos background-color y opacity, y usamos esto: */
  background: linear-gradient(
    to bottom, 
    rgba(25, 28, 24, 0.6), /* Tu color #191C18 al 60% */
    rgba(25, 28, 24, 0.1)  /* Tu color #191C18 al 10% */
  );
}




.overlay-mf {
  background-color: #0078ff;
}

.overlay-mf {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: .7;
}

.paralax-mf {
  position: relative;
  padding: 8rem 0;
}

.display-table {
  width: 100%;
  height: 100%;
  display: table;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*--/ Sections /--*/

.sect-4 {
  padding: 4rem 0;
}

.sect-pt4 {
  padding-top: 4rem;
}

.sect-mt4 {
  margin-top: 4rem;
}

/*--/ Title s /--*/

.title-s {
  font-weight: 600;
  color: #1e1e1e;
  font-size: 1.1rem;
}

/*--/ Title A /--*/

.title-box {
  margin-bottom: 4rem;
}

.title-a {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.subtitle-a {
  color: #4e4e4e;
}

.line-mf {
  width: 40px;
  height: 5px;
  background-color: #0078ff;
  margin: 0 auto;
}

/*--/ Title Left /--*/

.title-box-2 {
  margin-bottom: 3rem;
}

.title-left {
  font-size: 2rem;
  position: relative;
}

.title-left:before {
  content: '';
  position: absolute;
  height: 3px;
  background-color: #0078ff;
  width: 100px;
  bottom: -12px;
}

/*------/ Box /------*/

.box-pl2 {
  padding-left: 2rem;
}

.box-shadow-full {
  padding: 3rem 1.25rem;
  position: relative;
  background-color: #fff;
  margin-bottom: 3rem;
  z-index: 2;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

/*------/ Socials /------*/

.socials {
  padding: 1.5rem 0;
}

.socials ul li {
  display: inline-block;
}

.socials .ico-circle {
  height: 40px;
  width: 40px;
  font-size: 1.7rem;
  border-radius: 50%;
  line-height: 1.4;
  margin: 0 15px 0 0;
  box-shadow: 0 0 0 3px #00A79D;
  transition: all 500ms ease;
}

.socials .ico-circle:hover {
  background-color: #00A79D;
  color: #EFEFE6;
  
  transition: all 500ms ease;
}

/*------/ Ul resect /------*/

.ul-resect,
.socials ul,
.list-ico,
.blog-wrapper .post-meta ul,
.box-comments .list-comments,
.widget-sidebar .list-sidebar,
.widget-tags ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-ico {
  line-height: 2;
}

.list-ico span {
  color: #0078ff;
  margin-right: 10px;
}

/*------/ Ico Circle /------*/

.ico-circle {
  height: 100px;
  width: 100px;
  font-size: 2rem;
  border-radius: 50%;
  line-height: 1.55;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 0 10px #0078ff;
  display: block;
}

/*------/ Owl Carousel /------*/

.owl-theme .owl-dots {
  text-align: center;
  margin-top: 18px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 18px;
  height: 7px;
  margin: 5px 5px;
  background: #cde1f8;
  border: 0px solid #cde1f8;
  display: block;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #cde1f8;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #1B1B1B;
  width: 25px;
}

/*--/ Scrolltop s /--*/

.scrolltop-mf {
  position: relative;
  display: none;
}

.scrolltop-mf span {
  z-index: 999;
  position: fixed;
  width: 42px;
  height: 42px;
  background-color: #0078ff;
  opacity: .7;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 50%;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #2B3990;
  color: #EFEFE6;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #EFEFE6;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #0078ff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*======================================
//--//-->   NAVBAR
======================================*/

.navbar-b {
  /* Al inicio: contenido visible pero fondo transparente */
  background-color: transparent !important;
  opacity: 1 !important;            /* Se ve el logo y links */
  visibility: visible !important;   /* Los links funcionan */
  transition: all 0.5s ease-in-out;
  
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: none !important;      /* Sin sombra al inicio */
}

.navbar-b.navbar-reduce {
  /* Al hacer scroll: aparece el fondo y se achica */
  background-color: #EFEFE6 !important;
  opacity: 0.98 !important;
  visibility: visible !important;

  transform: translateY(0);
  
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out;
}


.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
  position: relative;
  padding-right: 10px;
  padding-left: 0;
}

.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
  color: #EFEFE6; /* color de tipografia para el menu al inicio antes de scroll */
  font-family: 'lato', sans-serif !important; /* El !important fuerza a que use esta y no la del template */
  text-transform: uppercase;

  font-size: 0.9rem; 
}

.navbar-b.navbar-trans .nav-link:before,
.navbar-b.navbar-reduce .nav-link:before {
  content: '';
  position: absolute;
  margin-left: 0px;
  width: 0%;
  bottom: 0;
  left: 0;
  height: 2px;
  transition: all 500ms ease;
}



.navbar-b.navbar-trans .nav-link:hover:before,
.navbar-b.navbar-reduce .nav-link:hover:before {
  width: 35px;
}

.navbar-b.navbar-trans .show > .nav-link:before,
.navbar-b.navbar-trans .active > .nav-link:before,
.navbar-b.navbar-trans .nav-link.show:before,
.navbar-b.navbar-trans .nav-link.active:before,
.navbar-b.navbar-reduce .show > .nav-link:before,
.navbar-b.navbar-reduce .active > .nav-link:before,
.navbar-b.navbar-reduce .nav-link.show:before,
.navbar-b.navbar-reduce .nav-link.active:before {
  width: 35px;
}

.navbar-b.navbar-trans .nav-link:before {
  background-color: #EFEFE6; /* color de linea en hover en el menu al inicio antes de scroll */
}

.navbar-b.navbar-trans .nav-link:hover {
  color: #EFEFE6;/* color de tipografia en hover para el menu al inicio antes de scroll */
font-weight: bold;
}

.navbar-b.navbar-trans .show > .nav-link,
.navbar-b.navbar-trans .active > .nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
  color: #EFEFE6; /* color de tipografia ACTIVE para el menu al inicio antes de scroll */
font-weight: bold;
}

.navbar-b.navbar-reduce {
  transition: all .5s ease-in-out;
  background-color: #00A79D;/* color de background menu despues del scroll */
  opacity: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-b.navbar-reduce .nav-link {
  color: #132414;/* color de tipografia del menu cuando hacemos scroll */
}

.navbar-b.navbar-reduce .nav-link:before {
  background-color: #2B3990; /*linea abajo de active y hover.*/
}

.navbar-b.navbar-reduce .nav-link:hover {
  color: #2B3990;/* color de tipografia hover del menu cuando hacemos scroll */

 font-weight: bold !important;

}

.navbar-b.navbar-reduce .show > .nav-link,
.navbar-b.navbar-reduce .active > .nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
  color: #2B3990;/* color de tipografia active del menu cuando hacemos scroll */
font-weight: bold !important;
}

.navbar-b.navbar-reduce .navbar-brand {
  color: red; /* Esto afecta a la tipografia del logo cuando el menú se achica, aca no afecta porque tengo foto */
}

.navbar-b.navbar-reduce .navbar-toggler span {
  background-color: #132414; /* color del menu en mobile */
}

.navbar-b .navbar-brand {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  visibility: visible !important;
}

.navbar-b .dropdown-menu {
  margin: 1.12rem 0 0;
  border-radius: 0;
}

.navbar-b .dropdown-menu .dropdown-item {
  padding: .7rem 1.7rem;
  transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item:hover {
  background-color: red;
  color: #fff;
  transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item.active {
  background-color: #0078ff;
}

/*--/ Hamburger Navbar /--*/

.navbar-toggler {
  position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #EFEFE6;/*--/ color menu en mobile antes de scroll /--*/
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: -webkit-transform .35s ease-in-out;
  transition: transform .35s ease-in-out;
  transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}

/*======================================
//--//-->    INTRO (HERO SLIDER) - LATO VERSION
======================================*/

#home .titulos-fp {
  font-family: 'Ultra', serif !important;
  color: #EFEFE6 !important;
  font-weight: 900 !important; /* Peso Black para que tenga presencia de título */
  text-transform: none !important; 
  line-height: 1.1;
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: -1px; 
  font-size: 4rem; /* Tamaño sólido y equilibrado */
  text-align: center;
}

/* Subtítulos en Lato Light para un look técnico y limpio */
#home .subtitulos-fp {
  font-family: 'Lato', sans-serif !important;
  color: #EFEFE6 !important;
  font-weight: 400 !important; /* Regular para legibilidad */
  text-transform: none !important;
  letter-spacing: 2px; 
  display: block;
  line-height: 1.4;
  font-size: 1.6rem;
  margin-top: 10px;
  text-align: center;
}

/* Ajustes para móviles */
@media (max-width: 767px) {
  #home .titulos-fp {
    font-size: 2.5rem !important; 
    letter-spacing: -0.5px;
    margin-left: 5% !important;
    margin-right: 5% !important;
  }
  #home .subtitulos-fp {
    font-size: 1.1rem !important;
    letter-spacing: 1px;
  }
}

/* Estructura Base (Sin cambios de comportamiento) */
#home.intro {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #191C18;
}

#home Perdón por las vueltas, a veces buscando mejorar la legibilidad terminamos matando la estética que ya funcionaba. Vamos a volver a lo que tenías originalmente, que era simple y directo.

Aquí tenés el código de la overlay tal cual lo tenías, con el color #191C18 y la opacidad al 90%:

CSS
.intro .overlay-itro {
  background-color: #191C18;
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 93%;
}

#home .intro-content {
  position: absolute;
  width: 100%;
  top: 50%; 
  transform: translateY(-50%);
  z-index: 2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

/*======================================
//--//-->    FIN INTRO
======================================*/

/*======================================
//--//-->   ABOUT
======================================*/

.about-mf .box-shadow-full {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-mf .about-img {
  margin-bottom: 2rem;
}

.about-mf .about-img img {
  margin-left: 10px;
}

.skill-mf span {
  color: #4e4e4e;
}

.skill-mf .progress {
  background-color: #cde1f8;
  margin: .5rem 0 1.2rem 0;
  border-radius: 0;
  height: .7rem;
}

.skill-mf .progress .progress-bar {
  height: .7rem;
  background-color: #0078ff;
}

/*======================================
//--//-->    NUEVA SECCION SERVICIOS
======================================*/
/* --- Sección Servicios Nueva --- */
.section-servicios {
  padding: 50px 0; /* Margen Top y Bottom de 50px */
  background-color: #00A79D; /* Fondo Turquesa */
}

.title-servicios {
  font-family: 'Lato', sans-serif;
  text-align: left;
  font-weight: 900;
  color: #EFEFE6; /* CAMBIO: Color claro */
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.subtitle-servicios {
  font-family: 'Lato', sans-serif;
  text-align: left;
  font-weight: 400;
  color: #EFEFE6; /* CAMBIO: Color claro */
  margin-bottom: 40px;
}

.servicio-item {
  text-align: left;
  padding: 20px 0; /* Asegura alineación lateral con el título superior */
}

.title-item {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  color: #EFEFE6; /* CAMBIO: Color claro */
  margin-bottom: 15px;
  text-transform: none; /* Asegura que NO sea todo mayúsculas */
}

.text-item {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #EFEFE6; /* CAMBIO: Color claro */
  margin-bottom: 20px;
}


.punteo-seo {
  font-family: 'Lato', sans-serif;
  font-weight: 300;           /* Peso Hairline (Ultra Fino) */
  color: #EFEFE6;
  font-size: 0.75rem;         /* Reducido para que no se vea más grande que el texto */
  text-transform: uppercase;  /* Mayúsculas forzadas */
  letter-spacing: 1.5px;      /* Espaciado elegante entre letras */
  margin-bottom: 20px;
  line-height: 1.6;           /* Más aire entre líneas para legibilidad */
  opacity: 0.85;              /* Un poco de transparencia para jerarquía visual */
  display: block;             /* Asegura que se comporte como bloque */
}


/* --- Contenedor de la imagen con zoom --- */
.servicio-item .img-wrapper {
  overflow: hidden;
  border-radius: 0px; /* CAMBIO: Sin redondeo */
  margin-bottom: 20px;
  background-color: transparent; 
  line-height: 0; 
}

/* --- Ajuste de la imagen: SIEMPRE HORIZONTAL --- */
.img-servicio {
  width: 100%;        
  height: auto;       
  display: block;
  border-radius: 0px; /* CAMBIO: Sin redondeo */
  transition: transform 0.3s ease;
  object-fit: scale-down; 
}

/* --- Efecto Zoom (Igual al botón) --- */

.cta-servicios {
  margin-top: 10px;
}

/* --- Efecto Slip Up (Oculto por defecto) --- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- BOTÓN VERSIÓN CHICA PARA SERVICIOS --- */
.btn-presupuesto-chico {
  display: inline-block;
  padding: 8px 20px;
  background-color: #EFEFE6;
  color: #2B3990;
  font-family: 'VT323', monospace !important;
  font-size: 1.3rem;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: -5px 5px 0px 0px #2B3990; 
}

.btn-presupuesto-chico:hover {
  transform: scale(1.05);
  color: #2B3990;
  text-decoration: none;
}

.btn-presupuesto-chico:active {
  box-shadow: 0px 0px 0px 0px #2B3990;
  transform: translate(-5px, 5px) scale(1.02);
}

/*======================================
//--//-->    FIN NUEVA SECCION SERVICIOS
======================================*/







/* ============================================================
   SECCIÓN DE LOGOS INFINITOS (FONDO AZUL #2B3990)
   ============================================================ */

html, body {
  overflow-x: hidden;
}

.logobar-section {
  width: 100%;
  background-color: #2B3990 !important; /* Azul pleno */
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.logos-container {
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  /* Reducido a 80px (antes 120px) */
  height: 80px !important;
  overflow: hidden;
}

.logos-slide {
  display: flex;
  width: max-content;
  animation: 15s slide infinite linear !important;
}

/* FUERZA QUE NO SE PAUSE NUNCA */
.logos-container:hover .logos-slide,
.logos-slide:hover,
.logos-slide img:hover {
  animation-play-state: running !important;
}

.logos-slide img {
  /* Reducido a 66px (antes 100px) */
  height: 66px !important;
  margin: 0;
  padding: 0 15px;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* Logos blancos */
  flex-shrink: 0;
}

/* Ajustes para PC (Pantallas de más de 768px) */
@media (min-width: 768px) {
  .logos-container {
    /* Reducido a 126px (antes 190px) */
    height: 126px !important;
  }

  .logos-slide img {
    /* Reducido a 120px (antes 180px) */
    height: 120px !important;
    padding: 0 25px;
  }
}

/* Animación */
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/*======================================
//--//-->    FIN CARROUSEL
======================================*/






/* Eliminamos cualquier margen por defecto de la sección */
.logobar-section {
  width: 100%;
  background-color: #2B3990;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0; /* Elimina espacios fantasma debajo de imágenes */
}

.logos-container {
  display: flex;
  align-items: center;
  background-color: #2B3990;
  white-space: nowrap;
  position: relative;
  height: 120px; /* Altura en móviles */
}

.logos-slide {
  display: flex;
  align-items: center;
  animation: 15s slide infinite linear;
}

.logos-slide img {
  height: 100px; /* Tamaño móvil */
  margin: 0;
  padding: 0 15px;
  filter: brightness(0) invert(1); /* Logos en blanco */
  flex-shrink: 0; /* Evita que los logos se aplasten */
}

/* Ajustes para PC */
@media (min-width: 768px) {
  .logos-container {
    height: 190px; /* Altura franja en PC */
  }
  
  .logos-slide img {
    height: 180px; /* Tamaño logo gigante */
    padding: 0 25px;
  }
}

/* Animación fluida */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Opcional: pausar al pasar el mouse */
.logos-container:hover .logos-slide {
  animation-play-state: paused;
}



/*======================================
//--//-->   SERVICES
======================================*/

.service-box {
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.service-box:hover .ico-circle {
  transition: all 500ms ease;
  color: #fff;
  background-color: #0078ff;
  box-shadow: 0 0 0 10px #cde1f8;
}

.service-box .service-ico {
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.service-box .ico-circle {
  transition: all 500ms ease;
  font-size: 4rem;
}

.service-box .s-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  padding: .4rem 0;
}

.service-box .s-description {
  color: #4e4e4e;
}

/*======================================
//--//-->   COUNTER
======================================*/

.counter-box {
  color: #fff;
  text-align: center;
}

.counter-ico {
  margin-bottom: 1rem;
}

.counter-ico .ico-circle {
  height: 60px;
  width: 60px;
  line-height: 1.8;
  box-shadow: 0 0 0 10px #cde1f8;
}

.counter-num .counter {
  font-size: 2rem;
  margin-bottom: 0;
}

/*======================================
//--//-->    PORTFOLIO
======================================*/

.work-box {
  margin-bottom: 0; /* Eliminado el margen de 3rem para que se peguen verticalmente */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #fff;
}

.work-box:hover img {
  -webkit-transform: scale(1.1); /* Zoom sutil para no romper la estética */
  transform: scale(1.1);
}

.work-img {
  display: block;
  overflow: hidden;
  line-height: 0; /* Elimina espacio blanco residual debajo de las imágenes */
}

.work-img img {
  transition: all 1s;
  width: 100%;
  display: block;
}

/* Regla para asegurar que las columnas no tengan separación lateral */
.row.g-0 > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.work-content {
  padding: 2rem 3% 1rem 4%;
}

.work-content .w-more {
  color: #4e4e4e;
  font-size: .8rem;
}

.work-content .w-more .w-ctegory {
  color: #0078ff;
}

.work-content .w-like {
  font-size: 2.5rem;
  color: #0078ff;
  float: right;
}

.work-content .w-like a {
  color: #0078ff;
}

.work-content .w-like .num-like {
  font-size: .7rem;
}

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


/* Contenedor General */
.section-servicios-full {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* Menú de Filtros */
.filter-container-custom {
  text-align: center;
  padding: 40px 0;
}
.filter-menu-custom {
  list-style: none;
  padding: 0;
}
.filter-btn-custom {
  display: inline-block;
  margin: 5px;
  padding: 10px 25px;
  border: 2px solid #8DC63F; /* Color verde de tu marca */
  color: #8DC63F;
  cursor: pointer;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}
.filter-btn-custom.active, .filter-btn-custom:hover {
  background: #8DC63F;
  color: #fff;
}

/* Grilla soldada */
.grid-servicios-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Item: 1 columna en móvil, 3 en PC (33.33%) */
.item-servicios {
  width: 100%; /* Móvil */
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .item-servicios {
    width: 33.333%; /* PC y Tablet */
  }
}

/* Imagen y Efectos */
.box-custom {
  overflow: hidden;
  position: relative;
  line-height: 0;
}
.img-container-custom {
  overflow: hidden;
}
.img-responsive-custom {
  width: 101%; /* Pequeño solapamiento para evitar líneas blancas */
  height: auto;
  transition: transform 1s ease;
  display: block;
}

/* Lógica de ocultado para el filtro */
.item-servicios.hidden {
  display: none;
}

/*======================================
//--//-->   TESTIMONIALS
======================================*/

.testimonials .owl-carousel .owl-item img {
  width: auto;
}

.testimonial-box {
  color: #fff;
  text-align: center;
}

.testimonial-box .author-test {
  margin-top: 1rem;
}

.testimonial-box .author-test img {
  margin: 0 auto;
}

.testimonial-box .author {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1rem 0;
  display: block;
  font-size: 1.4rem;
}

.testimonial-box .comit {
  font-size: 2rem;
  color: #0078ff;
  background-color: #fff;
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  line-height: 1.6;
}

/*======================================
//--//-->   BLOG
======================================*/

.card-blog .card-body {
  position: relative;
}

.card-blog .card-category-box {
  position: absolute;
  text-align: center;
  top: -16px;
  left: 15px;
  right: 15px;
  line-height: 25px;
  overflow: hidden;
}

.card-blog .card-category {
  display: inline-block;
  color: #fff;
  padding: 0 15px 5px;
  overflow: hidden;
  background-color: #0078ff;
  border-radius: 4px;
}

.card-blog .card-category .category {
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-size: .7rem;
  letter-spacing: .1px;
  margin-bottom: 0;
}

.card-blog .card-title {
  font-size: 1.3rem;
  margin-top: .6rem;
}

.card-blog .card-description {
  color: #4e4e4e;
}

.card-blog .post-author {
  display: inline-block;
}

.card-blog .post-date {
  color: #4e4e4e;
  display: inline-block;
  float: right;
}

/*======================================
//--//-->   BLOG-SINGLE
======================================*/

.post-box,
.form-comments,
.box-comments,
.widget-sidebar {
  padding: 2rem;
  background-color: #fff;
  margin-bottom: 3rem;
}

.blog-wrapper .article-title {
  font-size: 1.5rem;
}

.blog-wrapper .post-meta {
  margin: 1rem 0;
}

.blog-wrapper .post-meta ul {
  border-left: 4px solid #0078ff;
  margin-top: 1rem;
}

.blog-wrapper .post-meta ul li {
  display: inline-block;
  margin-left: 15px;
}

.blog-wrapper .post-meta ul a {
  color: #0078ff;
}

.blog-wrapper .post-meta ul span {
  color: #1e1e1e;
}

.blog-wrapper .blockquote {
  border-left: 4px solid #0078ff;
  padding: 18px;
  font-style: italic;
}

/*------/ Comments /------*/

.box-comments .list-comments li {
  padding-bottom: 40px;
}

.box-comments .list-comments .comment-avatar {
  display: table-cell;
  vertical-align: top;
}

.box-comments .list-comments .comment-avatar img {
  width: 80px;
  height: 80px;
}

.box-comments .list-comments .comment-author {
  font-size: 1.3rem;
}

.box-comments .list-comments .comment-details {
  display: table-cell;
  vertical-align: top;
  padding-left: 25px;
}

.box-comments .list-comments a {
  color: #0078ff;
}

.box-comments .list-comments span {
  color: #1e1e1e;
  font-style: italic;
}

.box-comments .comment-children {
  margin-left: 40px;
}

/*------/ Sidebar /------*/

.widget-sidebar .sidebar-title {
  font-size: 1.6rem;
  font-weight: 600;
  border-left: 5px solid #0078ff;
  padding-left: 15px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.widget-sidebar .list-sidebar li {
  position: relative;
  padding: 6px 0 6px 24px;
}

.widget-sidebar .list-sidebar li:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  left: 0;
  background-color: #0078ff;
  top: 20px;
}

.sidebar-search input {
  background-color: #fff;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
}

.sidebar-search .btn-search {
  background-color: #0078ff;
  border-color: #0078ff;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.widget-tags ul li {
  display: inline-block;
  background-color: #0078ff;
  padding: .2rem .6rem;
  margin-bottom: .5rem;
  border-radius: 15px;
}

.widget-tags ul li a {
  color: #fff;
}

/*======================================
//--//-->   CONTACT
======================================*/

.footer-paralax {
  padding: 4rem 0 0 0;
}

.contact-mf {
  margin-top: 4rem;
}

/*======================================
//--//-->   FOOTER
======================================*/

footer {
  text-align: center;
  color: #fff;
  padding-bottom: 4rem;
}

footer .copyright {
  margin-bottom: .3rem;
}

footer .credits {
  margin-bottom: 0;
}

footer .credits a {
  color: #fff;
}

/*======================================
//--//-->    CONTACT FORM
======================================*/

/* Estilos para los campos (Inputs y Textarea) */
.contactForm .form-control {
  background-color: #EFEFE6 !important; /* Fondo igual al de la sección */
  border: 1px solid #ccc; /* Un borde sutil para que se vea dónde escribir */
  color: #2b2b2b;
}

/* Color de los mensajes de error/validación (Cambiado de rojo a azul #2B3990) */
.validation {
  color: #2B3990; /* Azul pedido */
  display: none;
  margin: 4px 0 20px;
  font-weight: 400;
  font-size: 13px;
}

/* Mensaje de error general (el recuadro que sale arriba si falla el envío) */
#errormessage {
  color: #2B3990; /* Azul pedido */
  display: none;
  border: 1px solid #2B3990; /* Borde azul también */
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Mensaje de éxito (Cuando se envía bien) */
#sendmessage {
  color: #00A79D; /* Verde turquesa para éxito, queda mejor que el azul */
  border: 1px solid #00A79D;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#sendmessage.show,
#errormessage.show,
.show {
  display: block;
}





/* ==========================================================
   ESTILO DEFINITIVO SLIDER DINÁMICO (ESTÁTICO SIN ZOOM)
   ========================================================== */

/* Contenedor Principal */
.slider-final-pro {
  height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: #132414; /* Fondo de seguridad */
}

/* Estilo base para todas las capas de imagen */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important; /* Mantiene el efecto Parallax */
  
  /* Invisibles por defecto */
  opacity: 0;
  z-index: 0;
  
  /* TRANSICIÓN RÁPIDA Y LIMPIA (0.6s) - QUITAMOS 'transform' */
  transition: opacity 0.6s ease-in-out !important; 
}

/* Clase para la foto activa (visible) - QUITAMOS 'transform' */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Capa oscura (Overlay) */
.slider-final-pro .overlay-itro {
  background-color: rgba(0, 0, 0, 0.6) !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2 !important; /* Por encima de las fotos */
}

/* Contenedor del texto al frente de todo */
.slider-final-pro .intro-content {
  position: relative;
  z-index: 3 !important; 
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

.slider-final-pro .table-cell {
  display: table-cell;
  vertical-align: middle;
}

/* Botón de Presupuesto con Z-index alto para clics */
.cta-container {
  margin-top: 50px;
  position: relative;
  z-index: 10 !important;
}

/* --- Mantenemos tus estilos de tipografía y botón abajo --- */

.titulos-fp {
  font-family: 'Ultra', serif !important;
  color: #132414;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.subtitulos-fp {
  font-family: 'Lato', sans-serif !important;
  color: #132414;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.8rem;
}

.btn-presupuesto {
  display: inline-block;
  padding: 12px 30px;
  background-color: #EFEFE6;
  color: #2B3990;
  font-family: 'VT323', monospace !important;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: -10px 10px 0px 0px #2B3990;
  transition: transform 0.2s ease;
}

.btn-presupuesto:hover {
  transform: scale(1.05);
}

/* Ajustes Mobile */
@media (max-width: 767px) {
  .titulos-fp { font-size: 3rem; }
  .subtitulos-fp { font-size: 1.3rem; }
  .hero-slide { background-attachment: scroll !important; } /* Mejor performance en móvil */
}




/*======================================
//--//-->   BUTTON
======================================*/

.button {
  display: inline-block;
  padding: .3rem .6rem;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1rem;
  border-radius: .3rem;
  border: 1px solid transparent;
  transition: all 500ms ease;
  cursor: pointer;
}

.button:focus {
  outline: 0;
}

.button:hover {
  background-color: #0062d3;
  color: #fff;
  transition: all 500ms ease;
}

.button-a {
  background-color: #0078ff;
  color: #fff;
  border-color: #cde1f8;
}

.button-big {
  padding: .9rem 2.3rem;
  font-size: 1.2rem;
}

.button-rouded {
  border-radius: 5rem;
}

.btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

@media (min-width: 577px) {
  .counter-box {
    margin-bottom: 1.8rem;
  }
}

@media (min-width: 767px) {
  .about-mf .box-pl2 {
    margin-top: 3rem;
    padding-left: 0rem;
  }

  .card-blog {
    margin-bottom: 3rem;
  }

  .contact-mf .box-pl2 {
    margin-top: 3rem;
    padding-left: 0rem;
  }
}

@media (min-width: 768px) {
  .box-shadow-full {
    padding: 3rem;
  }

  .navbar-b.navbar-trans .nav-item,
  .navbar-b.navbar-reduce .nav-item {
    padding-left: 10px;
  }

  .navbar-b.navbar-trans .nav-link:before,
  .navbar-b.navbar-reduce .nav-link:before {
    margin-left: 18px;
  }

  .intro .intro-title {
    font-size: 4.5rem;
  }

  .intro .intro-subtitle {
    font-size: 2.5rem;
  }

  .intro-single .intro-title {
    font-size: 3.5rem;
  }

  .testimonial-box .description {
    padding: 0 5rem;
  }

  .post-box,
  .form-comments,
  .box-comments,
  .widget-sidebar {
    padding: 3rem;
  }

  .blog-wrapper .article-title {
    font-size: 1.9rem;
  }

  .box-comments .list-comments .comment-author {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .testimonial-box .description {
    padding: 0 8rem;
  }
}

@media (min-width: 1200px) {
  .testimonial-box .description {
    padding: 0 13rem;
  }
}

@media (max-width: 1024px) {
  .bg-image {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}