@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&family=Nunito+Sans:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
}

html, body{
  height:100%;
  position: relative;
}

body{
  background-color: #FFF;
  height: 100%;
  font-family: 'Nunito Sans', sans-serif;
}

a{
  text-decoration: none;
  outline: 0;
}

ol,ul {
    list-style: none;
    margin:0;
    padding:0;
}

#wrapper{
  min-height:100%;
  position:relative;
}

#logo, .logo{
  position: relative;
  display: block;
  top: 0;
  width: 28%;
  margin: 1% 0 auto 5%;
  z-index: 2;
}

#logo img, .logo img{
  position: relative;
  display: block;
  width:80%;
  height: auto;
  margin: 0 auto;
}

h1{
  position: relative;
  color: #FFF;
  text-align: center;
  display: block;
  width: 100%;
  height: auto;
  margin: 20px auto;
  font-size: 3.5em;
  z-index: 2;
}

h3{
  position: relative;
  color: #FFF;
  text-align: center;
  display: block;
  width: 100%;
  height: auto;
  margin: 20px auto 0 auto;
  font-size: 1.6em;
  z-index: 2;
  line-height: 1.3em;
  font-weight: normal !important;
}
/* === SECCIÓN CLIENTES / ALIANZAS === */
#section7 {
  background-color: #f1e2c8;
  background-image: radial-gradient(
    circle at 20% 20%,
    rgba(255,255,255,.07) 0%,
    rgba(0,0,0,0) 60%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

#section7 .clientes-title {
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(24px,2vw,28px);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 10px;
  transform: scale(1);
}

#section7 hr {
  border: 0;
  height: 2px;
  width: 60px;
  margin: 10px auto 30px auto;
  background-color: #3F2411;
  transform: scale(1);
}

/* ==== GRILLA PRINCIPAL ==== */
.clientes-grid {
  width: min(1500px, 95%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(14px, 1.4vw, 20px);
  position: relative;
  z-index: 2;
}

/* ==== TARJETA ==== */
.cliente-item {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: clamp(6px, 0.6vw, 10px); /* Menor padding → menos espacio muerto */
  aspect-ratio: 1 / 1;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,.35),
              0 2px 4px rgba(255,255,255,.05) inset;
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
}

/* ==== IMÁGENES ==== */
.cliente-item img {
  width: 98%;
  height: 98%;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.8));
  transition: filter .22s ease, transform .25s ease;
}

/* ==== EFECTO HOVER ==== */
.cliente-item:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 28px rgba(0,0,0,.6),
              0 0 18px rgba(63,36,17,.5);
  border-color: rgba(255,255,255,0.15);
}

.cliente-item:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.9))
          drop-shadow(0 0 8px rgba(255,255,255,.25));
}

/* ==== RESPONSIVE ==== */

