/*=============================
        VARIABLES
=============================*/

:root{

    --color-bg:#FDF3E7;

    --color-primary:#AEE6C8;

    --color-dark:#433053;

    --color-text:#3D3D3D;

    --radius:18px;

    --shadow:0 8px 18px rgba(0,0,0,.08);

    --font:'Poppins',sans-serif;

}

/*=============================
        RESET
=============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    font-family:var(--font);
    background:var(--color-bg);

}

/*=============================
        LAYOUT GENERAL
=============================*/


.screen{

    width:100%;
    min-height:100vh;

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

    position:relative;

    overflow:hidden;

}

.content{

    width:100%;
    max-width:420px;
    min-height:100vh;

    padding:40px 30px;

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

    position:relative;

    z-index:5;

}

/*=============================
        COMPONENTES generales
=============================*/

/*=============================
        LOGO
=============================*/

.logo{

    width:170px;

    margin-bottom:45px;

}

/*=============================
        TITULOS
=============================*/

.title{

    font-size:2.2rem;

    font-weight:500;

    color:var(--color-text);

    line-height:1.25;

    margin-bottom:55px;

}

/*=============================
        ILUSTRACIONES
=============================*/

.illustration{

    width:280px;

    margin-bottom:65px;

}

/*=============================
        BOTONES
=============================*/

.btn-primary{

    background:var(--color-primary);

    color:var(--color-dark);

    border:none;

    border-radius:18px;

    width:220px;

    height:60px;

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

    text-decoration:none;

    font-size:2rem;

    cursor:pointer;

    transition:.25s;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

/*=============================
        DECORACIONES
=============================*/

.background-shapes{

    position:absolute;

    inset:0;

    overflow:hidden;

}

.circle{

    position:absolute;

    border-radius:50%;

    opacity:.5;

}

.circle-top{

    width:240px;
    height:240px;

    background:#FFD88C;

    right:-80px;
    top:-70px;

}

.circle-bottom{

    width:270px;
    height:270px;

    background:#FFE8BE;

    left:-110px;
    bottom:-90px;

}

.line{

    position:absolute;

    border:3px solid rgba(236,138,118,.45);

    border-radius:999px;

}

.line-left{

    width:280px;
    height:280px;

    left:-180px;
    bottom:80px;

}

.line-right{

    width:300px;
    height:300px;

    right:-170px;
    top:300px;

}

/*=============================*
*LOGIN*
*=============================*/

.login-content{

    position:relative;

    justify-content:flex-start;

    padding-top:40px;

}

.back-btn-bienvenida{

    position:absolute;

    left:30px;

    top:45px;

    font-size:2rem;

    color:var(--color-dark);

    text-decoration:none;

}

.login-card{

    width:100%;

    background:rgba(255,248,240,.78);

    backdrop-filter:blur(8px);

    border-radius:35px;

    padding:35px 25px 40px;

    box-shadow:var(--shadow);

    text-align:left;

}

.login-title{

    font-size:2rem;

    font-weight:500;

    color:var(--color-text);

    margin-bottom:8px;

}

.login-subtitle{

    font-size:1.1rem;

    color:var(--color-text);

    margin-bottom:35px;

}

.login-card label{

    display:block;

    font-size:1rem;

    color:var(--color-text);

    margin-bottom:10px;

    margin-top:20px;

}

.input-group{

    width:100%;

    height:58px;

    background:#FFD88C;

    border-radius:20px;

    display:flex;

    align-items:center;

    padding:0 18px;

}

.input-group i{

    color:var(--color-dark);

    font-size:1.3rem;

    margin-right:14px;

}

.input-group input{

    width:100%;

    border:none;

    outline:none;

    background:transparent;

    font-family:var(--font);

    font-size:1rem;

    color:var(--color-text);

}

.forgot-password{

    display:block;

    margin-top:22px;

    margin-bottom:35px;

    text-decoration:none;

    color:#DB6E5C;

    font-size:1rem;

}

.login-card .btn-primary{

    margin:auto;

}

/*=============================
        BIENVENIDA
=============================*/

.content-scroll{

    justify-content:flex-start;

    padding-top:45px;
    padding-bottom:40px;

}

.welcome-text{

    width:100%;

    text-align:left;

    margin-bottom:45px;

}

.welcome-title{

    font-size:2.2rem;

    font-weight:500;

    color:var(--color-text);

    margin-bottom:20px;

}

.welcome-text p{

    font-size:1.05rem;

    color:var(--color-text);

    line-height:1.45;

    margin-bottom:30px;

}

.highlight{

    color:#D76D5B;

    font-weight:500;

    font-size:1.15rem;

    margin-top:10px;


}

.content-scroll .btn-primary{
    margin-top:auto;
}

/*=============================
        LAYOUT APP
=============================*/

.app-page{

    position:relative;

    width:100%;

    min-height:100vh;

    overflow:hidden;

}

.app-page::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:220px;

    background:linear-gradient(
        to bottom,
        rgba(253,243,231,1) 0%,
        rgba(253,243,231,.95) 35%,
        rgba(253,243,231,.55) 70%,
        rgba(253,243,231,0) 100%
    );

    pointer-events:none;

    z-index:0;

}

/*=============================
        HEADER COMPARTIDO
=============================*/

.app-header{

    position:relative;

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;

    padding:35px 45px;

    z-index:2;

}

.app-logo{

    width:230px;
    height:auto;

}

.app-menu-btn{

    background:none;
    border:none;

    cursor:pointer;

    color:#433053;

    font-size:2.2rem;

    transition:.25s;

}

.app-menu-btn:hover{

    transform:scale(1.08);

}

/*=============================*
 * MENU
 *=============================*/

 /* BOTÓN HAMBURGUESA */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #3D2D5A;
    z-index: 1100;
}

.menu-btn i {
    pointer-events: none;
}

/* MENÚ LATERAL */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;

    background: #FFFFFF;

    padding: 90px 20px 30px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    transition: right 0.3s ease;

    z-index: 1000;

    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.side-menu.open {
    right: 0;
}

/* BOTONES DEL MENÚ */
.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    background: #EDE3D2;
    color: #F05A3A;

    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;

    border-radius: 15px;

    transition: all 0.25s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
}

/* PÁGINA ACTIVA */
.menu-item.active {
    background: #E35E43;
    color: #FFFFFF;
}

