@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;
}
.mi-video-local {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 20px;
    object-fit: cover;
}
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;
}
.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-left,
.hero-right {
    width: 100%;
}
    .hero-left .caja {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
.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;
}*/
.app-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}
.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
}

    .logo2 img {
        height: 100% !important; 
        width: auto !important; 
        max-height: 60px !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.3rem;
}
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: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.caja p {
  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-card2 {
    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: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
}

    .actividad-card2 img {
        width: 100%;
        height: 180px;
        display: block;
        object-fit: cover;
        object-position: center;
        flex-shrink: 0;
    }
.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;
    margin-top: 10px;
}
.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;
}
.results-section::after {
    content: "";
    display: table;
    clear: both;
}
.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;
    font-size: 1.2rem;
    margin-bottom: 0px;
}
.actividades2 figure {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 6px 20px 20px;
    margin: 0;
    scrollbar-color: #17202E #FAFAF7;
}

.talleres1 h2 {
    width: 100%;
    padding: 20px 5px;
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0px;
}
.talleres1 figure {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    padding: 6px 20px 20px;
    margin: 0;
    scrollbar-color: #17202E #FAFAF7;
}


    /* 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 {
        fill: #FAFAF7;
        width: 20px;
        height: 20px;
        display: block;
    }

    .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: left;
        margin-bottom: 20px;
    }

    .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;
        }

        .option-content h3,
        .option-content p {
            margin: 0;
        }

    .emergency {
        margin: 25px 0;
        padding: 15px;
        border-radius: 18px;
        background: #ffcade;
        display: flex;
        text-align: left;
    }

    .emergency-info {
        display: flex;
        gap: 12px;
    }

        .emergency-info p {
            font-size: 0.8rem;
            text-align: left;
        }

    .call-btn {
        background: #FF629B;
        color: white;
        text-decoration: none;
        padding: 12px;
        border-radius: 12px;
        display: flex;
        align-items: center; /* Centra el ícono y el texto verticalmente */
        justify-content: center; /* Centra todo el contenido del botón */
        gap: 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;
        display: flex;
        align-items: center; /* Centra el ícono y el texto verticalmente */
        justify-content: center; /* Centra todo el contenido del botón */
        gap: 12px;
    }

        .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;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #ddd;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 18px 32px;
}

        .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;
    justify-content: flex-start;
    gap: 12px;
    flex: 1;
}

.derecha {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    transition: color .2s ease;
    margin-left: auto;
}

        .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.2rem;
    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 {
    width: 340px;
    max-width: 100%;
    margin: 32px auto 16px;
}

    .mapah3 h3 {
        margin: 0;
        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 {
    width: 340px;
    max-width: 100%;
    margin: 22px auto;
    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: 100%;
    max-width: 360px;
    margin: auto;
    border: 1.5px solid #333;
    border-radius: 22px;
    overflow: hidden;
}

.actividad {
    display: flex;
    align-items: center;
    padding: 18px 16px;
    border-bottom: 1px solid #d9d9d9;
    min-height: 92px;
    gap: 12px;
}

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

.hora {
    width: 92px;
    background: #ffe3ee;
    border-radius: 14px;
    text-align: center;
    color: #ff5b98;
    padding: 12px 10px;
    margin-right: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .hora span {
        display: block;
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
    }

    .hora small {
        font-size: 12px;
        display: block;
        margin-top: 2px;
        font-weight: 600;
    }

.info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .info h4 {
        margin: 0 0 6px;
        font-size: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }



.categoria {
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #555;
    margin-bottom: 4px;
    margin: 0;
}

    .punto {
        width: 8px;
        height: 8px;
        background: #ff5b98;
        border-radius: 50%;
        margin-right: 6px;
    }

.direccion {
    font-size: 11px;
    color: #777;
    margin: 0;
}

    .actividad i {
        font-size: 18px;
        color: #666;
    }

.recomendacion {
    width: 340px;
    max-width: 100%;
    margin: 22px auto;
}

        .recomendacion h4 {
            margin-bottom: 12px;
            font-size: 15px;
        }

    .card {
        background: #FAFAF7;
        border-radius: 22px;
        padding: 18px;
    }

        .card h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .card-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,.12);
    }
    .detalle {
        display: flex;
    }

