:root {
    --primary: #0056b3;
    --primary-light: #337ab7;
    --primary-dark: #003d82;
    --secondary: #e63946;
    --accent: #ffc107;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
  }
  



  #canvas3d {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.80; /* Transparencia para que no compita con el contenido */
  }
  
  /* Contenido principal con fondo semitransparente */

  
  
  /* Header */
  .org-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .org-header h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }
  
  .org-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
  }
  
  .org-header p {
    color: var(--gray);
    font-size: 1.1rem;
  }
  
  /* Organigrama */
  .org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .level {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
  }
  
  .node {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    width: 220px;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
  }
  
  .node:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .node.ceo {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 260px;
    padding: 25px;
    border-top: none;
  }
  
  .node.ceo .position {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .node.manager {
    border-top-color: var(--secondary);
  }
  
  .node.supervisor {
    border-top-color: var(--accent);
  }
  
  .position {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  
  .department {
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  /* Connectors */
  .connectors {
    position: relative;
    width: 100%;
    height: 40px;
  }
  
  .vertical-connector {
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--light-gray);
    left: 50%;
    top: 0;
  }
  
  .horizontal-connector {
    position: absolute;
    height: 2px;
    background: var(--light-gray);
    top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .level {
      flex-wrap: wrap;
    }
    
    .node {
      margin: 10px;
      width: calc(50% - 20px);
    }
    
    .node.ceo {
      width: calc(100% - 20px);
    }
  }
  
  @media (max-width: 600px) {
    .node {
      width: 100%;
      margin: 10px 0;
    }
    
    .org-header h1 {
      font-size: 2rem;
    }
  }

  .org-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    width: 100%;
    height: 200vh;
    position: relative;
}

.container-blanco {
  width: 100vw;         /* ocupa todo el ancho del viewport */
  height: 180px;        /* puedes cambiar esta altura a tu gusto */
  background-color: rgb(255, 255, 255);
}