

/* Body 
------------------------------------- */
body {
    background: #ffffff;   
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-weight: 300;
    position: relative;
}

html,body {
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 100%;
}


/*---------------------------------------
    Typorgraphy              
-----------------------------------------*/

h1,h2,h3,h4 {
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 12px;
  text-transform: uppercase;
  padding-bottom: 8px;
}

h2 {
  color: #1e7e34;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

p {
  color: #888;
  font-size: 20px;
  /* letter-spacing: 1px; */
  line-height: 34px;
  font-weight: 400;
}

#home p{
  color: #000;
}
#contact p, footer p {
  color: #f9f9f9;
}

.btn {
  border:none;
  border-radius: 4px;
  transition: all 0.4s ease-in-out;
}

.btn:focus {
  background: #1e7e34;
  border-color: transparent;
}

.btn-success {
  background: #1e7e34;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 14px 32px;
  margin-top: 26px;
}

.btn-success:hover {
  background: #407b33;
}

a {
  color: #1e7e34;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}
a:hover, a:active, a:focus {
  color: #1e7e34;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}



/*---------------------------------------
    All Section style              
-----------------------------------------*/

.section-title {
  padding-bottom: 32px;
}

#about .section-title {
  padding-top: 32px;
}

#about .section-title h1 {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

#about h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#about p {
   color: #161616;
    font-size: 16px;
    /* letter-spacing: 1px; */
    line-height: 28px;
    font-weight: 400;
    /* text-align: justify; */
}
#gallery,
#contact {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

#gallery,
#contact, footer {
  text-align: center;
}

.overlay {
  background: #000;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
}
.cuadro-difuminado{
  background: #fff;
    opacity: 0.8;
    border-radius: 4px;
    padding: 10px
}



/*---------------------------------------
    Pre Loader Style              
-----------------------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #fff;
}

.sk-spinner-pulse {
  width: 60px;
  height: 60px;
  background-color: #1e7e34;
  border-radius: 100%;
  margin: 40px auto;
  -webkit-animation: sk-pulseScaleOut 1s infinite ease-in-out;
          animation: sk-pulseScaleOut 1s infinite ease-in-out; }

@-webkit-keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }

@keyframes sk-pulseScaleOut {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0; } }



/*---------------------------------------
    Main Navigation             
-----------------------------------------*/

.navbar-default {
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.04);
  border: none;
  margin-bottom: 0px !important;
}

.navbar-default .navbar-brand {
  color: #304352;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0;
}

.navbar-default .navbar-nav li a {
    color: #777;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding-right: 22px;
    padding-left: 22px;
}

.navbar-default .navbar-nav li a span {
  position: relative;
  display: block;
  padding-bottom: 2px;
}

.navbar-default .navbar-nav li a span:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.navbar-default .navbar-nav li a:hover span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.navbar-default .navbar-nav li.active a span:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #304352;
}

.navbar-default .navbar-nav > li a:hover {
    color: #304352 !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #777;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #304352;
    background-color: transparent;
}

.navbar-default .navbar-toggle {
     border: none;
     padding-top: 10px;
  }

.navbar-default .navbar-toggle .icon-bar {
    border-color: transparent;
  }

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus { 
  background-color: transparent;
}

@media screen and (max-width: 768px) {
  
  .navbar-default .navbar-nav li a span:before {
    background: transparent !important;
  }
  .navbar-default .navbar-nav li.active a {
    background: transparent;
    background: none;
    color: #304352 !important;
  }
  .navbar-default .navbar-nav li.active a span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}



/*---------------------------------------
    Home Section              
-----------------------------------------*/

#home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
        align-items: center;
  height: 100vh;
  text-align: center;
}

#home h1 {
  color: #000;
}

#home .col-md-8 {
  padding-left: 62px;
}



/*---------------------------------------
    About Section              
-----------------------------------------*/

#about {
  background: #f0f0f0;
}

#about .item {
  width: 100%;
  display: block;
}

#about .about-thumb {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px;
  position: relative;
  margin-bottom:30px;
}

#about .about-img img {
  border: 8px solid #ffffff;
  position: absolute;
  left: -120px;
  bottom: -325px;
  padding: 12px;
}

#about .team-thumb {
  width: 100%;
  height: 400px;
  margin: 32px 0;
  text-align: center;
  background: #ffffff;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#about .team-thumb .image-holder {
  position: relative;
  top: 40px;
  display: inline-block;
  margin-bottom: 40px;
  padding: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#about .team-thumb .heading {
  font-weight: bold;
  position: relative;
  top: 10px;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#about .team-thumb:hover {
  background: #304352;
}