/* 6 columnas */
@media (max-width: 1400px) {
  .clientes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* 5 columnas */
@media (max-width: 1200px) {
  .clientes-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* 4 columnas */
@media (max-width: 992px) {
  .clientes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3 columnas */
@media (max-width: 768px) {
  .clientes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cliente-item {
    min-height: 120px;
  }
}

/* 2 columnas */
@media (max-width: 520px) {
  .cliente-item {
    min-height: 110px;
  }
}


.register{
  position: relative;
  display: block;
  top: 0;
  width: 220px;
  height: 60px;
  margin: 20px auto 0 auto;
  line-height: 60px;
  font-size: 1.3em;
  font-weight: 800;
  text-align: center;
  background-color: #3F2411;
  border-radius: 6px;
  color: #FFF;
  z-index: 2;
}

.register:hover{
    animation: pulse2 1s ease infinite;
}

h1, h2, h3, .register {
  font-family: 'Raleway', sans-serif;
}

@keyframes pulse2{
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.down{
  position: absolute;
  width: 100px;
  height: 60px;
  color: #FFF;
  font-size: 4em;
  line-height: 0;
  text-align: center;
  bottom: 6%;
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #FFF;
  z-index: 2;
    animation: down 1.5s ease infinite;
}

@keyframes down{
  0% {
    bottom: 6%;
  }

  50% {
    bottom: 4%;
  }

  100% {
    bottom: 6%;
  }
}
.social{
  position: fixed;
  top: 1%;
  right: 35px;
  width: 167px;
  height: auto;
  z-index: 997;
}
.social a{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 28px;
  height: 28px;
  padding: 5px;
}
.social a i{
  display: block;
  color: #FFF;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 1.3em;
}
.menu{
  position: fixed;
  top: 5%;
  right: 30px;
  list-style: none;
  z-index: 99999;
}

.menu li{
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
}

.menu li a{
  display: block;
  color: #FFF;
  /* Sombra optimizada SOLO en el texto */
  text-shadow: 0 0 6px rgba(0,0,0,0.75), 
               0 2px 4px rgba(0,0,0,0.55);
  font-size: 1.4em;
  transition: all ease 0.3s;
}

.menu li a:hover, .mail:hover{
  transform: scale(1.15);
}
.menu-dark{
  color: #3F2411 !important;
}
.menu.menu-dark li a {
  color: #3F2411 !important;
}
/* ===== Navegación responsive (drawer) ===== */
.nav{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 997; /* por encima de todo */
}

/* Checkbox oculto */
.nav-toggle{ position:absolute; left:-9999px; }

/* Botón hamburguesa */
/* === Botón hamburguesa con borde circular y 3 líneas === */
.hamburger{
  position: fixed;
  top: 50px;
  right: 18px;
  width: 52px;
  height: 52px;
  display: none;                 /* solo móvil, se muestra en @media */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100001;
  border: 2px solid #FFFFFF;     /* borde circular (modo claro por defecto) */
  border-radius: 50%;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s ease, background-color .2s ease;
}
/* Las tres líneas */
.hamburger span{
  display: block;
  width: 28px;
  height: 3px;
  background: #FFFFFF;           /* color de líneas por defecto */
  border-radius: 3px;
  position: relative;
  transition: transform .25s ease, opacity .2s ease, background .2s ease;
}
/* Usamos flex-column + gap para que siempre se vean 3 líneas bien separadas */
.hamburger{ display:none; }      /* oculto fuera de móvil; se re-habilita abajo */
.hamburger span + span{ margin-top: 6px; }

/* Estado ABIERTO → animación a “X” */
.nav-toggle:checked + .hamburger span:nth-child(1){
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle:checked + .hamburger span:nth-child(2){
  opacity: 0;
}
.nav-toggle:checked + .hamburger span:nth-child(3){
  transform: translateY(-9px) rotate(-45deg);
}
/* Animación de X al abrir */
.nav-toggle:checked + .hamburger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked + .hamburger span:nth-child(2){ opacity: 0; }
.nav-toggle:checked + .hamburger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
/*Nosotros*/
.cf-about-hero{
  min-height: 48vh;
  padding: clamp(32px, 6vw, 64px) 20px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(63,36,17,.75) 0%, rgba(63,36,17,.35) 45%, rgba(63,36,17,.10) 100%),
    url('/images/bg.png') center/cover no-repeat; /* opcional: coloca una imagen */
  color: #fff;
}
.cf-about-logo{
  width: min(220px, 48vw);
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.25));
}
.cf-about-title{
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  letter-spacing: .4px;
  font-size: clamp(28px, 4.6vw, 40px);
  margin: 6px 0 4px;
}
.cf-about-subtitle{
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(14px, 2.4vw, 18px);
  opacity: .95;
  max-width: 900px;
}

/* Contenido */
.cf-about-container{
  width: min(1000px, 90%);
  margin: clamp(28px, 5vw, 56px) auto;
}
.cf-about-block{
  background: #fff;
  border: 1px solid rgba(63,36,17,.12);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  margin-bottom: clamp(18px, 3vw, 28px);
}
.cf-about-block h2{
  position: relative;
  transform: scale(1);
  color: #000 !important;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.6vw, 28px);
  margin-bottom: 10px;
}
.cf-about-block p{
  color: #000;
  line-height: 1.7;
  margin: 10px 0;
  padding: 20px;
}

/* Misión / Visión en grilla */
.cf-about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px);
  margin: clamp(18px, 3vw, 28px) 0;
}
.cf-about-card{
  background: #fff;
  border: 1px solid rgba(63,36,17,.12);
  border-radius: 14px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.cf-about-card h3{
  color: #000;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 800;
  margin-bottom: 6px;
}
.cf-about-card p{
  color: #000;
  line-height: 1.7;
}

/* Valores */
.cf-about-values{
  padding: 20px 50px;
  display: grid;
  gap: .5rem;
}
.cf-about-values li{
  list-style: disc;
  color: #000;
  line-height: 1.65;
}

/* CTA */
.cf-about-cta{ text-align: center; margin-top: 8px; }
.cf-about-btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  background: #3F2411;
  color: #fff;
  border: 1px solid #3F2411;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 10px 18px rgba(63,36,17,.16);
  transition: transform .12s ease, filter .2s ease;
}
.cf-about-btn:hover{ transform: translateY(-1px); filter: brightness(1.04); }

