
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins Regular", sans-serif;
  /* color: #444444; */
  /* background-image: linear-gradient(180deg,#f3f3f3 0%,#adb5bd1f 100%) */
}

a {
  color: #308a65;
  text-decoration: none;
}

a-servicio{
  padding-top: 5px !important;
  color:#0c0c0c !important

}

a:hover {
  color: #079f81;
  text-decoration: none;
}

h1,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins-ExtraLight', sans-serif;
  /* font-weight: bold; */
}

.h2{
  font-family: 'Poppins', sans-serif;
  font-weight: regular;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #079f81;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #079f81;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.btn-primary2{
  border-radius: 1px !important;
  border: none;
  background-color: #308a65;
  box-shadow: #4c4c4c;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 10px;
  margin-left: 20px;
}

.btn-primary2:hover{
  background: #0b382f;
  transition: all ease-in-out 0.4s;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#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 #308a65;
  border-top-color: #efefef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #191919;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}

#topbar .contact-info a {
  line-height: 0;
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #fff;
}

#topbar .contact-info i {
  color: #308a65;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /* background: #308a65; */
  transition: all 0.5s;
  z-index: 997;
  height: 75px;
}

#header.fixed-top {
  background: #308a65;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 35px;
  /* filter: drop-shadow(3px 2px 2px rgba(147, 140, 140, 0.851)); */
}

.scrolled-offset {
  margin-top: 70px;
}





/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  margin-left: 5px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  cursor: pointer;
  font-family: Poppins-Regular, sans-serif;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  text-decoration: underline;
  color: rgba(253,199,75,255);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #308a65;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.2s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #191919;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.img-fluid-service {
  width: 650px;
  height: 500px !important;
  margin-left: 350px;
  
}

/* Estilos para las tarjetas giratorias */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 450px;
  perspective: 1000px;
  margin-bottom: -50px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 75%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.flip-card-front {
  background-color: #f8f9fa;
  color: #096956;
  background-size: cover;
  background-position: center;
}

.flip-card-back {
  background-color: #096956;
  color: white;
  transform: rotateY(180deg);
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}


/* Ajustes para el título con ícono */
.flip-card-front h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ajustes para el tamaño de la tarjeta */
.flip-card {
  height: 380px; /* Ajusta la altura según sea necesario */
}

/* Media Queries para celulares */
@media (max-width: 768px) {
  .flip-card {
    height: 320px; /* Altura reducida para pantallas pequeñas */
    margin-bottom: -30px;
  }

  .flip-card-inner {
    height: 70%;
  }

  .flip-card-front, .flip-card-back {
    padding: 15px; /* Menos padding para ahorrar espacio */
  }

  .flip-card-front h2 {
    font-size: 40px !important; /* Títulos más pequeños */
  }

  .flip-card-back {
    font-size: 1em;
  }
}

/* Media Queries para celulares muy pequeños */
@media (max-width: 480px) {
  .flip-card {
    height: 280px; /* Altura aún menor para dispositivos pequeños */
  }

  .flip-card-front h2 {
    font-size: 30px !important; /* Títulos más pequeños */
  }

  .flip-card-back {
    font-size: 10px; /* Texto más compacto */
  }
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }

  .imgAbout {
    padding-top: 15px;

  }

}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #308a65;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #308a65;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 17px;
  color: white;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fdc727c4;
  background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #308a65;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%; 
  /* height: calc(100vh - 70px); */
  height: 100%;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size:auto;
  background-position: top center;
  position: relative;
  order: 1;
}


#hero:before {
  content: "";
  background: linear-gradient(to bottom, rgb(0 0 0 / .0), rgb(0 0 0 / .3)),url("../img/hero-bg.jpg") top center no-repeat;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  font-size: 50px;
  font-weight: 750;
  font-family: Poppins-Black, sans-serif;
  line-height: 56px;
  color:black;
  margin-top: 50px;
  padding-left: 20px;
  right: 20px; 
}

@media (min-width: 0px) and (max-width:700px){
  .titulo-hero{
    font-size: 18px !important;
  }
  .header-title{
    font-size: 25px !important;
  }
  #hero h1{
    line-height: 25px;
    color: black;
    text-transform: uppercase;
  }
  .busqueda {
    width: auto !important;
    color: black
  } 
  .busqueda-h2{
    font-size: 17px;
    margin-left: 0px;
    color: white
  }
  .btn-primary2{
  font-size: 15px;
  margin-left: 30%;
  }
  #hero::before{
    background-size: cover !important;
  }
  .section-title span {
    font-size: 20px !important;
    position: relative !important;
    padding: 0px !important;  
  }
}

@media (min-width: 0px) and (max-width: 800px) {
  .breadcrumbs-quienes-somos {
    background: url("../img/cta-bg3.jpg") no-repeat center center / cover !important;
    height: 70vh !important;
  }
}


@media (min-width: 800px)  {
  .breadcrumbs-quienes-somos {
    background: url("../img/cta-bg2.jpg") no-repeat center center / cover !important;
    height: 70vh !important;
  }
}


