body {
  margin: 0;
  padding: 0;
  font-family: Arial;
  color: #333;
  justify-content: center;
  align-items: center;
  
}

h1 {
  font-size: 50px;
}

/* HEADER ARRIBA DE TODO */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: white;
  z-index: 10; /* clave */
}

.logo {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px;
  width: auto;
}

.logo:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.navbar {
  position: fixed;
  top: 8px; 
  left: 50%;
  transform: translateX(-50%);
  background: #5A4522;
  padding: 8px 30px;
  border-radius: 40px;
  display: flex;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  margin: 0 28px;
}

.navbar a:hover {
  transform: scale(1.1);
}

.lang-switch {
  position: absolute;
  top: 15px;
  right: 20px;
}

.lang-btn {
  width: 40px;
  cursor: pointer;
  margin-left: 8px;
  transition: 0.3s;
}

.lang-btn:hover {
  transform: scale(1.1);
}

/* HERO (IMAGEN) */
.hero {
  position: relative; /* NECESARIO */
  z-index: 0;

  width: 100%;
  height: 850px;
  background-image: url("img/Fondo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* CAPA CAFÉ SOLO SOBRE LA IMAGEN */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: #654321; /* fallback */
  background: linear-gradient(
    rgba(101, 67, 33, 0.6),
    rgba(101, 67, 33, 0.3)
  );

  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2; /* encima del overlay */
  color: white;
  
  top: 50%;
  transform: translateY(-50%);
   margin-left: 70px;
}

.hero-title {
  font-size: 60px;
  text-shadow: 
    0 0 5px rgba(0,0,0,0.6),
    0 0 15px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 20px;
  margin: 10px 0 20px;
}
.about-section {
  display: flex;
  width: 100%;
  height: 500px;
}

/* TEXTO */
.about-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; /*lo mueve a la derecha */
  box-sizing: border-box;
}

.about-text h2 {
  color: #5A4522; /* título */
}

.about-text p {
  color: #7A6A4F; /* texto */
}

/* IMAGEN */
.about-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LA IMAGEN COMO TAL */
.about-image img {
  width: 70%;   /*más chica */
  height: auto;
  border-radius: 5px;
}
.about-section {
  display: flex;
  width: 100%;
  height: 500px;
}

/* TEXTO */

.assembly-section {
  display: flex;
  width: 100%;
  height: 500px;
}

.assembly-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; /*lo mueve a la derecha */
  box-sizing: border-box;
}

.assembly-text h2 {
  color: #5A4522; /* título */
}

.assembly-text p {
  color: #7A6A4F; /* texto */
}