/* Footer */
.cf-about-footer{
  padding: 28px 0 36px;
  text-align: center;
}
.cf-about-back{
  color: #000;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 860px){
  .cf-about-grid{ grid-template-columns: 1fr; }
}

/*Fin Nosotros*/
.mail{
  font-size: 4em;
  color: #30b643;
  position: fixed;
  width: 80px;
  height: 80px;
  text-align: center;
  top: 10px;
  transition: all ease 0.3s;
  top: 89%;
  right: 2%;
  box-shadow: 0 0 0 rgba(48, 182, 67, 1);
    animation: pulse 2s infinite;
    border-radius: 50%;
  z-index: 997 !important;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(48, 182, 67, 1);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(48, 182, 67, 1);
    box-shadow: 0 0 0 0 rgba(48, 182, 67, 1);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
/* Contenedor RELATIVO centrado:
   - No se sobrepone al carrusel: 130px de espacio inferior.
   - 65% de ancho en desktop, 90% en móvil.
*/
.cf-form-wrap{
  position: relative;
  width: min(65%, 880px);
  margin: 0 auto; /* deja 130px libres abajo para el carrusel */
  padding: clamp(16px, 3vw, 24px);
  z-index: 5;
}

/* Tarjeta con ligera transparencia y borde suave */
.cf-card{
  background-color: rgba(255, 255, 255, 0.4); /* 0 = transparente, 1 = opaco */
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
  border: 1px solid rgba(74,46,26,.14);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  padding: clamp(18px, 3.3vw, 28px);
}

/* Logo centrado, tamaño moderado */
.cf-brand{
  display: block;
  width: 150px;
  height: auto;
  margin: 4px auto 10px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.06));
}

/* Título */
.cf-title{
  margin: 0 0 14px;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  color: #3f2411;
  text-align: center;
  letter-spacing: .3px;
}

/* Layout del formulario */
.cf-form{ margin-top: 8px; }

.cf-row{
  display: grid;
  grid-template-columns: 1fr 1fr;     /* 2 columnas en desktop */
  gap: 18px 20px;                     /* fila / columna */
}

/* Campo y etiqueta */
.cf-field{
  display: flex;
  flex-direction: column;
  margin: 0;                          /* controlado por el grid y los paddings */
}
.cf-field--full{ grid-column: 1 / -1; } /* textarea a lo ancho */

.cf-label{
  font-size: 14px;
  font-weight: 700;
  color: #3f2411;
  margin: 2px 0 8px;
}

/* Inputs / Select / Textarea con separación y padding interno */
.cf-form .cf-field input,
.cf-form .cf-field select,
.cf-form .cf-field textarea{
  appearance: none; -webkit-appearance:none; -moz-appearance:none;
  border: 1px solid #3f2411;  /* borde sutil en paleta */
  border-radius: 10px;                    /* rectangulares con leve curva */
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: 1.25;
  min-height: 35px;    
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  box-shadow: 0 1px 0 rgba(74,46,26,.06) inset;
  margin-bottom: 10px;                    /* ligera separación entre campos en la misma columna */
}
.cf-form .cf-field input{
  width: 90%;
  padding:10px;                     /* altura uniforme */
}
.cf-form .cf-field select{
  width: 95%;
  padding:18px;                     /* altura uniforme */
}
.cf-form .cf-field textarea{
  width: 95%;
  padding:10px;                     /* altura uniforme */
}
/* Placeholder */
.cf-form .cf-field input::placeholder,
.cf-form .cf-field textarea::placeholder{
  color: #3f2411;;
  opacity: .95;
}

/* Select con flecha personalizada */
.cf-form .cf-field select{
  background-image:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="%234A2E1A"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  cursor: pointer;
}