/* OVERLAY (DESACTIVADO VISUALMENTE) */
.menu-overlay {
    position: fixed;
    inset: 0;

    background: transparent;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 999;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/*=============================
        BOTÓN TELÉFONO
=============================*/

.phone-btn{

    position:fixed;

    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:#E3644D;

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

    text-decoration:none;

    color:#FFFFFF;

    font-size:2rem;

    box-shadow:0 8px 18px rgba(0,0,0,.25);

    z-index:9999;

    transition:.25s;

}

.phone-btn:hover{

    transform:scale(1.08);

}

.phone-btn i{

    color:#FFFFFF;

}

/*======================================
            MODAL AYUDA
======================================*/

.help-modal{

    position:fixed;
    inset:0;

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

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(4px);

    padding:20px;

    opacity:0;
    visibility:hidden;

    transition:.25s;

    z-index:9999;

}

.help-modal.active{

    opacity:1;
    visibility:visible;

}

/*========================*/

.help-card{

    width:500px;
    max-width:92vw;

    background:#FFF8F2;

    border-radius:28px;

    padding:26px;

    position:relative;

    box-shadow:0 18px 45px rgba(0,0,0,.18);

}

/*========================*/

.close-modal{

    position:absolute;

    top:18px;
    left:18px;

    background:none;
    border:none;

    cursor:pointer;

    color:#4B355E;

    font-size:2rem;

}

/*========================*/

.help-header{

    text-align:center;

    margin-bottom:12px;

}

.help-header img{

    width:120px;

}

/*========================*/

.help-card h2{

    text-align:center;

    color:#E35E43;

    font-size:2.2rem;

    font-weight:700;

    margin-bottom:18px;

}

/*========================*/

.help-text p{

    font-size:1.18rem;

    line-height:1.45;

    color:#333;

    margin-bottom:18px;

}

.help-text strong{

    color:#E35E43;

}

/*========================*/

.help-buttons{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-top:20px;

}

/*========================*/

.btn-help{

    display:flex;

    align-items:center;

    gap:16px;

    width:100%;

    padding:16px 20px;

    border-radius:18px;

    text-decoration:none;

    transition:.2s;

}

.btn-help:hover{

    transform:translateY(-2px);

}

.call{

    background:#BFE8D0;

    color:#333;

}

.message{

    background:#E35E43;

    color:white;

    justify-content:center;

    text-align:center;

}

.message span{

    width:100%;

    line-height:1.2;

}

/*========================*/

.btn-help i{

    font-size:2rem;

    width:40px;

    text-align:center;

}

.call span,
.message span{

    display:block;

    font-size:1.45rem;

    font-weight:700;

}

.call small{

    display:block;

    margin-top:3px;

    font-size:.9rem;

}

/*=============================
            HOME
=============================*/

.home-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-home.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.home-content{

    position:relative;

    z-index:10;

    width:100%;

    max-width:1400px;

    margin:0 auto;

    padding:20px 45px 50px;

}

/*=============================
        BIENVENIDA MILAGROS
=============================*/

.welcome-card{

    background:rgba(255,255,255,.82);

    border-radius:28px;

    padding:28px 35px;

    margin-bottom:40px;

}

.welcome-card h1{

    font-size:3rem;

    font-weight:500;

    color:#433053;

    margin-bottom:8px;

}

.welcome-card p{

    font-size:2rem;

    color:#E3644D;

    font-weight:500;

}

/*=============================
            VIDEO
=============================*/

.video-section{

    width:100%;

    margin-bottom:45px;

}

.video-section video{

    display:block;

    width:100%;

    height:auto;

    border-radius:28px;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

    object-fit:cover;

}

/*=============================
        CONTENEDOR CARDS
=============================*/

.cards-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

/*=============================
            CARD
=============================*/

.info-card{

    background:rgba(255,255,255,.88);

    border-radius:28px;

    padding:28px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    box-shadow:0 8px 18px rgba(0,0,0,.08);

}

.info-card img{

    width:210px;

    max-width:100%;

    margin-bottom:22px;

}

.info-text{

    display:flex;

    flex-direction:column;

    flex:1;

}

.info-text h3{

    font-size:1.8rem;

    color:#E3644D;

    margin-bottom:15px;

    font-weight:500;

}

.info-text p{

    font-size:1.05rem;

    line-height:1.55;

    color:#3D3D3D;

    margin-bottom:25px;

}

/*=============================
            BOTÓN
=============================*/

.btn-card{

    display:inline-flex;

    justify-content:center;
    align-items:center;

    align-self:center;

    width:170px;

    height:52px;

    background:#AEE6C8;

    color:#433053;

    text-decoration:none;

    border-radius:16px;

    font-size:1rem;

    font-weight:500;

    transition:.25s;

}

.btn-card:hover{

    transform:translateY(-2px);

    background:#9ADCB9;

}

/*==================================================
                    PERFIL
==================================================*/

.profile-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-perfil.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.profile-page{

    position:relative;

    min-height:100vh;

    background-image:url("../imagenes/fondo-hamburguesa.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.profile-page::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:240px;

    background:linear-gradient(
        to bottom,
        rgba(253,243,231,1) 0%,
        rgba(253,243,231,.95) 35%,
        rgba(253,243,231,.60) 70%,
        rgba(253,243,231,0) 100%
    );

    pointer-events:none;

    z-index:1;

}

/*=============================
        CONTENIDO
=============================*/

.profile-content{

    position:relative;

    z-index:2;

    width:100%;
    max-width:760px;

    margin:0 auto;

    padding:20px 45px 120px;

}

.profile-title{

    text-align:center;

    font-size:3rem;

    font-weight:500;

    color:#E56A4D;

    margin-bottom:60px;

}

/*=============================
        GRUPOS
=============================*/

.profile-group{

    margin-bottom:45px;

}

.profile-group label{

    display:block;

    font-size:2rem;

    color:#E56A4D;

    margin-bottom:18px;

}

/*=============================
        FILAS
=============================*/

.profile-row{

    display:flex;

    align-items:center;

    gap:20px;

}

/*=============================
        CAJAS
=============================*/

.profile-box,
.profile-age{

    background:#FFF7EE;

    border:3px solid #E56A4D;

    border-radius:24px;

    color:#3D3D3D;

    font-size:2rem;

    padding:18px 28px;

}

.profile-box{

    flex:1;

}

.profile-age{

    width:180px;

}

/*=============================
        FOTO
=============================*/

.profile-photo-wrapper{

    position:relative;

    display:inline-block;

}

.profile-photo{

    width:220px;
    height:220px;

    object-fit:cover;

    border-radius:50%;

    border:10px solid #BFECCF;

}

/*=============================
        DESCRIPCIÓN
=============================*/

.profile-description{

    position:relative;

    background:#FFF7EE;

    border:3px solid #E56A4D;

    border-radius:26px;

    padding:28px;

    padding-right:90px;

    font-size:1.7rem;

    line-height:1.6;

    color:#3D3D3D;

}

/*=============================
        BOTONES EDITAR
=============================*/

.edit-btn,
.edit-photo-btn,
.edit-description-btn{

    width:74px;
    height:74px;

    border:none;

    border-radius:50%;

    background:#BFECCF;

    color:#3D3D3D;

    font-size:2rem;

    cursor:pointer;

    display:flex;

    justify-content:center;
    align-items:center;

    flex-shrink:0;

    transition:.25s;

}

.edit-btn:hover,
.edit-photo-btn:hover,
.edit-description-btn:hover{

    transform:scale(1.08);

}

/*=============================
        POSICIONES
=============================*/

.edit-photo-btn{

    position:absolute;

    right:-20px;

    bottom:10px;

}

.edit-description-btn{

    position:absolute;

    right:-22px;

    bottom:-22px;

}

/*==================================================
                EXPERIENCIAS
==================================================*/

.experiences-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-hamburguesa.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.experiences-content{

    width:100%;
    max-width:900px;

    margin:0 auto;

    padding:20px 45px 120px;

    position:relative;
    z-index:5;

}

.experiences-title{

    text-align:center;

    font-size:3rem;

    color:#E35E43;

    font-weight:500;

    margin-bottom:55px;

}


/*==================================
        CONTAR EXPERIENCIA
==================================*/

.experience-form{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:70px;

}

.experience-avatar{

    width:95px;
    height:95px;

    border-radius:50%;

    object-fit:cover;

    flex-shrink:0;

}

.experience-input{

    flex:1;

    height:78px;

    background:#F5E3C5;

    border:none;

    border-radius:18px;

    padding:0 28px;

    font-size:1.6rem;

    color:#444;

    outline:none;

}

.experience-input::placeholder{

    color:#444;

}

.experience-modal{
    display:none;
    align-items:flex-start;
    gap:20px;
    margin-bottom:60px;
}

.experience-modal.active{
    display:flex;
}

.experience-box{
    flex:1;
    background:#F5E3C5;
    border-radius:20px;
    padding:22px;
}

.experience-textarea{
    width:100%;
    min-height:180px;
    border:none;
    resize:none;
    outline:none;
    background:transparent;
    font-family:'Poppins',sans-serif;
    font-size:1.5rem;
    color:#333;
}

.experience-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

.anonymous-btn{
    background:#fff2df;
    border:none;
    border-radius:12px;
    padding:10px 18px;
    font-size:1.2rem;
    cursor:pointer;
}

.post-btn{
    background:#E53935;
    color:white;
    border:none;
    border-radius:14px;
    padding:12px 32px;
    font-size:1.3rem;
    cursor:pointer;
}

.experience-editor{
    display:none;
    align-items:flex-start;
    gap:20px;
    margin-bottom:60px;
}

.experience-box{
    flex:1;
    background:#F5E3C5;
    border-radius:22px;
    padding:24px;
}

.experience-textarea{
    width:100%;
    min-height:220px;
    border:none;
    outline:none;
    resize:none;
    background:transparent;
    font-family:'Poppins',sans-serif;
    font-size:1.5rem;
    color:#333;
}

.experience-actions{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
}

.anonymous-btn{
    display:flex;
    align-items:center;
    gap:8px;
    background:#FFF3E4;
    border:none;
    border-radius:12px;
    padding:10px 18px;
    font-size:1.2rem;
    color:#E35E43;
    cursor:pointer;
}

.post-btn{
    background:#E53935;
    color:white;
    border:none;
    border-radius:14px;
    padding:12px 32px;
    font-size:1.2rem;
    cursor:pointer;
}

.anonymous-btn.active{

    background:#E35E43;
    color:white;

}

.anonymous-btn{

    transition:.25s;

}


/*==================================
        ÚLTIMAS EXPERIENCIAS
==================================*/

.experiences-subtitle{

    color:#E53935;

    font-size:2rem;

    font-weight:600;

    margin-bottom:40px;

}


/*==================================
        CADA EXPERIENCIA
==================================*/

.experience-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:40px;
}

.experience-card .experience-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
    display:block;
}

