/* ----------------------- Reset y fuente ----------------------- */
html {
    /* Base estable */
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #fff;
    background: #0f0f12;
    line-height: 1.6;
    font-size: 1rem;
    transform: none;
    overflow-x: hidden;
}

body.nav-menu-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

/* Reset mínimo + box-sizing consistente */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   Paleta y variables
   ========================================================= */
:root {
    --violeta: #8A2BE2;
    --violeta-10: #8a2be21a;
    --violeta-20: #8a2be233;
    --gris: #1a1a22;
    --gris-2: #141418;
    --texto-sec: #b9b9c0;
    --container: 1100px;
    --header-h: 65px;
}

/* =========================================================
   Utilidad
   ========================================================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 40px;
    gap: 14px;
    background: rgba(20, 20, 28, .9);
    border-bottom: 1px solid #2a2a35;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}


.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;

}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(138, 43, 226, 0.4);
}

@media (max-width: 600px) {
    .brand-logo {
        width: 40px;
        height: 40px;
    }
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1 1 55%;
}

/* Tarjeta para el logo BS */
.hero-logo-card {
    flex: 0 0 400px;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    padding: 1.5rem;
    /*background:
    radial-gradient(circle at top, #b066ff 0, #8a2be2 35%, #2a0b4a 70%, #060318 100%);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    display: block;
}

/* Responsive: en celular se apila y centra */
@media (max-width: 900px) {
    .hero-layout {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-logo-card {
        width: 320px;
        flex: 0 0 auto;
    }
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: var(--violeta);
}

#main-nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
}

#main-nav ul#main-nav-list {
    margin: 0;
}

#main-nav {
    display: flex;
    align-items: center;
    position: relative;
}

#main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 6px;
    position: relative;
}

#main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: var(--violeta);
    transition: .25s;
}

#main-nav a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #8a2be255;
    border-radius: 8px;
}

#main-nav a:hover::after,
#main-nav a:focus-visible::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #2a2a35;
    background: #13131b;
    color: #fff;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #8a2be255;
}

.nav-toggle__icon {
    position: relative;
    width: 20px;
    height: 14px;
    display: inline-block;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle__icon::before {
    top: 0;
    box-shadow: 0 6px 0 currentColor;
}

.nav-toggle__icon::after {
    bottom: 0;
}

.header.nav-open .nav-toggle__icon::before {
    transform: translateY(6px) rotate(45deg);
    box-shadow: none;
}

.header.nav-open .nav-toggle__icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   Hero (pantalla completa)
   ========================================================= */
.hero {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0 40px;
    background:
        radial-gradient(1600px 700px at 50% -22%, var(--violeta-20), transparent 60%),
        radial-gradient(900px 380px at 85% 8%, #8a2be215, transparent 60%),
        linear-gradient(180deg, #12121a 0%, #0f0f12 60%);
}

.hero h1 {
    /* clamp acotado para desktop cómodo */
    font-size: clamp(2rem, 1.2rem + 1.2vw, 3.6rem);
    font-weight: 700;
}

.hero h1 span {
    color: var(--violeta);
}

.hero p {
    color: var(--texto-sec);
    margin: 16px auto 26px;
    max-width: 700px;
    font-size: 1.05rem;
}

/* =========================================================
   Botón primario (unificado)
   ========================================================= */
.btn,
.btn-enviar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--violeta);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    transition: .2s;
    -webkit-appearance: none;
    appearance: none;
    font-size: 1rem;
}

.btn:hover,
.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px #8a2be233;
}

.btn:focus-visible,
.btn-enviar:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #8a2be255;
}

/* =========================================================
   Secciones genéricas
   ========================================================= */
section {
    padding: 20px 0;
}

section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 1.1rem + 1.2vw, 2.6rem);
    margin-bottom: 10px;
}

section p {
    color: var(--texto-sec);
}

#proyectos,
#sobre-mi,
#servicios,
#contacto {
    scroll-margin-top: calc(var(--header-h) + 24px);
}