@media (max-width: 900px) {
  .portfolio-details .portfolio-details-slider img {
    width: 100% !important; 
    height: auto; 
    margin-left: auto !important;
    border-radius: 0 20px 20px 20px !important;
  }
}

@media (min-width: 700px) and (max-width: 1200px){
  #hero:before{
    background: linear-gradient(to bottom, rgb(0 0 0 / .0), rgb(0 0 0 / .3)),url("../img/hero-bg.jpg") top center no-repeat;
    background-size: cover;
   }
  #hero{
    height: calc(100vh - 70px);
  }
  #hero h1{
  font-size: 38px ;
  }
  .busqueda {
    height: 65vh;
    color: black
  } 
  .busqueda-h2{
    font-size: 30px;
  }
  .btn-primary2{
  font-size: 20px;
  }
  .about .content h3 {
    font-size: 25px !important;
  }
  .about .content ul {
    font-size: 15px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1800px){
 #hero:before{
  background: linear-gradient(to bottom, rgb(0 0 0 / .0), rgb(0 0 0 / .3)),url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
 }
 #hero h1{
  font-size: 45px ;
 }
.busqueda {
  height: 65vh;
  color: black
} 
.busqueda-h2{
  font-size: 28px;
}
.btn-primary2{
font-size: 17px;
}
.about .content h3 {
  font-size: 25px !important;
}
.about .content ul {
  font-size: 18px !important;
}
}

@media (min-width: 1800px){
  #hero:before{
    background: linear-gradient(to bottom, rgb(0 0 0 / .0), rgb(0 0 0 / .3)),url("../img/hero-bg.jpg") top center no-repeat;
    background-size: cover;
   }
  #hero h1{
    font-size: 50px ;
   }
  .busqueda {
    height: 55vh;
    color: black
  } 
  .busqueda-h2{
    font-size: 28px;
  }
  .btn-primary2{
  font-size: 17px;
  }
  }


#hero .btn-get-started {
  font-family: "Poppins Regular", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #308a65;
  border-color: #308a65;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
  overflow: hidden;
  /* background-image: linear-gradient(180deg,#f3f3f3 0%,#adb5bd1f 100%) */ 
}

section2 {
  overflow: hidden;
}

service2 {
  overflow: hidden;
  padding: 0px !important;
}

.section-title {
  text-align: center;
  padding: 40px 0px;
  position: relative;
}
.section-title-inner {
  text-align: center;
  padding: 0px 0;
  position: relative;
}


.section-title span {
  position: absolute;
  top: 30px;
  color: black;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 30px;
  /* text-transform: uppercase; */
  line-height: 0;
  padding-bottom: 10px;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  color: rgb(57, 56, 56);
  font-size: 18px;
  margin-top: 25px !important;
  /* font-family: "Poppins-Thin", sans-serif; */
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/* #about{
  background: #308a65;
} */

.about .content h3 {
  font-size: 33px;
  margin-right: 50px;
  color: #308a65;
  font-weight: bolder;
  /* background-color: #308a65; */
  /* border-radius: 10px 10px 10px 10px ; */
  /* padding: 15px; */
  margin-top: 40px;
  font-family: Poppins-Black, sans-serif !important;
  letter-spacing: 0.05em;
  text-align: initial !important;

}

.about .content ul {
  list-style: none;
  padding: 0;
  font-size: 17px;
}

.about .content ul li {
  padding-bottom: 10px;
  margin-right: 50px;
}

.about .content p {
  margin-right: 50px;
}

.about .content ul i {
  font-size: 17px;
  padding-right: 4px;
  color: #308a65;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.sobreNosotros {
  text-decoration: none;
  font-family: "Poppins Regular", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #a9a8a8 !important;;
  background-color: #308a65;
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-left: 210px; /* Centrar horizontalmente */
}


.sobreNosotros:hover{
  background-color: #308a65;
  color: #fff
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 20px;
}
.col-lg-4{
  margin-bottom: 20px !important
}

.why-us .box {
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
background-color: #fdc727;
  border-radius: 20px 20px 20px 20px;
  backdrop-filter: blur(10px);
  height: 100%;

}


.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #308a65
}

.why-us .box h4 {
  font-size: 21px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #265d46
}

.why-us .box p {
  color:#265d46;
  font-size: 15px;
  margin: 0;
  padding: 0;
  
}

.why-us .box:hover {
  background: #ffffff;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px) !important;
  /* border: solid #308a65; */
  /* border-style: inset; */
} 

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #0a0a0a;
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
  background: #308a65;
  padding: 25px 0;
  text-align: center;
}

.clients img {
  /* width: 50%; */
  /* filter: grayscale(100); */
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.2);
}

#clients .container{
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#clients .row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
  row-gap: 22px;                 /* separación uniforme horizontal + vertical */
  justify-items: center; 
  padding: 10px;
}

/* Tamaño/estilo de cada logo redondo */
#clients img{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:#fff;
  padding: 5px;
  object-fit: contain;
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
}


.carousel {
  width: 100%;
}

.carousel-container {
  display: flex;
  animation: slide-animation 25s linear infinite;
}

.slide {
  flex: 0 0 100%;
}

