
   /* ===============================
   BLOQUEO DEL SITIO ACTUAL
   =============================== */

#site-lock {
  position: relative;
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f4f6f8;
}

/* ===============================
   HEADER FIJO
   =============================== */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: #bfbfbf;

  display: grid;                          /* 🔥 clave */
  grid-template-columns: auto 1fr auto;  /* izquierda | centro | derecha */
  align-items: center;

  padding: 0 30px;
  box-sizing: border-box;
  z-index: 5000;
}

/* ZONAS */
.menu-left {
  display: flex;
  align-items: center;
}
.menu-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;   /* 🔥 ESTE NÚMERO ES EL QUE BAJA COTIZAR */
}
  .menu-center {
  display: flex;              /* Mantiene SSC y REPSE en una misma fila */
  align-items: flex-start;    /* Permite moverlos verticalmente de forma independiente */
  gap: 15px;                  /* Espacio horizontal entre ambos logos */
}
/* LOGO */
.menu-logo {
  height: 90px;
  width: auto;
}
/* Logo SSC */
.logo-dos {
  position: relative;         /* Habilita el uso de top y left */
  top: 15px;                  /* Baja el logo SSC 20px */
  left: 555px;                /* Mueve el logo SSC 10px a la izquierda */
}
/* Logo REPSE */
.logo-tres {
  position: relative;         /* Permite moverlo sin afectar a otros elementos */
  top: 30px;                   /* Baja el logo REPSE 5px */
  left: 580px;                 /* Mueve el logo REPSE 15px a la derecha */
}
  /* BOTÓN COTIZAR */
.btn-cotizar {
  position: fixed;        /* 🔥 clave */
  right: 20px;            /* alineado a la derecha */
  top: 180px;             /* 🔥 AJUSTA AQUÍ (baja/sube) */

  background: #ec8f04;
  color: #fff;

  width: 160px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;

  padding: 0;
  margin: 0;

  z-index: 9000;          /* encima del contenido */
}
.btn-cotizar:hover {
  background: #e0b85a;
  transform: scale(1.05);
}

/* HAMBURGUESA */
.hamburger {
  position: fixed;      /* CLAVE */
  top: 30px;            /* arriba / abajo */
  right: 30px;          /* izquierda / derecha */

  font-size: 60px;
  line-height: 1;
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 1000;        /* para que esté encima de todo */
}

/* ===============================
   VIDEO INICIO
   =============================== */
.inicio-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.inicio-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

/* ===============================
   BOTONES FLOTANTES
   =============================== */
.botones-fijos {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 4000;
}

.icon-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

.icon-btn.wsp { background: #25D366; }
.icon-btn.mail { background: #1e88e5; }
.icon-btn.call { background: #333; }

/* ===============================
   FORMULARIO
   =============================== */
.form-cotizar {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.form-cotizar input,
.form-cotizar select,
.form-cotizar textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.form-cotizar button {
  background: #1e5e8f;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}

/* ===============================
   NOSOTROS
   =============================== */
.nosotros-contenido {
  max-width: 1200px;
  margin: auto;

  display: grid;                 /* 2 columnas reales */
  grid-template-columns: 1fr 1fr;/* texto | imagen */
  align-items: center;           /* centra vertical */
  gap: 60px;
}

.nosotros-texto {
  text-align: left;
}

.nosotros-texto h2 {
  font-size: 42px;      /* 🔥 título más grande */
  line-height: 1.2;
}

.nosotros-texto p {
  font-size: 20px;
  line-height: 1.9;
  text-align: justify;
  max-width: 100%;   /* 🔥 ocupa toda la columna */
}
.nosotros-imagen {
  display: flex;
  justify-content: center;       /* centra la imagen */
}

.nosotros-imagen img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* ===============================
   MISIÓN VISIÓN VALORES
   =============================== */
.bloque-mvv {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;

  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.mvv-item {
  flex: 1;
  text-align: center;
}

.mvv-icono {
  width: 56px;
  height: 56px;
  border: 3px solid #0b2c4d;
  border-radius: 50%;
  margin: 0 auto 20px auto;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  font-weight: bold;
  color: #0b2c4d;
}

.mvv-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.mvv-item p {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  max-width: 280px;     /* 🔥 clave para que se vea como imagen 2 */
  margin: 0 auto;
}

/* LÍNEAS VERTICALES */
.mvv-separador {
  width: 1px;
  background: #bbb;
  opacity: 0.6;
}

/* ===============================
   MENÚ LATERAL
   =============================== */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: #000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 10000;

  display: flex;
  flex-direction: column;
}

.side-menu.active {
  transform: translateX(0);
}

.side-header {
  position: relative;
  padding: 20px;
}

.side-logo {
  width: 170px;
  margin: 20px auto 30px;
  display: block;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.side-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side-links a {
  color: white;
  font-size: 18px;
  padding: 18px 0;
  text-decoration: none;
  width: 100%;
  text-align: center;
}
/* ===== AJUSTE INDIVIDUAL DE LOGOS ===== */

/* Logo izquierdo */
.menu-logo {
  transform: translateY(10px);
}
/* ===============================
   RESPONSIVE
   =============================== */
/* ===============================
   RESPONSIVE GENERAL – MÓVIL
   =============================== */
@media (max-width: 768px) {

  /* ===== QUIÉNES SOMOS ===== */
  .nosotros-contenido {
    grid-template-columns: 1fr;     /* una columna */
    text-align: center;
  }

  .nosotros-texto {
    text-align: center;
  }

  .nosotros-texto h2 {
    font-size: 32px;
  }

  .nosotros-texto p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 100%;
  }

  .nosotros-imagen img {
    max-width: 300px;
    margin: 0 auto;
  }

  /* ===== MISIÓN | VISIÓN | VALORES ===== */
  .bloque-mvv {
    flex-direction: column;
    gap: 40px;
  }

  .mvv-separador {
    display: none;
  }

  .mvv-item h3 {
    font-size: 20px;
  }

  .mvv-item p {
    font-size: 16px;
    max-width: 100%;
    margin: 0 auto;
  }

  .mvv-icono {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

}