.experience-text{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.experience-text h3{
    margin:0 0 8px;
    color:#E35E43;
    font-size:2rem;
    font-weight:700;
    line-height:1.2;
}

.experience-text p{
    margin:0;
    color:#333;
    font-size:1.55rem;
    line-height:1.55;
}

/*==================================*
* DEGRADADO SUPERIOR
*==================================*/

.experiences-page::before{

    content:"";

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:170px;

     background:linear-gradient(
        to bottom,
        rgba(253,243,231,1) 0%,
        rgba(253,243,231,.95) 35%,
        rgba(253,243,231,.60) 70%,
        rgba(253,243,231,0) 100%
    );
    

    pointer-events:none;

    z-index:2;

}

/*==================================================*
 * SOBRE NOSOTROS
 *==================================================*/

.about-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-hamburguesa.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.about-content{

    width:100%;
    max-width:1100px;

    margin:0 auto;

    padding:20px 90px 120px;

    position:relative;
    z-index:5;

}

.about-title{

    text-align:center;

    font-size:3rem;
    font-weight:500;

    color:#E35E43;

    margin-bottom:70px;

}

/*==================================*
 * SECCIONES
 *==================================*/

.about-section{

    max-width:900px;

    margin:0 auto 65px;

}

.about-heading{

    width:100%;

    background:#FFD27A;

    border-radius:22px;

    padding:18px 26px;

    margin-bottom:24px;

    color:#333;

    font-size:1.65rem;

    font-weight:600;

    line-height:1.45;

}

.about-section p{

    margin:0;

    color:#333;

    font-size:1.35rem;

    font-weight:400;

    line-height:1.7;

}

.about-section span{

    color:#E35E43;

    font-weight:600;

}


/*==================================================*
* RECURSOS DE AYUDA
*==================================================*/

.resources-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-denuncia.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.resources-content{

    width:100%;
    max-width:1100px;

    margin:0 auto;

    padding:20px 90px 120px;

    position:relative;
    z-index:5;

}

.resources-title{

    text-align:center;

    font-size:3rem;

    font-weight:500;

    color:#E35E43;

    margin-bottom:70px;

}

/*==============================*
* INTRODUCCIÓN
*==============================*/

.resources-intro{

    max-width:900px;

    font-size:2rem;

    font-weight:600;

    line-height:1.45;

    color:#333;

    margin-bottom:65px;

}

/*==============================*
* SECCIONES
*==============================*/

.resource-section{

    max-width:900px;

    margin-bottom:55px;

}

.resource-section h2{

    margin-bottom:18px;

    color:#E35E43;

    font-size:2rem;

    font-weight:500;

}

.resource-section p{

    color:#333;

    font-size:1.55rem;

    font-weight:400;

    line-height:1.65;

}

.resource-section strong{

    font-weight:600;

    color:#333;

}

/*==================================================*
INFORMACIÓN LEGAL
*==================================================*/

.legal-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-legal.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.legal-content{

    width:100%;
    max-width:1100px;

    margin:0 auto;

    padding:20px 90px 120px;

    position:relative;
    z-index:5;

}

.legal-title{

    text-align:center;

    font-size:3rem;
    font-weight:500;

    color:#E35E43;

    margin-bottom:70px;

}

.legal-intro{

    max-width:900px;

    margin:0 auto 60px;

}

.legal-intro p{

    font-size:1.75rem;

    font-weight:600;

    line-height:1.55;

    color:#333;

    margin-bottom:15px;

}

.legal-section{

    max-width:900px;

    margin:0 auto 65px;

}

.legal-section h2{

    font-size:1.65rem;

    font-weight:500;

    color:#E35E43;

    margin-bottom:20px;

    line-height:1.45;

}

.legal-section h3{

    font-size:1.45rem;

    font-weight:500;

    color:#333;

    margin:35px 0 15px;

}

.legal-section p{

    font-size:1.35rem;

    font-weight:400;

    line-height:1.7;

    color:#333;

    margin-bottom:20px;

}

.legal-section ul{

    padding-left:24px;

    margin-bottom:30px;

}

.legal-section li{

    font-size:1.35rem;

    line-height:1.7;

    color:#333;

    margin-bottom:10px;

}

.legal-section li::marker{

    color:#E35E43;

}

.legal-highlight{

    font-size:1.45rem;

    font-weight:600;

    line-height:1.6;

}

.legal-box{

    max-width:900px;

    margin:0 auto;

    background:#FFF9F4;

    border-radius:28px;

    padding:38px 40px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 2px 8px rgba(0,0,0,.04);

    position:relative;

    transition:.25s ease;

}

.legal-box h2{

    color:#E35E43;

    font-size:1.55rem;

    font-weight:500;

    margin-bottom:18px;

}

.legal-box p{

    font-size:1.35rem;

    line-height:1.75;

    color:#3D3D3D;

}

/*==================================================*
 * CÓMO DENUNCIAR
 *==================================================*/

.report-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-denuncia.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.report-content{

    width:100%;
    max-width:1100px;

    margin:0 auto;

    padding:20px 90px 120px;

    position:relative;
    z-index:5;

}

.report-title{

    text-align:center;

    font-size:3rem;
    font-weight:500;

    color:#E35E43;

    margin-bottom:70px;

}

/* INTRO */

.report-intro{

    max-width:900px;

    margin:0 auto 60px;

}

.report-intro h2{

    font-size:1.75rem;

    font-weight:600;

    line-height:1.4;

    color:#333;

    margin-bottom:15px;

}

.report-intro p{

    font-size:1.35rem;

    font-weight:400;

    line-height:1.7;

    color:#333;

}

/* SECCIONES */

.report-section{

    max-width:900px;

    margin:0 auto 65px;

}

.report-section h2{

    font-size:1.65rem;

    font-weight:500;

    color:#E35E43;

    margin-bottom:20px;

    line-height:1.45;

}

.report-section h3{

    font-size:1.45rem;

    font-weight:500;

    color:#333;

    margin:35px 0 15px;

}

.report-section p{

    font-size:1.35rem;

    font-weight:400;

    line-height:1.7;

    color:#333;

    margin-bottom:20px;

}

/* LISTAS */

.report-section ul{

    padding-left:24px;

    margin-bottom:30px;

}

.report-section li{

    font-size:1.35rem;

    line-height:1.7;

    color:#333;

    margin-bottom:10px;

}

.report-section li::marker{

    color:#E35E43;

}

/* DESTACADOS */

.report-highlight{

    font-size:1.45rem;

    font-weight:600;

    line-height:1.6;

    color:#333;

}

/* CARD FINAL */

.report-box{

    max-width:900px;

    margin:0 auto;

    background:#FFF9F4;

    border-radius:28px;

    padding:38px 40px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 2px 8px rgba(0,0,0,.04);

}

.report-box h2{

    color:#E35E43;

    font-size:1.55rem;

    font-weight:500;

    margin-bottom:18px;

}

.report-box p{

    font-size:1.35rem;

    line-height:1.75;

    color:#3D3D3D;

}

.report-box ul{

    padding-left:24px;

    margin-bottom:20px;

}

.report-box li{

    font-size:1.35rem;

    line-height:1.7;

    color:#333;

    margin-bottom:10px;

}

.report-box li::marker{

    color:#E35E43;

}


/*=============================*
* TIPOS DE ACOSO
*=============================*/

.bullying-page::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:300px;

    background:linear-gradient(
        to bottom,
        rgba(253,243,231,1) 0%,
        rgba(253,243,231,.95) 35%,
        rgba(253,243,231,.60) 70%,
        rgba(253,243,231,0) 100%
    );

    pointer-events:none;

    z-index:1;

}

