@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --color-primario: #FF629B;
    --color-secundario: #17202E;
    --color-fondo: #FAFAF7;
    --color-fondo-configuración:  #333C49;
    --color-texto: #FAFAF7 #17202E;
    --fuente-textos: "Poppins", sans-serif;
}
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 auto;
    padding-top: 60px; 
    color: #17202E;
    background-color: #FAFAF7;
    justify-content: center;
}
img {
    max-width: 100%;
}
header {
    background-color: #FAFAF7;
     padding: 20px 20px 20px 20px;
    margin:0;
}
.page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 40px;
    margin-bottom: 24px;
}

.back-button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

    .back-button svg {
        width: 28px;
        height: 28px;
        fill: #17202E;
    }

.page-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #17202E;
}
main {
    background-color: #FAFAF7;
    padding: 20px 20px 20px 20px;
} /* --- CONFIGURACIÓN GENERAL --- */
/* Contenedor principal estilo celular móvil 
.main-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  box-sizing: border-box;
}*/
.navbar { /* --- BARRA SUPERIOR FIJA --- */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #FFD8E9;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1000;
}
.logo {
    text-align: center;
    margin: 30px auto;
}

    .logo img {
        width: 280px;
        max-width: 90%;
        height: auto;

    }
.menu-check { 
  display: none;
}
.menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  margin-left: auto; 
}
.menu span {
  width: 100%;
  height: 2px;
  background-color: #333333; 
  transition: 0.3s;
}
/* --- MENÚ DESPLEGABLE  --- */
.nav-menu {
  position: fixed;
  top: 60px;
  right: -260px;
  width: 250px;
  height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-in-out; 
  /* background-color: #333C49;
   box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);  */
}
.nav-menu a {
  color: #FAFAF7;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #FAFAF7;
  font-weight: 500;
  background-color:#6C7A90;
}
/* Activar el despliegue al presionar las líneas */
.menu-check:checked ~ .nav-menu {
  right: 0;
}
.logo { 
  margin: 25px;
}
.logo2 {
    display: inline-flex !important; 
    align-items: center;
    height: 40px !important; 
}

    .logo2 img {
        height: 100% !important; 
        width: auto !important; 
        max-height: 40px !important; 
        object-fit: contain !important;
    }
h1{
  margin-top: 0;
  margin-bottom: 1em;
  color: #17202E;
  font-size: 1.5rem;
}
h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #17202E;
  font-size: 1.5rem;
}
h3 {
  color: #17202E;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;

}
h4{
  color: #17202E;
  margin-bottom: 0.2em;
  font-size: 13px;
}
/* Estilos generales del contenedor del footer */
.site-footer {
    background: #17202E;
    color: #FAFAF7;
    text-align: center;
    padding: 60px 24px 40px;
    margin-top: 10px;
}

.footer-logo {
    margin-bottom: 24px;
}

    .footer-logo img {
        width: 220px;
        height: auto;
    }