/* =========================================================
   Servicios (CTA en home + catalogo)
   ========================================================= */
#servicios {
    min-height: calc(65svh - var(--header-h));
    display: flex;
    align-items: center;
}

.servicios-cta {
    max-width: 860px;
    margin: 16px auto 0;
    text-align: center;
    background: linear-gradient(180deg, #171721 0%, #13131b 100%);
    border: 1px solid #282838;
    border-left: 4px solid var(--violeta);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 10px 28px #00000045;
}

.servicios-cta p {
    margin: 0 auto 16px;
    max-width: 640px;
    font-size: 1.05rem;
}

.servicio-precio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #1b1b25;
    border: 1px solid #2a2a3a;
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.servicio-meta {
    color: #cfcfe0;
    font-size: .95rem;
    margin: 6px 0 0;
}

.servicio-desde {
    color: #bfc0cd;
    font-size: .9rem;
    margin: 2px 0 10px;
    line-height: 1.55;
    opacity: .92;
}

.servicio-desde strong {
    color: #e6e6f2;
}

.servicio-meta strong {
    color: #fff;
}

.catalogo-categoria {
    margin-top: 28px;
}

.catalogo-categoria h3 {
    color: var(--violeta);
    font-size: 1.45rem;
    margin: 0 0 8px;
}

.catalogo-categoria__desc {
    margin: 0 0 14px;
    color: var(--texto-sec);
    max-width: 920px;
}

.planes-servicio {
    margin-top: 18px;
}

.plan-servicio-titulo {
    font-size: 1.08rem;
    color: #e8e8f5;
    margin: 0 0 10px;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.plan-badge--standard {
    background: #1c1c27;
    border: 1px solid #38384c;
    color: #d8d8e6;
}

.plan-badge--pro {
    background: #8a2be22b;
    border: 1px solid #8a2be270;
    color: #efe4ff;
}

.list-check {
    margin: 0;
    padding-left: 18px;
}

.list-check li {
    margin: 8px 0;
    color: var(--texto-sec);
}

/* =========================================================
   Proyectos
   ========================================================= */
.proyectos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.proyectos-grid--web {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proyectos-grid--showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proyecto {
    background: linear-gradient(180deg, #171721 0%, #13131b 100%);
    border: 1px solid #282838;
    border-left: 4px solid var(--violeta);
    border-radius: 14px;
    padding: 18px;
    transition: .25s;
    display: flex;
    flex-direction: column;
}

.proyecto:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px #00000055;
}

.proyecto-imagen {
    height: 247px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f14;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.proyecto-imagen img {
    width: 100%;
    height: 248px;
    object-fit: cover;
    border-radius: 14px;
}


.proyecto h3 {
    color: var(--violeta);
    margin: 6px 0 6px;
    font-size: 1.15rem;
}

.proyecto p {
    color: var(--texto-sec);
}

.tecnologias {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.tecnologias span {
    background: #1b1b25;
    border: 1px solid #2a2a3a;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .85rem;
}

.proyecto .acciones {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.proyecto .acciones .btn {
    flex: 1 0 auto;
}

/* =========================================================
   SOBRE MÍ
   ========================================================= */
#sobre-mi.section-full {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
}

.section-full .about {
    width: 100%;
}

/* Título + subrayado fino */
.about-title {
    text-align: center;
    font-size: clamp(1.75rem, 1.1rem + 1.2vw, 2.6rem);
}

.about-divider {
    display: block;
    width: 66px;
    height: 3px;
    margin: 10px auto 18px;
    background: var(--violeta);
    border-radius: 999px;
}

/* Párrafo principal centrado y legible */
.about-lead {
    max-width: 901px;
    margin: 0 auto 18px;
    text-align: center;
    color: var(--texto-sec);
    font-size: 1.1rem;
    line-height: 1.85;
}

/* Chips de skills */
.chips {
    list-style: none;
    padding: 0;
    margin: 22px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    max-width: 980px;
}

.chip {
    padding: 12px 18px;
    border-radius: 999px;
    background: #13131b;
    border: 1px solid var(--violeta);
    color: #d9d9e3;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 22px #8a2be220, inset 0 0 0 1px #8a2be215;
}

.chip i {
    font-size: 1.08em;
    opacity: .9;
}

/* =========================================================
   Contacto
   ========================================================= */
#contacto {
    min-height: calc(100dvh - var(--header-h));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1px 0 40px;
    scroll-margin-top: var(--header-h);
}

#contacto .form-contacto {
    max-width: 860px;
    margin: 20px auto 0;
    background: #14141c;
    border: 1px solid var(--violeta);
    border-radius: 14px;
    padding: 11px;
    box-shadow: 0 8px 22px #8a2be220, inset 0 0 0 1px #8a2be215;
}

.form-contacto .form-head {
    text-align: center;
    padding: 8px 0 12px;
    border-bottom: 1px solid #26263a;
    margin-bottom: 14px;
}

.form-contacto .form-head h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.form-grupo {
    margin-bottom: 14px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #2a2a3a;
    background: #0f0f14;
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--violeta);
    box-shadow: 0 0 0 2px #8a2be21f;
}

#mensaje {
    width: 100%;
    resize: none;
    min-height: 200px;
    max-height: 320px;
    overflow: auto;
    line-height: 1.6;
}


/* Botón enviar centrado */
.form-contacto .btn-enviar {
    display: block;
    margin: 15px auto 0;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 14px;
    text-transform: uppercase;
}

.form-contacto .btn-enviar i {
    margin-left: 10px;
    font-size: 1.1rem;
}

.form-contacto .form-note {
    text-align: center;
    color: var(--texto-sec);
    font-size: .92rem;
    margin-top: 10px;
}

/* Mensajes del formulario de contacto (éxito / error) */
.mensaje-respuesta {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

/* Estado de éxito */
.mensaje-respuesta--ok {
    display: block;
    background: #143524;
    border: 1px solid #27ae60;
    color: #d4f9e3;
}

/* Estado de error */
.mensaje-respuesta--error {
    display: block;
    background: #3c141c;
    border: 1px solid #e74c3c;
    color: #ffe3e0;
}

.proposal-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    background: rgba(9, 9, 14, .5);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.proposal-modal[hidden] {
    display: none !important;
}

.proposal-modal__panel {
    width: min(920px, 100%);
    max-height: calc(100dvh - 40px);
    overflow: auto;
    background: #12121a;
    border: 1px solid #2c2c3c;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .5);
    padding: 16px;
    position: relative;
}

.proposal-modal__panel h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.proposal-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #313146;
    background: #1b1b27;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.proposal-modal__close:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #8a2be255;
}

.proposal-modal__content .form-contacto {
    margin-top: 8px;
}

.showcase-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: grid;
    place-items: center;
    background: rgba(6, 6, 10, .76);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.showcase-modal[hidden] {
    display: none !important;
}

.showcase-modal__panel {
    width: min(1060px, 100%);
    max-height: calc(100dvh - 40px);
    background: #12121a;
    border: 1px solid #2c2c3c;
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: auto;
}

.showcase-modal__image {
    width: 100%;
    max-height: min(65vh, 680px);
    object-fit: contain;
    border-radius: 12px;
    background: #0d0d14;
}

.showcase-modal__caption {
    margin: 10px 0 8px;
    color: #d6d6e3;
    font-weight: 600;
}

.showcase-modal__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.showcase-modal__thumb {
    border: 1px solid #313146;
    border-radius: 10px;
    background: #0f0f16;
    padding: 3px;
    cursor: pointer;
}

.showcase-modal__thumb.is-active {
    border-color: var(--violeta);
    box-shadow: 0 0 0 2px #8a2be244;
}

.showcase-modal__thumb img {
    width: 100%;
    height: 78px;
    object-fit: cover;
    border-radius: 8px;
}

.showcase-modal__close,
.showcase-modal__prev,
.showcase-modal__next {
    position: absolute;
    border: 1px solid #313146;
    background: #1b1b27;
    color: #fff;
    cursor: pointer;
    border-radius: 999px;
}

.showcase-modal__close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
    line-height: 1;
}