#about .img-fluid{
  margin-top: 40px !important;
  border-radius: 0 10px 10px 10px;
}

@keyframes slide-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(242, 6, 6, 0.1);
  background: #fff;
  border: 1px solid #ebebeb; 
  border-radius: 0 15px 15px 20px;
}

.services .icon-box {

  background: #fff;
}


.services .icon-box .icon {
  margin: auto;
  width:10px;
  height: 10px;
  /* background-color: #308a65; */
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
  transform-style: preserve-3d;
}

.services .icon-box .icon img {
  font-size: 28x;
  width:130px;
  height: 130px;
  padding: 20px;
  color: #13b1cd;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  /* background: rgba(253,199,75,255); */
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  /* color:black */
}

.services .icon-box h4 {
  font-weight: 700;
  font-size: 21px;
  color: #090909;
  padding: 40px;
  padding-bottom: 20px;
  font-family: Poppins-Regular, sans-serif;
}

.services .icon-box h4 a {
  color: #0c0c0c;
}


.services .icon-box p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  color:black
  
}

.services .icon-box:hover {
  background-color: #fff;;
  padding: 70px 20px 90px 20px;
  cursor: pointer
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #308a65;
}

/* .services .icon-box:hover .icon::before {
  background: #308a65;
} */

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #090909;
}

.services .ss-btn{
  font-family: "Poppins-Regular", sans-serif;
  font-weight: 500;
  font-size: bold 14px !important;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  background-color: #fdc727c4;
}

.services .ss-btn:hover{
  font-family: "Poppins-Regular", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  color: #308a65;
}

.header-envio{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25vh;
  background-color: #fdc727c4 ;
  background-size: cover !important;
  margin-top: 0px !important;
}


.servicio-h3{
  padding: 20px; 
  margin-top: 10px; 
  color: white;
  font-size: 20px !important;
  /* text-align: justify; */
  /* margin-bottom: 40px; */
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;

}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  font-family: "Poppins-Regular", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #6c6363;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  width: 100%;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #191919;
  width: 100%;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 0;
  width: 100%;
  font-family: Poppins-Regular;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #333333;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #308a65;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6e5b5b;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

.portfolio 

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
  padding-top: 20px;
}

.imgQuienes{
  border-radius: 0 20px 20px 20px;
  height: auto;
}

@media (min-width: 990px){
  .imgQuienes{
    height: 600px;
    width: 520px;
    border-radius: 0 20px 20px 20px;
    height: auto;
  }
  .quienes-somos{
    padding-top: 17px;
    text-align: justify;
    width: 500px;
  }
  .quienes-somos p{
    font-size: 21px !important;
  }
}

.portfolio-details {
  position: relative;
  height: 100%;
}

.portfolio-image {
  top: 0;
  left: 0;
  width: 100vw;
  z-index: -1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin: 0px !important;
}

.portfolio-image .imgServices {
  width: 100vw;
}

.portfolio-description {
  background-color: rgba(255, 255, 255, 0.2); /* Ajusta el color de fondo y la opacidad según tus preferencias */
  padding: 20px;
  border-radius: 2em 0;
}

.portfolio-description-day {
  padding: 20px;
  border-radius: 2em 0;
  margin-left: 500px;
  margin-top: 50px;
}
.portfolio-details .portfolio-details-slider img {
  margin-left: auto; 
  border-radius: 0 20px 20px 20px;
  width: 100% ; 
  height: auto;
}


.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;

}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #308a65;
  
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #308a65;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(25, 25, 25, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}


.portfolio-details .portfolio-description h2 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  background-color: #308a65;
  border-radius: 0 10px 10px 10px;
  color: white;
  height: 60px;
  width: 100%;
  padding-top: 20px;
  padding-left: 20px;
  font-family: Poppins-Regular, sans-serif;
}

.h2-pactado {
  height: 120px;
  width: 420px !important;
  padding-top: 30px;
  padding-bottom: 40px !important;
  margin-left: 0px !important;
}

.portfolio-details .portfolio-description p {
  font-size: 18px; 
  text-align: justify; 
  width: 100vw;
  padding-right: 20px;
  font-family: Poppins-Regular;
  font-weight: bold;
  color: #041f16;
  border-radius: 2em 0;
}

.portfolio-details .portfolio-description-day p {
  font-size: 18px; 
  text-align: justify; 
  padding-right: 20px;
  font-family: Poppins-Regular;
  font-weight: bold;
  color: #041f16;
  border-radius: 2em 0;
}


.p-portfolio {
  padding: 0px;
  font-size: 22px !important; 
  text-align: justify; 
  margin-left: 150px !important; 
  width: 350px;
}

.p-portfolio-pactado {
  padding: 0px;
  font-size: 21px !important; 
  text-align: justify; 
  margin-left: 10px !important; 
  width: 400px;
}

.img-portfolio{
  height: 400px ; 
  width: 600px ; 
  margin-left: 150px; 
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.1), rgba(0, 0, 0, 0.3)), url("../img/cta.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
  height: 350px;
}


