@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@font-face {
    font-family: 'myanmar';
    src: url('../fonts/MyanmarMN.woff2') format('woff2'),
        url('../fonts/MyanmarMN.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html,
body{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color:#000;
	scrollbar-width: thin;                   /* fino */
	scrollbar-color: #252654 #f0f0f0;         /* thumb | track */
  overflow-x: hidden;
  width: 100%;
  float: left;
}

::-webkit-scrollbar {
	width: 10px;                              /* ancho de la barra */
	height: 10px;                             /* alto en scroll horizontal */
}

::-webkit-scrollbar-track {
	background: #f0f0f0;                      /* color del track (fondo) */
}

::-webkit-scrollbar-thumb {
	background-color: #252654;                /* color del thumb */
	border-radius: 10px;
	border: 2px solid #f0f0f0;                 /* margen visual entre thumb y track */
}

::-webkit-scrollbar-thumb:hover {
	background-color: #1b1c3d;                 /* tono más oscuro en hover */
}


header{
	background: #252654;
	width: 100%;
	float: left;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius:50px;
	padding:3rem 0;
  position: relative;
  z-index: 9;
	box-shadow:0 6px 18px rgba(0,0,0,.12);
}

.nav-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
}

.menu{ 
	list-style:none; 
	padding-left:0; 
}

/* Contenedor base */
.menu { 
  list-style: none; 
  padding-left: 0; 
  margin: 0; 
}

.menu > .menu-item { 
  position: relative; 
}

/* Enlaces */
.menu .nav-link {
  display: inline-block;
  padding: .25rem 0;
  text-decoration: none;
}

/* Submenú oculto por defecto */
.menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: .5rem 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 120px;
  background: #0a0a0a;
  border-radius: 0;
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
  display: none;
  z-index: 1000;
}

/* Items del submenú en columna */
.menu .sub-menu .menu-item { 
  padding: 0;
  white-space: nowrap;
}

.menu .sub-menu a{
  font-size: 18px;
}

.menu .sub-menu .nav-link {
  display: block;
  padding: .5rem .9rem;
}

/* Mostrar en hover del padre */
.menu > .menu-item:hover > .sub-menu,
.menu .menu-item:hover > .sub-menu {
  display: block;
}

/* Indicador de dropdown (opcional, estilo) */
.menu-item-has-children > .nav-link .caret {
  font-size: .8rem;
  margin-left: .35rem;
}

/* Submenú de segundo nivel (anidar hacia la derecha) */
.menu .sub-menu .menu-item-has-children { 
  position: relative; 
}

.menu .sub-menu .menu-item-has-children > .sub-menu {
  top: 0;
  left: 100%;
  margin-left: .25rem;
}

/* Pequeño hover visual */
.menu .sub-menu .nav-link:hover {
  background: rgba(0,0,0,.04);
  border-radius: 8px;
}

.nav-link{
	font-weight: 600;
	font-size: 20px;
	color:#fff;
	position: relative;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Línea animada en hover */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fff, #fff); /* Verde construcción/jardinería */
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Hover efecto */
.nav-link:hover {
    color: #fff; /* Cambia color del texto a verde */
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link.active::after, 
.navbar-nav .nav-link.show::after {
    width: 100%;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
  color: #fff; /* Cambia color del texto a verde */
}


.nav-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
}

.cta{ 
	font-size:14px; 
	line-height:1.1; 
	font-weight: 300;
	margin-left: 6rem;
	display: block;
	background: #fff;
	padding: 1rem ;
	border: 1px solid #fff;
	position: relative;
	overflow: hidden;            /* para contener el swipe */
	transition: transform .2s ease, box-shadow .2s ease;
	letter-spacing: .3px;
}

.cta span{
	display: block;
	width: 100%;
}

.cta:hover{ 
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.brand {
    padding: 0 10%;
}


.cta{
  position:relative; overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta::after{
  content:"";
  position:absolute; top:-120%; left:-40%;
  width:60%; height:300%;
  transform: rotate(25deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,0) 90%);
  transition: transform .6s ease;
  pointer-events:none;
}
.cta:hover::after{ transform: rotate(25deg) translateX(220%); }
.cta:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.12); }
/*

:root{
  --nav-bg:#23264E;  /* azul del header *
  --nav-text:#FFFFFF;
  --nav-radius:18px;
}

.site-header{ background:transparent; }
.nav-shell{
  background:var(--nav-bg);
  border-radius:var(--nav-radius);
  padding:16px 28px;
  color:var(--nav-text);
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  position:relative;
}
.nav-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
}

.menu li{ position:relative; }
.menu a{
  color:var(--nav-text);
  text-decoration:none;
  font-weight:600;
  font-size:15px;
  letter-spacing:.2px;
  padding:6px 0;
}
.menu a:hover{ opacity:.85; }

.custom-logo{ width:44px; height:auto; border-radius:50%; }
.brand-text{ line-height:1; font-size:18px; margin-left:12px; color:#fff; }
.letter-2{ letter-spacing:2px; }
.brand{ gap:12px; }

.cta{ font-size:12px; font-weight:700; line-height:1.1; }

.nav-burger{ 
	position:absolute; 
	left:12px; 
	top:12px; 
}

.mobile-panel{ 
	display:none; 
	margin-top:12px; 
}

.nav-open .mobile-panel{ 
	display:block; 
}
.d-lg-none{ display:none; }
@media (max-width: 991.98px){
  .d-lg-none{ display:initial; }
  .d-lg-flex{ display:none !important; }
  .nav-inner{ grid-template-columns:1fr auto; }
  .brand{ justify-self:center; }
}
*/


