* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
     -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(to bottom, #b94ef7cf, #f48b67);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    padding-top: env(safe-area-inset-top);
}

header {
    width: 100%;
    /*background: transparent;*/
    /*background: linear-gradient(to bottom, #b94ef7cf, #c176c9);*/
    /*background: linear-gradient(to bottom, #b94ef7cf, #c578cde6);*/
    /*background:linear-gradient(to bottom, #b94ef7cf, #c578cde6), #ffffff;*/
    /*background: linear-gradient(to bottom, #b864e7, #c675cf);*/
    background: linear-gradient(to bottom, #b864e7, #ca62fb);
    text-align: left;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    will-change: box-shadow;
    transition: filter 0.25s ease;
    transform: translateZ(0);
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: env(safe-area-inset-top);
  background-color: #b864e7;
  z-index: 10;
}

.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: env(safe-area-inset-top, 24px); /* fallback de 24px aprox. */
  background: #b864e7; /* mismo color del header */
  z-index: 9999; /* por encima de todo */
}

header.scrolled {
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);*/
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.profile-scrolled {
  /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);*/
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}



/*.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    display: flex;
    margin: 0px 15px 0px 15px;
}*/
.logo {
    color: white;
    display: flex;
    align-items: center;   /* centra verticalmente todos los elementos */
    justify-content: space-between; /* separa el contenido: izq <-> der */
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;         /* alinea logo y texto verticalmente */
  gap: 8px;                    /* espacio entre logo y texto */
}

.logo img {
    height: 40px;                /* tamaño del logo */
    width: auto;
    display: block;
}