.showcase-modal__prev,
.showcase-modal__next {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    line-height: 1;
}

.showcase-modal__prev {
    left: 10px;
}

.showcase-modal__next {
    right: 10px;
}

@media (max-width: 768px) {
    .showcase-modal__prev,
    .showcase-modal__next {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }

    .showcase-modal__thumb img {
        height: 64px;
    }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    border-top: 1px solid #242433;
    padding: 28px 0;
    text-align: center;
    color: #fff;
    opacity: .9;
}

/* -------------------------------------------
   Botón flotante "Subir"
   ------------------------------------------- */
.btn-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--violeta);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
    z-index: 999;
}

.btn-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-top:hover {
    box-shadow: 0 14px 36px #8a2be244;
}

.btn-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px #8a2be255, 0 14px 36px #8a2be244;
}

/* ----------------------- Pequeños ajustes móviles ----------------------- */

@media (max-width: 1024px) {
    .header {
        padding: 0 24px;
    }

    #main-nav a {
        font-size: 1rem;
        padding: 10px 6px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 76px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        height: auto;
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        position: sticky;
    }

    .nav-toggle {
        display: inline-flex;
    }

    #main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(20, 20, 28, .96);
        border-bottom: 1px solid #2a2a35;
        border-top: 1px solid #2a2a35;
        padding: 8px 0 14px;
        display: none;
    }

    .header.nav-open #main-nav {
        display: block;
    }

    #main-nav ul {
        width: 100%;
        flex-direction: column;
        gap: 8px;
        padding: 0 18px;
    }

    #main-nav a {
        padding: 10px 4px;
        font-size: .98rem;
        display: block;
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 70px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 5vw, 2.6rem);
        line-height: 1.25;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.8;
        max-width: 100%;
        padding: 0 4px;
    }

    section {
        padding: 18px 0;
    }

    .proyectos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .proyecto {
        padding: 16px;
    }

    .servicio-desde {
        font-size: .88rem;
    }

    .proyecto-imagen {
        height: auto;
        aspect-ratio: 16 / 9;
        margin-bottom: 10px;
    }

    .proyecto-imagen img {
        height: 100%;
    }

    .tecnologias {
        gap: 6px;
    }

    .tecnologias span {
        font-size: .82rem;
        padding: 6px 9px;
    }

    .proyecto .acciones {
        flex-direction: column;
    }

    .proyecto .acciones .btn {
        width: 100%;
    }

    #sobre-mi.section-full {
        min-height: auto;
        padding: 40px 0;
    }

    .about-lead {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 4px;
    }

    .chips {
        gap: 10px;
    }

    .chip {
        font-size: .95rem;
        padding: 10px 16px;
    }

    #contacto {
        padding: 16px 0 60px;
    }

    #contacto .form-contacto {
        margin-top: 12px;
        padding: 16px;
    }

    .form-contacto .form-head h3 {
        font-size: 1.25rem;
    }

    .form-contacto .btn-enviar {
        width: 100%;
        margin-top: 18px;
    }

    #mensaje {
        min-height: 160px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-h: 84px;
    }

    .container {
        padding: 0 14px;
    }

    .header {
        padding: 12px 14px;
        align-items: center;
    }

    .logo {
        font-size: 1.35rem;
    }

    #main-nav {
        padding: 8px 0 12px;
    }

    #main-nav a {
        font-size: .94rem;
        padding: 10px 2px;
    }

    .hero {
        padding: 86px 0 64px;
    }

    .hero p {
        font-size: .98rem;
    }

    #contacto .form-contacto {
        padding: 14px;
    }
}

@media (max-width: 1200px) {
    .proyectos-grid--web {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proyectos-grid--showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .proyectos-grid--showcase {
        grid-template-columns: 1fr;
    }
}