/* Textarea fijo, sin redimensionar */
.cf-form .cf-field textarea{
  resize: none;
  height: 80px;
  min-height: 140px;
  max-height: 140px;
}

/* Focus accesible */
.cf-form .cf-field input:focus,
.cf-form .cf-field select:focus,
.cf-form .cf-field textarea:focus{
  border-color: #3f2411;
  box-shadow: 0 0 0 3px rgba(74,46,26,.12);
  outline: none;
}

/* Acciones y botón (marrón sólido) */
.cf-actions{
  margin-top: 4px;
  display: flex;
  justify-content: center;
}
.cf-submit{
  height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
  background-color:#3f2411;
  color: #fff;
  border: 1px solid #3f2411;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(74,46,26,.18);
  transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.cf-submit:hover{ filter: brightness(1.04); transform: translateY(-1px); }
.cf-submit:active{ transform: translateY(0); box-shadow: 0 6px 14px rgba(74,46,26,.16); }

/* Responsive */
@media (max-width: 920px){
  .cf-form-wrap{ width: min(72%, 760px); }
}
@media (max-width: 760px){
  .cf-form-wrap{ width: 90%; margin: 0 auto; }
  .cf-row{ grid-template-columns: 1fr; gap: 14px; }
}
.color-bg{
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
}

.fullscreen-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.fullscreen-bg_video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.cntsection{
  position: relative;
  margin: 50px auto 20px auto;
  max-width: 1200px;
  height: auto;
}
.white h2{
  color: #FFF !important;
}
.white hr{
  border: 1px solid #FFF !important;
}
h2{
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  margin: 10px 0 0 0;
  font-size: 2.5em;
  color: #384047;
  transition: all ease 0.5s;
  transform: scale(0);
}

hr{
  position: relative;
  display: block;
  width: 50px;
  margin: 10px auto 40px auto;
  border: 1px solid #3F2411;
  transition: all ease 0.5s;
  transform: scale(0);
}

.ben{
  position: relative;
  width: 13%;
  height: 85px;
  display: inline-block;
  vertical-align: top;
  margin: 3%;
  transition: all ease .5s;
  transform: scale(0);
  overflow: hidden;
}

.ben img{
  position: relative;
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.ben label{
  color: #393939;
  text-align: center;
  display: block;
  font-weight: 800;
  margin: 0 20px;
  font-size: 1.1em;
}

.ben p{
  margin: 10px 20px;
  color: #94A3A8;
  text-align: justify;
}

.horario{
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 435px;
  height: 120px;
  color: #FFF;
  padding: 10px;
  z-index: 999;
}
.horario label{
  position: relative;
  font-size: 1.3em;
  font-weight: bold;
  margin: 5px auto;
}
.horario p{
  font-size: 1.3em;
}
.cntregister2{
  position: relative;
  display: block;
  margin: 20px auto 40px auto;
  width: 250px;
  height: 40px;
  transform: scale(0);
  transition: all ease 0.5s;
}

.register2{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
  color: #FFF;
  font-weight: 800;
  background-color: #4E9DC6;
  border-radius: 20px;
  animation: pulse 1s ease infinite;
}

.interes{
  position: absolute;
  bottom: 16%;
  max-width: 600px;
  height: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}

.interes label{
  display: block;
  font-size: 3.4em;
  text-align: center;
  color: #323538;
}

.interes  span{
  display: block;
  text-align: center;
  font-size: 1.7em;
  margin: 10px 0 0 0;
  color: #384047;
}

.secbg{
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 100%;
  height: 65%;
  background: url('../images/shoes.jpg')no-repeat center center;
  background-size:cover;
  z-index: 1;
}
#fullpage{
  opacity: 0;
    -webkit-transition: ease 1s;
    -moz-transition: ease 1s;
    -o-transition: ease 1s;
    transition: ease 1s;
}
#map-container { width: 100%; height: 100vh; }
    #map { width: 100%; height: 100%; }
#section6 .down{
  color: #323538;
}
.work, .work2{
  position: relative;
  width: 46%;
  height: 370px;
  display: inline-block;
  vertical-align: top;
  margin: 0 1.5%;
  transform: scale(0);
  transition: all ease 1s;
}