#about .team-thumb:hover .image-holder {
  top: -40px;
  margin-bottom: 0px;
}

#about .team-thumb:hover .heading {
  top: -10px;
}

#about .team-thumb .description {
  font-size: 18px;
  width: 80%;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

#about .team-thumb:hover .description {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

#about .team-thumb:hover p.description {
  color: #ffffff;
}



/*---------------------------------------
    Galllery section              
-----------------------------------------*/

#gallery {
  background: #ffffff;
}

#gallery .gallery-thumb {
  background-color: #ffffff;
  box-shadow: 0px 1px 2px 0px rgba(90, 91, 95, 0.15);
  cursor: pointer;
  display: block;
  margin-bottom: 25px;
  position: relative;
  top: 0px;
  transition: all 0.4s ease-in-out;
}

#gallery .gallery-thumb:hover {
  box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  top: -5px;
}

#gallery .gallery-thumb img {
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  width: 100%;
}



/*---------------------------------------
    Contact section              
-----------------------------------------*/

#contact, footer {
  background: #0b0b0b;
  color: #ffffff;
}

#contact .form-control {
  background: transparent;
  box-shadow: none;
  border: 1px solid #f9f9f9;
  color: #ccc;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 14px;
  transition: all 0.4s ease-in-out;
}

#contact .form-control:focus {
  border-color: #1e7e34;
  color: #ffffff;
}

#contact input {
  height: 55px;
}

#contact input[type="submit"] {
  background: #1e7e34;
  border:none;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
}

#contact input[type="submit"]:hover {
  background: #222;
  color: #ffffff;
}



/*---------------------------------------
    Footer section             
-----------------------------------------*/

footer {
  padding-bottom: 80px;
}



/*---------------------------------------
    Social icons style              
-----------------------------------------*/

.social-icon {
  padding: 0;
  margin: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
}

.social-icon li a {
  border-radius: 4px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin: 10px 10px 42px 10px;
  padding: 0px;
}

.social-icon li a:hover {
  background: #ffffff;
  color: #1e7e34;
}



/*---------------------------------------
   Back top         
-----------------------------------------*/

.go-top {
  background-color: #ffffff;
  box-shadow: 1px 1.732px 12px 0px rgba( 0, 0, 0, .14 ), 1px 1.732px 3px 0px rgba( 0, 0, 0, .12 );
  transition : all 1s ease;
  bottom: 2em;
  right: 2em;
  color: #222;
  font-size: 26px;
  display: none;
  position: fixed;
  text-decoration: none;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  border-radius: 100%;
}

.go-top:hover {
  background: #1e7e34;
  color: #ffffff;
}



/*---------------------------------------
   Responsive Mobile         
-----------------------------------------*/

@media (max-width: 980px) {
/* 
  #home, .overlay {
    height: 50vh;
  }
*/
  #about .team-thumb {
    margin-top: 32px;
  }

}


@media (max-width: 767px) {

  #home, .overlay {
    height: 100vh;
  }

  #about .about-thumb {
    padding: 32px;
    margin-bottom: 32px;
    text-align: center;
  }

  #about .col-md-3 img {
    position: relative;
    top: 0;
    left: 0;
  }

}



@media (max-width: 650px) {

  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 18px;
  }

  img {
    width: 100%;
  }

  #about,
  #gallery,
  #contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

}




.blob-btn {
  display: inline-block;      
  text-decoration: none;     
  box-sizing: border-box;     
  z-index: 1;
  position: relative;
  padding: 12px 40px;
width: 300px;
  z-index: 1;
  position: relative;
  padding: 12px 40px;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  color: #203d1a;
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
}
.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #203d1a;
  border-radius: 30px;
}
.blob-btn:after {
  content: "";
  z-index: -2;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.blob-btn:hover {
  color: #FFFFFF;
  border-radius: 30px;
}
.blob-btn:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: #ffffff;
}
.blob-btn__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.blob-btn__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #203d1a;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .blob-btn__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-btn__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-btn__blob:nth-child(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.blob-btn__blob:nth-child(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.blob-btn__blob:nth-child(4) {
  left: 90%;
  transition-delay: 0.24s;
}
.blob-btn:hover .blob-btn__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.4);
  }
}