.slider{
	width: 100%;
	float: left;
	padding: 4rem 0;
	height: 100%;
}


.slider h1{
	text-transform: uppercase;
	font-size: 60px;
	text-align: center;
	color: #0a0a0a;
	margin: 4rem 0 0;
	font-family: 'myanmar';
  line-height: 60px;
}

.slider h1 span{
	color: #07515b;
}

.slider p{
	font-size: 18px;
	text-align: center;
	color: #000;
	margin: 2rem;
}

button.button.button--next {
  border: 0;
  border-radius: 6px;
  background-color:transparent;
  margin-top: 4rem;

}

.button-row {
	margin-left: 95%;
	margin-bottom: 1rem;
}
:root{
  --scroll-size: 96px;         /* tamaño del componente */
  --scroll-color: #252654;     /* color del texto y flecha */
  --scroll-speed: 16s;         /* velocidad de giro */
  --arrow-thickness: 2.5;      /* grosor de la flecha */
}

/* Posición fija abajo-centro (ajústala o elimina si lo incrustas inline) */
.scroll-circle{
  transform: translateX(-50%);
  display: inline-block;
  width: var(--scroll-size);
  height: var(--scroll-size);
  text-decoration: none;
  z-index: 50;
  margin-top: 3rem;
  position: relative;
}

.scroll-svg{
  width: 100%;
  height: auto;
  display: block;
  color: var(--scroll-color);           /* currentColor para heredar si cambias el color del link */
}

/* Texto circular */
.scroll-text{
  letter-spacing: 2px;
  font-size: 32px;
}

/* Flecha */
.arrow-bg{
  fill: rgba(0,0,0,0.04);
}
.arrow-tip, .arrow-shaft{
  stroke: currentColor;
  stroke-width: var(--arrow-thickness);
  stroke-linecap: round;
  fill: none;
}