.cta-express {
  background: linear-gradient(rgba(2, 2, 2, 0.1), rgba(0, 0, 0, 0.3)), url("../img/cta-express.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
  height: 550px;
}

.cta-day{
  background-size: cover;
  padding: 120px 0;
  color: #fdc727;
  background-color: #308a65;
}

.cta-pactado {
  background: linear-gradient(rgba(2, 2, 2, 0.1), rgba(0, 0, 0, 0.3)), url("../img/cta-pactado.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
  height: 550px;
}

.cta h3 {
  font-weight: bold;
  color: #308a65;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  font-weight: bold;
  font-size: 18px;
  color: #308a65;
}

.cta .cta-btn {
  font-family: "Poppins-Regular", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #308a65;
  color: white;
  background-color: #308a65;
}

.cta .cta-btn:hover {
  background: rgba(253,199,75,255);
  border: 2px solid rgba(253,199,75,255);
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fdc7279a;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 500;
  padding: 15px;
  font-size: 23px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0f4434;
  font-weight:bolder;
}

.pricing .box h4 {
  font-size: 42px;
  color: #308a65;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #308a65;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #0f4434;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #308a65;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color:#308a65;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  background: #fdc727;;
  display: inline-block;
  padding: 10px 40px;
  color: #308a65;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins-Regular", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #fff;
  font-size: 16px;
}

.pricing .featured {
  background: #fdc727;
  box-shadow: none;
  color: #0f4434;
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured ul,
.pricing .featured ul li,
.pricing .featured ul .na {
  color: #0f4434;
}

.pricing .featured h4 span {
  color: #308a65;
}

.pricing .featured .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .featured .btn-buy {
  background: rgba(255, 255, 255, 0.2);
}

.pricing .featured .btn-buy:hover {
  background: #fff;
  color: #308a65;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  font-size: 17px;
  color: #308a65 !important;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;

}
.contact .info-box img {
  font-size: 28x;
  width:100px;
  height: 100px;
  padding: 20px;
  color: #13b1cd;
}

.contact .info-box i {
  font-size: 32px;
  background-color: #308a65; 
  border-radius: 50%;
  padding: 8px;
  /* border: 2px dotted #d2f5a0; */
  color: #fee500;
  margin-bottom: 20px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;

}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  font-family: "Poppins-Regular", sans-serif;
}

.larger-container {
  margin: 0 auto; /* Centra horizontalmente el contenedor */
  width: 70%; /* Ajusta el ancho según tus necesidades */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.contact .php-email-form {
  box-shadow: 0 0 10px #308a65;
  padding: 30px;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #308a65;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #308a65;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(253,199,75,255);
}



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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: url("../img/hero-bg.jpg");
  height: 500px;
  background-repeat: no-repeat;
  background-size: 100%;
}

.breadcrumbs-quienes-somos {
  padding: 15px 0;
  background: url("../img/cta-bg2.jpg");
  height: 100lvh;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 30px;
  /* background-position-y: -150px; */
}

.breadcrumbs-services {
  background: url("../img/about222.jpg");
  height: 200px;

  background-size: cover;
}


.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  content: "/";
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  content: "/";
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #308a65;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

#footer .footer-top .footer-info h3 {
  font-size: 36px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Poppins-Regular", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #262626;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: rgba(253,199,75,255);
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #308a65;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: rgba(253,199,75,255);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  outline: none;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 70;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #308a65;
  color: #fff;
  transition: 0.3s;
  /* border-radius: 4; */
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: rgba(253,199,75,255);
}

#footer .copyright {
  border-top: 1px solid #262626;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #13b1cd
}

#footer .logo2 img {
  max-height: 80px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -0px 0 30px 0;
  }
}




/*---------------------------------------------------------*/

.quienes-somos-titulo{
  display: flex ;
  flex-direction: column ;
  justify-content: center !important;
  align-items: center !important ;
  height: 38vh;
  max-height: 100%;
  color: black;
}

.quienes-somos{
  padding-top: 17px;
  text-align: justify;
}

.quienes-somos p{
 color: #060606 ;
 font-family: sans-serif; 
 font-size: 19px; 
 width: 100%;
 padding: 10px;
}

.quienes-somos strong{
  color: #308a65;
  /* background-color: #308a65; */
  border-radius: 0 10px 10px 10px ;
  font-weight: bold;
  font-family: sans-serif; 
  font-size: 25px; 
  padding: 10px;
  max-width: 700px; 
 }

.text-primary {
  color: #fdc727 !important;
  font-weight: bold !important;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh;
  background-color: #308a65;
  background-size: cover !important;
  margin-top: -20px !important;
}

.header-title {
  font-family: "Poppins-Black", sans-serif;
  font-weight:bold;
  font-size: 35px;
  margin-left: 15px;
  color: #308a65;

}

.header2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh;
  background-color: #308a65;
  background-size: cover !important;
  margin-top: 55px !important;
}

.header3 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  background-size: cover !important;
  color: #041f16;
}

.headerTeam {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh;
  background-color: white;
  background-size: cover !important;
  margin-top: -20px !important;
  margin-bottom: -40px;
  color: #041f16;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 70px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 24px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-float i {
  margin-top: 18px;
}

.whatsapp-float:hover {
  background-color: #308a65;
  color: #fff;
}