@media (min-width: 992px) { 
  .about-thumb{
    min-height: 257px;
  }
}
.banner-scroll {
  width: 100%;
  height: 100px;
  background: #000;
    opacity: 0.9;
  background-image: url('../images/4.jpg'); /* Pon aquí la ruta de tu imagen */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
      
}
@media (max-width: 768px) {
  .banner-scroll {
    background-attachment: scroll; 
  }
}

 #gallery1 {
	 display: grid;
	 /* height: calc(100vh - 10px); */
	 grid-template: repeat(6, 1fr) / repeat(6, 1fr);
	 grid-gap: 0.5em;
}
 @media (max-width: 500px) {
	 #gallery1 {
		 display: flex;
		 align-items: flex-start;
		 flex-wrap: wrap;
		 justify-content: center;
	}
	 #gallery1 > div {
		 width: 48%;
		 margin: 1%;
	}
}
 @media (max-width: 500px) and (max-width: 350px) {
	 #gallery1 > div {
		 width: 98%;
	}
}
 #gallery1 > div:nth-child(6n + 1) {
	 grid-column: span 2;
	 grid-row: span 2;
}
 #gallery1 > div:nth-child(2) {
	 grid-column: span 3;
	 grid-row: span 3;
}
 #gallery1 > div:nth-child(4) {
	 grid-column: span 1;
	 grid-row: span 2;
}
 #gallery1 > div > a {
	 opacity: 0;
	 position: absolute;
	 color: #000;
	 background-color: #000;
	 font: bold 4em "Helvetica";
	 text-shadow: 0 -1px 5px #fff, -1px 0px 5px #fff, 0 1px 5px #fff, 1px 0px 5px #fff;
	 padding: 2rem;
	 mix-blend-mode: difference;
	 width: 100%;
	 height: 100%;
	 transition: all ease 1s;
}
 #gallery1 > div > img {
	 width: 100%;
	 min-height: 100%;
	 transition: all ease 1s;
}
 #gallery1 > div:hover img {
	 filter: blur(4px);
}
 #gallery1 > div:hover a {
	 opacity: 1;
}
 #gallery1 > div {
	 overflow: hidden;
	 position: relative;
	 box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
}
 #gallery1 div, #gallery1 a {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 text-decoration: none;
}
 [id^="lightbox-"] {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100vw;
	 height: 100vh;
	 background-color: rgba(0, 0, 0, 0.5);
	 display: flex;
	 opacity: 0;
	 transition: opacity 450ms ease-in-out;
	 align-items: center;
	 justify-content: center;
	 pointer-events: none;
}
 [id^="lightbox-"]:target {
	 opacity: 1;
	 pointer-events: inherit;
}
 [id^="lightbox-"]:target img {
	 filter: blur(0);
}
 [id^="lightbox-"] .content {
	 max-width: 90%;
	 position: relative;
	 color: #fff;
}
 [id^="lightbox-"] .content:hover > a.close {
	 opacity: 1;
	 transform: scale(1, 1);
}
 [id^="lightbox-"] .content:hover > .title {
	 opacity: 1;
	 transform: translateY(-3px);
}
 [id^="lightbox-"] .content:hover > .title::after {
	 opacity: 1;
}
 [id^="lightbox-"] .content > * {
	 transition: all 450ms ease-in-out;
}
 [id^="lightbox-"] .title {
	 display: block;
	 margin: 0;
	 padding: 1em;
	 position: absolute;
	 bottom: 0;
	 width: 100%;
	 transform: translateY(50%);
	 font-size: 1.5em;
	 opacity: 0;
}
 [id^="lightbox-"] .title::after {
	 content: ' ';
	 background-color: rgba(0, 0, 0, 0.4);
	 bottom: 0;
	 left: 0;
	 height: 100%;
	 width: 100%;
	 position: absolute;
	 transition: all 350ms ease-in-out 250ms;
	 opacity: 0;
	 transform-origin: bottom;
	 mix-blend-mode: soft-light;
}
 [id^="lightbox-"] img {
	 max-height: 90vh;
	 max-width: 100%;
	 margin: 0;
	 padding: 0;
	 filter: blur(50px);
}
 [id^="lightbox-"] a.close {
	 width: 2em;
	 height: 2em;
	 position: absolute;
	 right: 0;
	 top: 0;
	 background-color: rgba(0, 0, 0, 0.5);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 transform: scale(0, 0);
	 opacity: 0;
	 transform-origin: right top;
	 text-decoration: none;
	 color: #fff;
}
 [id^="lightbox-"] a.close::after {
	 content: "X";
}