.work span, .work2 span{
  position: relative;
  display: block;
  margin: 20px auto;
  width: 200px;
  height: 200px;
  border-radius: 200px;
  padding: 4px;
  background-color: #FFF;
  transition: all ease 1s;
}

.work:hover span, .work2:hover span{
  transform: rotateY(360deg);
}

.work span i, .work2 span i{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 200px;
  text-align: center;
  font-size: 8em;
  line-height: 200px;
  color: #FFF;
}

.work label, .work2 label{
  display: block;
  margin: 0 20px;
  text-align: center;
  font-size: 1.6em;
  text-transform: uppercase;
  color: #303030;
  font-weight: 800;
}
.white{
  width: 100%;
  background-color: #003585;
  max-width: none;
  opacity: 0.7;
}
.white .work2{
  height: 320px !important;
}
.white .work2 label{
  color: #FFF !important;
}
.white .work2 span{
  border-radius: 0 !important;
  width: 150px !important;
  height: 150px !important;
}
.white .work2 span i{
  border-radius: 0 !important;
}
.white .wblue, .white .wblue i, .white .worange, .white .worange i, .white .wgreen, .white .wgreen i{
  background: none !important;
  border: none !important;
} 
.work p, .work2 p{
  margin: 10px 20px;
  color: #77777B;
  text-align: justify;
}
.catalogo{
  position: relative;
  display: block;
  outline: 0;
  border: none;
  width: 50%;
  height: auto;
  padding: 10px;
  text-align: center;
  color: #FFF;
  margin: 10px auto;
  font-weight: bold;
  font-size: 1.3em;
}
.tecno{
  background-color: #3F2411;
}
.seguridad{
  background-color: #3F2411;
}
.teleco{
  background-color: #3F2411;
}
.wblue{
  border: 4px solid #3F2411;
}

.wblue i{
  background-color: #3F2411;
}

.worange{
  border: 4px solid #3F2411;
}

.worange i{
  background-color: #3F2411;
}

.wgreen{
  border: 4px solid #3F2411;
}

.wgreen i{
  background-color: #3F2411;
}
.qsomos{
  position: relative;
  width: 80%;
  left: 0;
  right: 0;
  height: auto;
  display: block;
  text-align: justify;
  font-size: 1.2em;
  line-height: 1.5em;
  margin: 0 auto;
  transition: all ease 0.5s;
  transform: scale(0);
}
.nosotros{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 34%;
  height: 100%;
  margin: 0 0 0 6%;
  background: url('../images/img3.jpg')no-repeat center center;
  background-size:cover;
}
.nosotros h2{
  margin: 20% 0 0 0;
}
.nosotros p{
  font-size: 1.2em;
  transition: all ease 0.5s;
  transform: scale(0);
}
.nosotrosimg{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 55%;
  height: 100%;
  left: 8%;
  right: 0;
  background: url('../images/img2.png')no-repeat center center;
  background-size:cover;
}
#section8{
  background: url('../images/bgslide.png')no-repeat center center;
  background-size:cover;
}
.serv1{
  background: url('../images/serv1.png')no-repeat center center;
  background-size:cover;
}
.serv2{
  background: url('../images/serv2.png')no-repeat center center;
  background-size:cover;
}
.serv3{
  background: url('../images/serv3.png')no-repeat center center;
  background-size:cover;
}
#section6 h2{
  background-color: #3F2411;
  color: #FFF;
  margin: 0 auto 20px auto;
  padding: 15px 0;
  font-size: 1.5em;
  transform: scale(1);
}

#section6 form{
  background-color: #FFF;
  position: relative;
  width: 560px;
  height: auto;
  margin: 10px 0 10px 50px;
  padding: 0 0 5px 0;
  transition: all ease 1s;
  transform: scale(0);
  z-index: 10;
}

#section6 .formimg{
  position: relative;
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 40px auto;
  padding: 40px 0 0 0;
}
.formimg2{
  position: relative;
  margin: 0 auto 20px 20px;
  width: 180px;
  height: auto;
}
.row{
  padding: 10px 20px;
}

.codepro span{
  line-height: 15px;
  padding: 0 6px 0 0 !important;
}

.row span, .row input[type="text"], .row input[type="email"]{
  display: inline-block;
  vertical-align: top;
}

.row span{
  width: 19%;
  text-align: right;
  font-size: 0.9em;
  padding: 5px 6px 5px 0;
}

