@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap');

*{
box-sizing: border-box;
margin: 0;
padding: 0;
border: 0;
}

body {
    background-color: #245194;
}

/*ENCABEZADO*/
header {
    padding: 20px 20px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ppal-btn {
    margin-left: auto;
}

.ms-encabezado {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-ms {
    width: 170px;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.logo-texto {
    font-family: 'Audiowide';
    font-size: 16px;
    font-weight: bolder;
    text-transform: uppercase;
    color: #ffffff;
}

/*MENU DESPLEGABLE*/
#menu-desplegable {
    display: none;
}

.hamburguesa-btn {
    width: 44px;
    height: auto;
}

.encabezado-der {
    /*OCULTA EL MENÚ*/
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background-color: #FFF1FF;
    border-radius: 30px 0 0 30px;
    z-index: 200;
    padding: 24px 20px 40px 20px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /*TRANSICIÓN PARA QUE APAREZCA*/
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.3s ease;
}

#menu-desplegable:checked ~ .encabezado-der {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.cruz-btn {
    align-self: flex-end;
    width: 44px;
    height: auto;
}

/*USUARIO Y AVATAR*/
.perfil-usuario-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.usuario-avatar {
    width: 80px;
    height: auto;
}

.usuario-nombre {
    font-size: 20px;
    color: #49769F;
    font-weight: bold;
}

.menu-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.menu-footer-contenedor {
    margin-top: auto; /* 🚨 RESORTE MÁGICO: Empuja esta sección contra el piso del celular */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding-bottom: 10px;
}

.cerrar-sesion-btn {
    font-family: 'Inter', sans-serif;
    color: #4371A3;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.logo-ms-menu {
    width: 20px;              
    height: auto;
    object-fit: contain;
}

.menu-footer p {
    font-family: 'Audiowide', sans-serif; 
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase; 
    color: #49769F;           
}

/*LINKS A PAGINAS*/

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 225px;
    list-style-type: none;
}

.menu-btn {
    display: block;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 3px 0px #49769F;
    color: #49769F;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

/*PANEL EMERGENCIA*/
#panel-emergencia {
    display: none;
}

.carita-flotante {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: auto;
}

.cuadrado-flotante {
    /*OCULTA EL MENÚ*/
    position: fixed;
    bottom: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 300px;
    background-color: #FFF1FF;
    border-radius: 30px 0 0 30px;
    padding: 30px 30px;
  
    display: flex;
    flex-direction: column;
    z-index: 150;

    /*TRANSICIÓN PARA QUE APAREZCA*/
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%); 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

#panel-emergencia:checked ~ .cuadrado-flotante {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.cuadrado-flotante h3 {
    color: #49769F;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 15px 0;
    text-align: left;
}

.cuadrado-flotante p {
    color: #49769F;
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
}

.contenedor-inferior {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.recursos-btn {
    flex: 1;
    height: 44px;
    background-color: #ffffff;
    box-shadow: 0 3px 0px #49769F;
    color: #49769F;
    border-radius: 22px;
    font-size: 20px;
    font-weight: bold;
}

.cuadrado-flotante .cruz-panel {
    position: static;
    width: 44px;
    height: 44px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/*PANTALLA DE INICIO*/
.inicio-modoseguro {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden; 
    position: relative;

    font-family: "Inter", sans-serif;
    background-color: #49769F;
    color: #ffffff;
}

.inicio-modoseguro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imagenes/msfondo.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;              
    z-index: -1;
}

body {
    font-family: "Inter", sans-serif;
}

.pantalla-inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: calc(100vh - 104px); 
    overflow: hidden;
    overflow-y: auto;
    overflow-x: hidden;
}

.contenido-ppal {
    margin-top: 20px;
    margin-bottom: 30px;
}

.titulo-ppal {
    font-family: 'Audiowide', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
}

.subtitulo {
    font-family: 'Audiowide', sans-serif;
    font-size: 16px;
    font-weight: 100;
    opacity: 0.75;
    margin-top: 6px;
}

.estadisticas-imagen {
    width: 80%;
    margin-bottom: 25px;
}

