:root{
    /* --main-bg-color: #010004; */
    --main-bg-color: #dbdbdb;
    --purple-bg-color: #3a1e5a;
    --blue-bg-color: #13134b;
    --text-color-dark: #1a1a1a;
    --text-color-grey: #5C6077;
    --font-family-montserrat: "Montserrat", sans-serif;
    --font-family-inter: "Inter", sans-serif;
    --font-family-roboto: "Roboto", sans-serif;
    --font-family-dot: "Unbounded", sans-serif;
    --text-secondary-color: #E6007A;
    --font-size-h1: 56px;
    --font-size-h2: 40px;
    --font-size-h3: 28px;
    --font-size-body: 18px;
    --font-size-small: 14px;
    --font-size-nav: 20px;
    --font-size-cta: 18px;
    --space-left: 3rem;
    --space-right: 3rem;

}


.header {
    margin-left: var(--space-left );
    font-family: var(--font-family-montserrat);
    font-weight: 500;
    position: fixed;
    top: 10px;
    display: block;
    z-index: 10000;
    width: 50%;
    height: 50px;
    min-width: 600px;
    border-radius: 3rem;
    background: rgba(92, 92, 92, 0.486);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    -webkit-box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.06);

    /* ✨ The important part */
    transition: 0.5s ease-in-out;
    
}

.header ul{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    font-size: var(--font-size-nav);
}

.header ul li:hover{
    color: var(--text-secondary-color);

}

.header .headerLogo{
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-right: 10px;
    
}
.header .busNameRowLink{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}
.hamburger{
  display: none;
  z-index: 100000;
}


@media (max-width: 1280px){
  .header {
    min-width: 400px;
    width: 90%;
  }
}

@media (max-width: 768px){
  .header{
    margin: 0px;
    padding: 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: 0px;
    border-radius: 0px;
    transform: translate(-100%);
  }
  .headerWrapper{

    position: fixed;
    z-index: 10000;
  }
.headerWrapper:has(.checkbox:checked){
  overflow: hidden;
  
}  
.headerWrapper:has(.checkbox:checked) .header {
    transform: translate(0%);
}

.header ul{
  gap: 20px;
  text-transform: uppercase;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    font-size: var(--font-size-nav);
}
.header .headerSeparator{
  display: none;
}


  .hamburger {
    background: rgba(92, 92, 92, 0.486);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    -webkit-box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    box-shadow: 0 25px 23px rgba(0, 0, 0, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    border-radius: .4rem;
    margin-left: 20px;
    
    display: block;
    height: 50px;
    width: 50px;
    transform: 0.2s;
    position: relative;
  }

  .hamburger .checkbox {
    position: absolute;
    opacity: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
  }
  .line {
    transition: 0.5s;
    stroke-width: 6px;
    stroke: black;
  }
  .lineTop {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 25;
  }
  .lineBottom {
    stroke-dasharray: 40 40;
    stroke-dashoffset: 60;
  }
  .lineMid {
    stroke-dasharray: 40 40;
  }
  .hamburger .checkbox:checked + svg .line {
    stroke: crimson;
  }
  .hamburger .checkbox:checked + svg .lineTop {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(45deg) translate(-7px, -5px);
  }
  .hamburger .checkbox:checked + svg .lineMid {
    stroke-dashoffset: 40;
  }
  .hamburger .checkbox:checked + svg .lineBottom {
    stroke-dashoffset: 0;
    transform-origin: left;
    transform: rotateZ(-45deg) translate(-5px, 5px);
  }
}

.boton-elegante {
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
  transform: scale(4);
}

.boton-elegante:hover {
  border-color: #666666;
  background: #292929;
}

.buttonPrimary {
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  background-color: var(--text-secondary-color);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.buttonPrimary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.buttonPrimary:hover::after {
  transform: scale(4);
}

.buttonPrimary:hover {
  border-color: #666666;
  background-color: #ff00f2;
}

.titleComponent{
    font-size: var(--font-size-h2);
    font-family: var(--font-family-dot);
    color:var(--text-color-dark);
    font-weight: 500;
}


.card-component{
  position: relative;
  display: flex;
  flex-direction: column;
  width: 25%;
  min-width: 150px;
  /* height: clamp(150px, 20vh, 400px); */
  
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 0.5rem;
  padding: 15px;
  cursor: pointer;
}

@media (max-width: 800px){
  .card-component{
    width: 90%;
    
  }
}


.card-component:hover .card-header-component{
  color: var(--text-secondary-color);
}
.card-component:hover .card-component-arrow{
  right: -3%;
}

.card-header-component{
  position: relative;
  right: 0%;
  transition: 0.2s;
  font-size: var(--font-size-h3);
  font-family: var(--font-family-dot);
  color: var(--text-color-dark);
}
@media (max-width: 1340px) {
  .card-header-component{
    font-size: var(--font-size-body);
  }
}

@media (max-width: 700px) {
  .phoneTextHeader{
    font-size: var(--font-size-body);
    text-wrap: wrap !important;
  }
  .phoneTextDescription{
    font-size: var(--font-size-small) !important;
    text-wrap: wrap !important;
    width: 90% !important;
    margin-right: 0px !important;
  }
}

.card-description-component{
  margin-right: 50px;
  
  font-size: var(--font-size-body);
  font-family: var(--font-family-roboto);
  color: var(--text-color-grey);
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-component-arrow{
  transition: .2s;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-50%, -50%);
  color: #000;
}

.reset-a, .reset-a:hover, .reset-a:visited, .reset-a:focus, .reset-a:active  {
  text-decoration: none;
  color: inherit;
  outline: 0;
  cursor: auto;
}

.reason-card-component{
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-radius: 0.5rem;
  padding: 15px;
  cursor: pointer;
}
.wavyOverline {
    position: relative;
    text-decoration-line: overline;
    text-decoration-color: var(--text-secondary-color);
    text-decoration-style: wavy;
    text-decoration-thickness: 2px;
    text-underline-offset: 1px;
}
.wavyUnderline {
    position: relative;
    text-decoration-line: underline;
    text-decoration-color: var(--text-secondary-color);
    text-decoration-style: wavy;
    text-decoration-thickness: 2px;
    text-underline-offset: 1px;
}



.card-info-partial {
  max-width: 500px;
  border-width: 1px;
  border-color: rgba(219, 234, 254, 1);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 1);
  padding: 1rem;
}

.card-info-partial .headerCard {
  display: flex;
  align-items: center;
  grid-gap: 1rem;
  gap: 1rem;
}

.card-info-partial .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(96, 165, 250, 1);
  padding: 0.5rem;
  color: rgba(255, 255, 255, 1);
}

 .card-info-partial .icon svg {
  height: 1rem;
  width: 1rem;
}


.card-info-partial .alert {
  font-weight: 600;
  color: rgba(107, 114, 128, 1);
}

.card-info-partial  .message {
  margin-top: 1rem;
  color: rgba(107, 114, 128, 1);
}

.card-info-partial .actions {
  margin-top: 1.5rem;
}

.card-info-partial  .actions a {
  text-decoration: none;
}

.card-info-partial .mark-as-read, .read {
  display: inline-block;
  border-radius: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.card-info-partial .read {
  background-color: rgba(59, 130, 246, 1);
  color: rgba(255, 255, 255, 1);
}

.card-info-partial .mark-as-read {
  margin-top: 0.5rem;
  background-color: rgba(249, 250, 251, 1);
  color: rgba(107, 114, 128, 1);
  transition: all .15s ease;
}

.card-info-partial .mark-as-read:hover {
  background-color: rgb(230, 231, 233);
}