.team {
  /* background: #fff; */
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  max-width: 120%;
  height: auto;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}



.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #308a65;
  font-family: "Poppins-Bold", sans-serif;
}

.counts .content p {
  margin-bottom: 0;
  font-family: "Poppins-Regular", sans-serif;
  text-align: justify
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
  font-family: "Poppins-ExtraLight", sans-serif;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Poppins-Regular", sans-serif;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.805);
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #0c0c0c;
  font-size: 15px;
  font-family: "Poppins-ExtraLight", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("../img/mapa.png") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

/* -------------------------------------------------------------
form

/* Estilos del contenedor principal */
.redirect-container {
  text-align: center;
  padding: 50px;
  font-family: 'Roboto', sans-serif; /* Usa la fuente principal de la web */
  background-color: #f9f9f9; /* Fondo claro */
  color: #333; /* Texto oscuro */
  min-height: 100vh; /* Altura completa de la pantalla */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Estilo del logo */
.redirect-logo {
  width: 200px;
  margin-bottom: 20px;
}

/* Título del mensaje */
.redirect-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

/* Mensaje de descripción */
.redirect-message {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* Botón de redirección */
.redirect-button {
  padding: 10px 20px;
  background-color: #308a65; 
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
}

/* Hover del botón */
.redirect-button:hover {
  background-color: #234e3c; 
  color: #fff;
}


/* /------------------------------------------------------------ */ 


@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}
@media (min-width: 0px) and (max-width: 370px) {
  #hero .container {
    padding-top: 40px;
  }
  #services h3 {
    font-size: 18px !important;
}

#hero content{
  width: 100%;
  height:100% !important;
  background: url("../img/hero-bg.jpg") top center no-repeat !important;
  background-size: cover;
  background-position: top center;
  position: relative;
  order: 1;
}

  .sobreNosotros {
    text-decoration: none;
    font-family: "Poppins-Regular", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 28px;
    transition: 0.5s;
    border: 2px solid #a9a8a8 !important;;
    background-color: #308a65;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin-left: 80px; 
  }

  .about .content h3 {
    font-weight: 600;
    font-size: 25px;
    color: white;
    background-color: #308a65;
    padding: 15px;
    margin-top: -10px !important;
    width: 100%;
    font-family: Poppins-SemiBold, sans-serif;
    letter-spacing: 0 !important;
    word-spacing: 0.5em;
    border-radius: 0 10px 10px 10px;
  }
  
  .sobreNosotros:hover{
    background-color: #308a65;
    color: #fff
  }

  .about .content ul li {
    padding-bottom: 10px;
    margin-right: 80px !important;
    padding: 15px;
    width: 100%;
  }
  
  .about .content p {
    padding-bottom: 10px;
    margin-right: 80px !important;
    width: 100%;
    -webkit-text-size-adjust: 100% ;
    margin-left: 10px;
  }

  .portfolio-description-day {
    padding: 20px;
    border-radius: 2em 0;
  }
    #services h3{
      font-size: 15px;
      text-align: justify
    }

  
    .counts .content p {
      margin-left: 20px;
      margin-right: 10px;
    }
    .counts .content h3{
      margin-left: 20px; 
      margin-right: 10px;
    }
    .counts .content .count-box i {
      margin-left: 20px;
      margin-right: 20px;
    }
}
  @media (min-width: 370px) and (max-width: 586px)  {
    #hero .container {
      padding-top: 40px;
    }
    .section-title h2 {
        font-size: 28px;
        margin-bottom: 15px;
      }

      .portfolio-description-day {
        padding: 20px;
        border-radius: 2em 0;
      }
      .about .content h3 {
        font-weight: 600;
        font-size: 25px;
        color: white;
        background-color: #308a65;
        padding: 15px;
        margin-top: -10px !important;
        width: 100%;
        font-family: Poppins-SemiBold, sans-serif;
        letter-spacing: 0 !important;
        word-spacing: 0.5em;
        border-radius: 0 10px 10px 10px;
      }
      .counts .content p {
        margin-left: 20px;
        margin-right: 10px;
      }
      .counts .content h3{
        margin-left: 20px; 
        margin-right: 10px;
      }
      .counts .content .count-box i {
        margin-left: 20px;
        margin-right: 20px;
      }

}