.info-estadisticas {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.acoso-lista {
    list-style: none;
    display: flex;
    gap: 15px;
}

.acoso-lista li {
    font-size: 12px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.circulo {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.escolar { background-color: #DBB5EE; }
.laboral { background-color: #B57EDC; }
.callejero { background-color: #7E4CA5; }
.ciberacoso { background-color: #4C1C72; }

.acoso-lista li strong {
    font-size: 16px;
    font-weight: bold;
    opacity: 50%;
}

/*BOTONES*/
.ms-botones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 260px;
    margin-bottom: 18px;
}

.ingresar-btn {
    width: 100%;
    height: 48px;
    background-color: #FFE3D8;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    border-bottom: 4px solid #D6BCB2; 
    padding: 0 20px;
}

.ingresar-btn a {
    color: #094174;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
}

.btn-icono {
    width: 22px;
    height: auto;
    object-fit: contain;
    margin-right: 15px;
    filter: brightness(0) saturate(100%) 
    invert(19%) sepia(50%) saturate(2227%) hue-rotate(201deg) brightness(92%) contrast(101%);
}

.ingresar-btn span {
    color: #094174;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
}

/*ULTIMOS RECURSOS*/
.tarjeta-recursos {
    width: 100%;
    max-width: 350px;
    background-color: #DBB5EE;
    border-radius: 25px;
    padding: 20px 22px;
    text-align: left;
    margin-bottom: 80px;
    margin-top: 20px;
}

.recursos-titulo {
    font-family: 'Inter', sans-serif;
    color: #000000;
    opacity: 0.5;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.recurso-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.recurso-item:last-of-type {
    border-bottom: none;
}

.recurso-icono {
    width: 20px;
    height: auto;
    object-fit: contain;
    margin-right: 14px;
    filter: brightness(0) saturate(100%);
    opacity: 0.5;
}

.recurso-texto {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    opacity: 0.5;
}

.recurso-flecha {
    margin-left: auto;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    opacity: 0.5;
}

@media (width >= 768px) and (width < 1024px) {
    
    .inicio-modoseguro {
        height: auto;
        max-height: none;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    main {
        height: auto;
        overflow: visible;
    }

    .pantalla-inicio {
        position: relative;
        top: 0;
        margin-top: 10px;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: start;
        padding: 20px 24px 80px 24px;
        gap: 24px 0px;
        
        height: auto;           
        min-height: calc(100vh - 90px); 
        overflow: visible;
        
        background-size: cover;        
        background-position: center top; 
        background-repeat: repeat-y;
        background-attachment: scroll;  
    }
    
    .contenido-ppal {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
        margin: 10px 0;
    }

    .titulo-ppal {
        font-size: 50px;
    }

    .subtitulo {
        font-size: 20px;
    }

    .info-estadisticas {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        justify-self: center;
    }

    .estadisticas-imagen {
        max-width: 400px;
        width: 100%;
        margin-bottom: 16px;
    }

    .acoso-lista {
        max-width: 400px;
        gap: 12px 24px;
        display: flex;
        justify-content: center;
    }

    .acoso-lista li {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .acoso-lista p {
        font-size: 18px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .ms-botones {
        grid-column: 1; 
        grid-row: 3;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 340px;
        margin: 0 0 10px 0;
        justify-self: center;
    }

    .ingresar-btn {
        width: 100%;
        max-width: 100%;
        height: 48px;
    }

    .ingresar-btn span {
        font-size: 20px;
    }

    .tarjeta-recursos {
        grid-column: 1; 
        grid-row: 4;
        width: 100%;
        max-width: 340px;
        margin: 0;
        justify-self: center;
    }
}

@media (width >= 1024px) {

    header {
        padding: 0 20px;
        height: 80px;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .hamburguesa-btn {
        display: none;
    }
    
    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 100%;
        position: static;
    }

    .encabezado-der {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        background-color: transparent;
        padding: 0 40px 0 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .menu-links {
        flex-direction: row;
        gap: 15px;
        width: auto;
        order: 1;
    }

    .menu-btn {
        width: auto;
        padding: 8px 18px;
        font-size: 16px;
        border-radius: 15px;
    }

    .cruz-btn, 
    .menu-footer-contenedor {
        display: none;
    }

    #menu-desplegable ~ .encabezado-der .menu-footer,
    .menu-footer {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 40px;
        margin: 0;
        gap: 15px;
        z-index: 999;
        align-items: center;
    }

    .menu-footer p {
        color: #ffffff; 
        opacity: 1;
        margin: 0;
    }

    .logo-ms-menu {
        filter: brightness(0) invert(1); 
        opacity: 1;
        display: block;
    }

    .perfil-usuario-menu {
        display: flex; 
        flex-direction: row-reverse;
        align-items: center;
        gap: 12px;
        margin: 0;
        order: 2; 
    }

    .usuario-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .usuario-nombre {
        font-size: 16px;
        color: #ffffff;
        opacity: 80%;
        margin: 0;
    }

    .pantalla-inicio {
        position: absolute;
        top: 90px;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0;
        overflow: hidden;
        max-width: 960px;
        margin: 0 auto;
        display: block;
    }

    .contenido-ppal {
        position: absolute;
        top: 15%;
        right: 0;
        left: auto;
        width: 460px;
        text-align: left;
        margin: 0;
    }

    .titulo-ppal {
        font-size: 40px;
    }

    .subtitulo {
        font-size: 20px;
    }

    .ms-botones {
        position: absolute;
        top: calc(15% + 150px);
        right: 0;
        left: auto;
        margin: 0;
        width: 450px;
        max-width: 450px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    
    .ingresar-btn {
        width: auto;
        min-width: 165px;
        max-width: 240px;
        flex-shrink: 0;
    }

    .ingresar-btn span {
        font-size: 20px;
        white-space: nowrap;
    }

    .tarjeta-recursos {
        position: absolute;
        top: calc(15% + 230px);
        right: 0;
        left: auto;
        width: 450px;
        margin: 0;
        max-width: 100%;
    }

    .recurso-titulo {
        font-size: 20px;
    }

    .recurso-texto {
        font-size: 16px;
    }

    .info-estadisticas {
        position: absolute;
        top: calc(15% - 10px);
        left: 0;
        right: auto;
        width: 100%;
        max-width: 460px;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .estadisticas-imagen {
        max-width: 380px;
        width: 100%;
        margin-bottom: 20px;
    }

    .acoso-lista {
        max-width: 420px;
        gap: 15px 30px;
    }
}

/*PANTALLA DE QUIENES SOMOS*/
.pantalla-quienessomos {
    height: auto;
    background-color: #ffffff;
    border-radius: 40px 40px 0 0;
    padding: 60px 24px 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
    overflow-y: auto;             
    overflow-x: hidden;
    position: relative;
}

.pantalla-quienessomos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('../imagenes/msfondodos.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.25; 

    z-index: 0;
}

.pantalla-quienessomos .informacion,
.pantalla-quienessomos .parrafo-info,
.pantalla-quienessomos .reseñas,
.pantalla-quienessomos .ms-boton {
    position: relative;
    z-index: 1;
}

.informacion {
    text-align: center;
    margin-bottom: 25px;
}

.personas-img {
    width: 400px;
    height: auto;
    object-fit: contain;
}

.titulo-quienessomos {
    color: #7E4CA5;
    font-size: 30px;
    font-weight: 300;
    font-family: 'Audiowide';
}

.subtitulo-quienessomos {
    color: #B57EDC;
    font-size: 16px;
    font-weight: 300;
    margin-top: 4px;
    font-family: 'Audiowide';
}

.parrafo-info {
    border-left: 3px solid #49769F;
    padding-left: 16px;
    text-align: left;
    max-width: 460px;
    margin-bottom: 35px;
}

.parrafo-info p {
    color: #49769F;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 14px;
}

.parrafo-info p:last-child {
    margin-bottom: 0;
}

.subtitulo-reseñas {
    font-size: 20px;
    color: #B57EDC;
    text-align: center;
}

.reseñas {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 35px;
}

.tarjeta-reseña {
    background-color: rgba(189, 216, 233, 0.5);    border-radius: 20px;
    padding: 20px;
    min-width: 100%;
    text-align: left;
}

.perfil-reseña {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.avatar-reseña {
    width: 48px;
    height: auto;
    border-radius: 50%;
}

.datos-usuario h3 {
    font-size: 14px;
    color: #000000;
    opacity: 75%;
}

.antiguedad {
    font-size: 12px;
    color: #000000;
    opacity: 50%;
}

.calificacion-tiempo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.estrellas {
    font-size: 12.5px;
}

.tiempo-publicacion {
    font-size: 11px;
    color: #000000;
    opacity: 50%;
}

.texto-reseña {
    font-size: 12px;
    color: #000000;
    line-height: 1.5;
    font-weight: 400;
    opacity: 75%;
}

.ms-boton {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.inicio-btn {
    width: 100%;
    max-width: 250px;
    height: 50px;
    background-color: #7E4CA5;
    border-radius: 26px;
}

.inicio-btn a {
    color: #FFE3D8;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

@media (width >= 768px) and (width < 1024px) {
    
   .pantalla-quienessomos {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        border-radius: 40px 40px 0 0;
        padding: 50px 30px;
        margin: 0 auto;
    }

    .informacion {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 35px;
        width: 100%;
    }

    .personas-img {
        width: 400px;
        height: auto;
        margin-bottom: 25px;
    }

    .titulo-quienessomos {
        color: #7E4CA5;
        font-size: 40px;
        text-align: center;
    }

    .subtitulo-quienessomos {
        color: #B57EDC;
        font-size: 20px;
        text-align: center;
        margin-top: 4px;
    }

    .parrafo-info {
        border-left: 3px solid #49769F;
        padding-left: 20px;
        max-width: 800px;
        width: 100%;
        margin: 0 auto 40px auto;
    }

    .parrafo-info p {
        color: #49769F;
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .subtitulo-reseñas {
        color: #B57EDC;
        font-size: 22px;
        text-align: center;
        margin-bottom: 35px;
        width: 100%;
        column-span: all;
    }

    .reseñas {
        display: block;
        column-count: 2;
        column-gap: 20px;
        width: 100%;
        max-width: 800px;
        margin: 0 auto 40px auto;
    }

    .tarjeta-reseña {
        background-color: rgba(189, 216, 233, 0.3);
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        display: inline-block;
        margin-bottom: 20px;
    }

    .texto-reseña {
        font-size: 12px;
        line-height: 1.5;
    }

    .ms-boton {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .inicio-btn {
        width: 100%;
        max-width: 250px;
        height: 50px;
    }
}

@media (width >= 1024px) {

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        min-height: 100vh;
        width: 100%;
    }

    /* Aseguramos que el header ocupe todo el ancho */
    header {
        width: 100%;
        max-width: 100%;
    }

    .pantalla-quienessomos {
        display: grid;
        gap: 20px 60px;
        padding: 100px 100px;
        align-items: start;
        justify-content: center;
        background-color: #ffffff;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
    }

    .informacion {
        grid-column: 1;
        text-align: center;
        margin-bottom: 0;
    }

    .personas-img {
        width: 320px;
        height: auto;
        margin-bottom: 25px;
    }

    .titulo-quienessomos {
        font-size: 36px;
        color: #7E4CA5;
    }

    .subtitulo-quienessomos {
        font-size: 18px;
        color: #B57EDC;
    }

    .parrafo-info {
        grid-column: 1;
        max-width: 100%;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .parrafo-info p {
        font-size: 15px;
        line-height: 1.6;
        color: #49769F;
    }

    .subtitulo-reseñas {
        grid-column: span 2;
        grid-row: 1;
        text-align: center;
        color: #B57EDC;
        font-size: 24px;
        margin-bottom: 15px;
        width: 100%;
    }

    .reseñas {
        grid-column: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 100%;
        margin: -300px 0 0 0;
    }

    .tarjeta-reseña {
        background-color: rgba(189, 216, 233, 0.3);
        border-radius: 20px;
        padding: 22px;
        width: 100%;
    }

    .texto-reseña {
        font-size: 12px;
        line-height: 1.5;
    }

    .ms-boton {
        grid-column: 1 / span 2;
        display: flex;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 0;
    }

    .inicio-btn {
        width: 100%;
        max-width: 260px;
        height: 52px;
    }
}

/*PANTALLA DE INICIAR SESION*/
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    min-height: 100vh;
    width: 100%;
}

header {
    width: 100%;
}

.pantalla-login {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 80px);
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #ffffff;
    border-radius: 40px 40px 0 0;
    padding: 40px 24px 30px 24px;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
}

.encabezado-inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.subtitulo-inicio {
    color: #7E4CA5;
}

.bienvenida-img {
    width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.fotoregistrar-img {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
}

.iniciar-sesion {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.formulario-inicio {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.input-contenedor {
    position: relative;
    width: 100%;
}

.input-ms {
    width: 100%;
    height: 52px; /* 🚨 Un poquito más alto para que respire el texto */
    border: 2px solid #6C8EBF; /* 🚨 Azul grisáceo más suave acorde a la imagen */
    border-radius: 26px;
    padding: 0 50px 0 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #49769F;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06); /* 🚨 Sombra suave de los campos */
}

.input-ms::placeholder {
    color: #a0b0c5;
}

.icono-ojo {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: auto;
    opacity: 0.5;
}

.olvido-contraseña {
    margin-bottom: 30px;
}

.olvido-contraseña a {
    color: #B57EDC;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

.iniciar-sesion button,
.ingresar-btn-submit {
    width: 100%;
    max-width: 260px;
    height: 50px;
    background-color: #7E4CA5; /* 🚨 Violeta corporativo */
    color: #ffffff;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(126, 76, 165, 0.3); /* 🚨 Sombra con tono violeta */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.redes-iniciar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 25px;
}

.ingresar-con {
    display: flex;
    width: 100%;
    color: #000000;
    opacity: 40%;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    justify-content: center;
}

.redes-img {
    width: 210px;
    height: auto;
    object-fit: contain;
}

.registar p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

.link-registrate {
    color: #B57EDC;
    text-decoration: underline;
    font-weight: 700;
    margin-left: 4px;
}

/*PANTALLA DE COMUNIDAD*/
body.comunidad {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.comunidad-main {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #ffffff;
    border-radius: 28px 28px 0 0;
    padding: 14px 15px 30px;

    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.08);
}

.comunidad-main::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../imagenes/msfondodos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.comunidad-main > * {
    position: relative;
    z-index: 1;
}

.titulo-comunidad h1 {
    color: #8a4fc4;
    font-size: 28px;
    margin: 0 0 18px;
    font-family: 'Audiowide';
    font-weight: 400;
}

.crear-post {
    width: 100%;
    background: #2454a5;
    border-radius: 24px;
    padding: 16px 14px 14px;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.post-header:has(.switch input:checked) .usuario-info {
    opacity: 0.5;
}

.post-header:has(.switch input:checked) .anonimo-switch span {
    opacity: 1;
}

.switch input:checked + .slider::before {
    transform: translateX(29px);
    background: #7b4ab3;
}

.usuario-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.usuario-info img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.usuario-info p {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}

.anonimo-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.anonimo-switch span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.switch {
    position: relative;
    width: 63px;
    height: 32px;
    display: inline-block;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    inset: 0;
    background: #ffd8c9;
    border-radius: 40px;
    cursor: pointer;
}

.slider::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    left: 3px;
    top: 2px;
    background: #bd8ac9;
    border-radius: 50%;
    transition: .3s;
}

.switch input:checked + .slider::before {
    transform: translateX(29px);
}

.crear-post textarea {
    width: 100%;
    height: 98px;
    resize: none;
    border: none;
    border-radius: 22px;
    padding: 14px 18px;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.crear-post button {
    margin-top: 13px;
    display: block;
    margin-left: auto;

    background: #ffd8c9;
    color: #2454a5;
    border: none;
    padding: 9px 26px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.feed-comunidad {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.post-card {
    width: 100%;
    background: rgba(220, 234, 245, 0.9);
    border-radius: 26px;
    padding: 20px 32px;
    box-sizing: border-box;
}

.post-usuario {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.post-usuario img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.post-usuario h3 {
    margin: 0;
    font-size: 16px;
    color: #333333;
}

.post-usuario p {
    margin: 0;
    font-size: 14px;
    color: #333333;
}

.post-texto {
    color: #082944;
    line-height: 1.45;
    font-size: 15px;
    margin: 0 0 14px 52px;
}

.post-meta {
    margin: 0 0 0 52px;
    font-size: 11px;
    color: #666666;
}

/*PANTALLA DE PERFIL*/
body.perfil {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #245194;
}

.perfil-main {
    position: relative;
    background-color: #ffffff;
    border-radius: 30px 30px 0 0;
    margin-top: 20px;
    min-height: 100vh;
    padding: 40px 30px 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.perfil-main::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('../imagenes/msfondodos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.12;
    z-index: 0;
}

.perfil-main > * {
    position: relative;
    z-index: 1;
}

.perfil-contenedor {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.perfil-foto-box {
    position: relative;
    margin-bottom: 40px;
}

.perfil-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-cambiar-foto {
    position: absolute;
    right: -5px;
    bottom: 10px;

    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background-color: #79b9ea;
    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}

.icono-camara {
    width: 18px;
    height: auto;
}

.perfil-formulario {
    width: 100%;
}

.campo-grupo {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.campo-label {
    font-size: 16px;
    font-weight: 700;
    color: #4a76a8;
    margin-bottom: 12px;
}

.campo-input {
    width: 100%;
    height: 52px;
    border: 2px solid #4a76a8;
    border-radius: 30px;
    padding: 0 20px;
    box-sizing: border-box;

    font-size: 16px;
    color: #3b3b3b;
    background-color: #ffffff;

    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.campo-input::placeholder {
    color: #a3a3a3;
}

.input-icono-box {
    position: relative;
    width: 100%;
}

.input-con-icono {
    padding-right: 55px;
}

.input-icono-check {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
}

/* PANTALLA MULTIMEDIA */
body.multimedia {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #245194;
}

.multimedia-main {
    position: relative;
    background-color: #ffffff;
    border-radius: 28px 28px 0 0;
    min-height: 100vh;
    padding: 28px 16px 32px;
    box-sizing: border-box;
    overflow: hidden;
}

.multimedia-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../imagenes/msfondodos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.multimedia-main > * {
    position: relative;
    z-index: 1;
}

.multimedia-cabecera {
    text-align: center;
    margin-bottom: 20px;
}

.multimedia-ilustracion {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.multimedia-titulo {
    margin: 0;
    font-family: 'Audiowide';
    font-size: 32px;
    font-weight: 400;
    color: #8a4fc4;
}

.multimedia-descripcion {
    margin: 6px auto 0;
    max-width: 340px;
    font-family: 'Audiowide';
    font-size: 14px;
    line-height: 1.35;
    color: #b57edc;
}

.multimedia-texto-box {
    width: 86%;
    margin: 0 auto 36px;
    padding-left: 12px;
    border-left: 3px solid #4a76a8;
    color: #3f78ad;
    font-size: 15px;
    line-height: 1.15;
}

.multimedia-texto-box p {
    margin: 0 0 18px;
}

.tematicas-box {
    margin-bottom: 42px;
}

.tematicas-titulo,
.videos-titulo {
    text-align: center;
    font-size: 21px;
    color: #c17be8;
    margin-bottom: 18px;
}

.tematicas-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tematica-item {
    border-bottom: 1.5px solid #4a76a8;
}

.tematica-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #00437a;
    padding: 12px 14px;
    font-size: 22px;
    font-weight: 500;
}

.tematica-flecha {
    width: 13px;
}

.video-card {
    display: flex;
    gap: 18px;
    background-color: #ffdfd3;
    border-radius: 24px;
    padding: 14px;
    margin-bottom: 16px;
}

.video-imagen {
    width: 113px;
    height: 169px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.video-imagen-box {
    position: relative;
    flex-shrink: 0;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 48px;
    height: 48px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-play-btn img {
    width: 18px;
}

.video-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-titulo {
    margin: 0 0 16px;
    color: #3f78ad;
    font-size: 16px;
    font-weight: 700;
}

.video-categoria {
    width: fit-content;
    background-color: #b7d7f3;
    color: #3f78ad;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.video-duracion {
    margin: 0 0 18px;
    color: #555;
    font-size: 12px;
}

.video-puntaje {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #333;
    font-size: 11px;
}

.video-estrella {
    color: #f7b733;
    font-size: 16px;
}

/* PANTALLA: CUESTIONARIO (ANTO) */
body.cuestionario {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
}

body.cuestionario .contenido {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cuestionario .tarjeta-pregunta {
    background-color: #EBF3F9; 
    padding: 26px 20px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 28px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 6px 10px rgba(0, 30, 58, 0.5);
}

.cuestionario .numero-pregunta {
    display: block;
    color: #49769F;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cuestionario .tarjeta-pregunta h2 {
    color: #001E3A;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.cuestionario .contenedor-opciones {
    width: 100%;
    max-width: 250px; 
    margin-bottom: 35px;
}

.cuestionario .formulario-opciones {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cuestionario .opcion-radio {
    background-color: #ffffff;
    border: 2px solid #49769F;
    height: 48px;
    border-radius: 25px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #49769F;
    font-weight: 600;
    box-shadow: 0 3px 0px #001E3A; 
    transition: all 0.1s ease;
}

/* El circulito falso desmarcado */
.cuestionario .custom-radio {
    width: 16px;
    height: 16px;
    border: 2px solid #49769F;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background-color: #ffffff;
}

.cuestionario .caja-opcion input[type="radio"] {
    display: none;
}


/* Cambia el fondo de la píldora a lila, el borde a violeta y hunde la sombra */
.cuestionario .caja-opcion input[type="radio"]:checked + .opcion-radio {
    background-color: #E6D8F2; 
    border-color: #764BA2;     
    color: #764BA2;
    font-weight: 800;
    box-shadow: 0 2px 0px #001E3A; 
    transform: translateY(2px);   
}

/* Cambia el color del circulito a violeta cuando está activo */
.cuestionario .caja-opcion input[type="radio"]:checked + .opcion-radio .custom-radio {
    border-color: #764BA2;
}

/* Dibuja el puntito violeta adentro del círculo activo */
.cuestionario .caja-opcion input[type="radio"]:checked + .opcion-radio .custom-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #764BA2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cuestionario .navegacion-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cuestionario .enlace-volver {
    color: #49769F;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 600;
}

.cuestionario .boton-siguiente-contenedor {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cuestionario .boton-siguiente {
    width: 100%;
    max-width: 250px;
    height: 52px;
    background-color: #764BA2;
    color: #ffffff;
    border-radius: 26px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
   border: none; 
    box-shadow: 0 6px 10px rgba(0, 30, 58, 0.5); 
    
    transition: all 0.2s ease;
}
.cuestionario .boton-siguiente:hover {
    background-color: #5F3987;
}

/* PANTALLA: RESULTADOS (ANTO) */

body.resultado {
    font-family: "Inter", sans-serif;
    background-color: #ffffff; /* sumarle de fondo la imagen de los hexágonos */
}

.contenido-resultado {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bloque-alerta {
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin-bottom: 30px;
}

.texto-deteccion {
    color: #49769F;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.img-alerta {
    width: 150%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.titulo-resultado {
    color: #001E3A;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.bajada-resultado {
    color: #49769F;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 10px;
}

.tarjeta-resultado {
    background-color: #EBF3F9;
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 6px 10px rgba(0, 30, 58, 0.5);
}

.tarjeta-resultado h3 {
    color: #001E3A;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 18px;
}

.tarjeta-resultado .lista-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tarjeta-resultado .lista-items li {
    font-size: 13px;
    color: #001E3A;
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    padding-left: 15px;
}

.tarjeta-resultado .lista-items li::before {
    content: "•";
    color: #001E3A;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.tarjeta-resultado .lista-items li strong {
    font-weight: 700;
}

.acciones-resultado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

.btn-resultado {
    width: 100%;
    max-width: 250px;
    height: 52px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 10px rgba(0, 30, 58, 0.5);
    transition: background-color 0.2s ease;
}

.btn-compartir {
    background-color: #8A52B7; 
}

.btn-compartir:hover {
    background-color: #733F9E;
}

.btn-que-hacer {
    background-color: #764BA2;
}

.btn-que-hacer:hover {
    background-color: #5F3987;
}

.enlace-inicio {
    color: #8A52B7;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 5px;
}

/*PANTALLA: RECOMENDACIONES / QUÉ HACER (ANTO) */

body.que-hacer-page {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
}

.contenido-que-hacer {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cabecera-pantalla {
    text-align: center;
    margin-bottom: 25px;
    max-width: 290px;
}

.titulo-principal-violeta {
    color: #764BA2;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
}

.bajada-violeta {
    color: #8A52B7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.bloque-paso {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.info-paso {
    text-align: center;
    margin-bottom: 15px;
    max-width: 280px;
}

.info-paso h2 {
    color: #8A52B7;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.info-paso p {
    color: #8A52B7;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.paso-tarjeta {
    background-color: #E2ECF5;
    border-radius: 24px;
    padding: 24px 20px;
    width: 100%;
    max-width: 320px;
    border: none;
    box-shadow: 0 6px 10px rgba(0, 30, 58, 0.5);
}

/* --- TRUCOS NATIVOS PARA DESPLEGABLES (<details>) --- */

/* Esconder los indicadores nativos que ponen Chrome y Safari */
details.paso-tarjeta summary::-webkit-details-marker {
    display: none;
}
details.paso-tarjeta summary {
    list-style: none;
    outline: none;
    cursor: pointer;
}

.subtitulo-icono {
    font-size: 15px;
    color: #001E3A;
    font-weight: 800;
    text-decoration: underline;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Envía el título a la izquierda y la flecha a la derecha */
    width: 100%;
    margin: 0;
}

/* Espaciado interno cuando el cajón se expande */
details.paso-tarjeta[open] .subtitulo-icono {
    margin-bottom: 18px;
}

.contenido-desplegable {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Botón de la flecha circular */
.flecha-desplegable {
    background-color: #49769F;
    color: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 30, 58, 0.2);
    flex-shrink: 0;
}

.flecha-desplegable::before {
    content: "▼";
}

/* Cuando el acordeón se abre: la flecha gira y se vuelve violeta */
details.paso-tarjeta[open] .flecha-desplegable {
    transform: rotate(180deg);
    background-color: #764BA2;
}

.texto-tarjeta-centro {
    font-size: 13px;
    color: #001E3A;
    text-align: center;
    margin-bottom: 5px;
}

.texto-tarjeta-izq {
    font-size: 13px;
    color: #001E3A;
    text-align: left;
    line-height: 1.4;
    margin: 0;
}

.pregunta-tarjeta {
    color: #001E3A;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    margin: 5px 0 0 0;
}

.lista-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.lista-items li {
    font-size: 13px;
    color: #001E3A;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.lista-items li::before {
    content: "•";
    color: #001E3A;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.items-subrayados li {
    border-bottom: 1px solid rgba(0, 30, 58, 0.15);
    padding-bottom: 6px;
}

.items-subrayados li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Botoncitos internos de las tarjetas */
.contenedor-btn-interno {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-interno-violeta {
    background-color: #8A52B7;
    color: #ffffff;
    border: none;
    height: 34px;
    border-radius: 17px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 30, 58, 0.3);
    transition: background-color 0.2s ease;
}

.btn-interno-violeta:hover {
    background-color: #733F9E;
}

/* Grilla de botones del paso 3 (Familiar, Profesional, Amigos) */
.botones-multiples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn-chico {
    width: 47%;
    padding: 0 10px;
}

.btn-ancho-completo {
    width: 65%;
    margin-top: 2px;
}

.acciones-resultado {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: 25px;
}

.btn-resultado {
    width: 100%;
    max-width: 250px;
    height: 52px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    border: none;
    box-shadow: 0 6px 10px rgba(0, 30, 58, 0.5);
    transition: background-color 0.2s ease;
}

.btn-compartir {
    background-color: #8A52B7;
}

.btn-compartir:hover {
    background-color: #733F9E;
}

.btn-que-hacer {
    background-color: #764BA2;
}

.btn-que-hacer:hover {
    background-color: #5F3987;
}

.enlace-inicio {
    color: #8A52B7;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 600;
    margin-top: 5px;
}