
body, h1, h2, h3, h4, h5, h6, p, li, span, a, div {
  font-family: 'Segoe UI', sans-serif !important;
}

html, body {

  margin: 0;


  background-color: #fff;

  padding: 0;

  overflow-x: hidden; /* <- esto evita scroll horizontal */

  width: 100%;

  box-sizing: border-box;

}

*, *::before, *::after {

  box-sizing: inherit;

}





.fullscreen-section {

  min-height: 100vh;         /* altura mínima igual al alto del navegador */

  display: flex;

  flex-direction: column;

  justify-content: center;   /* centra verticalmente */

  align-items: center;       /* centra horizontalmente si lo deseas */

  padding: 40px 20px;        /* espacio interior */

  box-sizing: border-box;

}





.sidebar {

  width: 250px;

  background: #fff;

  position: fixed;

  top: 50%;

  left: 0;

  transform: translateY(-50%);

  transition: transform 0.4s ease-in-out, left 0.4s ease-in-out;

  z-index: 1000;

  border-right: 1px solid #eaeaea;

  padding: 30px 0;

}



.sidebar.oculto {

  left: -250px;

}



.sidebar .logo {

  display: block;

  width: 150px;

  margin: 0 auto 30px;

}



.menu {

  list-style: none;

  padding: 0;

  margin: 0;

  text-align: center;

}



.menu li {

  margin: 10px 0;

  padding: 10px 0;

  border-top: 1px solid #eee;

  border-bottom: 1px solid #eee;

}



.menu li:first-child {

  border-top: none;

}



.menu li:last-child {

  border-bottom: none;

}



.menu li a {

  color: #BD0016;

  font-weight: bold;

  text-decoration: none;

  display: block;

  transition: background 0.3s, color 0.3s;

  padding: 10px;

}



.menu li a:hover {

  background: #BD0016;

  color: #ffffff;

}



#menu-btn {

  position: fixed;

  top: 50%;

  left: 0;

  transform: translateY(-50%);

  background-color: white;

  color: #BD0016;

  writing-mode: vertical-rl;

  text-orientation: mixed;

  font-weight: bold;

  padding: 20px 10px;

  cursor: pointer;

  z-index: 2000;

  border-top-right-radius: 10px;

  border-bottom-right-radius: 10px;

  font-size: 20px;

  text-align: center;

  line-height: 1.2;

  display: none;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  transition: background-color 0.3s, color 0.3s;

}



#menu-btn:hover {

  background-color: #BD0016;

  color: #fff;

}



/* .main-content {
  width: 100%;
  height: 100vh;
  overflow: hidden;
} */

.main-content {
  width: 100%;
  /* NO definas altura fija aquí */
}





/* .video-bg {

  width: 100%;

  height: 100vh;

  object-fit: cover;

} */



.about-section {

  background: #fff;

  padding: 80px 20px;

  text-align: center;

}



.about-section h2 {

  color: #BD0016;

  font-size: 36px;

  margin-bottom: 20px;

}



.ab-section-title-1 h4 {

   color: #BD0016 !important;

  font-size: 70px;

  }



@media (max-width: 768px) {

  .sidebar {

    width: 200px;

  }



  .sidebar .logo {

    width: 120px;

  }



  .sidebar.oculto {

    left: -200px;

  }



  .about-section h2 {

    font-size: 28px;

  }

}



/* About Us */

.ab-kinomi-block {

  padding: 0;

  background: #fff;

}



.ab-kinomi-photo {

  border: 3px solid #d10000;

  border-radius: 12px;

  width: 220px;

  margin: 0 auto 15px auto;

  display: block;

}



.ab-name-highlight {

  font-weight: bold;

  font-size: 18px;

  color: #bd0016 !important;

}



.ab-timeline-title {

  color: #bd0016;

  font-weight: bold;

  font-size: 25px;

  margin-top: 30px;

   margin-bottom: 10px !important;

}



.ab-timeline {

  /* border-left: 3px solid #bd0016; */

  padding-left: 20px;

  margin-top: 5px;

  text-align: center;

}



.ab-timeline li,

.strength-line-ab {

  display: flex;

  align-items: baseline;

  margin-bottom: 12px;

  list-style: none;

  opacity: 0;

  transform: translateX(-30px);
  line-height: 1,3;

}



.ab-timeline li.visible,

.strength-line-ab.visible {

  animation: slideFadeIn 0.6s ease forwards;

}



.ab-timeline li .ab-date {

  min-width: 110px;

  color: #bd0016;

  font-weight: bold;

  flex-shrink: 0;

}



.ab-timeline li .ab-desc {

  flex-grow: 1;

  padding-left: 8px;

  text-align: left;

}



.strength-check-ab {

  color: #BD0016 !important;

  font-weight: bold !important;

  margin-right: 6px !important;

}



.strength-icon {

  color: #BD0016;

  min-width: 20px;

}



.strength-list-ab {

  list-style: none;

  padding: 0;

  margin: 20px 0;

  font-family: 'Times New Roman', serif;

  line-height: 1,9;

}





@keyframes slideFadeIn {

  0% {

    opacity: 0;

    transform: translateX(-20px);

  }

  100% {

    opacity: 1;

    transform: translateX(0);

  }

}



/* Responsive */

.col-md-6 {

  box-sizing: border-box;

  padding: 15px;

  width: 50%;

}



@media (max-width: 908px) {

  .col-md-6 {

    width: 100% !important;

  }



  .row {

    flex-direction: column;

  }



  .ab-right-column {

    padding-left: 0 !important;

    margin-top: 40px;

  }

}



/* Logo animado */

@keyframes palpitar {

  0%, 100% {

    transform: scale(1);

  }

  50% {

    transform: scale(1.08);

  }

}



.logo-palpitar {

 
  display: inline-block !important;
 
}