@media (min-width: 586px) and (max-width: 900px){
  #hero .container {
    padding-top: 40px;
  }
  .sobreNosotros {
    text-decoration: none;
    font-family: "Poppins-Regular", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 28px;
    transition: 0.5s;
    border: 2px solid #a9a8a8 !important;;
    background-color: #308a65;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin-left: 250px !important; /* Centrar horizontalmente */
  } 
  
  .about .content h3 {
    font-weight: 600;
    font-size: 23px;
    color: white;
    background-color: #308a65;
    padding: 15px;
    margin-top: -10px !important;
    margin-left: 20px;
    border-radius: 0 10px 10px 10px;
  }
  .sobreNosotros:hover{
    background-color: #308a65;
    color: #fff
  }
  .about .content ul li {
    padding-bottom: 10px;
    margin-right: 50px !important;
    padding: 15px;
    margin-left: 40px;
  }
  
  .about .content p {
    padding-bottom: 10px;
    margin-left: 30px !important;
  }
  .counts .content p {
    margin-left: 20px;
    margin-right: 10px;
  }
  .counts .content h3{
    margin-left: 20px; 
    margin-right: 10px;
  }
  .counts .content .count-box i {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .counts .content p {
    margin-left: 20px;
    margin-right: 10px;
  }
  .counts .content h3{
    margin-left: 20px; 
    margin-right: 10px;
  }
  .counts .content .count-box i {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* MIN 1100 MAX 1200 */

@media (min-width: 1100px) and (max-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
  .about .content h3 {
    font-weight: 600;
    font-size: 20px;
    color: white;
    background-color: #308a65;
    padding: 15px;
    margin-top: -10px !important;
    border-radius: 0 10px 10px 10px;
  }
  }   


@media (min-width: 986px) and (max-width: 1300px) {



 */
  .h2-pactado {
    height: 120px;
    width: auto !important;
    padding-top: 30px;
    padding-bottom: 40px !important;
    margin-left: 0px !important;
  }
  .p-portfolio {
    padding: 0px;
    font-size: 22px; 
    text-align: justify; 
    margin-left: 10px !important; 
    width: auto;
  }
  .p-portfolio-pactado {
    padding: 0px;
    font-size: 21px !important; 
    text-align: justify; 
    margin-left: 10px !important; 
    width: auto !important;
  }
  .img-portfolio{
    height: 250px ; 
    width: 330px ; 
    border-radius: 0 20px 20px 20px;
    margin-left: 10px !important;
    padding-bottom: -20px;
  }
  .portfolio-details .portfolio-description p {
    width: 100% !important;
  }


  .quienes-somos-titulo{
    margin-top: 20px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1350px)  {
  #hero {
    background-attachment: fixed;
  }
 
  } 
@media (min-width: 1400px) and (max-width: 1700px)  {
  #hero {
    background-attachment: fixed;
  }
  .about .content h3 {
      font-weight: 600;
      color: #308a65;
      padding: 15px;
      margin-top: 20px !important;
      margin-left: -20px;
      border-radius: 0 10px 10px 10px;
    }
  .about .content p {
      margin-right: 60px;
  }
.header-title {
  font-size: 31px;
}

.why-us .box h4  {
  font-size: 19px;
}
.servicio-h3 {
  font-size: 18px !important;
}
}

@media (min-width: 1700px)  {
  #hero {
    background-attachment: fixed;
  }
    .about .content h3 {
      font-weight: 600;
      font-size: 24px;
      color: #308a65;
      padding: 15px;
      margin-top: 20px !important;
      margin-left: -20px;
      border-radius: 0 10px 10px 10px;
      
    }
    .about .content p {
      margin-right: 60px;
  }
.header-title {
  font-size: 31px;
}

.why-us .box h4  {
  font-size: 19px;
}
.servicio-h3 {
  font-size: 18px !important;
}
}

@media (min-width: 2200px)  {
  #hero {
    background-attachment: fixed;
  }
    .team .member .member-info {
      padding: 5px 5px;
    }
}
@media (min-width: 370px) and (max-width: 420px){
    .sobreNosotros {
    text-decoration: none;
    font-family: "Poppins-Regular", sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 28px;
    transition: 0.5s;
    border: 2px solid #a9a8a8 !important;;
    background-color: #308a65;
    color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    margin-left: 100px; /* Centrar horizontalmente */
    -webkit-text-size-adjust: 100%
  } 

  .about .content h3 {
    font-weight: 600;
    font-size: 23px;
    color: white;
    background-color: #308a65;
    padding: 15px;
    margin-top: -10px !important;
    width: 350px;
    border-radius: 0 10px 10px 10px;
  }
  .sobreNosotros:hover{
    background-color: #308a65;
    color: #fff
  }

  .about .content ul li {
    padding-bottom: 10px;
    margin-right: 50px !important;
    padding: 15px;
    width: 350px;
  }
  
  .about .content p {
    padding-bottom: 10px;
    margin-left: 10px !important;
    width: 330px;
  }
}

@media (min-width: 421px) and (max-width: 500px){
  .sobreNosotros {
  text-decoration: none;
  font-family: "Poppins-Regular", sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #a9a8a8 !important;;
  background-color: #308a65;
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  margin-left: 110px; /* Centrar horizontalmente */
} 

.about .content h3 {
  font-weight: 600;
  font-size: 23px;
  color: white;
  background-color: #308a65;
  padding: 15px;
  margin-top: -10px !important;
  width: 350px;
  margin-left: 13px;
  border-radius: 0 10px 10px 10px;
}
.sobreNosotros:hover{
  background-color: #308a65;
  color: #fff
}

.about .content ul li {
  padding-bottom: 10px;
  margin-right: 50px !important;
  padding: 15px;
  width: 380px;
}

.about .content p {
  padding-bottom: 10px;
  margin-left: 10px !important;
  width: 360px;
}
}