.row input[type="text"], .row input[type="email"], .row textarea{
  width: 65%;
  padding: 5px 10px;
  outline: none;
}

#section6 input[type="submit"]{
  display: block;
  border: 0;
  outline: none;
  position: relative;
  margin: 20px auto;
  width: 130px;
  height: 40px;
  font-size: 1.1em;
  background-color: #3F2411;
  color: #FFF;
  cursor: pointer;
  transition: all ease .3s;
}

#section6 input[type="submit"]:hover{
  transform: scale(1.05);
}
.row textarea{
  min-width: 65%;
  max-width: 65%;
  min-height: 90px;
  max-height: 120px;
}

@media (max-width: 1690px){
  h1{
    font-size: 3em;
  }
  h3{
    font-size: 1.3em;
  }
}
@media (max-width: 1240px){
  .ben{
    width: 22%;
  }
}
@media (max-width: 990px) {
  .menu li a{
    font-size: 1.2em;
  }
  #logo, .logo{
      position: relative;
    margin: 0 auto;
    top: auto;
    left: auto;
    right: auto;
    width: 300px;
    height: auto;
    display: block;
  } 
  #logo img, .logo img{
    position: relative;
    width: 100%;
    height: auto;
  }
  .register{
    margin: 20px auto;
  }
  .down{
    display: none;
  }
/* La hamburguesa aparece */
  .hamburger{ display:flex; }

  /* Anulamos el display:none legacy del menú móvil */
  .menu{ display:block !important; }

  /* El ul como panel lateral */
  .menu{
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 360px);
    height: 100vh;
    padding: 88px 22px 24px;         /* espacio superior para no tapar la hamburguesa */
    background: rgba(63,36,17,.95);  /* marrón de tu paleta, alto contraste */
    backdrop-filter: blur(2px);
    transform: translateX(100%);     /* fuera de pantalla */
    transition: transform .28s ease;
    box-shadow: -12px 0 32px rgba(0,0,0,.28);
  }
  /* Abrir drawer cuando está checked */
  .nav-toggle:checked ~ .menu{ transform: translateX(0); }

  .menu li{
    display: block;
    margin: 0 0 14px;
  }
  .menu li a{
    display: block;
    color: #FFF !important;          /* legible sobre fondo oscuro */
    font-size: 1.25em;
    padding: 10px 6px;
  }
  .hamburger{ display:flex; flex-direction: column; }
}

/* Modo oscuro del menú (secciones Encuéntranos/Contáctanos) */
.hamburger.menu-dark{
  border-color: #3F2411;
}
.hamburger.menu-dark span{
  background: #3F2411;
}
  .horario label, .hoverario p{
    font-size: 1.2em;
  }
  .ben{
    width: 29%;
  }
  .work, .work2{
    width: 100%;
  }
    #section6 form{
      margin: 0 auto;
      width: 530px;
    }
    .nosotros, .nosotrosimg{
      display: block;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .nosotros{
    width: 80%;
    height: auto;
    padding: 5% 0;
  }
  .nosotrosimg{
    width: 100%;
  }
  .nosotros h2{
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
    .fullscreen-bg {
        background: url('../images/bg.png') center center / cover no-repeat;
    }
    .fullscreen-bg__video {
        display: none;
    }
    .ben{
      width: 45%;
    }
    #clients-marquee{
      display: none;
    }
}

section{
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.success{
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #0E93EE;
  transition: all ease .5s;
  z-index: 998;
}

.success h1, .success span, .success label, .success p{
  position: absolute;
  display: block;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  color: #FFF;
}

.success h1{
  width: 100%;
  top: 22%;
  font-size: 3.3em;
  font-weight: 800;
}

.success span{
  width: 100%;
  top: 37%;
  font-size: 2.2em;
}

.success label{
  width: 100%;
  top: 47%;
  font-size: 2.8em;
  font-weight: 800;
}

.success p{
  max-width: 800px;
  top: 60%;
  font-size: 1.2em;
  font-weight: 800;
}

.closenot{
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFF;
  cursor: pointer;
  font-size: 3.2em !important;
  opacity: 0.7;
  z-index: 999;
}

#hideme{
  position: absolute;
  visibility: hidden;
}

#hideme:checked ~ .success{
  transform: scale(0);
}
