/* ----------------- GENERAL ----------------- */
html {
  scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-size: 14px;
    line-height: 1.846;
    color: #606577;
    font-weight: 400;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased!important;
}

a{
    color: #665C46;
}

.m-t-10{
    margin-top: 10px;
}
.m-t-20{
    margin-top: 20px;
}
.m-t-30{
    margin-top: 30px;
}
.m-t-40{
    margin-top: 40px;
}
.m-t-50{
    margin-top: 50px;
}
.m-t-60{
    margin-top: 60px;
}

section{
    padding: 30px 0 60px;
}

.titulo h2{
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    color: #000;
    display: inline-block;
}

.btn-primary {
    background-color: #E0CEA9;
    border-color: #E0CEA9;
    color: #33332B;
}

.btn-primary:hover {
    color: #fff;
    background-color: #33332B;
    border-color: #33332B;
}

.c-white{
    color:#fff;
}

.m-auto{
    margin: 0 auto;
}

/* ----------------- NAV ----------------- */
#header{
  min-height: 50px;
  background: #fff;
  width: 100%;
  padding: 10px 0;
  position: fixed;
  opacity: 0;
  z-index: 1000;
  -webkit-box-shadow: -1px 2px 5px 0px rgba(0,0,0,0.41);
-moz-box-shadow: -1px 2px 5px 0px rgba(0,0,0,0.41);
box-shadow: -1px 2px 5px 0px rgba(0,0,0,0.41);
  -webkit-transition: opacity .6s ease-in-out;
  -moz-transition: opacity .6s ease-in-out;
  -ms-transition: opacity .6s ease-in-out;
  -o-transition: opacity .6s ease-in-out;
  transition: opacity .6s ease-in-out;
}

#header img{
  max-width: 130px;
}

.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}

.mostrar{
  opacity: 1 !important;
}

/* ----------------- INICIO ----------------- */
#inicio{
    min-height: 100vh;
    position: relative;
}

#inicio img{
    max-width: 400px;
}

.section-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -999;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }

    .section-bg.black {
        background-color: #000000;
    }

    .section-bg.header-bg {
        opacity: 0.7;
    }

.section-bg{
  -webkit-transition: opacity .1s ease-in-out;
  -moz-transition: opacity .1s ease-in-out;
  -ms-transition: opacity .1s ease-in-out;
  -o-transition: opacity .1s ease-in-out;
  transition: opacity .1s ease-in-out;
}
.ocultar{
  filter: alpha(opacity=0);
  opacity: 0;
}

#ppal{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display:flex;
    flex-direction:column;
    gap: 20px;
}

.cta{
    display:inline-flex;
    gap: 10px;
    margin:0 auto;
    
}

h3{
	font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #665C46;
}
/* ----------------- PRODUCTOS ----------------- */
#productos{
    background-color: #FFF;
}
.services-box {
    margin-bottom: 48px;
}

.services-box .media-body{
	padding: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}

.services-box .media-body::before, .services-box .media-body::after{
	position: absolute;
    content: "";
    background: #eee;
    width: 1px;
    height: 60px;
}

.services-box .media-body::before{
	left: 0;
    top: 0;
}

.services-box .media-body::after{
	right: 0;
    bottom: 0;
}

.services-box h3{
	font-size: 16px!important;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #665C46;
}

.services-box i.fa{
	width: 40px;
    height: 40px;
    color: #000;
    overflow: hidden;
    font-size: 24px;
    text-align: left;
    padding-left: 3px;
    line-height: 40px;
    border-bottom: 1px solid #eee;
    margin: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.services-box i.fa:hover {
    color: #9ed154;
}

.icono{
	width: 40px;
	padding: 7px;
    color: #000;
    overflow: hidden;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
/* ----------------- GALERÍA ----------------- */
#galeria{
    background-color:#FFF;
}

#galeria .container-fluid{
    padding: 0;
}

#gImagenes img{
    width: 25%;
    margin: 0;
    padding: 0;
    float: left;
}

.show {
  display: block;
}

.filterDiv {
  display: none;
}

#myBtnContainer{
    text-align: center;
      margin-top: 30px;
      margin-bottom: 48px;
      display: block;
}

#galeria .btn.active, #galeria .btn:active{
  background-color: #c69c6d;
    color: #fff;
}

/* ----------------- UBICACIÓN Y CONTACTO ----------------- */
#ubicacion{
    background: #fff;
}

#googleMap{
    border-top: 5px solid #e05108 !important;
    width:100%;
  height: 400px;
}

.iInline {
    margin: 2px 2px;
    display: inline-block;
}

#facebook{
    color: #3b5998;
}

#twitter{
    color: #4593bd;
}

#instagram{
    color: #e0218a;
}

#youtube{
    color: #cf2200;
}

#ubicacion h2{
    font-size: 16px!important;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #000;
}

#ubicacion strong{
    color: #000;
}

/* ----------------- FOOTER ----------------- */
footer{
  background: #000;
  padding: 20px 0;
  color: #fff;
}

/* ----------------- whatsapp ----------------- */

.whatsapp-float {
    position: fixed;
    font-size: 36px;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      width: 58px;
      height: 58px;
      right: 18px;
      bottom: 18px;
      font-size: 32px;
    }
  }


/* ----------------- MEDIA QUERIES ----------------- */
@media(max-width:768px) {
  #gImagenes img{
      width: 50%;
  }
  .m-text-center{
    text-align: center;
  }

  #inicio img{
      max-width: 250px;
  }
  .m-m-t-20{
    margin-top: 20px;
  }
}

@media(max-width:400px) {
    .mobile-off{
    display: none;
  }
}