@media(max-width: 768px){
  .why-us .box{
    padding: 20px; 
    box-shadow: 0px 0px 0px rgba(250, 250, 250, 0.1)
  }
  .why-us .box:hover{
    background: #ffffff;
  }
}


@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}



@media (max-width: 370px){
  .cta p {
    font-weight: bold;
    font-size: 17px;
    color: #308a65;
  }
  .cta h3 {
    font-weight: bold;
    color: #308a65;
    font-size: 28px;
    font-weight: 700;
    margin-top: -30px;
  }
}


@media (max-width: 680px) {

  .imgServices-Swiper {
    width: 100vw;
    height: auto;
    margin-left: 0px !important;
  }
}




@media (max-width: 688px) {


  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
    margin-left: -10px;
  }


  .h2-pactado {
    height: 120px;
    width: auto !important;
    padding-top: 30px;
    padding-bottom: 40px !important;
    margin-left: 0px !important;
  }
  .p-portfolio {
    padding: 0px;
    font-size: 22px; 
    text-align: justify; 
    margin-left: 10px !important; 
    width: auto;
  }

  .p-portfolio-pactado {
    padding: 0px;
    font-size: 21px !important; 
    text-align: justify; 
    margin-left: 10px !important; 
    width: auto !important;
  }
  .img-portfolio{
    height: 250px ; 
    width: 330px ; 
    border-radius: 0 20px 20px 20px;
    margin-left: 10px !important;
    padding-bottom: -20px;
  }
  .quienes-somos{
    padding-top: 17px;
    text-align:justify;
    width: 100%;
    max-width: 100%;
  }
  .portfolio-details .portfolio-description p {
    width: 100% !important;
    padding-left: 20px;
  }
  .quienes-somos-titulo{
    margin-left: 30px;
  }

}

@media (min-width: 650px) and (max-width: 688px){
  .quienes-somos-titulo{
    margin-left: 30px;
    margin-top: -220px;
  }
 */

  .h2-quienes-somos-titulo2{
    margin-left: -1800px !important;
  }
  /* .quienes-somos p{
    color: #060606 ;
    font-family: sans-serif; 
    font-size: 19px; 
    width: 100%;
    margin-left: -230px;
    padding: 10px;
   } */
}



@media (min-width: 689px) and (max-width: 986px) {
  .quienes-somos-titulo{
    height: 25vh !important;
    margin-left: 50px ;
  }

  .h2-quienes-somos-titulo2{
    margin-left: -165px !important;
  }

  .header2{
    height: 25vh !important;
  }

/* 
  .quienes-somos p{
    color: #060606 ;
    font-family: sans-serif; 
    font-size: 19px; 
    width: 100%;
    margin-left: -250px;
    padding: 10px;
   } */

 */

  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
    margin-left: -10px;
  }
  

  .h2-pactado {
    height: 120px;
    width: auto !important;
    padding-top: 30px;
    padding-bottom: 40px !important;
    margin-left: 0px !important;
  }
  .p-portfolio {
    padding: 0px;
    font-size: 22px; 
    text-align: justify; 
    margin-left: 10px !important; 
    width: auto;
  }

  .p-portfolio-pactado {
    padding: 0px;
    font-size: 21px !important; 
    text-align: justify; 
    margin-left: 10px !important; 
    width: auto !important;
  }
  .img-portfolio{
    height: 250px ; 
    width: 330px ; 
    border-radius: 0 20px 20px 20px;
    margin-left: 10px !important;
    padding-bottom: -20px;
  }
  .portfolio-details .portfolio-description p {
    width: 100% !important;
    padding-left: 20px;
  }
}

@font-face {
  font-family: 'Poppins';
  font-weight: 300;
  font-style: normal;
  src: 
  
    url('../fonts/Poppins-BlackItalic.ttf') format('truetype'),

    url('../fonts/Poppins-BoldItalic.ttf') format('truetype')
    url('../fonts/Poppins-ExtraBold.ttf') format('truetype'),
 
    url('../fonts/Poppins-Medium.ttf') format('truetype')
 

   
    url('../fonts/Quicksand-Bold.otf') format('truetype')
    
}

@font-face {
  font-family: 'Poppins-ExtraLight';
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins-Regular';
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/Poppins-Regular.ttf') format('truetype')
}

@font-face {
  font-family: 'Poppins-Bold';
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/Poppins-Bold.ttf') format('truetype'),
}

@font-face {
  font-family: 'Poppins-SemiBold';
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
}

@font-face {
  font-family: 'Poppins-Thin';
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/Poppins-Thin.ttf') format('truetype'),
}

@font-face {
  font-family: 'Poppins-Black';
  font-weight: 200;
  font-style: normal;
  src: url('../fonts/Poppins-Black.ttf') format('truetype'),
}
/* ======= Sección “Cómo ingresar” ======= */

/* ---------- bloque completo ---------- */
.steps-cascade{
  background:#308a65;               /* verde Yending */
  padding:70px 0;
  position:relative;
  overflow:hidden;
  color:#fff;
  font-family:'Poppins',sans-serif;
}