.tarjeta_post {
  width: 100%;        /* Cambiado: ahora ocupa el ancho de la columna de Bootstrap */
  max-width: 350px;   /* Mantiene su tamaño original en pantallas grandes */
  height: 320px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  position: relative;
  margin: 0 auto;     /* Centra la tarjeta dentro de la columna */
}
 .tarjeta_post:hover .header_tarjeta_post {
  margin-top: -20px;
}
 .tarjeta_post:hover .body_tarjeta_post {
  height: 50%;
}
 .tarjeta_post:hover img {
  transform: translatey(-10px) translatex(-5px) scale(1.05);
}
 .tarjeta_post .header_tarjeta_post {
  width: 100%;
  height: 40%;
  background: #ddd;
  position: absolute;
  top: 0;
  -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
}
 .tarjeta_post .header_tarjeta_post img {
  max-width: 100%;
  height: auto;
  transition: ease-in-out 600ms;
}
/* .tarjeta_post .header_tarjeta_post img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
} */
.tarjeta_post .body_tarjeta_post {
  width: 100%;
  height: 50%;
  background: #fff;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  cursor: pointer;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content {
  width: 80%;
  height: 80%;
  background: #fff;
  position: relative;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content h1 {
  font-size: 20px;
  font-weight: bold;
}
.tarjeta_post .body_tarjeta_post .tarjeta_post_content p {
  font-size: 14px;
  font-weight: normal;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 25px;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .tarjeta_postedBy {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .tarjeta_postedBy span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.5;
  letter-spacing: 1px;
  font-weight: bold;
}
.tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags {
  display: flex;
  flex-direction: column;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.5;
  letter-spacing: 1px;
  font-weight: bold;
}
.tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags .tags ul {
  display: flex;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags .tags ul li {
  font-size: 12px;
  letter-spacing: 2px;
  list-style: none;
  margin-left: 8px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  cursor: pointer;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags .tags ul li:first-child {
  margin-left: 0px;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags .tags ul li:before {
  content: "";
  text-align: center;
  width: 100%;
  height: 5px;
  background: #FC6042;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  z-index: -1;
  padding: 0px 1px;
  -webkit-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -moz-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -ms-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  -o-transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
}
 .tarjeta_post .body_tarjeta_post .tarjeta_post_content .container_infos .container_tags .tags ul li:hover:before {
  height: 18px;
}



/* Elimina bordes del thumbnail de Bootstrap */
.thumbnail {
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 2px; /* Pequeña separación como en IG */
}

/* Quitar espacio entre columnas */
.row.no-gutter [class*='col-'] {
    padding-right: 1px;
    padding-left: 1px;
}

/* Forzar imágenes cuadradas */
.thumbnail img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}



.sistemas-riego{
  background-color: #fff;
  margin-bottom: 30px;
}
.sistemas-riego .descripcion-sistemas{
  padding: 20px;
}
.sistemas-riego .descripcion-sistemas p{
  font-size: 20px!important;
  font-weight: 600;
}

.gallery-minimalista {
  --size: min(60vmin, 400px);
  box-shadow: 
    0 0 10px #0002,
    0 20px 40px -20px #0004;
  width: var(--size);
  height: var(--size);
  background: #fff;
  /* border: 6px solid #fff; */
  display: grid;
  grid-template-rows: 50% 50%;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  gap: 6px;
  
}

.gallery-minimalista img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes moveHorizontal {
  to {
    object-position: 100% 0;
  }
}

@keyframes moveVertical {
  to {
    object-position: 0 100%;
  }
}

@keyframes shrinkVertical {
  to {
    height: 0;
  }
}

@keyframes shrinkHorizontal {
  to {
    width: 0;
  }
}


@keyframes growHorizontal {
  to {
    width: 100%;
  }
}
@keyframes growHorizontal2 {
  to {
    width: 70%;
  }
}

@keyframes growVertical {
  to {
    height: 100%;
  }
}


@keyframes growAll {
  to {
    width: 100%;
    height: 100%;
  }
}

.gallery-minimalista img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  animation: 
    moveHorizontal 8.5s 0.5s 1,
    shrinkHorizontal 2s 9s ease-in 1;
  animation-fill-mode: forwards;
}

.gallery-minimalista img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  animation: 
    shrinkHorizontal 2s 11s 1;
  animation-fill-mode: forwards;
}

.gallery-minimalista img:nth-child(3) {
  grid-row: 2;
  grid-column: 1 / 3;
  align-self: end;
  object-position: 0 0;
  animation:
    moveVertical 5s 1s 1,
    shrinkVertical 3s 5s 1;
  animation-fill-mode: forwards;
}

.gallery-minimalista img:nth-child(4) {
  grid-column: 1 / 3;
  grid-row: 1;
  width: 0;
  justify-self: center;
  align-self: start;
  animation: 
    growHorizontal 2.25s 11s 1,
    moveHorizontal 4s 14s 1,
    shrinkVertical 2s 18s 1;
  animation-fill-mode: forwards;
}

.gallery-minimalista img:nth-child(5) {
  grid-column: 1;
  grid-row: 2;
  width: 0;
  justify-self: start;
  align-self: end;
  animation: 
    growHorizontal 2.5s 7.5s 1,
    moveVertical 4s 12.5s 1,
    shrinkHorizontal 2s 17s 1;;
  animation-fill-mode: forwards;
}

.gallery-minimalista img:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
  width: 0;
  justify-self: end;
  align-self: end;
  animation: 
    growHorizontal 2s 8s 1,
    shrinkHorizontal 2s 17s 1;
  animation-fill-mode: forwards;
}

.gallery-minimalista img:nth-child(7) {
  grid-column: 1/3;
  grid-row: 1/3;
  width: 0;
  justify-self: end;
  align-self: end;
  object-position: 0 0;
  animation: 
    growHorizontal 2s 20s 1,
    moveHorizontal 16s 21.5s 1;
  animation-fill-mode: forwards;
}
.tarjeta {
  margin-bottom: 10px;;
  margin-top: 10px;
  background-color: #FFFFFF;
}
.tarjeta .imagen-tarjeta {
  padding: 0;
}
.tarjeta-servicio{
  background-color: #fff;
  margin-bottom: 30px;
}

/* Contenedor principal del icono */
.icono-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}


