.rd-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.rd-topbar {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #001f0e, #00682e, #001f0e);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-cabecera-text{
  margin:0px !important;
  color:#fff;
  font-size:12px;
}

.rd-header__inner {
  max-width: 1440px;
  width: calc(100% - 48px);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rd-header__logo img {
    width: 80px;
    display: block;
    object-fit: contain;
    height: 80px;
}

.rd-header__nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.rd-header__nav a {
  color: #fff;
  font-family: var(--rd-font-title, "Sora", sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .2s ease;
}

.rd-header__nav a:hover,.rd-header__nav a:focus {
  color: #00c853 !important;
}

.rd-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rd-icon-btn {
 width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0px solid transparent !important;
}

.rd-icon-btn:focus, .rd-icon-btn:hover{
  background:transparent !important;
}

button.rd-icon-btn{border:0px solid transparent !important;}

.rd-icon-btn:hover {
  color: #00c853;
}

.rd-menu-toggle {
  display: none;
  width: 38px;
  height: 50px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.rd-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

@media (min-width: 1024px) {
  .rd-mobile-menu{
    display: none;
  }
}


/* Móvil */
@media (max-width: 1024px) {
  .rd-topbar {
    height: 26px;
    font-size: 11px;
  }

  .rd-header__inner {
    width: calc(100% - 32px);
    height: 60px;
  }

  .rd-header__logo img {
    width: 80px;
  }

  .rd-header__nav {
    display: none;
  }

  .rd-menu-toggle {
    display: flex;
  }

  .rd-header__actions {
    gap: 12px;
  }

  .rd-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }




}

@media (max-width: 480px) {
  .rd-header__logo img {
    width: 63px !important;
  }

  .rd-header__actions {
    gap: 9px;
  }

  .rd-topbar {
    font-size: 10px;
  }
}

.rd-account-btn img{

    width:22px;

    height:22px;

    display:block;

    object-fit:contain;

    transition:.25s;

}

.rd-account-btn:hover img{

    transform:scale(1.08);

    filter:brightness(1.15);

}

@media (max-width: 1024px) {

  body.rd-menu-open {
    overflow: hidden;
  }

  .rd-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 99999;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    padding: 22px;
    box-sizing: border-box;
    background:
      radial-gradient(circle at 80% 90%, rgba(0, 200, 83, .16), transparent 35%),
      linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: .35s ease;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .rd-mobile-menu.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .rd-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: relative;
  }

  .rd-mobile-menu__head img {
    width: 90px;
    height: auto;
  }

  .rd-mobile-close {
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: #050505 !important;
        font-weight: 300;
        font-size: 20px;
        position: absolute;
        top: -10px;
        right: 0px;
  }

  .rd-mobile-menu__claim {
margin: 18px 0;
        padding: 14px;
        border: 1px solid rgba(0, 200, 83, .35);
        border-radius: 12px;
        color: #8fffc0;
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        background: rgba(0, 200, 83, .08);
        letter-spacing: 1.2px;
        text-align: center;
  }

  .rd-mobile-menu__nav {
    display: flex;
    flex-direction: column;
  }

  .rd-mobile-menu__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
  }

  .rd-mobile-menu__nav a span {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .rd-mobile-menu__nav a strong {
    margin-left: auto;
    color: rgba(255,255,255,.48);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    display: none;
  }

  .rd-mobile-menu__nav a::after {
    content: "→";
    color: #00c853;
    font-size: 20px;
  }

  .rd-mobile-benefits {
    display: grid;
    gap: 10px;
    margin: 22px 0;
  }

  .rd-mobile-benefits div {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
  }

  .rd-mobile-benefits strong {
    display: block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
  }

  .rd-mobile-benefits span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
  }

  .rd-mobile-actions {
    display: grid;
    gap: 10px;
  }

  .rd-mobile-actions a {
    padding: 14px;
    text-align: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
  }

  .rd-mobile-help {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(0, 200, 83, .45);
    border-radius: 18px;
    background: rgba(0, 200, 83, .06);
  }

  .rd-mobile-help p {
    margin: 0 0 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .rd-mobile-help a {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, #00c853, #089346);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
  }
}