.page-tipos-acoso .app-logo{
    margin-left:35px;
}

.back-btn-acoso{
    position:absolute;
    left:50px;
    top:50%;
    transform:translateY(-50%);
    text-decoration:none;
    color:#4B355E;
    font-size:2.6rem;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s ease;
    z-index:10;
}

.back-btn-acoso:hover{
    transform:translateY(-50%) scale(1.08);
}

/*=============================
FONDO
=============================*/

.bullying-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-hamburguesa.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:scroll;
}

.bullying-content{

    max-width:1400px;

    margin:0 auto;

    padding:40px 60px 120px;

    position:relative;

    z-index:1;
}

/*=============================
TÍTULO
=============================*/

.bullying-title{

    width:fit-content;

    margin:0 auto 70px;

    padding:25px 90px;

    border-radius:999px;

    color:#E35E43;

    font-size:3rem;

    font-weight:600;

    text-align:center;

    background: transparent;

}

/*=============================
GRILLA
=============================*/

.bullying-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:35px;
}

/* Primera fila */

.bullying-card:nth-child(1){
    grid-column:1 / 3;
}

.bullying-card:nth-child(2){
    grid-column:3 / 5;
}

.bullying-card:nth-child(3){
    grid-column:5 / 7;
}

/* Segunda fila */