.icono-wrap i {
  background: #28a745; /* Color verde de jardinería */
  color: white;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 30px;
  z-index: 2;
  position: relative;
}


.icono-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed #28a745; 
  border-radius: 50%;
  padding: 5px;
  box-sizing: border-box;
  transition: transform 0.8s ease;
}

.tarjeta-servicio:hover .icono-wrap::after {
  transform: rotate(180deg);
  border-color: #1e7e34;
}

.tarjeta-servicio:hover i {
  transform: scale(1.1);
  background: #1e7e34;
}
.tarjeta-servicio {
  padding-top: 20px;;
  padding-bottom: 20px;;
}
.tarjeta-servicio h3 {
  font-weight: bold;
  margin-top: 15px;
}
.seccion-pagos {
  margin-top: 30px;
  padding: 20px;
}

.metodo-pago {
  display: inline-flex;
  align-items: center;
  background-color: #f8f9fa; /* Gris muy claro */
  color: #333;
  padding: 8px 16px;
  border-radius: 50px; /* Bordes muy redondeados */
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #e9ecef;
  border-left: 4px solid #28a745; /* Línea verde de acento */
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin: 5px;
}

.metodo-pago i {
  margin-right: 8px;
  color: #28a745; /* Icono verde */
}

/* Efecto al pasar el mouse */
.metodo-pago:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  background-color: #ffffff;
  border-color: #28a745;
}
.horario-container h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.horario-badge {
  display: inline-block; /* Permite centrar el badge completo */
  background-color: #f0fff4; /* Fondo verde muy claro */
  border: 1px solid #28a745;
  border-radius: 30px; /* Bordes redondeados */
  padding: 10px 25px;
  box-shadow: 0 4px 6px rgba(40, 167, 69, 0.1);
  font-size: 1rem;
}

.horario-badge table {
  width: 100%;
  border-collapse: collapse;
}

.horario-badge td {
  padding: 0;
  text-align: left; /* Alinea los días a la izquierda */
}

.horario-badge .day {
  font-weight: bold;
  color: #1e7e34; /* Verde oscuro */
  padding-right: 15px; /* Espacio entre día y hora */
}

.horario-badge .time {
  color: #333;
}
.seccion-facturacion {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px dashed #e9ecef; /* Separador sutil */
}

.facturacion-badge {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #1e7e34;
  padding: 10px 20px;
  border-radius: 12px; /* Estilo un poco más rectangular para variar del círculo */
  border: 2px solid #28a745;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.facturacion-badge i {
  font-size: 1.2rem;
  margin-right: 12px;
}

.facturacion-badge:hover {
  background-color: #28a745;
  color: #ffffff;
  transform: scale(1.02);
}

.small {
  font-size: 0.85rem;
}