/* Animaciones */
.is-rotating{
  animation: spin var(--scroll-speed) linear infinite;
}
.scroll-arrow{
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob  {
  0%, 100% { transform: translate(100px,100px) translateY(0); }
  50%      { transform: translate(100px,100px) translateY(4px); }
}

/* Hover: pausa giro y acentúa flecha */
.scroll-circle:hover .is-rotating{
  animation-play-state: paused;
}
.scroll-circle:hover .arrow-shaft,
.scroll-circle:hover .arrow-tip{
  stroke-width: calc(var(--arrow-thickness) + .6);
}

/* Motion-safe */
@media (prefers-reduced-motion: reduce){
  .is-rotating, .scroll-arrow { animation: none !important; }
}

.scroll-svg { 
  overflow: visible; 
} /* intenta esto prour-promise-homeimero, es 1 línea */

.our-promise-home{
  width: 100%;
  float: left;
  padding: 4rem 0 0;
  position: relative;
  margin-top: -10%;
  position: relative;
}

.our-promise-home .contenido{
  position: absolute;
  top: 40%;
  width: 100%;
  float: left;
}

.our-promise-home h2{
  font-family: 'myanmar';
  color: #0a0a0a;
  font-size: 65px;
  margin-bottom: 2rem;
}


.our-promise-home p{
  color:#000;
  font-size: 18px;
}

.our-promise-home a{
  width: auto;
  padding: 10px 15px;
  background: #fff;
  color: #000;
  font-size: 18px;
  text-transform: capitalize;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* sombra gris oscuro */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.our-promise-home a:hover{
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  transform: translateY(-2px); /* pequeño efecto de elevación */
}

.marquee{
  --gap: 2rem;                /* espacio entre textos */
  --duration: 40s;            /* velocidad del loop (más alto = más lento) */
  background: transparent;    /* cámbialo si quieres una franja */
  overflow: hidden;
  display: flex;
  gap: var(--gap);
  user-select: none;
  white-space: nowrap;
  width: 100%;
  float: left;
  padding: 2rem 0;
}

.marquee__content{
  display: flex;
  align-items: center;
  gap: var(--gap);
  flex-shrink: 0;
  min-width: 100%;
  animation: marquee var(--duration) linear infinite;
}

.marquee__content span{
  letter-spacing: .04em;
  /* hereda tipografía y color del sitio; ajusta si quieres */
  /* color: #252654; */
  font-size: 24px;
  text-transform: uppercase;
}

/* Pausa al hover (opcional) */
.marquee:hover .marquee__content{
  animation-play-state: paused;
}

/* Animación */
@keyframes marquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Accesibilidad: respeta reducción de movimiento */
@media (prefers-reduced-motion: reduce){
  .marquee__content{ animation: none !important; }
}


.services-home{
  padding: 8rem 0 12rem;
  width: 100%;
  float: left;
  height: 90vh;
}

.services-home h2{
  text-transform: uppercase;
  color: #252654;
  text-align: center;
  font-size: 70px;
  font-family: 'myanmar';

}

.services-home p{
  text-align: center;
  font-size: 18px;
  color: #000;
}

.services-home a{
  width: 60%;
  padding: 10px 15px;
  background: #252654;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* sombra gris oscuro */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  margin: 0 20%;
}

.services-home a:hover{
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
  transform: translateY(-2px); /* pequeño efecto de elevación */
}

.services-slider{
   width: 100%;
   float: left;
   padding: 0 0 3%; 
   background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30%, #07515b 30%, #07515b 100%);
}

.services-slider .carousel-cell{
  width: 32%;
  margin:0 2%;
  text-align: center;
  color: #fff;
  padding: 7% 0;
}

.services-slider .carousel-cell img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-slider h3{
  min-height: 105px;
  font-size: 40px;
}

.services-slider .linea-verde{
  width: 20%;
  margin: 0 40% 3rem;
  height: 10px;
  background: #69a321;
  border-radius: 50px;
}

.services-slider p{
  font-size: 18px;
}

.services-slider .carousel-cell {
 /* transition: transform .35s ease, margin .35s ease, box-shadow .35s ease;*/
}

.services-slider .carousel-cell.is-selected {
  margin-top: -5%;
  /* opcional: darle un poquito de énfasis */
  transform: scale(1.03);
  z-index: 2;
}


.steps {
  background: #07515b;
  width: 100%;
  float: left;
  background: #fff;
  position: relative;
  overflow: hidden;
  --cut: 24vw;
  --top: #07515b;
  padding: 6rem 0 45rem;
  margin-top: -2px;
}

.steps::before{
  content:"";
  position:absolute; inset:0;
  background: var(--top);
  /* Invertimos el corte */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - var(--cut)));
  z-index:0;
}

.steps::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/alberca-3.png) no-repeat;
  width: 100%;
  left: -1%;
  bottom: -65%;
  background-size: 50%;
  height: auto;
  background-position: center left;
}

.steps .container {
    position: relative;
    z-index: 1;
}