.bullying-card:nth-child(4){
    grid-column:2 / 4;
}

.bullying-card:nth-child(5){
    grid-column:4 / 6;
}

/*=============================
TARJETAS
=============================*/

.bullying-card{

    background:#FFF9F4;

    border-radius:32px;

    padding:35px;

    text-align:center;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 2px 8px rgba(0,0,0,.04);

    transition:.25s ease;
}

.bullying-card:hover{
    transform:translateY(-6px);
}

.bullying-card img{

    width:170px;

    height:auto;

    margin-bottom:25px;
}

.bullying-card h2{

    color:#E35E43;

    font-size:1.9rem;

    font-weight:600;

    margin-bottom:15px;
}

.bullying-card p{

    color:#333;

    font-size:1.25rem;

    line-height:1.7;
}

/*=============================*
        BUSCAR APOYO
*=============================*/

.support-page::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:300px;

    background:linear-gradient(
        to bottom,
        rgba(253,243,231,1) 0%,
        rgba(253,243,231,.95) 35%,
        rgba(253,243,231,.60) 70%,
        rgba(253,243,231,0) 100%
    );

    pointer-events:none;

    z-index:1;

}

.page-tipos-acoso .app-logo{
    margin-left:35px;
}

.back-btn{
    position:absolute;
    left:50px;
    top:50%;
    transform:translateY(-50%);
    text-decoration:none;
    color:#4B355E;
    font-size:2.6rem;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s ease;
    z-index:10;
}

.back-btn:hover{
    transform:translateY(-50%) scale(1.08);
}

/*=============================
FONDO
=============================*/

.support-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-hamburguesa.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:scroll;
}

.support-content{

    max-width:1400px;

    margin:0 auto;

    padding:40px 80px 120px;

    position:relative;

    z-index:1;
}

.support-text{

    max-width:980px;

    margin:0 auto;
}

/*=============================
TÍTULO
=============================*/

.support-title{

    width:fit-content;

    margin:0 auto 70px;

    padding:25px 90px;

    border-radius:999px;

    color:#E35E43;

    font-size:3rem;

    font-weight:600;

    text-align:center;

    background: transparent;

}

.support-text p{

    font-size:2rem;

    line-height:1.45;

    color:#333;

    margin-bottom:45px;
}

.support-text strong{

    color:#E35E43;

    font-weight:700;
}

.highlight{

    color:#E35E43;

    font-weight:700;
}

.highlight strong{

    color:#E35E43;
}

.final{

    margin-bottom:70px;
}

.support-image{

    display:flex;

    justify-content:center;
}

.support-image img{

    width:420px;

    max-width:100%;

    height:auto;
}

/*=============================*
* LO VES EN ALGUIEN MÁS
*=============================*/

.others-page::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:300px;

    background:linear-gradient(
        to bottom,
        rgba(253,243,231,1) 0%,
        rgba(253,243,231,.95) 35%,
        rgba(253,243,231,.60) 70%,
        rgba(253,243,231,0) 100%
    );

    pointer-events:none;

    z-index:1;

}

.page-others .app-logo{
    margin-left:35px;
}

.back-btn{

    position:absolute;

    left:50px;
    top:50%;

    transform:translateY(-50%);

    text-decoration:none;

    color:#4B355E;

    font-size:2.6rem;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.2s ease;

    z-index:10;

}

.back-btn:hover{

    transform:translateY(-50%) scale(1.08);

}

/*=============================
FONDO
=============================*/