.hora-card {
    width: 92px;
    background: #ffe3ee;
    border-radius: 14px;
    text-align: center;
    color: #ff5b98;
    padding: 12px 10px;
    font-weight: 700;
    margin-right: 12px;
}

    .hora-card span {
        display: block;
        font-size: 20px;
        font-weight: 700;
        line-height: 20px;
    }

    .hora-card small {
        font-size: 12px;
        display: block;
        margin-top: 2px;
        font-weight: 600;
    }

    .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: 20px;
        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;
        margin-bottom: 10px;
    }
.detalle-opciones {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .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: 0.1rem;
}

    .detalle-texto p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: .75rem;
    }
.a {
    margin-top: 20px;
}
    /* 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.3rem;
        font-weight: 700;
    }

        /* 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;
        }


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


@media (min-width: 768px) and (max-width: 1200px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "logo logo"
            "caja video";
        gap: 16px 40px;
        align-items: start;
        margin-bottom: 30px;
    }

    .hero-left {
        display: contents;
    }

        .hero-left .logo {
            grid-area: logo;
            margin: 0 0 4px;
            text-align: left;
        }

        .hero-left .caja {
            grid-area: caja;
        }

    .hero-right {
        grid-area: video;
    }
    .logo {
        text-align: left;
        margin: 0 0 24px;
    }
    .caja {
        margin-bottom: 30px;
    }

        .mi-video-local {
            max-width: 100%;
            margin: 0;
        }

        .button-list {
            display: flex;
            flex-direction: unset;
            gap: 15px;
            margin-bottom: 30px;
        }

        .otras-cosas {
            flex-direction: unset;
        }

        .empleo-link {
            text-decoration: none;
            color: inherit;
            display: block;
            width: 32%;
            position: relative;
            float: left;
            padding-right: 1%;
            min-height: 132px;
        }

        .cosas-oscuro {
            width: 33%;
            position: relative;
            float: left;
        }

        .emergency {
            display: inline-flex;
            max-width: 49%;
        }

        .voice-btn {
            display: inline-flex;
            width: 50%;
        }

        .option-card {
            position: relative;
            float: left;
            width: 48%;
            margin: 1%;
        }

        .options {
            display: inline;
        }

        .caja-actividades {
            max-width: 100%;
        }

        .actividades1 {
            max-width: 100%;
        }

        .actividad-card {
            flex: 0 0 50%;
        }

        .actividad-card2 {
            flex: 0 0 50%;
        }

        main {
            background-color: #FAFAF7;
            padding: 20px 20px 20px 20px;
            position: relative;
            float: left;
            width: 100%;
        }

            main::after {
                content: "";
                display: table;
                clear: both;
            }

        .empleo-link {
            text-decoration: none;
            color: inherit;
            display: block;
            width: 48%;
            position: relative;
            float: left;
            padding-right: 1%;
            min-height: 178px;
        }

        .site-footer {
            display: grid;
            grid-template-columns: 240px 1fr;
            grid-template-areas:
                "logo descripcion"
                "logo redes"
                "linea linea"
                "copy legal";
            gap: 30px 60px;
            padding: 60px;
            text-align: left;
        }

        .contenedor {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

            .contenedor > .calendario {
                max-width: none;
                width: 100%;
            }

                .contenedor > .calendario .dia {
                    aspect-ratio: 1 / 1;
                    height: auto;
                    width: 100%;
                    font-size: 20px;
                }

                .contenedor > .calendario .dias {
                    gap: 8px;
                }

                .contenedor > .calendario .dias-semana {
                    font-size: 14px;
                }

                .contenedor > .calendario .mes h2 {
                    font-size: 28px;
                }

        .contenedor-derecha {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

            .contenedor-derecha #fechaSeleccionada {
                margin: 0;
                text-align: center;
            }

        .contenedor > .agenda {
            grid-area: agenda;
        }

        .contenedor > .recomendacion {
            grid-area: recomendacion;
        }

        .contenedor > .boton {
            grid-area: boton;
        }

        .contenedor-mapa {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .mapa-izquierda {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

            .mapa-izquierda .buscador {
                margin: 0;
            }

            .mapa-izquierda #map {
                height: 550px;
            }

        .mapa-derecha {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

            .mapa-derecha .mapah3,
            .mapa-derecha .lista,
            .mapa-derecha .recomendacion {
                width: 100%;
                max-width: none;
                margin: 0;
            }

            .mapa-derecha .guardar {
                width: 100%;
                margin: 0;
            }
    .perfil-page {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "header       header"
            "foto         foto"
            "labtitulo    configtitulo"
            "labcard      configcard";
        gap: 10px 40px;
        align-items: start;
    }

        .perfil-page > .page-header {
            grid-area: header;
        }

        .perfil-page > .perfil-header {
            grid-area: foto;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 20px;
        }

        .perfil-page > h2.subtitulo:nth-of-type(1) {
            grid-area: labtitulo;
        }

        .perfil-page > h2.subtitulo:nth-of-type(2) {
            grid-area: configtitulo;
        }

        .perfil-page > section.card:nth-of-type(2) {
            grid-area: labcard;
        }

        .perfil-page > section.card:nth-of-type(3) {
            grid-area: configcard;
        }

        .footer-logo {
            grid-area: logo;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            margin-bottom: 0;
        }

            .footer-logo img {
                width: 180px;
            }

        .footer-description {
            grid-area: descripcion;
            max-width: none;
            margin: 0;
        }

        .footer-social {
            grid-area: redes;
            justify-content: flex-start;
            margin: 0;
        }

        .footer-divider {
            grid-area: linea;
            max-width: none;
            margin: 10px 0;
        }

        .footer-copy {
            grid-area: copy;
            margin: 0;
        }

        .footer-legal {
            grid-area: legal;
            margin: 0;
            text-align: right;
        }
    }

/* ======================================================
                    DESKTOP
======================================================*/