/* ---------- título pastilla ---------- */
.steps-title{
  background:#ffc637;
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#004c39;
  font-weight:800;
  padding:10px 32px;
  border-radius:40px;
  box-shadow:0 4px 10px rgba(0,0,0,.14);
  margin:0 auto 50px;
}
.steps-title .title-icon{ width:38px; }

/* ---------- accordion ---------- */
.steps-accordion{
  list-style:none;
  margin:0 auto;
  max-width:780px;
  padding:0 20px;
}
.step-item{ border-bottom:1px solid rgba(255,255,255,.25); }

/* cabecera (botón) */
.step-header{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  font-size:clamp(1rem,2.4vw,1.2rem);
  font-weight:600;
  text-align:left;
  padding:18px 50px 18px 70px;
  position:relative;
  cursor:pointer;
  transition:background .25s;
}
.step-header:hover{ background:rgba(255,255,255,.05); }

.step-number{
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  font-size:clamp(1.2rem,2.8vw,1.6rem);
  font-weight:700;
  color:#ffc637;
}

/* flecha */
.arrow{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%) rotate(0deg);
  transition:transform .3s;
}

/* cuerpo */
.step-body{
  max-height:0;
  overflow:hidden;
  padding:0 70px;
  font-size:clamp(.95rem,2.2vw,1.1rem);
  line-height:1.55;
  transition:max-height .35s ease;
}

.step-body a{ color:#ffc637; text-decoration:underline; }
.step-body a:hover{ text-decoration:none; }

/* estado abierto */
.step-item.open .step-body{ max-height:400px; }
.step-item.open .arrow{ transform:translateY(-50%) rotate(180deg); }

/* sección */
.steps-cascade{
  position:relative;
  overflow:hidden;   /* para cortar lo que sobresalga */
}


/* ----------  RIBBON PASO 5  ---------- */
.info-ribbon{
  display:flex;
  align-items:center;
  gap:12px;
  margin:32px auto 0;
  max-width:800px;             
  background:#32785a;          
  border-left:6px solid #ffc451;
  border-radius:6px;
  font-family:"Poppins",sans-serif;
  color:#ffffff;
  line-height:1.45;
}

.ribbon-number{
  font-size:28px;
  font-weight:700;
  color:#ffc451;
}

.info-ribbon a{
  color:#ffc451;
  text-decoration:underline;
  transition:opacity .3s;
}
.info-ribbon a:hover{ opacity:.8; }

/* ----------  RESPONSIVE  ---------- */
@media (max-width:576px){
  .info-ribbon{
    flex-direction:column;
    text-align:center;
    padding:16px 18px;
  }
  .ribbon-number{ font-size:24px; }
}


@media(max-width:768px){
  .cascade-bike{ right:-26%; width:80%; }
}


/* ---------- responsivo ---------- */
@media(max-width:768px){
  .cascade-bike{ right:-26%; width:80%; }
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}


/*---Swipper---*/
/* Sección testimonios */
/*---Swipper---*/
/* Sección testimonios */
.testimonials-section {
    background-color: #f7f7f7;
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-size: 2.1em;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.8em;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card .testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
    flex-grow: 1;
    overflow: hidden;
}

.testimonial-card .read-more,
.testimonial-card .read-less {
    color: #308a65;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    white-space: nowrap;
}

.testimonial-card .read-more:hover,
.testimonial-card .read-less:hover {
    text-decoration: underline;
}

.testimonial-card .author-info {
    display: flex;
    align-items: center;
    margin-top: auto;
    width: 100%;
    justify-content: flex-start;
}

.testimonial-card .author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #6c5ce7;
}

.testimonial-card .author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 1.1em;
    display: block;
}

.testimonial-card .author-title {
    font-family: 'Poppins', sans-serif;
    color: #777;
    font-size: 0.9em;
    display: block;
    font-weight: 400;
}

.swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #6c5ce7;
    width: 12px;
    height: 12px;
}

@media (max-width: 991.98px) {
    .testimonials-section h2 {
        font-size: 2.8em;
    }
    .testimonial-card {
        min-height: 400px;
        padding: 35px;
    }
    .testimonial-card .stars {
        font-size: 1.6em;
    }
    .testimonial-card .testimonial-text {
        font-size: 1em;
    }
    .testimonial-card .author-avatar {
        width: 60px;
        height: 60px;
    }
    .testimonial-card .author-name {
        font-size: 1em;
    }
    .testimonial-card .author-title {
        font-size: 0.85em;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }
    .testimonial-card {
        padding: 25px;
        min-height: 350px;
    }
    .testimonial-card .stars {
        font-size: 1.5em;
    }
    .testimonial-card .testimonial-text {
        font-size: 0.95em;
    }
    .testimonial-card .author-avatar {
        width: 50px;
        height: 50px;
    }
    .testimonial-card .author-name {
        font-size: 0.95em;
    }
    .testimonial-card .author-title {
        font-size: 0.8em;
    }
}

@media (max-width: 575.98px) {
    .testimonials-section h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .testimonial-card {
        padding: 20px;
        min-height: 300px;
    }
    .testimonial-card .stars {
        font-size: 1.4em;
    }
    .testimonial-card .testimonial-text {
        font-size: 0.9em;
    }
}