.logo p{
    font-weight: 700;
    font-size: 1.4rem;
    /*font-family: system-ui;*/
    /*font-family: 'Fredoka One', cursive;*/
    /*font-family: cursive;
    font-family: 'Pacifico', cursive;
    font-family: 'Brush Script MT', 'Comic Sans MS', cursive;
    font-family: 'Dancing Script', cursive;
    font-family: 'Great Vibes', cursive;
    font-family: 'Caveat', cursive;
    font-family: 'Satisfy', cursive;*/
    font-family: 'Kalam', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo .content-user-login {
    display: flex;
    align-items: center;   /* centra verticalmente su contenido */
    justify-content: center;
    height: 100%;          /* mantiene centrado respecto a .logo */
    width: 30px;
    height: 30px;
    background-color: black;
    border-radius: 100%;
    color: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.logo .content-user-login svg{        /* mantiene centrado respecto a .logo */
    width: 20px;
    height: 20px;
}

.logo .content-user-login img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

/* ----- MENÚ ----- */
nav {
    display: flex;
    /*justify-content: center;
    gap: 40px;*/
    margin-top: 10px;
    margin-bottom: 15px;

    justify-content: space-evenly;
    align-items: center; /* opcional: centra verticalmente */
    gap: 0;               /* espacio manual no necesario si usas space-evenly */
}

nav .content-link{
    min-width: 70px;
    text-align: center;
}

nav .content-link a {
    font-family: system-ui;
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
    
    min-width: 70px;
    text-align: center;
}

nav .content-link a.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* ----- SECCIONES ----- */
main {
    width: 90%;
    max-width: 480px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

section {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.quien-somos{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quien-somos .hero-image {
    position: relative;
    width: 100%;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    /*height: 355px;*/

    aspect-ratio: 1 / 1; 
}

.quien-somos .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center; /* Centra la parte visible de la imagen */
    transform: scale(1);
    vertical-align: middle;
    /*clip-path: inset(0px 0px 150px 0px); */
}

.quien-somos .hero-image .overlay {
    position: absolute;
    inset: 0; 
    background-color: rgba(92, 55, 21, 0.55);
    pointer-events: none;
}

.quien-somos .hero-image .hero-title {
    width: max-content;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

@media (min-width: 420px) {
    .quien-somos .hero-image .hero-title {
        font-size: 2.4rem;
        top: 58%;
    }
}

.quien-somos .description{
    /*padding: 20px;*/
    padding: 25px 20px;
    font-size: 14px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.como-funciona{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.como-funciona .hero-image {
    position: relative;
    width: 100%;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    /*height: 305px;*/
    aspect-ratio: 1 / 1; 
}

.como-funciona .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
    /*clip-path: inset(0px 0px 200px 0px); */
}

.como-funciona .hero-image .overlay {
    position: absolute;
    inset: 0; 
    background-color: rgba(92, 55, 21, 0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.como-funciona .hero-image .hero-title {
    width: min-content;
    position: absolute;
    top:25px;
    left: 10px;
    /*left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);*/
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

@media (min-width: 420px) {
  .como-funciona .hero-image .hero-title {
    font-size: 2.4rem;
    top: 58%;
  }
}

.como-funciona .hero-h3{
    margin: 25px 15px 0px 15px;
    text-align: left;
    max-width: max-content;
}

.como-funciona .hero-content-item{
    margin: 10px 35px 10px 35px;
}

.como-funciona .hero-content-item p{
    text-align: left;
    font-size: 14px;
    font-style: italic;
}

.como-funciona .description{
    /*padding: 20px;*/
    padding: 25px 20px;
    font-size: 14px;
    /*font-style: italic;*/
    text-align: left;
    font-family: inherit;
}

.transparencia-confianza{
    background: white;
    border-radius: 20px;

    border-top-left-radius: 270px;
    border-top-right-radius: 270px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.transparencia-confianza .hero-image {
    position: relative;
    width: 100%;
    /*min-width: 340px;
    max-width: 340px;*/
    margin: auto;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    /*height: 340px;*/
    aspect-ratio: 1 / 1; 
    border-radius: 100%;
}

.transparencia-confianza .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.transparencia-confianza .hero-image .overlay {
    position: absolute;
    inset: 0; 
    background-color: rgba(92, 55, 21, 0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.transparencia-confianza .hero-image .hero-title1 {
    width: min-content;
    position: absolute;
    top: 62%; /* ajustado relativo al círculo */
    /*left: 15%; /* ajustado relativo al círculo */
    left: 5%;
    margin: 0;
    color: #ffffff;
    /*font-size: clamp(1rem, 1.5vw, 1.2rem); /* escala en PC */
    font-size: clamp(1.3rem, 1.5vw, 1.2rem);
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.transparencia-confianza .hero-image .hero-title2 {
    width: min-content;
    position: absolute;
    top: 67%; 
    left: 43%; 
    margin: 0;
    color: #ffffff;
    /*font-size: clamp(1.5rem, 3vw, 2.5rem); /* más grande en PC */
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.transparencia-confianza .hero-image .hero-title3 {
    width: min-content;
    position: absolute;
    top: 77%; 
    /*right: 27%; */
    right: 20%; 
    margin: 0;
    color: #ffffff;
    /*font-size: clamp(1rem, 1.5vw, 1.2rem);*/ 
    font-size: clamp(1.3rem, 1.5vw, 1.2rem);
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
@media (min-width: 420px) {
  .transparencia-confianza .hero-image .hero-title {
    font-size: 2.4rem;
    top: 58%;
  }
}

.transparencia-confianza .hero-h3{
    margin: 35px 15px 0px 15px;
    text-align: left;
    max-width: max-content;
}

.transparencia-confianza .description{
    padding: 25px 20px;
    font-size: 14px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
    /*margin: 0px 25px 35px 25px;*/
}

.historia-impacto{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.historia-impacto .hero-image {
    position: relative;
    width: 100%;
    /*min-width: 340px;
    max-width: 340px;*/
    margin: auto;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    /*height: 340px;*/
    aspect-ratio: 1 / 1; 
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;
    border-bottom-right-radius: 85px;
}

.historia-impacto .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.historia-impacto .hero-image .overlay {
    position: absolute;
    inset: 0; 
    /*background-color: rgba(92, 55, 21, 0.15);*/
    mix-blend-mode: multiply;
    pointer-events: none;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1.7) 0%,
      rgba(0, 0, 0, 0.3) 29%,
      rgba(0, 0, 0, 0) 100%
    );
}

.historia-impacto .hero-image .hero-title1 {
    width: min-content;
    position: absolute;
    top: 62%; /* ajustado relativo al círculo */
    left: 15%; /* ajustado relativo al círculo */
    margin: 0;
    color: #ffffff;
    font-size: clamp(1rem, 1.5vw, 1.2rem); /* escala en PC */
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.historia-impacto .hero-image .hero-title2 {
    width: min-content;
    position: absolute;
    top: 67%; 
    left: 43%; 
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.5rem); /* más grande en PC */
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.historia-impacto .hero-image .hero-title {
    width: max-content;
    position: absolute;
    left: 50%;
    top: 87%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
@media (min-width: 420px) {
  .historia-impacto .hero-image .hero-title {
    font-size: 2.4rem;
    top: 58%;
  }
}

.historia-impacto .hero-h3{
    margin: 35px 15px 0px 15px;
    text-align: left;
    max-width: max-content;
}

.historia-impacto .hero-p1{
    text-align: left;
    font-family: system-ui;
    font-weight: 700;
    margin: 20px 10px 20px 10px;
}

.historia-impacto .hero-p2{
    text-align: left;
    font-family: system-ui;
    font-weight: 700;
    padding: 20px 10px 30px 10px;
}

.historia-impacto .description{
    /*padding: 0 20px;*/
    /*padding: 0 20px 30px 20px;*/
    padding: 25px 20px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
    /*margin: 0px 25px 0px 25px;*/
}

.equipo-aliados{
    background: white;
    border-radius: 20px;
    border-top-left-radius: 55px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.equipo-aliados .hero-image {
    position: relative;
    width: 100%;
    /*min-width: 340px;
    max-width: 340px;*/
    margin: auto;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    /*height: 340px;*/
    aspect-ratio: 1 / 1; 
    border-top-left-radius: 55px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 55px;
}

.equipo-aliados .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.equipo-aliados .hero-image .overlay {
    position: absolute;
    inset: 0; 
    /*background-color: rgba(92, 55, 21, 0.15);*/
    mix-blend-mode: multiply;
    pointer-events: none;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 1.7) 0%,
      rgba(0, 0, 0, 0.3) 29%,
      rgba(0, 0, 0, 0) 100%
    );
}

.equipo-aliados .hero-image .hero-title1 {
    width: min-content;
    position: absolute;
    top: 62%; /* ajustado relativo al círculo */
    left: 15%; /* ajustado relativo al círculo */
    margin: 0;
    color: #ffffff;
    font-size: clamp(1rem, 1.5vw, 1.2rem); /* escala en PC */
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.equipo-aliados .hero-image .hero-title2 {
    width: min-content;
    position: absolute;
    top: 67%; 
    left: 43%; 
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.5rem); /* más grande en PC */
    line-height: 1;
    font-weight: 700;
    text-align: left;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.equipo-aliados .hero-image .hero-title {
    width: max-content;
    position: absolute;
    left: 50%;
    top: 87%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
@media (min-width: 420px) {
  .equipo-aliados .hero-image .hero-title {
    font-size: 2.4rem;
    top: 58%;
  }
}

.equipo-aliados .hero-h3{
    margin: 35px 15px 0px 15px;
    text-align: left;
    max-width: max-content;
}

.equipo-aliados .hero-p1{
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    margin: 20px 10px 20px 10px;
}

.equipo-aliados .hero-p2{
    text-align: left;
    font-family: system-ui;
    font-weight: 700;
    padding: 20px 10px 30px 10px;
}

.equipo-aliados .description{
    /*padding: 0 25px 40px 25px;*/
    padding: 25px 20px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.unete-cambio{
    background: white;
    border-radius: 20px;
    border-radius:100%;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.unete-cambio .hero-image {
    position: relative;
    width: 100%;
    /*min-width: 340px;
    max-width: 340px;*/
    margin: auto;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    /*height: 340px;*/
    aspect-ratio: 1 / 1; 
    border-radius: 100%;
}

.unete-cambio .hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.unete-cambio .hero-image .overlay {
    position: absolute;
    inset: 0; 
    background-color: rgba(92, 55, 21, 0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
}


.unete-cambio .hero-image .hero-title {
    width: max-content;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    padding: 0 12px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
@media (min-width: 420px) {
  .unete-cambio .hero-image .hero-title {
    font-size: 2.4rem;
    top: 58%;
  }
}

.como-unir{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.como-unir .hero-p1{
    /*text-align: center;*/
    text-align: left;
    font-family: system-ui;
    font-weight: 700;
    /*font-size: 14px;*/
    padding: 30px 15px 35px 15px;
}

.como-unir .hero-p2{
    text-align: left;
    font-family: system-ui;
    font-weight: 700;
    padding: 20px 10px 30px 10px;
}

.como-unir .description{
    /*padding: 10px 25px 50px 25px;*/
    padding: 25px 20px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.btn-grad {
  background: linear-gradient(to right, #b94ef7, #e61e91, #fb3f65);
  /* morado → rojo → rosado */
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-top: 10px;
  margin-bottom: 35px;
  width: -webkit-fill-available;
  margin-right: 25px;
  margin-left: 25px;
}

.fs-1{
    font-size: 1.2rem !important;
}

.btn-grad:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.primera-vez{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /*background: linear-gradient(white, white) padding-box,linear-gradient(to right, #8a2be2 50%, #ff4f81 50%) border-box;
    border: 1px solid transparent;*/
}


.primera-vez .hero-p1{
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    font-size: 18px;
    padding: 70px 15px 35px 15px;
}

.primera-vez .description{
    padding: 10px 25px 50px 25px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}


.primera-vez .description span{
    /*color:#d22a90;*/
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}


.primera-vez .register{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.8rem;
    text-align: right;
    margin-right: 15px;
    padding: 20px 10px 20px 10px;
}

.primera-vez .register a{
    margin-right: 10px;
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
    text-decoration: none;
}

.primera-vez .mascota{
    position: absolute;
    width: 60px;
    margin-left: 0px;
    margin-bottom: 10px;
    left: 10px;
    top: -20px;
}

.datos-contacto{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background:
    linear-gradient(white, white) padding-box,
    linear-gradient(
      to right,
      #8a2be2 0%,      /* morado */
      #a64ee8 45%,     /* tono intermedio del morado */
      #ff6ab0 55%,     /* tono intermedio rosado */
      #ff4f81 100%     /* rosado */
    ) border-box;
}

.datos-contacto .content-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.datos-contacto .content-header span{
    margin-right: 15px;
}

.datos-contacto .content-header span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
    vertical-align: middle; 
}


.datos-contacto .content-header .hero-p1{
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    font-size: 18px;
    padding: 30px 15px 30px 15px;
}

.datos-contacto .description{
    padding: 10px 25px 50px 25px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.datos-contacto .description span{
    /*color:#d22a90;*/
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}

.content-input-box{
    padding-bottom: 35px;
}


.input-box {
    margin: 10px 20px;
}

.input-box-datos-contacto{
    margin: 10px 5px 10px 20px;
    width: -webkit-fill-available;
}

.input-bg-lightgrey{
    background: #d3d3d33b;
}

.text-bg-darkgrey{
    color: darkgray;
}

.row-input-datos-contacto{
    display: flex;
    margin: 0;
    width: -webkit-fill-available;
    justify-content: space-between;
    align-items: center;
}

.input-datos-contacto{
}

.row-input-datos-contacto span{
    margin-right: 15px;
}

.row-input-datos-contacto span svg{
    height: 15px;
    width: 15px;
    vertical-align: middle;
}

.datos-contacto .content-footer{
    display: flex;
    align-items: center;
}

.datos-contacto .content-footer span{
    display: flex;
    margin-right: 15px;
}

.datos-contacto .content-footer span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
}


.datos-contacto .content-footer .hero-p2{
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    /*color: #d405be;*/
    padding: 30px 15px 30px 15px;
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}


.institucion-causa{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background:
    linear-gradient(white, white) padding-box,
    linear-gradient(
      to right,
      #8a2be2 0%,      /* morado */
      #a64ee8 45%,     /* tono intermedio del morado */
      #ff6ab0 55%,     /* tono intermedio rosado */
      #ff4f81 100%     /* rosado */
    ) border-box;
}

.institucion-causa .content-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.institucion-causa .content-header span{
    margin-right: 15px;
}

.institucion-causa .content-header span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
    vertical-align: middle; 
}

.institucion-causa .content-header .title-with-icon{
    display: flex;
    align-items: center;
    align-content: center;

}

.institucion-causa .content-header  .title-with-icon span{
    display: none;
}

.institucion-causa .content-header  .title-with-icon span svg{
    height: 16px;
    width: 16px;
    color:#00cc66 !important;
    vertical-align: middle; 
}

.institucion-causa .content-header .title-with-icon .hero-p1{
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    font-size: 18px;
    padding: 30px 15px 30px 15px;
}

.institucion-causa .description{
    padding: 10px 25px 50px 25px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.institucion-causa .description span{
    /*color:#d405be;*/
    /*color:#d22a90;*/
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}

.input-box-institucion-causa{
    margin: 10px 5px 10px 20px;
    width: -webkit-fill-available;
}

.row-input-institucion-causa{
    display: flex;
    margin: 0;
    width: -webkit-fill-available;
    justify-content: space-between;
    align-items: center;
}

.input-institucion-causa{
}

.row-input-institucion-causa span{
    margin-right: 15px;
}

.row-input-institucion-causa span svg{
    height: 15px;
    width: 15px;
    vertical-align: middle;
}

.institucion-causa .content-footer{
    display: flex;
    align-items: center;
}

.institucion-causa .content-footer span{
    display: flex;
    margin-right: 15px;
}

.institucion-causa .content-footer span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
}


.institucion-causa .content-footer .hero-p2{
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    /*color: #d405be;*/
    padding: 30px 15px 30px 15px;
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}

.enlace{
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background:
    linear-gradient(white, white) padding-box,
    linear-gradient(
      to right,
      #8a2be2 0%,      /* morado */
      #a64ee8 45%,     /* tono intermedio del morado */
      #ff6ab0 55%,     /* tono intermedio rosado */
      #ff4f81 100%     /* rosado */
    ) border-box;
}

.enlace .content-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.enlace .content-header span{
    margin-right: 15px;
}

.enlace .content-header span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
    vertical-align: middle; 
}


.enlace .content-header .hero-p1{
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    font-size: 18px;
    padding: 30px 15px 30px 15px;
}

.enlace .description{
    padding: 10px 25px 50px 25px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.enlace .description span{
    /*color:#d22a90;*/
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}

.input-box-enlace{
    margin: 10px 5px 10px 20px;
    width: -webkit-fill-available;
}

.row-input-enlace{
    display: flex;
    margin: 0;
    width: -webkit-fill-available;
    justify-content: space-between;
    align-items: center;
}

.input-enlace{
    user-select: text;
    pointer-events: auto;
}

.row-input-enlace span{
    margin-right: 15px;
}

.row-input-enlace span svg{
    height: 15px;
    width: 15px;
    vertical-align: middle;
}

.enlace .connection-label {
    margin-left: 15px;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
    margin-top: -20px;
    font-style: italic;
}

.enlace .button-container {
    margin-top: 10px;
    margin-left: 15px;
    display: flex;
    gap: 10px;
}

.enlace   .btn-ml {
    /*background-color: #ffe600;
    color: black;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;*/
    border: solid 1px lightgray;
    padding: 8px 12px;
    cursor: pointer;
    width: 70px;
    height: 28px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.enlace .btn-ml img{
    height: 24px;
    width: auto;
    scale: 1/2;
    transform: scale(3.1);
    transform-origin: center center;
}

.enlace  .btn-shein {
    /*background-color: white;
    color: black;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;*/
    background: white;
    border: solid 1px lightgray;
    padding: 8px 12px;
    cursor: pointer;
    width: 70px;
    height: 28px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.enlace  .btn-shein img{
    height: 24px;
    width: auto;
    scale: 1/2;
    transform: scale(1.2);
    transform-origin: center center;
}


.enlace .content-footer{
    display: flex;
    align-items: center;
}

.enlace .content-footer span{
    display: flex;
    margin-right: 15px;
}

.enlace .content-footer span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
}


.enlace .content-footer .hero-p2{
    text-align: left;
    font-family: inherit;
    font-size: 13px;
    /*color: #d405be;*/
    padding: 30px 15px 30px 15px;
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}
input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-align: center;
    font-size: 1em;
    outline: none;
    transition: border 0.3s ease;
}


/*select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 25px;
    text-align: center;
    font-size: 1em;
    outline: none;
    transition: border 0.3s ease;
}*/
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  padding: 12px 40px 12px 12px; /* espacio a la derecha para la flecha */
  border: none;
  border-radius: 25px;
  text-align: center;
  font-size: 1em;
  outline: none;
  appearance: none; /* elimina la flecha por defecto */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #f5f5f5;
}

/* Flecha personalizada */
.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 15px; /* Ajusta esta distancia para mover la flecha */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.8em;
}

input:focus {
    border-color: #b94ef7;
}

.check-valid {
    color: #00cc66;
}

.check-invalid {
  color: #ff4444;
}

/* ----- SECCIÓN ÚNETE ----- */
.join-section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.join-section p {
    font-size: 0.95em;
    margin-bottom: 15px;
}

.btn {
    background: #b94ef7;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #9a3be4;
}


/**Modal de agradecimiento*/
.overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal {
    min-height: 80%;
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    width: 95%;
    /*width: 360px;*/
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .modal {
        width: 360px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal .close-modal-arrow{
    position: absolute;
    left: 20px;
}

.modal img {
    /*width: 80px;*/
    width: 150px;
    margin-bottom: 20px;
}

.modal h1 {
    color: #b03dd1;
    font-size: 22px;
    margin-bottom: 20px;
}

.modal p {
    font-size: 14px;
    margin: 10px 0;
}

.modal p .whatsapp {
    color: #25d366;
    font-weight: bold;
}

.modal p .enlaces {
    font-style: italic;
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; /* Para compatibilidad extra */
    color: transparent;
}

.wrapper-time-restand {
    margin-top: 20px;
    border-radius: 15px;
    padding: 2px; /* grosor del borde */
    background: linear-gradient(to right, #f48b80, #9f54e1);
    display: inline-block;
    width: -webkit-fill-available;
}

.time-restand {
    background-color: white;
    border-radius: 13px; /* un poco menos para que el gradiente se vea */
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: black;
    text-align: center;
}

.time-restand p{
    font-style: italic;
}

.time-restand .resaltado {
    color: #e94f4f;
    font-weight: 600;
}

.modal-hidden {
  display: none;
}
/*End modal de agradecimiento */

/*archivo FAQ*/
.card-faq-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 15px 20px;
}

.card-faq-topbar span svg{
    height: 28px;
    width: 28px;
    width: auto;
    vertical-align: middle;
}

.card-faq-topbar button {
    background: black;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card-faq-topbar button img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    margin-top: -2px;
}

/* Título principal */
.card-faq-title-h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
}

/* Subtítulo */
.card-faq-title-h2 {
    color: white;
    text-align: center;
    font-size: 24px;
    margin: 40px 0 20px;
}

/* Tarjeta de pregunta-respuesta */
.card-faq {
    background: white;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-faq strong {
    display: block;
    margin-bottom: 15px;
    font-family: system-ui;
    font-weight: 700;
    font-size: 18px;
}

.card-faq p {
    font-size: 15px;
    /*line-height: 1.4;*/
    margin: 0;
    font-family: inherit;
    color: #333;
}

/* Íconos (si deseas agregar) */
.card-faq-icono {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}

@media (max-width: 500px) {
  h1, h2 {
      font-size: 22px;
  }
}
/*End archivo FAQ*/


/*Start Profile*/

.header-profile {
    width: 100%;
    background: transparent;
    /* background: linear-gradient(to bottom, #b94ef7cf, #c176c9); */
    /* background: linear-gradient(to bottom, #b94ef7cf, #c578cde6); */
    /* background: linear-gradient(to bottom, #b94ef7cf, #c578cde6), #ffffff; */
    /* background: linear-gradient(to bottom, #b864e7, #c675cf); */
    /*background: linear-gradient(to bottom, #b864e7, #ca62fb);*/
    background: linear-gradient(to bottom, #b864e7, #ca62fb);
    text-align: left;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    will-change: box-shadow;
    transition: filter 0.25s ease;
    transform: translateZ(0);
}

.topbar-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Flecha atrás y enlace superior */
.topbar-profile svg {
  text-decoration: none;
  color: #fff;
}

.topbar-profile a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}


.container-profile {
    /*padding: 35px 20px;*/
    padding: 0px 20px 35px 20px;
    /* height: 100vh; */
    /*height: calc(100vh - 88px);**/
    background: transparent;
    width: 350px;
    text-align: center;
    /*color: #fff;*/
    position: relative;
}

.back-arrow {
  position: absolute;
  top: 30px;
  left: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.profile-image {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 20px auto 20px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /*border: 4px solid white;*/
  background: linear-gradient(to bottom, #BC4EBA, #EB4042);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); /* sombra */
}



.profile-no-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /*border: 4px solid white;*/
  background: linear-gradient(to bottom, #BC4EBA, #EB4042);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); /* sombra */
  padding: 18px;
}

.edit-img-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  height: 30px;
  width: 30px;
  color: black;
  align-items: center;
  display: flex;
  justify-content: center;
}

.edit-img-icon svg{
    height: 16px;
    width: 16px;
    vertical-align: middle;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {    
  font-size: 13px;
  font-style: italic;
  color: #ffe0ff;
  margin-left: 10px;
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  color: #333;
  outline: none;
}
.password-group {
  position: relative;
  margin-bottom: 20px;
}

.password-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ffffffcc; /* Color claro como en la imagen */
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password {
  position: absolute;
  right: 15px;
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
  cursor: pointer;
  font-size: 16px;
  opacity: 0.7;
  z-index: 2;
}

.toggle-password svg,
.toggle-password i {
  height: 16px;
  width: 16px;
  color: #000000bd;
  vertical-align: middle;
}

.form-btn {
  width: 100%;
  background: #fff;
  border: none;
  font-weight: 700;
  font-size: 15px;
  /*border-radius: 25px;*/
  border-radius: 15px;
  padding: 12px 0;
  cursor: pointer;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.3s ease;
  margin-top: 35px;
}

.form-btn span{
  background: linear-gradient(to right, #b94ef7, #ff4f81);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.form-btn:hover {
  transform: scale(1.05);
  background: #ffe3e0;
}

.logout-button {
  background: white;
  color: #c80000;
  padding: 12px;
  margin-top: 20px;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.logout-button:hover {
  background: #f8f8f8;
}

.delete-account {
  text-align: left;
  /*margin-top: 60px;*/
  font-size: 14px;
  color: #fdd;
  text-decoration: none;
  cursor: pointer;
  font-style: italic;
}


.close-account {
  text-align: left;
  /*margin-top: 60px;*/
  font-size: 14px;
  color: #fdd;
  text-decoration: none;
  cursor: pointer;
  font-style: italic;
}



.agregar-cuenta{
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /*border: 1px solid transparent;*/
    background:
    linear-gradient(white, white) padding-box,
    linear-gradient(
      to right,
      #8a2be2 0%,      /* morado */
      #a64ee8 45%,     /* tono intermedio del morado */
      #ff6ab0 55%,     /* tono intermedio rosado */
      #ff4f81 100%     /* rosado */
    ) border-box;
}

.agregar-cuenta .content-header{
    display: flex;
    align-items: center;
    justify-content: center;
}

.agregar-cuenta .content-header span{
    margin-right: 15px;
}

.agregar-cuenta .content-header span svg{
    height: 16px;
    width: 16px;
    color:#ff10f9;
    vertical-align: middle; 
}


.agregar-cuenta .content-header .hero-p1{
    color: #d00000;
    text-align: center;
    font-family: system-ui;
    font-weight: 700;
    font-size: 18px;
    padding: 30px 15px 30px 15px;
}

.agregar-cuenta .description{
    padding: 10px 25px 50px 25px;
    font-size: 15px;
    font-style: italic;
    text-align: left;
    font-family: inherit;
}

.agregar-cuenta .description span{
    background: linear-gradient(to right, #b94ef7, #ff4f81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.action-buttons-account{
    display: flex;
    margin-top:70px;
    justify-content: space-between;
}
/*End profile*/


/* Márgenes superiores*/
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-35 { margin-top: 35px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-45 { margin-top: 45px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-55 { margin-top: 55px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-65 { margin-top: 65px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-75 { margin-top: 75px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-85 { margin-top: 85px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-95 { margin-top: 95px !important; }
.mt-100 { margin-top: 100px !important; }

/* Márgenes inferiores*/
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-45 { margin-bottom: 45px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-55 { margin-bottom: 55px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-65 { margin-bottom: 65px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-75 { margin-bottom: 75px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-85 { margin-bottom: 85px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-95 { margin-bottom: 95px !important; }
.mb-100 { margin-bottom: 100px !important; }


/* Padding Top */
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-25 { padding-top: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-35 { padding-top: 35px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-45 { padding-top: 45px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-55 { padding-top: 55px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-65 { padding-top: 65px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-75 { padding-top: 75px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-85 { padding-top: 85px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-95 { padding-top: 95px !important; }
.pt-100 { padding-top: 100px !important; }

/* Padding Bottom */
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-25 { padding-bottom: 25px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-35 { padding-bottom: 35px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-45 { padding-bottom: 45px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-55 { padding-bottom: 55px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-65 { padding-bottom: 65px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-75 { padding-bottom: 75px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-85 { padding-bottom: 85px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-95 { padding-bottom: 95px !important; }
.pb-100 { padding-bottom: 100px !important; }



.chevron-left{
  display: inline-block;
  background: linear-gradient(90deg, #b94ef7, #ff4f81);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-left-icon lucide-circle-chevron-left"><circle cx="12" cy="12" r="10"/><path d="m14 16-4-4 4-4"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-left-icon lucide-circle-chevron-left"><circle cx="12" cy="12" r="10"/><path d="m14 16-4-4 4-4"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 16px;
  width: 16px;
}

.chevron-right{
  display: inline-block;
  background: linear-gradient(90deg, #b94ef7, #ff4f81);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-right-icon lucide-circle-chevron-right"><circle cx="12" cy="12" r="10"/><path d="m10 8 4 4-4 4"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-right-icon lucide-circle-chevron-right"><circle cx="12" cy="12" r="10"/><path d="m10 8 4 4-4 4"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 16px;
  width: 16px;
}

.chevron-up{
  display: inline-block;
  background: linear-gradient(90deg, #b94ef7, #ff4f81);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-up-icon lucide-circle-chevron-up"><circle cx="12" cy="12" r="10"/><path d="m8 14 4-4 4 4"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-up-icon lucide-circle-chevron-up"><circle cx="12" cy="12" r="10"/><path d="m8 14 4-4 4 4"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 16px;
  width: 16px;
}

.chevron-down{
  display: inline-block;
  background: linear-gradient(90deg, #b94ef7, #ff4f81);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-down-icon lucide-circle-chevron-down"><circle cx="12" cy="12" r="10"/><path d="m16 10-4 4-4-4"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-chevron-down-icon lucide-circle-chevron-down"><circle cx="12" cy="12" r="10"/><path d="m16 10-4 4-4-4"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 16px;
  width: 16px;
}


.icon-user{
  display: inline-block;
  background: linear-gradient(90deg, #b94ef7, #ff4f81);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-icon lucide-user"><path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>') no-repeat center;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-user-icon lucide-user"><path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>') no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  height: 16px;
  width: 16px;
}