.others-page{

    min-height:100vh;

    background-image:url("../imagenes/fondo-hamburguesa.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:scroll;

}

.others-content{

    max-width:1400px;

    margin:0 auto;

    padding:40px 80px 120px;

    position:relative;

    z-index:1;

}

.others-text{

    max-width:980px;

    margin:0 auto;

}

/*=============================
TÍTULO
=============================*/

.others-title{

    width:fit-content;

    margin:0 auto 70px;

    padding:25px 90px;

    border-radius:999px;

    color:#E35E43;

    font-size:3rem;

    font-weight:600;

    text-align:center;

    background:transparent;

}

/*=============================
TEXTO
=============================*/

.others-text p{

    font-size:2rem;

    line-height:1.45;

    color:#333;

    margin-bottom:45px;

}

.highlight{

    color:#E35E43;

    font-weight:700;

}

/*=============================
LISTA
=============================*/

.signals-title{

    font-size:2rem;

    color:#333;

    font-weight:700;

    margin:60px 0 35px;

}

.signals-list{

    list-style:none;

    padding:0;

    margin:0;

}

.signals-list li{

    position:relative;

    padding-left:22px;

    margin-bottom:12px;

    font-size:1.8rem;

    line-height:1.45;

    color:#333;

}

.signals-list li::before{

    content:"*";

    position:absolute;

    left:0;

    color:#E35E43;

    font-weight:700;

}

/*=============================
IMAGEN
=============================*/

.others-image{

    display:flex;

    justify-content:center;

    margin-top:60px;

}

.others-image img{

    width:420px;

    max-width:100%;

    height:auto;

}


/*=============================*
* TABLETS
*=============================*/

@media (max-width:768px){

    .content{

        max-width:390px;
        padding:35px 25px;

    }

    .logo{

        width:155px;
        margin-bottom:35px;

    }

    .title{

        font-size:2rem;

    }

    .illustration{

        width:240px;

    }

    .welcome-title{

        font-size:2rem;

    }

      /*=========================
            HEADER
    =========================*/

    .app-header{

        padding:30px;

    }

    .app-logo{

        width:190px;

    }

    .app-menu-btn{

        font-size:2rem;

    }

    /*=============================*
        MODAL AYUDA
*=============================*/

   .help-card{

    width:420px;

    max-width:92vw;

    padding:22px;

    border-radius:24px;

}

.help-header img{

    width:105px;

}

.help-card h2{

    font-size:1.9rem;

    margin-bottom:15px;

}

.help-text p{

    font-size:1rem;

    line-height:1.4;

    margin-bottom:15px;

}

.btn-help{

    padding:15px 16px;

}

.btn-help i{

    font-size:1.7rem;

}

.call span,
.message span{

    font-size:1.2rem;

}

.call small{

    font-size:.82rem;

}



    /*=========================
            HOME
    =========================*/

    .home-content{

        padding:25px;

    }

    .welcome-card{

        padding:24px;

        margin-bottom:35px;

    }

    .welcome-card h1{

        font-size:2.4rem;

    }

    .welcome-card p{

        font-size:1.6rem;

    }

    .video-section{

        margin-bottom:35px;

    }

    .cards-container{

        grid-template-columns:1fr;

        gap:22px;

    }

    .info-card{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:28px;

    }

    .info-card img{

        width:180px;

        margin-bottom:20px;

    }

    .info-text{

        align-items:center;

    }

    .btn-card{

        width:180px;

    }

    /*=========================
        VIDEO
=========================*/

.video-section{

    margin-bottom:35px;

}

.video-section video{

    border-radius:24px;

}


.profile-content{

    max-width:560px;

    padding:20px 30px 100px;

}

.profile-title{

    font-size:2.5rem;

    margin-bottom:45px;

}

.profile-group label{

    font-size:1.6rem;

}

.profile-box,
.profile-age{

    font-size:1.5rem;

}

.profile-photo{

    width:180px;
    height:180px;

}

/*=========================
        PERFIL
=========================*/

.profile-content{

    max-width:560px;

    padding:20px 30px 100px;

}

.profile-title{

    font-size:2.5rem;

    margin-bottom:45px;

}

.profile-group label{

    font-size:1.6rem;

}

.profile-box,
.profile-age{

    font-size:1.5rem;

}

.profile-photo{

    width:180px;
    height:180px;

}

/*=============================*
* EXPERIENCIAS - TABLET
*=============================*/

.experiences-content{

    padding:20px 30px 120px;

}

.experience-form{

    gap:18px;

}

.experience-avatar{

    width:75px;

    height:75px;

}

.experience-input{

    height:65px;

    font-size:1.3rem;

}

.experience-editor{

    gap:18px;

}

.experience-textarea{

    min-height:180px;

    font-size:1.2rem;

}

.experience-card{

    gap:18px;

}

.experience-card .experience-avatar{

    width:75px;

    height:75px;

}

.experience-text h3{

    font-size:1.6rem;

}

.experience-text p{

    font-size:1.25rem;

}

/*=============================*
* SOBRE NOSOTROS
*=============================*/

   .about-content{

    padding:20px 40px 90px;

}

.about-title{

    font-size:2.4rem;

    margin-bottom:50px;

}

.about-section{

    margin-bottom:50px;

}

.about-heading{

    font-size:1.4rem;

    padding:16px 22px;

    margin-bottom:18px;

}

.about-section p{

    font-size:1.1rem;

    line-height:1.7;

}


/*=============================*
* RECURSOS DE AYUDA
*=============================*/

.resources-content{

    padding:20px 45px 100px;

}

.resources-title{

    font-size:2.4rem;

}

.resources-intro{

    max-width:100%;

    font-size:1.65rem;

}

.resource-section{

    max-width:100%;

}

.resource-section h2{

    font-size:1.65rem;

}

.resource-section p{

    font-size:1.35rem;

}

/*=============================*
* INFORMACIÓN LEGAL
*=============================*/

.legal-content{

    padding:20px 45px 100px;

}

.legal-title{

    font-size:2.4rem;

    margin-bottom:55px;

}

.legal-intro{

    margin-bottom:50px;

}

.legal-intro p{

    font-size:1.65rem;

}

.legal-section{

    margin-bottom:50px;

}

.legal-section h2{

    font-size:1.55rem;

}

.legal-section h3{

    font-size:1.35rem;

}

.legal-section p,
.legal-section li{

    font-size:1.25rem;

}

.legal-highlight{

    font-size:1.3rem;

}

.legal-box{

    padding:28px;

}

.legal-box h2{

    font-size:1.45rem;

}

.legal-box p{

    font-size:1.25rem;

}

/*=============================*
 * CÓMO DENUNCIAR
 *=============================*/

      .report-content{
        padding:20px 40px 90px;
    }

    .report-title{
        font-size:2.4rem;
        margin-bottom:50px;
    }

    .report-intro h2{
        font-size:1.45rem;
    }

    .report-intro p{
        font-size:1.15rem;
    }

    .report-section h2{
        font-size:1.4rem;
    }

    .report-section h3{
        font-size:1.25rem;
    }

    .report-section p,
    .report-section li{
        font-size:1.1rem;
    }

    .report-highlight{
        font-size:1.2rem;
    }

    .report-box{
        padding:30px;
    }

    .report-box h2{
        font-size:1.35rem;
    }

    .report-box p,
    .report-box li{
        font-size:1.1rem;
    }

    /*=============================*
* TIPOS DE ACOSO
*=============================*/

     .bullying-content{
        padding:40px 30px 70px;
    }

    .bullying-title{
        font-size:2.4rem;
        margin-bottom:45px;
        padding:20px 60px;
    }

    .bullying-grid{
        display:flex;
        flex-direction:column;
        gap:28px;
    }

    .bullying-card{
        width:100%;
        max-width:700px;
        margin:0 auto;
    }

    .bullying-card img{
        width:150px;
    }

    .bullying-card h2{
        font-size:1.7rem;
    }

    .bullying-card p{
        font-size:1.15rem;
    }

      
        .back-btn{
        top:46%;
        font-size:2.2rem;
        left:35px;
    }

    /*=============================*
 * BUSCAR APOYO
 *=============================*/

.support-page::before{

    height:220px;

}

.back-btn{

    left:30px;

    font-size:2.2rem;

}

.support-content{

    padding:20px 40px 90px;

}

.support-text{

    max-width:900px;

}

.support-title{

    font-size:2.4rem;

    padding:20px 60px;

    margin-bottom:50px;

}

.support-text p{

    font-size:1.15rem;

    line-height:1.7;

    margin-bottom:30px;

}

.final{

    margin-bottom:50px;

}

.support-image img{

    width:320px;

}

    /*=============================*
* LO VES EN ALGUIEN MÁS
*=============================*/

    .back-btn{
        top:46%;
        left:35px;
        font-size:2.2rem;
    }

    .others-content{

        padding:35px 35px 70px;

    }

    .others-title{

        font-size:2.4rem;

        margin-bottom:45px;

        padding:0;

    }

    .others-text{

        max-width:100%;

    }

    .others-text p{

        font-size:1.5rem;

        line-height:1.55;

        margin-bottom:35px;

    }

    .signals-title{

        font-size:1.7rem;

        margin:40px 0 25px;

    }

    .signals-list li{

        font-size:1.4rem;

        margin-bottom:10px;

    }

    .others-image img{

        width:320px;

    }

}

/*=============================*
* CELULARES
*=============================*/

@media (max-width:480px){

    .content{

        padding:30px 22px;

    }

    .logo{

        width:145px;
        margin-bottom:35px;

    }

    .title{

        font-size:1.55rem;
        margin-bottom:45px;

    }

    .illustration{

        width:240px;
        max-width:90%;
        margin-bottom:50px;

    }

    .welcome-title{

        font-size:1.9rem;

    }

    .welcome-text p{

        font-size:1rem;
        line-height:1.45;

    }

    .highlight{

        font-size:1.1rem;

    }

    .btn-primary{

        width:200px;
        height:55px;
        font-size:1.7rem;

    }

    /*=============================*
    * LOGIN
    *=============================*/

    .login-card{

        padding:28px 20px 35px;

    }

    .login-title{

        font-size:1.8rem;

    }

    .login-subtitle{

        font-size:1rem;

    }

    .input-group{

        height:55px;

    }

    .back-btn{

        left:22px;
        top:30px;

    }

        /*=========================
            HEADER
    =========================*/

    .app-header{

        padding:22px;

    }

    .app-logo{

        width:160px;

    }

    .app-menu-btn{

        font-size:1.9rem;

    }

    .app-header::after{

        height:130px;

    }

   /*=============================*
        MODAL AYUDA
*=============================*/

    .help-card{

    width:92vw;
    max-width:370px;

    padding:18px;

    border-radius:22px;

}

.close-modal{

    top:14px;
    left:14px;

    font-size:22px;

}

.help-header{

    margin-bottom:8px;

}

.help-header img{

    width:90px;

}

.help-card h2{

    font-size:1.8rem;
    margin-bottom:12px;

}

.help-text p{

    font-size:.95rem;
    line-height:1.35;
    margin-bottom:14px;

}

.help-buttons{

    gap:12px;

}

.btn-help{

    padding:12px 16px;

    border-radius:16px;

}

.btn-help i{

    font-size:1.4rem;
    width:28px;

}

.call span,
.message span{

    font-size:1.15rem;

}

.call small{

    font-size:.8rem;

}


    /*=========================
            HOME
    =========================*/

    .home-content{

        padding:20px;

    }

    .welcome-card{

        padding:22px;

        margin-bottom:28px;

    }

    .welcome-card h1{

        font-size:1.9rem;

    }

    .welcome-card p{

        font-size:1.25rem;

    }

    .video-section{

        margin-bottom:28px;

    }

    .cards-container{

        grid-template-columns:1fr;

        gap:18px;

    }

    .info-card{

        display:grid;

        grid-template-columns:110px 1fr;

        grid-template-areas:

            "imagen texto"
            "imagen boton";

        align-items:center;

        text-align:left;

        gap:18px;

        padding:18px;

    }

    .info-card img{

        grid-area:imagen;

        width:110px;

        margin:0;

    }

    .info-text{

        grid-area:texto;

        align-items:flex-start;

    }

    .info-text h3{

        font-size:1.25rem;

        margin-bottom:8px;

    }

    .info-text p{

        font-size:.95rem;

        margin-bottom:0;

    }

    .btn-card{

        grid-area:boton;

        justify-self:start;

        width:140px;

        height:45px;

        font-size:.95rem;

    }

    /*=========================
        VIDEO
=========================*/

.video-section{

    margin-bottom:28px;

}

.video-section video{

    border-radius:20px;

}

/*=========================
        PERFIL
=========================*/

.profile-content{

    padding:20px 25px 100px;

}

.profile-title{

    font-size:2rem;

    margin-bottom:35px;

}

.profile-group{

    margin-bottom:35px;

}

.profile-group label{

    font-size:1.3rem;

}

.profile-row{

    gap:12px;

}

.profile-box,
.profile-age{

    font-size:1.1rem;

    padding:14px 18px;

}

.profile-age{

    width:120px;

}

.profile-photo{

    width:120px;
    height:120px;

}

.profile-description{

    font-size:1rem;

    padding:18px;

    padding-right:60px;

}

.edit-btn,
.edit-photo-btn,
.edit-description-btn{

    width:50px;
    height:50px;

    font-size:1.3rem;

}

.edit-photo-btn{

    right:-10px;
    bottom:0;

}

.edit-description-btn{

    right:-10px;
    bottom:-10px;

}

/*=============================*
* EXPERIENCIAS - CELULAR
*=============================*/

.experiences-content{

    padding:20px 18px 120px;

}

.experiences-title{

    font-size:2rem;

    margin-bottom:35px;

}

/* Caja para escribir */

.experience-form{

    gap:12px;

    margin-bottom:45px;

}

.experience-avatar{

    width:60px;
    height:60px;

    flex-shrink:0;

}

.experience-input{

    width:100%;

    height:58px;

    font-size:1.1rem;

    padding:0 18px;

}

/* Editor */

.experience-editor{

    gap:12px;

    margin-bottom:45px;

}

.experience-box{

    padding:16px;

}

.experience-textarea{

    min-height:150px;

    font-size:1rem;

}

.experience-actions{

    gap:12px;

    flex-wrap:wrap;

}

.anonymous-btn,
.post-btn{

    flex:1;

    justify-content:center;

    font-size:1rem;

    padding:10px 0;

}

/* Lista */

.experiences-subtitle{

    font-size:2rem;

    margin-bottom:30px;

}

.experience-card{

    gap:12px;

    margin-bottom:35px;

}

.experience-card .experience-avatar{

    width:62px;

    height:62px;

}

.experience-text h3{

    font-size:1.2rem;

    margin-bottom:6px;

}

.experience-text p{

    font-size:1rem;

    line-height:1.45;

}

/*=============================*
* SOBRE NOSOTROS
*=============================*/

 .about-content{

    padding:20px 24px 70px;

}

.about-title{

    font-size:2rem;

    margin-bottom:40px;

}

.about-section{

    margin-bottom:40px;

}

.about-heading{

    font-size:1.2rem;

    padding:14px 18px;

    border-radius:18px;

    margin-bottom:16px;

    line-height:1.4;

}

.about-section p{

    font-size:.95rem;

    line-height:1.65;

}

/*=============================*
* RECURSOS DE AYUDA
*=============================*/

.resources-content{

    padding:15px 28px 90px;

}

.resources-title{

    font-size:2rem;

    margin-bottom:45px;

}

.resources-intro{

    font-size:1.18rem;

    line-height:1.45;

    margin-bottom:45px;

}

.resource-section{

    margin-bottom:40px;

}

.about-section h2{

    font-size:1.08rem;

    font-weight:500;

    margin-bottom:6px;

}

.resource-section p{

    font-size:1.08rem;

    line-height:1.6;

}

/*=============================*
* INFORMACIÓN LEGAL
*=============================*/

.legal-content{

    padding:15px 28px 90px;

}

.legal-title{

    font-size:2rem;

    margin-bottom:45px;

}

.legal-intro{

    margin-bottom:40px;

}

.legal-intro p{

    font-size:1.18rem;

    line-height:1.55;

}

.legal-section{

    margin-bottom:40px;

}

.legal-section h2{

    font-size:1.18rem;

    line-height:1.45;

    margin-bottom:15px;

}

.legal-section h3{

    font-size:1.08rem;

    margin:25px 0 12px;

}

.legal-section p,
.legal-section li{

    font-size:1.08rem;

    line-height:1.6;

}

.legal-highlight{

    font-size:1.12rem;

}

.legal-box{

    padding:22px;

    border-radius:20px;

}

.legal-box h2{

    font-size:1.12rem;

}

.legal-box p{

    font-size:1.08rem;

    line-height:1.6;

}

/*=============================*
 * CÓMO DENUNCIAR
 *=============================*/

     .report-content{
        padding:20px 24px 70px;
    }

    .report-title{
        font-size:2rem;
        margin-bottom:40px;
    }

    .report-intro{
        margin-bottom:45px;
    }

    .report-intro h2{
        font-size:1.25rem;
        line-height:1.45;
    }

    .report-intro p{
        font-size:1rem;
        line-height:1.65;
    }

    .report-section{
        margin-bottom:45px;
    }

    .report-section h2{
        font-size:1.2rem;
        margin-bottom:15px;
    }

    .report-section h3{
        font-size:1.05rem;
        margin:22px 0 10px;
    }

    .report-section p,
    .report-section li{
        font-size:0.95rem;
        line-height:1.65;
    }

    .report-highlight{
        font-size:1.05rem;
    }

    .report-box{
        padding:22px;
        border-radius:20px;
    }

    .report-box h2{
        font-size:1.15rem;
    }

    .report-box p,
    .report-box li{
        font-size:0.95rem;
        line-height:1.65;
    }

    /*=============================*
* TIPOS DE ACOSO
*=============================*/

     .bullying-content{
        padding:25px 18px 45px;
    }

    .bullying-title{
        font-size:1.8rem;
        margin-bottom:30px;
        padding:0;
    }

    .bullying-grid{
        display:flex;
        flex-direction:column;
        gap:18px;
    }

    .bullying-card{

        display:grid;

        grid-template-columns:90px 1fr;
        grid-template-areas:
            "img titulo"
            "img texto";

        align-items:center;
        gap:10px 18px;

        padding:18px;
        border-radius:22px;

        text-align:left;
    }

    .bullying-card img{
        grid-area:img;
        width:80px;
        margin:0;
        justify-self:center;
        align-self:center;
    }

    .bullying-card h2{
        grid-area:titulo;
        margin:0;
        font-size:1.3rem;
    }

    .bullying-card p{
        grid-area:texto;
        margin:0;
        font-size:.95rem;
        line-height:1.45;
    }

           .back-btn{
        top:45%;
        font-size:2rem;
        left:20px;
    }

    /*=============================*
 * BUSCAR APOYO
 *=============================*/

.support-page::before{

    height:170px;

}

.back-btn{

    left:18px;

    font-size:1.8rem;

}

.support-content{

    padding:20px 24px 70px;

}

.support-text{

    max-width:100%;

}

.support-title{

    width:100%;

    font-size:2rem;

    padding:0;

    margin-bottom:40px;

    background:none;

    border-radius:0;

}

.support-text p{

    font-size:.95rem;

    line-height:1.65;

    margin-bottom:24px;

}

.final{

    margin-bottom:35px;

}

.support-image img{

    width:220px;

}

    /*=============================*
* LO VES EN ALGUIEN MÁS
*=============================*/

   .back-btn{
        top:45%;
        left:20px;
        font-size:2rem;
    }

    .others-content{

        padding:25px 20px 45px;

    }

    .others-title{

        font-size:2rem;

        margin-bottom:30px;

        padding:0;

    }

    .others-text p{

        font-size:1.2rem;

        line-height:1.6;

        margin-bottom:25px;

    }

    .signals-title{

        font-size:1.35rem;

        margin:30px 0 20px;

    }

    .signals-list li{

        font-size:1.15rem;

        line-height:1.5;

        margin-bottom:8px;

    }

    .others-image img{

        width:240px;

    }


    }