* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
 
  min-height: 100vh;
  padding-bottom: 60px;
   background: 
    linear-gradient(rgba(52, 50, 50, 0.75), rgba(0, 88,34)), /* Capa oscura semitransparente */
    url('../SETIB\ -\ KORUM/fondo.webp'); /* Ruta de tu imagen */

  /* Propiedades para ajustar la imagen */
  background-size: cover;       /* Hace que la imagen cubra todo el espacio */
  background-position: center;  /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que se repita */
}

/* NAVBAR */
.app-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 5%;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info h2 {
  font-size: 15px;
  font-weight: 600;
}

.user-role {
  font-size: 12px;
  color: #94a3b8;
}

.btn-logout {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-logout:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* CONTENEDOR PRINCIPAL */
.portal-container {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 5%;
}

/* BANNER BIENVENIDA */
.welcome-banner {
  margin-bottom: 40px;
}

.badge {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.welcome-banner h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 12px 0 8px 0;
}

.welcome-banner p {
  color: #94a3b8;
  font-size: 15px;
  max-width: 700px;
}

/* GRID EMPRESA */
.company-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.info-card.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(251, 252, 254, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(4, 69, 8, 0.2);
}

.card-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.info-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* SECCIÓN RESPONSABILIDADES */
.responsibilities-section {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.section-title h2 svg {
  color: #10b981;
}

.section-title p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 24px;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.rule-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rule-number {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
}

.rule-content h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #f1f5f9;
}

.rule-content p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

/* PIE ACCIÓN */
.action-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.action-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.action-card p {
  color: #94a3b8;
  font-size: 13px;
  margin-bottom: 20px;
}

.btn-continue {
  background: linear-gradient(185deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .company-info-grid {
    grid-template-columns: 1fr;
  }
  .info-card.wide {
    grid-column: span 1;
  }
}
/*video*\
/* --- SECCIÓN DE VIDEO --- */
.video-section {
  margin-bottom: 50px;
}

/* Para video de YouTube (Contenedor Responsive 16:9) */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Para archivo de video local .mp4 */
.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh; /* Ajusta la altura si es necesario */
  display: flex;
  align-items: center;

  /* IMAGEN DE FONDO CON CAPA OSCURA */
  background: 
    linear-gradient(rgba(194, 197, 206, 0.75), rgba(0, 88,34)), /* Capa oscura semitransparente */
    url('fondo.webp'); /* Ruta de tu imagen */

  /* Propiedades para ajustar la imagen */
  background-size: cover;       /* Hace que la imagen cubra todo el espacio */
  background-position: center;  /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que se repita */
  
  color: #1a1717; /* Asegura que las letras sean blancas */
}