/* IMAGEN */
.assembly-image {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LA IMAGEN COMO TAL */
.assembly-image img {
  width: 40%;   /*más chica */
  height: auto;
  border-radius: 5px;
}
.btn-vermas {
  display: inline-block;
  margin-top: 25px;
  width: 110px;        /*  tamaño fijo */
  text-align: center;  /*  centra el texto */
  padding: 6px 0;
  font-size: 13px;
  background: linear-gradient(135deg, #5A4522, #8B7355);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* efecto hover */
.btn-vermas:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* brillo animado */
.btn-vermas::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: #5A4522; 
  background: rgba(255,255,255,0.3);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-vermas:hover::after {
  left: 130%;
}
/* animación al entrar */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.more-page {
  max-width: 900px;
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}
.more-page p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
/* HERO (IMAGEN) */
.hero2 {
  position: relative; /* NECESARIO */
  z-index: 0;

  width: 100%;
  height: 850px;
  background-image: url("img/more.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* CAPA CAFÉ SOLO SOBRE LA IMAGEN */
.hero2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-color: #654321; /* fallback */
  background: linear-gradient(
    rgba(101, 67, 33, 0.6),
    rgba(101, 67, 33, 0.3)
  );

  z-index: 1;
}
.hero2-content {
  position: relative;
  z-index: 2; /* encima del overlay */
  color: white;
  
  top: 50%;
  transform: translateY(-50%);
   margin-left: 70px;
}

.hero2-title {
  font-size: 60px;
  text-shadow: 
    0 0 5px rgba(0,0,0,0.6),
    0 0 15px rgba(0,0,0,0.4);
}

.hero2-content p {
  font-size: 20px;
  margin: 10px 0 20px;
}
.about-section {
  display: flex;
  width: 100%;
  height: 500px;
}

/* TEXTO */
.mservices-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; /*lo mueve a la derecha */
  box-sizing: border-box;
}

.mservices-text h2 {
  color: #5A4522; /* título */
}

.mservices-text p {
  color: #7A6A4F; /* texto */
}

/* IMAGEN */
.mservices-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LA IMAGEN COMO TAL */
.mservices-image img {
  width: 50%;   /*más chica */
  height: auto;
  border-radius: 5px;
}
.mservices-section {
  display: flex;
  width: 100%;
  height: 550px;
}
/* TEXTO */

.fullment-section {
  display: flex;
  width: 100%;
  height: 500px;
}

.fullment-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; /*lo mueve a la derecha */
  box-sizing: border-box;
}

.fullment-text h2 {
  color: #5A4522; /* título */
}

.fullment-text p {
  color: #7A6A4F; /* texto */
}

/* IMAGEN */
.fullment-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LA IMAGEN COMO TAL */
.fullment-image img {
  width: 60%;   /*más chica */
  height: auto;
  border-radius: 5px;
}
/* TEXTO */

.maquila-section {
  display: flex;
  width: 100%;
  height: 500px;
}

.maquila-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; /*lo mueve a la derecha */
  box-sizing: border-box;
}

.maquila-text h2 {
  color: #5A4522; /* título */
}

.maquila-text p {
  color: #7A6A4F; /* texto */
}

/* IMAGEN */
.maquila-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LA IMAGEN COMO TAL */
.maquila-image img {
  width: 60%;   /*más chica */
  height: auto;
  border-radius: 5px;
}
/* TEXTO */

.transport-section {
  display: flex;
  width: 100%;
  height: 500px;
}

.transport-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px; /*lo mueve a la derecha */
  box-sizing: border-box;
}

.transport-text h2 {
  color: #5A4522; /* título */
}

.transport-text p {
  color: #7A6A4F; /* texto */
}

/* IMAGEN */
.transport-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LA IMAGEN COMO TAL */
.transport-image img {
  width: 80%;   /*más chica */
  height: auto;
  border-radius: 5px;
}
.quote-seccion {
  background: #5A4522;
  margin: 0;
  padding: 0;
  font-family: Arial;
  height: 20vh;

  display: flex;
  align-items: center;
}

/* AQUÍ VA EL FLEX (IMPORTANTE) */
.quote-text {
  display: flex;
  align-items: center;
  justify-content: center; /* centra todo */
  gap: 450px; /* controla la separación */
  width: 100%;
}

/* TEXTO */
.quote-text h2 {
  font-size: 40px;
  color: #ffffff;
  margin: 0;
}

/* BOTÓN */
.btn-quote {
  display: inline-block;
  margin-top: 0; /* quitamos el que lo bajaba */
  
  padding: 14px 28px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0px;

  color: #5A4522;
  background: linear-gradient(135deg, #FFD84D, #FFC107);

  text-decoration: none;
  border-radius: 8px;
  border: none;

  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* hover elegante */
.btn-quote:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 193, 7, 0.6);
}

/* efecto brillo */
.btn-quote::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.btn-quote:hover::after {
  left: 130%;
}
/* contenedor del botón + texto */
.quote-box {
  display: flex;
  flex-direction: column; /* esto hace que el texto quede ABAJO */
  align-items: flex-end; /* lo alinea a la derecha */
  gap: 8px; /* espacio entre botón y texto */
}