@media screen and (min-width:1200px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: center;
        margin-bottom: 20px;
        
    }

    .hero-left {
        order: 1;
    }
        .hero-left .caja {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    .hero-right {
        order: 2;
    }
    .mi-video-local {
        max-width: 100%;
        margin: 0;
    }
    .option-card {
        flex: 0 0 25%;
    }
    .logo {
        text-align: left;
        margin: 30px auto;
    }

    .empleo-link {
        text-decoration: none;
        color: inherit;
        display: block;
        width: 32%;
        position: relative;
        float: left;
        padding-right: 1%;
        min-height: 132px;
    }

    .emergency {
        display: inline-flex;
        min-width: 49%;
    }

    .voice-btn {
        display: inline-flex;
        width: 50%;
    }

    .options {
        flex-direction: row;
    }
    .button-list {
        display: flex;
        flex-direction: unset;
        gap: 15px;
        margin-bottom: 30px;
        width: auto;
        flex: 0 0 auto;
    }


    .site-footer {
        display: grid;
        grid-template-columns: 260px 1fr auto;
        grid-template-areas:
            "logo descripcion redes"
            "linea linea linea"
            "copy legal legal";
        gap: 35px 70px;
        padding: 70px 90px;
        align-items: start;
        text-align: left;
    }
    .busqueda-voz {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icono caja"
            "texto caja";
        align-items: center;
        column-gap: 24px;
        row-gap: 6px;
    }
    .busqueda-gris {
        grid-area: caja;
        min-height: 90px;
        max-width: 900px;
    }
    .intro-icon {
        grid-area: icono;
        margin: 0;
    }

    .buscadorxvoz {
        grid-area: texto;
        text-align: center;
    }

    .busqueda-gris {
        grid-area: caja;
        min-height: 120px;
    }
    .campo-busqueda {
        grid-area: caja;
        min-height: 90px;
        max-width: 500px;
    }
    .empleo-detalle {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "imagen   acciones"
            "titulo   acciones"
            "descripcion acciones"
            "datos    postular";
        gap: 20px 40px;
        align-items: start;
    }

    .empleo-imagen {
        grid-area: imagen;
        margin-bottom: 0;
    }

    .empleo-titulo {
        grid-area: titulo;
    }

    .empleo-descripcion {
        grid-area: descripcion;
        margin-bottom: 0;
    }

    .empleo-datos {
        grid-area: datos;
        margin-bottom: 0;
    }

    .empleo-acciones {
        grid-area: acciones;
    }

    .boton-postular {
        grid-area: postular;
        margin-top: 0;
        align-self: end;
    }
    .actividad-card {
        flex: 0 0 38%;
    }
        .actividad-card img {
            height: 260px;
        }
    .intro-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "texto   texto"
            "titulo  titulo"
            "options emergency"
            "options voice";
        gap: 20px 40px;
        align-items: start;
    }

    .intro-text {
        grid-area: texto;
    }

    .intro-content > h2 {
        grid-area: titulo;
    }

    .options {
        grid-area: options;
        flex-direction: column;
    }

    .emergency {
        grid-area: emergency;
        margin: 0;
    }

    .voice-btn {
        grid-area: voice;
        margin-top: 0;
    }
    .intro-text {
        grid-area: texto;
        text-align: center;
    }
    .caja-actividades {
        max-width: 700px;
        width: 100%;
        margin: 10px;
        margin-bottom: 60px;
    }

    .actividades2,
    .talleres1 {
        width: 48%;
        float: left;
    }

    .actividades2 {
        margin-right: 4%;
    }

        .actividades2 h2,
        .talleres1 h2 {
            text-align: center;
        }

    .actividad-card2 {
        flex: 0 0 45%;
    }

        .actividad-card2 img {
            height: auto;
            aspect-ratio: 1 / 1;
        }

    .perfil-page {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "header       header"
            "foto         foto"
            "labtitulo    configtitulo"
            "labcard      configcard";
        gap: 10px 40px;
        align-items: start;
    }

        .perfil-page > .page-header {
            grid-area: header;
        }

        .perfil-page > .perfil-header {
            grid-area: foto;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 20px;
        }

        .perfil-page > h2.subtitulo:nth-of-type(1) {
            grid-area: labtitulo;
        }

        .perfil-page > h2.subtitulo:nth-of-type(2) {
            grid-area: configtitulo;
        }

        .perfil-page > section.card:nth-of-type(2) {
            grid-area: labcard;
        }

        .perfil-page > section.card:nth-of-type(3) {
            grid-area: configcard;
        }
    .escaner-page {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "header  header"
            "intro   intro"
            "pasos   pasos"
            "iniciar subir"
            "vacio   texto"
            "archivo archivo";
        gap: 16px 30px;
        align-items: start;
    }

        .escaner-page > .page-header {
            grid-area: header;
        }

        .escaner-page > .scanner-intro {
            grid-area: intro;
            text-align: center;
        }

        .escaner-page > .scanner-pasos {
            grid-area: pasos;
            max-width: 700px;
            width: 100%;
            margin: 0 auto;
        }

        .escaner-page > label[for="cameraInput"] {
            grid-area: iniciar;
            margin-top: 0;
        }

        .escaner-page > label[for="fileInput"] {
            grid-area: subir;
            margin-top: 0;
        }

        .escaner-page > .scanner-texto {
            grid-area: texto;
            text-align: left;
            margin: 0;
            justify-self: start;
        }

        .escaner-page > #archivoSeleccionado {
            grid-area: archivo;
            text-align: center;
        }
        .escaner-page > .caja-rosa.scanner-btn {
            width: auto;
            flex: 0 0 auto;
            justify-content: center;
        }
        .escaner-page > label[for="cameraInput"] {
            justify-self: end;
        }

        .escaner-page > label[for="fileInput"] {
            justify-self: start;
        }
    .contenedor {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

        .contenedor > .calendario {
            max-width: none;
            width: 100%;
        }

            .contenedor > .calendario .dia {
                aspect-ratio: 1 / 1;
                height: auto;
                width: 100%;
                font-size: 20px;
            }

            .contenedor > .calendario .dias {
                gap: 8px;
            }

            .contenedor > .calendario .dias-semana {
                font-size: 14px;
            }

            .contenedor > .calendario .mes h2 {
                font-size: 28px;
            }

    .contenedor-derecha {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

        .contenedor-derecha #fechaSeleccionada {
            margin: 0;
            text-align: center;
        }

    .contenedor > .agenda {
        grid-area: agenda;
    }

    .contenedor > .recomendacion {
        grid-area: recomendacion;
    }

    .contenedor > .boton {
        grid-area: boton;
    }
    .contenedor-mapa {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .mapa-izquierda {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

        .mapa-izquierda .buscador {
            margin: 0;
        }

        .mapa-izquierda #map {
            height: 550px;
        }

    .mapa-derecha {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

        .mapa-derecha .mapah3,
        .mapa-derecha .lista,
        .mapa-derecha .recomendacion {
            width: 100%;
            max-width: none;
            margin: 0;
        }

        .mapa-derecha .guardar {
            width: 100%;
            margin: 0;
        }
    .contenedor-detalle {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start;
    }

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

    .detalle-derecha .detalle-divider {
        display: none;
    }

    .footer-logo {
        grid-area: logo;
    }

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

    .footer-description {
        grid-area: descripcion;
        max-width: 600px;
        margin: 0;
        font-size: 16px;
    }

    .footer-social {
        grid-area: redes;
        justify-content: flex-end;
        margin: 0;
    }

    .footer-divider {
        grid-area: linea;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .footer-copy {
        grid-area: copy;
        margin-top: 6px;
        text-align: left;
        max-width: 500px;
        margin: 0 auto 20px;
        margin: 0;
    }

    .footer-legal {
        grid-area: legal;
        margin: 0;
        text-align: left;
        font-size: 11px;
        line-height: 1.6;
        color: rgba(255,255,255,.7);
    }

    .actividades1 {
        max-width: 100%;
        min-height: 200px;
    }

    .actividad-card {
        flex: 0 0 31%;
    }
    .caja-rosa {
        width: auto;
        flex: 0 0 auto;
        padding: 15px 25px;
        position: relative;
        flex-direction: unset;
        gap: 15px;
    }
    .cosas-oscuro {
        width: auto;
        flex: 0 0 auto;
        padding: 15px 25px;
        position: relative;
    }
    .otras-cosas {
        flex-direction: unset;
        gap: 15px;
        margin-top: 10px;
    }
.a {
    margin-top: 30px;
}
.detalle-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "actividad opciones"
        "info      opciones"
        "texto     opciones";
    gap: 20px 40px;
    align-items: start;
}

.detalle-page .detalle-actividad {
    grid-area: actividad;
}

.detalle-page .detalle-info {
    grid-area: info;
}

.detalle-page .detalle-texto {
    grid-area: texto;
}

.detalle-page .detalle-opciones {
    grid-area: opciones;
}

.detalle-page .detalle-divider {
    display: none;
}
  
    /*----------------------------------
GENERAL
----------------------------------*/

    body {
        padding-top: 0;
    }

    main {
        max-width: 1800px;
        margin: auto;
        padding: 60px;
        position: relative;
    }

    .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;
    }

    .menu,
    .menu-check {
        display: none !important;
    }

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

        .logo2 img {
            width: 100%;
            height: 100%;
            width: 80px;
            height: 80px;
        }

    .nav-menu {
        position: static !important;
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        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: 16px;
            font-weight: 500;
        }

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

    .app-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}