.apps-page {
    background-color: #000000;
    width: 100%;
    min-width: 1440px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* RESET para eliminar franjas blancas */
html, body {
    margin: 0;
    padding: 0;
    background-color: #000000;
}

.apps-page {
    background-color: #000000;
    width: 100%;
    min-width: 1440px;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

/* Asegurar que el contenido se expanda */
.apps-content {
    flex: 1;
    padding-top: 200px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
/* Navegación */
.apps-page .navigation {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 147px;
    display: flex;
    justify-content: space-between;
    background-color: #000000;
    border: 1px solid #222222;
    box-shadow: 0px 4px 4px #00000040;
}

.apps-page .text-wrapper {
    display: flex;
    align-items: center;
    margin-top: 55px;
    width: 152px;
    height: 54px;
    margin-left: 80px;
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 36px;
    letter-spacing: 0;
    line-height: 54px;
    white-space: nowrap;
}

.apps-page .items {
    display: inline-flex;
    margin-top: 56px;
    width: 506px;
    height: 58px;
    position: relative;
    margin-right: 80px;
    align-items: center;
    justify-content: flex-end;
    gap: 48px;
}

.apps-page .div {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: var(--body-text-font-family);
    font-weight: var(--body-text-font-weight);
    color: #ffffff;
    font-size: var(--body-text-font-size);
    letter-spacing: var(--body-text-letter-spacing);
    line-height: var(--body-text-line-height);
    white-space: nowrap;
    font-style: var(--body-text-font-style);
}

.apps-page .text-wrapper-2 {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    font-family: var(--botones-font-family);
    font-weight: var(--botones-font-weight);
    color: #ffffff;
    font-size: var(--botones-font-size);
    letter-spacing: var(--botones-letter-spacing);
    line-height: var(--botones-line-height);
    white-space: nowrap;
    font-style: var(--botones-font-style);
}

/* Subrayado en el item activo del nav */
.apps-page .div.active {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}

/* Contenido principal */
.apps-content {
    padding-top: 200px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.apps-title {
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 64px;
    letter-spacing: -1.28px;
    text-align: center;
}

.apps-subtitle {
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    opacity: 0.7;
    margin-bottom: 48px;
}

/* Grid de cards */
.apps-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 80px;
}

/* Card individual */
.app-card {
    background-color: #000000;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 32px;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.app-card:hover {
    border-color: #555555;
    transform: translateY(-6px);
}

/* Logo */
.app-logo-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
}

.app-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Nombre de la app */
.app-name {
    font-family: "Clash Display", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 26px;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Descripción */
.app-description {
    font-family: "Encode Sans Expanded", Helvetica;
    font-weight: 400;
    color: #aaaaaa;
    font-size: 16px;
    text-align: center;
    line-height: 26px;
}