/* texto de abajo */
.quote-box p {
  color: #ffffff;
  font-size: 16px;
  margin: 0.5;
  opacity: 0.8;
}
.contact-container {
  max-width: 700px;
  margin: 0px auto; /* antes 100px */
  background: #5A4522;
  padding: 20px;
  border-radius: 15px;
  color: white;
}

.contact-container h2 {
  margin-bottom: 10px;
}

.contact-container p {
  font-size: 14px;
  margin-bottom: 15px;
}

.phones {
  margin-bottom: 25px;
}

.row {
  display: flex;
  gap: 15px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.input-group.full {
  width: 100%;
}

label {
  font-size: 13px;
  margin-bottom: 5px;
}

label span {
  color: yellow;
  font-size: 11px;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #e5e5e5;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

.captcha {
  margin: 20px 0;
}

button {
  width: 100%;
  padding: 12px;
  background: #FFCD00;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #FFCD00;
}
/* CONTENEDOR GENERAL */
.contact-wrapper {
  display: flex;
  gap: 50px;
  padding: 120px 60px;
  align-items: flex-start;
  background: #f5f5f5;
}
/* MAPA Y DIRECCIÓN */
.visit {
  flex: 0.9;
}

/* TITULOS */
.visit h3 {
  margin-bottom: 15px;
}

/* LINEA */
.visit hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ccc;
}

/* MAPA */
#map {
  width: 100%;
  height: 400px;
  margin-top: 15px;
  border-radius: 10px;
}
.footer {
  text-align: center;
  padding: 6px 10px;
  font-size: 12px;
  color: #ccc;
}
/* CONTENEDOR DE REDES */
.socials {
  text-align: center;
  margin-top: 40px;
}

/* ICONOS */
.socials img {
  width: 30px;
  margin: 0 10px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER */
.socials img:hover {
  transform: scale(1.2);
}

/*SOLUTIONS*/

.solutions-hero {
  padding: 140px 60px 60px;
  text-align: center;
}

.solutions-hero h1 {
  font-size: 50px;
  color: #5A4522;
}

.solutions-hero p {
  color: #7A6A4F;
}

/* GRID DE SOLUCIONES */
/* TARJETAS */
.solution {
  text-align: center;
}

.solution img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.solution h3 {
  margin-top: 15px;
  color: #5A4522;
}

.solution p {
  color: #7A6A4F;
}

/* CTA */
.solutions-cta {
  text-align: center;
  padding: 60px;
}

.solutions-cta h2 {
  margin-bottom: 20px;
  color: #5A4522;
}
/* ===== ABOUT US PAGE ===== */

.about-page {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 140px 80px 80px; /* respeta header fijo */
  background: #f9f7f3; /* tono claro elegante */
}

/* TEXTO */
.about-text2 {
  width: 50%;
  animation: fadeIn 0.8s ease-in;
}

.about-text2 h1 {
  font-size: 48px;
  color: #5A4522;
  margin-bottom: 20px;
  position: relative;
}

/* línea decorativa elegante */
.about-text2 h1::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #5A4522, #C8A96A);
  display: block;
  margin-top: 10px;
  border-radius: 5px;
}

.about-text2 p {
  color: #6e5b3b;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 15px;
}

/* IMAGEN */
.about-image2 {
  width: 50%;
  display: flex;
  justify-content: center;
}

.about-image2 img {
  width: 80%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.4s;
}

/* efecto elegante */
.about-image2 img:hover {
  transform: scale(1.03);
}

/* ===== VALORES ===== */

.values {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 40px;
  background: #fff;
}

.value {
  width: 260px;
  padding: 25px;
  border-radius: 15px;
  background: #f9f7f3;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(90, 69, 34, 0.1);
}

.value:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value h3 {
  color: #5A4522;
  margin-bottom: 10px;
}

.value p {
  color: #7A6A4F;
  font-size: 14px;
}