.cpbr-sidebar {
  width: 15%;
  {% if module.color_fondo.color %}
    background-color: rgba(,{% if module.opacidad %}0.{% else %}0.9{% endif %} );
  {% else %}
    background-color: rgba(15, 21, 28, 0.7);
  {% endif %}
  padding: 20px;
  position: relative;
  backdrop-filter: blur(10px);
  z-index: 999;
}

@media (max-width: 768px) {
  .cpbr-sidebar {
    width: 100%;
    padding: 0px 20px 10px;
    background-color: rgba(15, 21, 28, 0.4);
  }
}

.cpbr-container {
  display: flex;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.cpbr-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cpbr-hero-copy {
  position: absolute;
  top: 50%;
  left: 57.5%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(860px, calc(100% - 80px));
  text-align: center;
  pointer-events: none;
}

.cpbr-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding-left: 18px;
  position: relative;
  font-family: Work Sans, sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.cpbr-kicker:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 34px;
  transform: translateY(-50%);
  background: #ffca7a;
}

.cpbr-hero-copy h1 {
  margin: 0;
  font-family: Work Sans, sans-serif;
  font-weight: 700;
  line-height: .95;
  color: #ffffff;
  font-size: clamp(46px, 5vw, 86px);
  text-shadow: 0 8px 26px rgba(0, 0, 0, .22);
}

.cpbr-hero-copy p {
  margin: 28px auto 0;
  max-width: 760px;
  font-family: Work Sans, sans-serif;
  font-size: clamp(18px, 1.45vw, 28px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .84);
  text-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.cpbr-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

.cpbr-logo img {
  width: 100%;
}

.cpbr-nav ul {
  list-style-type: none;
  padding: 0;
}

.cpbr-nav ul li {
  margin-bottom: 20px;
}

.cpbr-nav ul li a {
  text-decoration: none;
  font-family: Work Sans, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffca7a;
}

.cpbr-main {
  width: 80%;
  position: relative;
  text-align: center;
  background-color: #e8e8e8;
}

.cpbr-main-image {
  width: 100%;
  height: auto;
}

.cpbr-title {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 48px;
  color: #ffffff;
  margin: 0;
}

.cpbr-scrolled {
  position: fixed !important;
  z-index: 99999;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.cpbr-scrolled .cpbr-logo {
  margin-bottom: 10px;
}

.cpbr-sidebar .burger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: black;
}

.cpbr-sidebar.cpbr-scrolled .burger-menu {
  display: block;
}

.cpbr-sidebar .cpbr-nav {
  display: block;
}

.cpbr-sidebar.cpbr-scrolled .cpbr-nav {
  display: none;
}

.cpbr-sidebar .cpbr-nav.show {
  display: block;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: white;
  width: 100%;
}

.cpbr-video-desk {
}

.cpbr-video-mob {
  display: none;
}

@media (max-width: 768px) {
  .cpbr-video-desk {
    display: none;
  }

  .cpbr-video-mob {
    display: block;
  }

  .cpbr-sidebar .cpbr-nav {
    display: none;
  }

  .cpbr-sidebar .burger-menu {
    display: block;
  }

  .cpbr-scrolled {
    clip-path: none;
  }

  .cpbr-logo img {
    width: 40%;
    margin: 0 auto;
  }

  .burger-menu {
    margin: 0 auto;
  }

  .cpbr-nav ul {
    text-align: center;
  }

  .cpbr-hero-copy {
    left: 50%;
    width: calc(100% - 40px);
    top: 58%;
  }

  .cpbr-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
  }

  .cpbr-kicker:before {
    height: 26px;
  }

  .cpbr-hero-copy h1 {
    font-size: clamp(30px, 8vw, 48px);
    line-height: 1.02;
  }

  .cpbr-hero-copy p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.45;
  }
}