.steps h2{
  font-family: 'myanmar';
  text-transform: uppercase;
  font-size: 70px;
  text-align: center;
  margin: 6rem 0 4rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.steps p{
  font-size: 18px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Card base */
.step-card{
  position: relative;
  margin-top: 4rem;
  cursor: pointer;
}

/* Número grande */
.step-num {
  color: #0b6d7a;
  margin-bottom: .5rem;
  font-size: 60px;
  font-family: 'myanmar';
  position: absolute;
  right: 0;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

p.step-text { 
  color: #fff;
  font-size: 14px; 
}

/* Imagen destacada del paso (opcional) */
.step-media img{
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Icono hover (blanco -> azul) */
.step-icon{
  position: relative;
  width: 100%;     /* ajusta según tus assets */
  height: 276px;
}
.step-icon img{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.step-icon .icon-blue{ 
  opacity: 0; 
}

.step-card:hover .step-icon .icon-blue{ 
  opacity: 1; 
}

.step-card:hover .step-icon .icon-white{ 
  opacity: 0; 
}

.step-card:hover .step-num{
  color: #fff;
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

/* (Opcional) pequeño “pop” del icono al hover */
.step-card:hover .step-icon img{ 
  transform: scale(1.04); 
}

.step-card h4{
  font-size: 20px;
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}

.people-saying{
  width: 100%;
  float: left;
  padding: 10rem 0;
}

.people-saying h2 {
  color: #171717;
  text-align: center;
  font-size: 52px;
  font-family: 'myanmar';
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.testimonials{
  width: 100%;
  float: left;
}

.people-saying p{
  text-align: center;
  font-size: 18px;
  margin-bottom: 5rem;
}

.testimonials-slider .carousel-cell{
  width: 30%;
  margin-right: 3%;
  background: #eeeeee;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 450px;
}

.testimonials p.t-text{
  font-size: 16px;
  min-height: 224px;
}


.testimonials p.t-name{
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.testimonials hr{
  border-color: #69a321;
}

.why-work-with-us{
  width: 100%;
  padding: 10rem 0;
  float: left;
  /* imagen como variable para cambiarla rápido inline */
  --img: url(../img/fondo-agua.png);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;   /* efecto parallax en desktop */
  min-height: 100vh;               /* alto visible */
  display: grid;                  /* centrar contenido */
  place-items: center;
  color: #fff;                    /* si la foto es oscura/clara, ajusta */
  text-align: center;
}

/* Fallback móvil (iOS/Android no manejan bien fixed) */
@media (max-width: 991px){
  .why-work-with-us{ 
    background-attachment: scroll; 
  }
}

/* Accesibilidad: si el usuario pide menos movimiento */
@media (prefers-reduced-motion: reduce){
  .why-work-with-us{ 
    background-attachment: scroll; 
  }
}

/* (Opcional) overlay suave para contraste de texto */
.why-work-with-us::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.15));
  pointer-events: none;
}
.why-work-with-us{ position: relative; }
.para-content{ position: relative; z-index: 1; }


.why-work-with-us h2{
  color: #0a0a0a;
  text-align: center;
  font-size: 70px;
  font-family: 'myanmar';
  text-transform: uppercase;
}


.why-work-with-us .accordion{
  background:#f7f6f1;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  border-radius: 40px;
}


.why-work-with-us h2 .accordion-button{
  text-transform: uppercase;
  font-weight: 600;
  color: #474645;
  font-size: 18px;
  font-family: 'Poppins';
  background:#f7f6f1;
  padding: 2rem;
}

.why-work-with-us .accordion-body p{
  color: #474645;
  font-size: 16px;
  font-family: 'Poppins';
}

/* Bordes redondeados en todo el acordeón */
.why-work-accordion .accordion{
  border-radius: 20px; /* Ajusta el radio a tu gusto */
  overflow: hidden;    /* Para que el borde redondeado afecte también al interior */
  margin-bottom: 1rem; /* Espaciado entre items */
  border: 0; /* Borde suave */
}

.why-work-with-us .accordion-item{
  border: 0;
  background: transparent;
}

/* Fondo con opacidad en el contenido */
.why-work-accordion .accordion-body {
  background-color: rgba(255, 255, 255, 0.85); /* blanco con opacidad */
  border-radius: 0 0 12px 12px; /* solo parte baja, porque arriba ya está redondeado */
  padding: 1.25rem;
}

/* Quitar la flecha por defecto de Bootstrap */
.why-work-accordion .accordion-button::after {
  background-image: none !important;
  content: "+";                  /* Signo más por defecto */
  color: #474745;                /* Ajusta el color a tu paleta */
  transform: none !important;    /* Evita rotaciones de Bootstrap */
  margin-left: auto;             /* Empuja el icono hacia la derecha */
  font-weight: normal;
}

/* Cuando está abierto, mostrar el signo menos */
.why-work-accordion .accordion-button:not(.collapsed)::after {
  content: "–";   /* Signo menos */
  color: #474745;
}

.consultation{
  width: 100%;
  float: left;
  padding: 10rem 0;
  background: #07515b;
}

.consultation h2{
  color: #fff;
  text-align: center;
  font-size: 70px;
  font-family: 'myanmar';
  text-transform: uppercase;
}


.consultation p{
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.consultation form{
  background: #fff;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  padding: 6rem;
  margin-top: 10%;
  margin-left: -13%;
  color: #252525;
  font-size: 14px;
  width: 113.9%;
  float: left;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.consultation form input,
.consultation form textarea{
  background: #eaf2f5;
  border:0;
  color: #252525;
  font-size: 14px;
  width: 100%;
  float: left;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 15px;
}

.consultation form textarea{
  resize: none;
}

.consultation form hr{
  border-color: #252654;
}

.consultation form hr {
  border-color: #252654;
  opacity: 1;
  border-width: 4px;
  border-radius: 40px;
  margin: 2rem 0 3rem;
  display: block;
}

.consultation .wpcf7-not-valid-tip{
  font-size: 14px;
}

.consultation span.wpcf7-list-item-label,
.consultation label{
  line-height: 1;
  font-size: 11px;
  color: #252525;
}

.consultation form input[type="checkbox"]{
  width: auto!important;
}

.consultation input.wpcf7-form-control.wpcf7-submit.has-spinner{
  background: #252654;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
}

footer{
  background: #1c1c1c;
  padding: 6rem 0 0;
  color: #fff;
  width: 100%;
  float: left;
  font-size: 14px;
}

footer hr{
  opacity: 1;
  margin:2rem 0 .5rem ;
  display: block;
}

footer a{
  color: #fff;
  font-weight: 400;
}

footer .menu-footer{
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .nav-link {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 1.3rem 0;
}

footer .nav-link::after {
    height: 1px;
}

footer a.links{
  display: block;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

footer a.links span{
  display: block;
  text-transform: uppercase;
}

footer a.links:hover{
  color: #67a321;    
  transition: color 0.3s ease;
}

footer a.links path{
  transition: color 0.3s ease;
}

footer a.links:hover svg path{
  fill:#67a321;  
  transition: color 0.3s ease;
}

.about-us-page{
  padding: 6rem 0 0;
  width: 100%;
  float: left;
}

.about-us-page h1{
  color: #0a0a0a;
  font-size: 85px;
  text-transform: uppercase;
  font-family: 'myanmar';
  margin: 5rem 0;
}

.about-us-page p{
  color: #0a0a0a;
  font-size: 20px;
  text-align: left;
}


.about-us-page p span{
  color: #0a0a0a;
  font-size: 42px;
  text-align: left;
} 


.btn-blue{
    width: 60%;
    padding: 10px 15px;
    background: #252654;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin: 2rem 20% 0;
    display: block;
    text-align: center;
}

.btn-blue:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.about-us-page .video-own{
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;    /* moderno; si no, quita esta línea */
  display: block;
  border-radius: 0;   /* opcional */
  object-fit: cover;     /* o "contain" si no quieres recorte */
  margin: 10rem 0 ;
}


.category-services-page{
  padding: 6rem 0 0;
  width: 100%;
  float: left;
}

.category-services-page h1{
  color: #0a0a0a;
  font-size: 85px;
  text-transform: uppercase;
  font-family: 'myanmar';
  margin: 5rem 0;
}

.category-services-page p{
  color: #0a0a0a;
  font-size: 20px;
  text-align: left;
}


.category-services-page p span{
  color: #0a0a0a;
  font-size: 42px;
  text-align: left;
} 


.services-filter{
  margin-bottom: 10rem;
}

.services-filter .botonera{
  margin-bottom: 6rem;
  width: 100%;
  float: left;
}


.services-filter .btn{
  color: #fff;
  border: 1px solid #618534;
  background: transparent;
  color: #07515b;
  float: left;
  width: 100%;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 10px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-filter .btn.is-active{
  border: 1px solid #07515b;
  background-color: #07515b;
  color: #fff;
}

.service-item{
  transition: opacity .25s ease, transform .25s ease; 
  opacity: 1;
}

.service-item.is-hidden{ 
  opacity: 0; 
  transform: scale(.98); 
  pointer-events: none; 
  display: none;
}

.services-filter .card{
  width: 100%;
  float: left;
  margin-bottom: 3rem;
  border:0;
  text-align: center;
  box-shadow: revert!important;

}

.services-filter .card-body a{
  font-size: 25px;
  text-transform: uppercase;
}

.services-filter .linea-verde {
    width: 15%;
    margin: 0 42.5% 2rem;
    height: 10px;
    background: #69a321;
    border-radius: 50px;
    margin-top: 2rem;
}

.services-filter .card-body p{
  font-size: 18px;
  text-align: center;
}

.category-projects-page{
  padding: 6rem 0 0;
  width: 100%;
  float: left;
}

.category-projects-page h1{
  color: #0a0a0a;
  font-size: 85px;
  text-transform: uppercase;
  font-family: 'myanmar';
  margin: 5rem 0;
}

.category-projects-page p{
  color: #0a0a0a;
  font-size: 20px;
  text-align: left;
}


.category-projects-page p span{
  color: #0a0a0a;
  font-size: 42px;
  text-align: left;
} 


/* Parallax puro CSS */
.cat-parallax{
  /* variable CSS para inyectar la imagen desde PHP */
  --bg: url('about:blank');

  position: relative;
  min-height: 80vh;           /* alto visible; ajusta a gusto */
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;

  /* Parallax */
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;   /* efecto parallax en desktop */
  width: 100%;
  float: left;
}

/* Overlay para contraste (opcional) */
.cat-parallax::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
}
.cat-parallax__inner{ position: relative; z-index: 1; padding: 3rem 1rem; }

/* Fallback móvil (iOS/Android): evita jitter de background-attachment */
@media (max-width: 991px){
  .cat-parallax{ background-attachment: scroll; }
}

/* Respeta preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce){
  .cat-parallax{ background-attachment: scroll; }
}
 

.category-projects-page .text{
  padding: 8rem 0;
  text-align: center;
  float: left;
  width: 100%;
}

.category-projects-page .pojects-images{
  width: 100%;
  float: left;
  margin-bottom: 8rem;
}

.financing-page{
  padding: 6rem 0 0;
  width: 100%;
  float: left;
}

.financing-page h1{
  color: #0a0a0a;
  font-size: 85px;
  text-transform: uppercase;
  font-family: 'myanmar';
  text-align: center;
  margin: 5rem 0;
  line-height: 85px;
}

.financing-page h1 span{
  color: #497018
}

.financing-page p,
.financing-page ul{
  color: #0a0a0a;
  font-size: 20px;
  text-align: justify;
}

.financing-page p.resume{
  color: #0a0a0a;
  font-size: 20px;
  text-align: center;
}


.financing-page p span{
  color: #0a0a0a;
  font-size: 42px;
  text-align: left;
} 

.post-parallax{
  /* Imagen inyectada desde PHP */
  --bg: url('about:blank');

  position: relative;
  min-height: 80vh;                 /* 100vh si lo quieres a pantalla completa */
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;

  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;     /* parallax puro en desktop */
  margin: 6rem 0;
}

/* Overlay para contraste del texto (opcional) */
.post-parallax::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.15));
  pointer-events:none;
}

.post-parallax__inner{
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
}

/* Fallback móvil: evita jitter de background-attachment en iOS/Android */
@media (max-width: 991px){
  .post-parallax{ background-attachment: scroll; }
}

/* Accesibilidad: respeta reducciones de movimiento */
@media (prefers-reduced-motion: reduce){
  .post-parallax{ background-attachment: scroll; }
}


.financing-page h2{
  color: #0a0a0a;
  font-size: 75px;
  text-transform: uppercase;
  font-family: 'myanmar';
  text-align: center;
  line-height: 85px;
  margin-bottom: 5rem;
}

.financing-page h3{
  color: #0a0a0a;
  font-size: 40px;
  text-transform: uppercase;
  font-family: 'myanmar';
  text-align: center;
  line-height: 50px;
  margin: 3rem 0;
}



.financing-page h2 span{
  color: #497018;
  display: block;
  margin: 4rem 0 0;
}


.financing-page p strong{
  font-weight: 900;
 /* color: #27aa12;*/
}

.financing-page .contenido{
  margin-bottom: 8rem;
}

.financing-page .contenido a{
  font-weight: 700;
}

/* Estado inicial: oculto y ligeramente abajo */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

/* Al entrar en viewport */
.reveal.show {
  opacity: 1;
  transform: none;
}

/* Respeta reducción de movimiento */
@media (prefers-reduced-motion: reduce){
  .reveal { transition: none; opacity: 1; transform: none; }
} 
.reveal-left  { transform: translateX(-16px); }
.reveal-right { transform: translateX(16px);  }


.financing-page .contenido.text-justify p,
.financing-page .contenido.text-justify ul{
  text-align: justify!important;
}

.financing-page .contenido.text-justify p strong{
  color: #0a0a0a;
}

/* Asegura contraste del toggler si tu navbar no usa bg-light/dark */
.navbar .navbar-toggler {
  border-color: rgba(0,0,0,.15);
}
.navbar .navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg, url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' ... %3e%3c/svg%3e"));
}

/* Separación visual de submenús en móvil */
@media (max-width: 991.98px){
  .navbar .dropdown-menu {
    border: 0;
    padding-left: .5rem;
  }
}

.category-projects-page .category-description p{
  text-align: center;
}


.single .consultation {
    width: 100%;
    float: left;
    padding: 3rem 0;
    background: transparent;
}

@media (min-width: 1920px){
  .slider {
    padding: 0;
  }

  .services-slider {
    padding: 0% 0 3%;
  }

  .steps {
    margin-top: -13px;
      --cut: 23vw;
  }

  .steps::after {
      content: "";
      position: absolute;
      inset: 0;
      background: url(../img/alberca-3.png) no-repeat;
      width: 100%;
      left: -1%;
      bottom: -58%;
      background-size: 35%;
      height: auto;
      background-position: center left;
      z-index: 9999;
  }


}

@media (min-width: 768px) and (max-width: 1024px){

  html,
  body{
    text-align: center;
  }

  .scroll-circle {
      margin-left: 50%;
  }

.navbar-toggler{
    color: #fff;
    font-size: 30px;
  }

  .nav-link {
      text-align: center;
  }

  nav a.btn.btn-dark.w-100.rounded-pill,
  .dropdown-item{
    text-align: center;
    font-size: 20px;
  }

  .dropdown-toggle::after {
      display: inline-block;
      margin-left: 95%;
      bottom: 10px;
  }

  .services-slider .carousel-cell{
    width: 50%;
  }

  .slider h1{
    font-size: 65px;
  }

  .slider h1 span {
      display: block;
  }

  .steps{
    --cut:47vw;
  }

  .steps::after {
      bottom: -72%;
      background-size: 73%;
  }

  .testimonials-slider .carousel-cell{
    width: 50%;
  }

  .services-slider h3 {
      min-height: 60px;
      font-size: 25px;
  }

  .consultation form {
      margin-top: 0;
      color: #252525;
      font-size: 14px;
      width: 100%;
      margin-left: 0;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
  }

  .services-home {
      padding: 8rem 0 4rem;
      height: 68vh;
  }

  .why-work-with-us h2 {
      font-size: 60px;
  }

  section.why-work-accordion{
    margin-top: 4rem;
  }

  .about-us-page,
  .about-us-page p,
  .category-services-page,
  .category-services-page p,
  .category-projects-page,
  .category-projects-page p{
    text-align: center!important;
  }

  .about-us-page h1,
  .category-services-page h1,
  .category-projects-page h1,
  .services-home h2,
  .steps h2,
  .consultation h2,
  .financing-page h1,
  .financing-page h2{
      font-size: 60px;
  }

  .category-services-page p,
  .about-us-page p,
  .category-projects-page p,
  .financing-page p, 
  .financing-page ul{
    font-size: 18px;
  }
  .cat-parallax,
  .post-parallax {
      min-height: 30vh;
    }

}

@media (max-width: 767px){

  .consultation form input, .consultation form textarea {
      margin-right: 10px;
  }

  html,
  body{
    text-align: center;
  }

  header{
    padding: 1rem 0;
  }

  .navbar-brand {
      width: 80%;
  }

  .navbar-brand img{
    width: 100%;
    object-fit: contain;
  }

  .services-home a,
  .our-promise-home a,
  .btn-blue{
    width: 100%;
    margin: 0;
    display: block;
  }
  .financing-page h3 {
      color: #0a0a0a;
      font-size: 35px;
  }

  .financing-page .contenido {
      margin-bottom: 0;
  }

  .financing-page p.resume {
      color: #0a0a0a;
      font-size: 16px;
      text-align: center;
  }

  .p-0{
    padding-left: 1.5rem!important;
    padding-right: 1.5rem!important;
  }

  .slider .row.d-flex.align-items-center{
    height: auto!important;
  }

  .button-row {
      margin-left: 90%;
      margin-bottom: 1rem;
  }

  .scroll-circle {
    display: none;
  }

.navbar-toggler{
    color: #fff;
    font-size: 25px;
  }

  .nav-link {
      text-align: center;
  }

 .dropdown-item {
     text-align: center;
     font-size: 16px;
 }

 nav a.btn.btn-dark.w-100.rounded-pill{
     padding: 15px;
    text-align: center;
     font-size: 16px;
 }


  .dropdown-toggle::after {
      display: inline-block;
      margin-left: 95%;
      bottom: 10px;
  }

  .our-promise-home .contenido{
    position: relative;
    padding: 4rem 0;
  }

  .our-promise-home {
      margin-top: 0;
      padding: 0;
   }

  .services-slider .carousel-cell{
    width: 100%;
  }

  .slider h1{
    font-size: 40px;
    line-height: 40px;
  }

  .slider h1 span {
      display: block;
  }

  .steps{
    --cut:20vw;
    padding: 6rem 0 15rem
  }

  .steps::after {
    display: none; 
   }

  .testimonials-slider .carousel-cell{
    width: 100%;
  }

  .services-slider h3 {
      min-height: 60px;
      font-size: 20px;
  }

  .consultation form {
      margin-top: 0;
      color: #252525;
      font-size: 14px;
      width: 100%;
      padding: 3rem;
      margin-left: 0;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 20px;
  }

  .services-home {
      padding: 8rem 0 4rem;
      height: auto;
  }

  .why-work-with-us{
    min-height: 70vh;
  }

  .why-work-with-us h2 {
      font-size: 40px;
  }

  section.why-work-accordion{
    margin-top: 4rem;
  }

  .about-us-page,
  .about-us-page p,
  .category-services-page,
  .category-services-page p,
  .category-projects-page,
  .category-projects-page p{
    text-align: center!important;
  }

  .about-us-page h1,
  .category-services-page h1,
  .category-projects-page h1,
  .services-home h2,
  .steps h2,
  .consultation h2,
  .financing-page h1,
  .financing-page h2,
  .our-promise-home h2,
  .people-saying h2{
      font-size: 30px;
  }

  .category-services-page p,
  .about-us-page p,
  .category-projects-page p,
  .financing-page p, 
  .financing-page ul,
  .our-promise-home p,
  .our-promise-home a,
  .services-home p,
  .services-home a,
  .slider p,
  .services-slider p,
  .steps p,
  .people-saying p,
  .consultation p{
    font-size: 14px;
  }
  .cat-parallax,
  .post-parallax {
      min-height: 30vh;
    }

  .our-promise-home .contenido{
    top: 10%;
  }

  .marquee__content span{
    font-size: 20px;
  }

  section.about-us-page .pt-5,
  section.about-us-page .pb-5,
  section.about-us-page .mt-5,
  section.about-us-page .mb-5 {
      padding: 0 !important;
      margin: 0!important;
  }

  .about-us-page img.w-100.animate__animated.animate__slideInLeft.animate__delay-1s{
    margin-bottom: 4rem;
  }

  .about-us-page,
 .category-services-page,
 .category-projects-page,
 .financing-page {
      padding: 0 0 0;
  }

  .services-filter .btn{
    font-size: 12px;
    padding: 7px 5px;
    margin-top: 1rem;
  }

  .services-filter .card-body a{
    font-size: 18px;
  }

  .services-filter .card-body p{
    font-size: 14px;
  }

  .financing-page h1,
  .financing-page h2{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 1rem;
  }

  section.about-us-page .imagen-izquierda,
  section.about-us-page .p-0.imagen-izquierda,
  section.about-us-page .container-fluid.p-0,
  section.about-us-page .container-fluid .col-xl-6{
    padding-left:0!important;
    padding-right: 0!important;
    padding: 0!important;
    margin: 0!important;
  }

  .pgcsimplygalleryblock-grid-item {
      margin-bottom: 10px!important;
  }

  .about-us-page p span{
    font-size: 25px;
  }
  
  .services-filter .botonera {
      margin-bottom: 1rem;
  }

  .category-projects-page .text {
      padding: 4rem 0;
  }

  .post-parallax {
      margin: 1rem 0;
  }

}