.footer-description {
    max-width: 360px;
    margin: 0 auto 35px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-bottom: 40px;
}

    .footer-social a {
        color: #FAFAF7;
        text-decoration: none;
    }

    .footer-social img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        display: block;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.footer-divider {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 30px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.footer-copy {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-legal {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
}
.footer-copy a {
    color: #FAFAF7;
    text-decoration: none;
}

    .footer-copy a:hover {
        text-decoration: underline;
    }


.caja{ 
  border: 2px solid #17202E;  
  border-radius: 20px;          
  padding: 24px;              
  max-width: 500px;           
  margin: 20px auto;         
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); 
}
.caja p {
  margin-bottom: 0.5em;
  color:#17202E;
  line-height: 1.6;
}
.button-list { 
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.caja-rosa {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s, transform 0.1s;
  text-decoration: none;
  color: #FAFAF7;
  background-color: #FF629B;
  gap: 15px;
}
.caja-rosa:hover {
  background-color: #df5688;
}
.caja-rosa:active {
  transform: scale(0.98);
}
.categorías-empleos {
  display: flex;         
  flex-wrap: nowrap;     
  overflow-x: auto;      
  gap: 8px;             
  padding-bottom: 12px;  
  scrollbar-color: #17202E #FAFAF7;
}
.empleos {
  flex: 0 0 auto;        
  scroll-snap-align: start; 
  padding: 15px 20px;
  background-color: #17202E; 
  color: #FAFAF7;           
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;       
  transition: all 0.2s ease;
}
/* Contenedor principal de la sección */
.actividades1 {
  width: 100%;
  padding: 20px 0; 
  box-sizing: border-box;
  font-family: sans-serif;
  background-color: #FEEEF5;
  border-radius: 20px; 
  padding: 20px; 
  max-width: 400px;  
  margin: 20px auto;  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  scrollbar-color: #FF629B #FEEEF5;
}
/* El contenedor de las fotos (tu etiqueta figure) */
.actividades1 figure {
  display: flex;          
  flex-wrap: nowrap;      
  overflow-x: auto;       
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth;
  gap: 12px;              
  padding: 0 20px 15px 20px; 
  margin: 0;              
}
/* Estilo para cada imagen dentro del carrusel */
    .actividades1 figure {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 12px;
        padding: 0 20px 15px;
        margin: 0;
    }

.actividad-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    text-decoration: none;
    color: inherit;
    display: block;
}

    .actividad-card img {
        width: 100%;
        height: 180px; 
        object-fit: cover;
        display: block;
    }

.actividad-info {
    background: #17202E;
    color: white;
    text-align: center;
    padding: 12px 10px; 
    font-size: 1rem;
    font-weight: 450;
}
.otras-cosas {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-direction: column;
 
}
.cosas {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s, transform 0.1s;
  text-decoration: none;
  color: #FAFAF7;
  background-color: rgb(254, 204, 223);
  gap:15px;

}
.iconx2 {
  flex-shrink: 0; 
  fill: #ffffff; 
  width: 30px; 
  height: 30px;
  
}
.cosas-oscuro {
    background-color: #FF8BB5;
    color: #17202E;
}

    .cosas-oscuro svg,
    .cosas-oscuro svg path {
        fill: #17202E !important;
    }

    .cosas-oscuro:active,
    .cosas-oscuro:hover {
        color: #17202E;
    }

        .cosas-oscuro:active .iconx2,
        .cosas-oscuro:hover .iconx2 {
            fill: #17202E !important;
        }
    .cosas-oscuro svg,
    .cosas-oscuro svg path {
        fill: #17202E !important;
    }
/*CSS DEL SECTOR DE EMPLEO*/
.busqueda-voz {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

    .busqueda-voz .intro-icon {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #FF629B;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
.intro-icon {
    margin: 0 auto;
}
    .busqueda-voz .iconx1 {
        width: 60px;
        height: 60px;
        fill: #FAFAF7;
    }
.busqueda {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 35px;
}
.voz {
  background-color: #FF629B;
  border: none;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 82, 148, 0.2);
}
.buscadorxvoz {
    font-size: 1rem;
    color: #17202E;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.busqueda-gris {
    width: 100%;
    border: 1px solid #17202E;
    border-radius: 18px;
    padding: 18px;
    min-height: 120px;
    background-color: #fff;
}

.campo-busqueda {
    width: 100%;
    min-height: 80px;
    border: none;
    outline: none;
    resize: none;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: #17202E;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
}
.busqueda-gris p {
  color: #718096;
  font-size: 0.85rem;
}

.sector-filtro{
  margin-bottom: 30px;
}
.carousel-tags {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-color: #17202E #FAFAF7;
}
.tag {
  flex: 0 0 auto;        
  scroll-snap-align: start; 
  padding: 15px 20px;
  background-color: #17202E; 
  color: #FAFAF7;           
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;       
  transition: all 0.2s ease;
}

.info {
  border: 1px solid #17202E;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 15px;
  background-color: #ffffff;
}
.info-texto{
  color: #17202E;
  font-size: 0.8rem;
  line-height: 1.4;
}
.empleo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    .empleo-link .info {
        transition: 0.2s;
        cursor: pointer;
    }

        .empleo-link .info:hover,
        .empleo-link .info:active {
            background-color: #FEEEF5;
            transform: scale(0.98);
        }
.tag.activo {
    background-color: #FF629B;
    color: #FAFAF7;
}
/*CSS DEL SECTOR DE LA ACTIVIDAD Y TALLER*/
.caja-actividades{
  border: 2px solid #ffffff;
  background-color: #FEEEF5;
  border-radius: 20px; 
  padding: 20px; 
  max-width: 400px;  
  margin: 20px auto;  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  
}
.actividades2 h2 {
  width: 100%;
  padding: 20px 5px;
  box-sizing: border-box;
  font-family: sans-serif;
}
.actividades2 figure {
  display: flex;          
  flex-wrap: nowrap;      
  overflow-x: auto;       
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth;
  gap: 12px;              
  padding: 20px 20px 20px 20px; 
  margin: 0;              
  scrollbar-color: #17202E #FAFAF7;
}
.actividades2 figure img {
  flex: 0 0 85%;          
  scroll-snap-align: center; 
  width: 100%;
  height: 250px;         
  object-fit: cover;     
  border-radius: 12px;    
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
.talleres1 h2 {
  width: 100%;
  padding: 20px 5px;
  box-sizing: border-box;
  font-family: sans-serif;
}
.talleres1 figure {
  display: flex;          
  flex-wrap: nowrap;      
  overflow-x: auto;       
  scroll-snap-type: x mandatory; 
  scroll-behavior: smooth;
  gap: 12px;              
  padding: 0 20px 15px 20px; 
  margin: 0;             
  scrollbar-color: #17202E #FAFAF7;
}
.talleres1 figure img {
  flex: 0 0 85%;         
  scroll-snap-align: center; 
  width: 100%;
  height: 250px;         
  object-fit: cover;     
  border-radius: 12px;   
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}
/* CSS DEL SECTOR DE LA ASISTENCIA VISUAL*/
.iconx1 {
  flex-shrink: 0; 
  fill: #FAFAF7; 
  width: 60px; 
  height: 60px;
}
.iconx3 {
  flex-shrink: 0; 
  fill: #FF629B; 
  width: 30px; 
  height: 30px;
}
.iconx4 {
  flex-shrink: 0; 
  fill: #17202E; 
  width: 30px; 
  height: 30px;
}.iconx5 {
  flex-shrink: 0; 
  fill: #FAFAF7; 
  width: 15px; 
  height: 15px;
}
.iconx6 {
  flex-shrink: 0; 
  fill: #333C49; 
  width: 30px; 
  height: 30px;
}
.intro {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 30px;
}
.intro-icon {
    width: 100px;
    height: 100px;
    background: #FF629B;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

    .intro-icon:active {
        background-color: #FFD8E9;
        transform: scale(0.95);
    }
.intro-text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}
.intro-text2 {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}
.options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.option-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.option-card {
    transition: all 0.15s ease;
}

    .option-card:active {
        background-color: #FFD8E9;
        transform: scale(0.97);
    }
.option-content {
  display: flex;
  gap: 14px;
  align-items: center;
}
.option-content i {
  color: #FF629B;
  font-size: 1.4rem;
}
.option-content p {
  font-size: .85rem;
  color: #666;
}
.emergency {
    margin: 25px 0;
    padding: 16px;
    border-radius: 18px;
    background: #ffcade;
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.emergency-info {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}
    .emergency-info p {
        font-size: 0.8rem;
        text-align: left;
        margin-top: 4px;
    }
.call-btn {
    background: #FF629B;
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;

}
.call-btn {
    transition: all 0.15s ease;
}

    .call-btn:active {
        background-color: #FFD8E9;
        color: #17202E;
        transform: scale(0.95);
    }
.voice-btn {
    width: 100%;
    border: none;
    background: #FF629B;
    color: white;
    padding: 18px;
    border-radius: 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.15s ease;
}
    .voice-btn:active {
        background-color: #FFD8E9;
        color: #17202E;
        transform: scale(0.97);
    }

.socials {
  gap: 18px;
  font-size: 1.5rem;
  }
/*CSS DEL SECTOR DEL PERFIL*/
.perfil-container {
    width: min(100%, 900px);
    margin: auto;
    padding: 30px 0;
}
.titulo {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}
.perfil-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}
.perfil-foto {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}
.mail {
    color: #555;
    margin-bottom: 20px;
}
.descripcion {
    line-height: 1.7;
    text-align: left;
}
.subtitulo {
    margin-bottom: 15px;
    margin-top: 30px;
    margin: 30px 0 12px;
    font-size: 18px;
}
.card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-bottom: 28px;
    padding: 0;
}
.fila {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 16px; 
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #ddd;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .fila:last-child {
        border-bottom: none;
    }

.izquierda,
.derecha {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .derecha.seleccionada {
        color: #F85A9B;
    }

        .derecha.seleccionada i {
            color: #F85A9B;
        }

.izquierda {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.derecha {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    transition: color .2s ease;
}

    .derecha i {
        transition: color .2s ease;
    }

 

.seleccionado {
    color: #F85A9B;
}

    .seleccionado i {
        color: #F85A9B;
    }
    /* DETALLE EMPLEO */

.empleo-detalle {
    display: flex;
    flex-direction: column;
}

.empleo-imagen {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 18px;
    transition: transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

    .empleo-imagen:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.12);
    }

    .empleo-imagen:active {
        transform: scale(.98);
    }

.empleo-titulo {
    color: #FF629B;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 6px;
}

.empleo-descripcion {
    font-size: .95rem;
    line-height: 1.45;
    margin-bottom: 22px;
}

.empleo-datos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.empleo-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
    .empleo-item svg {
        width: 26px;
        height: 26px;
        fill: #17202E;
        flex-shrink: 0;
    }

.accion-empleo .izquierda svg {
    width: 26px;
    height: 26px;
    fill: #17202E;
}

.empleo-acciones {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accion-empleo {
    height: 74px;
    padding: 0 22px;
    border: 1px solid #17202E;
    border-radius: 18px;
    text-decoration: none;
    color: #17202E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.accion-empleo {
    transition: all 0.15s ease;
}
    .accion-empleo:active {
        background-color: #FFD8E9;
        transform: translateY(2px) scale(0.97);
        box-shadow: none;
    }


    .accion-empleo .izquierda {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .accion-empleo .izquierda svg {
            width: 26px;
            height: 26px;
            fill: #17202E;
        }

.flecha {
    font-size: 2rem;
    font-weight: 300;
}

.boton-postular {
    justify-content: center;
    align-items: center;
    margin-top: 18px;
    height: 88px;
    border-radius: 28px;
    font-size: 1.25rem;
    transition: transform .15s ease, background-color .15s ease;
}

    .boton-postular:hover {
        background: #df5688;
    }

    .boton-postular:active {
        transform: scale(.98);
    }
/* ESCANER */
.scanner-intro {
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.5;
}

.scanner-pasos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.paso-card {
    position: relative;
    border: 1px solid #17202E;
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 16px;
    background: #fff;
}

.paso-icono {
    position: relative;
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 10px;
    background: #FEEEF5;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .paso-icono svg {
        width: 34px;
        height: 34px;
        fill: #17202E;
    }

.numero-paso {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FF629B;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paso-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.paso-card p {
    margin: 0;
    line-height: 1.4;
}

.scanner-btn {
    margin-top: 18px;
    justify-content: center !important;
    font-size: 1.5rem;
    min-height: 74px;
}

    .scanner-btn .iconx2 {
        width: 34px;
        height: 34px;
        fill: #fff;
    }

.scanner-texto {
    margin: 18px 0 8px;
}
 /**MAPA*/
.top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
}
.mapah3 h3{
    margin:16px;
    font-size:16px;
}
#map {
    height: 500px;
    width: 100%;
    border-radius: 16px;
}
.buscador{
    margin:0 16px 18px;
    border:2px solid #424242;
    border-radius:12px;
    display:flex;
    align-items:center;
    padding:10px 14px;
}

.buscador i{
    color:#666;
}

.buscador input{
    border:none;
    outline:none;
    margin-left:10px;
    width:100%;
    font-family:Poppins;
}

.mapa{
    position:relative;
    margin:0 16px;
    border:4px solid #2498ff;
}

.mapa img{
    width:100%;
    display:block;
}

.gps{
    position:absolute;
    top:12px;
    right:12px;
    width:42px;
    height:42px;
    border-radius:50%;
    border:none;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
    cursor:pointer;
}

.gps i{
    font-size:18px;
}
.lista{
    margin:0 16px;
    border:2px solid #444;
    border-radius:18px;
    overflow:hidden;
}
.item{
    display:flex;
    align-items:center;
    padding:12px;
    border-bottom:1px solid #bbb;
}

.item:last-child{
    border:none;
}

.icono{
    font-size:22px;
    margin-right:12px;
}

.texto{
    flex:1;
}

.texto h4{
    font-size:14px;
    font-weight:600;
}

.texto p{
    font-size:11px;
    color:#555;
}

.estrella{
    color:#ff4f9a;
    font-size:22px;
}

.activa{
    color:#ff4f9a;
}

.recomendado{
    margin:16px;
    background:#ffe3ef;
    border-radius:24px;
    padding:18px;
}

.recomendado h4{
    margin-bottom:12px;
}

.direccion{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.direccion p{
    font-size:12px;
    color:#555;
}

.guardar{
    margin:10px 16px 22px;
    width:calc(100% - 32px);
    padding:16px;
    border:none;
    border-radius:16px;
    background:#ff4f9a;
    color:white;
    font-size:18px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    cursor:pointer;

}

.guardar:hover{
    background:#f03384;
}
.guardar a{
text-decoration-line: none;
color: #FAFAF7;
}
/*  CSS CALENDARIO */
.calendario{
    padding:0 20px;
}
.mes{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}
.mes h2{
    font-size:24px;
    font-weight:600;
}
.mes button{
    border:none;
    background:none;
    font-size:18px;
    cursor:pointer;
}
.dias-semana{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    text-align:center;
    font-size:12px;
    color:#777;
    margin-bottom:12px;
}
.dias{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:8px;
}
.dia{
    height:36px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
}
.dia:hover{
    background:#ffd8e8;
}
.inactivo{
    color:#bdbdbd;
}
.activo{
    background:#ff5b98;
    color:white;
    font-weight:600;
}
#fechaSeleccionada{
    color:#ff5b98;
    font-size:18px;
    margin:25px 20px 15px;
}
.agenda{
    width:280px;
    margin:auto;
    border:1.5px solid #333;
    border-radius:22px;
    overflow:hidden;
}
.actividad{
    display:flex;
    align-items:center;
    padding:14px;
    border-bottom:1px solid #d9d9d9;
}
.actividad:last-child{
    border:none;
}
.hora{
    width:62px;
    background:#ffe3ee;
    border-radius:14px;
    text-align:center;
    color:#ff5b98;
    padding:8px 0;
    margin-right:12px;
}
.hora span{
    display:block;
    font-size:22px;
    font-weight:700;
    line-height:20px;
}
.hora small{
    font-size:13px;
    font-weight:600;
}
.info{
    flex:1;
}
.info h4{
    font-size:15px;
    margin-bottom:5px
}
.categoria{
    font-size:12px;
    display:flex;
    align-items:center;
    color:#555;
    margin-bottom:4px;
}
.punto{
    width:8px;
    height:8px;
    background:#ff5b98;
    border-radius:50%;
    margin-right:6px;
}
.direccion{
    font-size:11px;
    color:#777;
}
.actividad i{
    font-size:18px;
    color:#666;
}
.recomendacion{
    margin:22px 20px;
}
.recomendacion h4{
    margin-bottom:12px;
    font-size:15px;
}
.card {
    background: #FAFAF7;
    border-radius: 22px;
    padding: 18px;
}
.card h3{
    margin-bottom:15px;
    font-size:18px;
}
.detalle{
    display:flex;
}
.hora-card{
    width:60px;
    color:#ff5b98;
    font-weight:700;
    margin-right:12px;
}
.hora-card span{
    display:block;
    font-size:20px;
}
.card p{
    color:#666;
    font-size:11px;
}
.boton{
    width:280px;
    margin:25px auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    border:none;
    border-radius:18px;
    background:#ff5b98;
    color:white;
    padding:18px;
    font-size:22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}
.boton:hover{
    background:#f53d87;
    transform:scale(1.02);
}
.boton a{
    text-decoration-line: none;
    color: #FAFAF7;
}
/* ==========================
   DETALLE ACTIVIDAD
========================== */

.detalle-actividad {
    margin-top: 1rem;
}

.detalle-imagen {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.detalle-actividad h2 {
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #17202E;
}

.detalle-descripcion {
    margin-top: .75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #17202E;
}

.detalle-info {
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

    .info-item img {
        width: 24px;
        height: 24px;
        margin-top: 4px;
    }

    .info-item strong {
        display: block;
        font-size: 1rem;
        color: #17202E;
    }

    .info-item p {
        margin: 0;
        font-size: .95rem;
        color: #666;
    }

.detalle-divider {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #D4D7DD;
}

.detalle-texto h3,
.detalle-opciones h3 {
    font-size: 1.35rem;
    color: #17202E;
    margin-bottom: 1rem;
}

.detalle-texto p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: .75rem;
}

/* Botones */

.opcion-util {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 24px;
    background: #F07FB1;
    color: #17202E;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
}

    .opcion-util span {
        font-size: 1.8rem;
    }

.opcion-principal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1.3rem;
    background: #F45C9D;
    color: white;
    border-radius: 24px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
}
@media (max-width: 768px) {

    /* Perfil */

    .perfil-header {
        flex-direction: column;
        text-align: center;
    }

    .perfil-foto {
        width: 180px;
        height: 180px;
    }

    .fila {
        padding: 18px;
    }

        .fila span {
            gap: 8px;
        }

    /* Asistencia */

    .intro {
        flex-direction: column;
        text-align: center;
    }

    .emergency {
        flex-direction: column;
        gap: 15px;
    }

    .call-btn {
        width: 100%;
        text-align: center;
    }

    .page-title {
        font-size: 20px;
        font-weight: 500;
        color: #17202E;
        margin: 0;
    }

    .brand h3 {
        font-size: 1.5rem;
    }
}
    /* ======================================================
                    DESKTOP
======================================================*/

    @media screen and (min-width:1200px) {

        /*----------------------------------
GENERAL
----------------------------------*/

        body {
            padding-top: 0;
        }

        main {
            max-width: 1400px;
            margin: auto;
            padding: 40px;
        }

        .page-header {
            display: none;
        }


        /*----------------------------------
HEADER
----------------------------------*/

        .navbar {
            position: relative;
            display: flex;
            background: #FAFAF7;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }
        .logo2 {
            height: 45px !important; 
        }

            .logo2 img {
                max-height: 45px !important;
            }
        .menu,
        .menu-check {
            display: none !important;
        }

        .logo2 {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

            .logo2 img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .nav-menu {
            position: static !important;
            display: flex !important;
            flex-direction: row;
            align-items: center;
            gap: 35px;
            width: auto !important;
            height: auto !important;
            top: auto !important;
            right: auto !important;
            background: none !important;
            transition: none !important;
        }

            .nav-menu a {
                display: block;
                padding: 0;
                color: #17202E;
                background: none;
                border: none;
                text-decoration: none;
                font-size: 18px;
                font-weight: 500;
            }

                .nav-menu a:hover {
                    color: #FF629B;
                }