/* Geekstore V14 — modal, imágenes de productos y hero sin fondo rectangular */

/* Modal: número arriba y nombre del asesor debajo */
.gs-whatsapp-option__info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gs-whatsapp-option__info strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.15;
}

.gs-whatsapp-option__info small {
    display: block;
    margin: 0;
    color: #a9a9a9;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

/* Catálogo: imagen completa, centrada y sin deformación */
.dyn-product-card__image {
    position: relative;
    height: 235px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(237, 23, 34, .10), transparent 58%),
        #090909;
}

.dyn-product-card__image > img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 16px;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

/* Inicio: solo se perciben laptop, iconos y cajas; sin marco/fondo de foto */
.dyn-home-visual {
    overflow: visible;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.dyn-home-visual img {
    display: block;
    width: 100%;
    max-width: 940px;
    height: auto;
    max-height: 590px;
    object-fit: contain;
    object-position: center;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, .55));
}

@media (max-width: 700px) {
    .dyn-product-card__image { height: 245px; }
    .dyn-home-visual img { max-width: 100%; }
}


/* ==========================================================
   V15 — FONDO ROJO/NEGRO RESTAURADO EN EL INICIO
   Mantiene la laptop, iconos y cajas en PNG transparente.
   ========================================================== */

.dyn-home-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 38%, rgba(239, 23, 34, .25), transparent 34%),
        radial-gradient(circle at 86% 70%, rgba(120, 0, 8, .22), transparent 32%),
        linear-gradient(115deg, #050505 0%, #0b0203 46%, #210507 100%) !important;
    border-bottom: 1px solid rgba(239, 23, 34, .28);
}

.dyn-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: .20;
    background-image:
        linear-gradient(rgba(239, 23, 34, .16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 23, 34, .16) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(circle at 72% 42%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 72% 42%, #000 0%, transparent 72%);
}

.dyn-home-hero::after {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -160px;
    top: -210px;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 23, 34, .22), transparent 68%);
    filter: blur(32px);
}

.dyn-home-hero__grid {
    position: relative;
    z-index: 2;
}

.dyn-home-visual {
    position: relative;
    z-index: 2;
}

.dyn-home-visual__glow {
    display: block !important;
    position: absolute;
    inset: 8% 2%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 23, 34, .34), transparent 68%);
    filter: blur(46px);
    pointer-events: none;
}

.dyn-home-visual img {
    position: relative;
    z-index: 2;
}

@media (max-width: 980px) {
    .dyn-home-hero {
        background:
            radial-gradient(circle at 50% 68%, rgba(239, 23, 34, .20), transparent 38%),
            linear-gradient(180deg, #050505 0%, #150304 100%) !important;
    }

    .dyn-home-hero::before {
        -webkit-mask-image: radial-gradient(circle at 50% 60%, #000 0%, transparent 78%);
        mask-image: radial-gradient(circle at 50% 60%, #000 0%, transparent 78%);
    }
}


/* ==========================================================
   V16 — FONDO NORMAL PARA LA IMAGEN PRINCIPAL
   La laptop, cajas e iconos vuelven a mostrarse dentro de una
   tarjeta visual completa, sin quedar flotando sobre el fondo.
   ========================================================== */

.dyn-home-visual {
    position: relative;
    min-height: 500px;
    padding: 24px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 60% 42%, rgba(239, 23, 34, .18), transparent 48%),
        linear-gradient(145deg, #120607 0%, #090909 46%, #160304 100%);
    border: 1px solid rgba(239, 23, 34, .42);
    border-radius: 24px;
    box-shadow:
        0 28px 65px rgba(0, 0, 0, .46),
        inset 0 1px 0 rgba(255, 255, 255, .035);
}

.dyn-home-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
        linear-gradient(rgba(239, 23, 34, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 23, 34, .12) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(circle at 55% 45%, #000 0%, transparent 78%);
    mask-image: radial-gradient(circle at 55% 45%, #000 0%, transparent 78%);
}

.dyn-home-visual__glow {
    display: none !important;
}

.dyn-home-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: 920px;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: none;
}

@media (max-width: 1280px) {
    .dyn-home-visual {
        min-height: 450px;
        padding: 20px;
    }

    .dyn-home-visual img {
        max-height: 490px;
    }
}

@media (max-width: 980px) {
    .dyn-home-visual {
        min-height: auto;
        padding: 18px;
        border-radius: 20px;
    }

    .dyn-home-visual img {
        max-height: none;
    }
}

@media (max-width: 620px) {
    .dyn-home-visual {
        padding: 12px;
        border-radius: 16px;
    }

    .dyn-home-visual img {
        border-radius: 12px;
    }
}

/* ==========================================================
   V17 — HERO GAMER PNG INTEGRADO
   ========================================================== */

.dyn-home-hero {
    min-height: 700px;
    padding: 58px 0 52px;
    overflow: hidden;
}

.dyn-home-hero__grid {
    grid-template-columns: minmax(470px, .88fr) minmax(700px, 1.12fr);
    gap: 28px;
    align-items: center;
}

.dyn-home-visual {
    position: relative;
    min-height: 560px;
    padding: 0;
    overflow: visible;
    display: grid;
    place-items: center;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.dyn-home-visual::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 76%;
    left: 4%;
    top: 12%;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(239, 23, 34, .30) 0%,
        rgba(121, 3, 11, .16) 42%,
        transparent 72%
    );
    filter: blur(34px);
    opacity: .95;
}

.dyn-home-visual::after {
    content: "";
    position: absolute;
    left: 9%;
    right: 5%;
    bottom: 6%;
    height: 55px;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .62);
    filter: blur(24px);
}

.dyn-home-visual__glow {
    display: none !important;
}

.dyn-home-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 112%;
    max-width: 1030px;
    height: auto;
    max-height: 620px;
    margin: 0 -6% 0 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .48));
}

@media (max-width: 1320px) {
    .dyn-home-hero__grid {
        grid-template-columns: minmax(430px, .9fr) minmax(590px, 1.1fr);
        gap: 20px;
    }

    .dyn-home-visual {
        min-height: 500px;
    }

    .dyn-home-visual img {
        width: 108%;
        max-height: 555px;
    }
}

@media (max-width: 1050px) {
    .dyn-home-hero {
        min-height: auto;
        padding-top: 50px;
    }

    .dyn-home-hero__grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .dyn-home-hero h1,
    .dyn-home-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .dyn-home-actions {
        justify-content: center;
    }

    .dyn-home-visual {
        width: min(900px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .dyn-home-visual img {
        width: 100%;
        max-width: 900px;
        max-height: none;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .dyn-home-hero {
        padding: 40px 0 32px;
    }

    .dyn-home-visual {
        width: calc(100% + 18px);
        margin-left: -9px;
    }

    .dyn-home-visual img {
        width: 100%;
        filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .42));
    }
}

/* ==========================================================
   V18 — HERO PREMIUM INTEGRADO
   ========================================================== */

.dyn-home-hero {
    min-height: 720px;
    padding: 40px 0 42px;
    background:
        radial-gradient(circle at 74% 42%, rgba(239,23,34,.23), transparent 37%),
        linear-gradient(115deg, #050505 0%, #100203 48%, #250507 100%) !important;
}

.dyn-home-hero__grid {
    grid-template-columns: minmax(470px, .82fr) minmax(760px, 1.18fr);
    gap: 34px;
}

.dyn-home-hero h1 {
    max-width: 670px;
    font-size: clamp(52px, 4.4vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
}

.dyn-home-hero h1 strong {
    display: block;
    margin-top: 17px;
    color: #ef1722;
}

.dyn-home-visual {
    min-height: 590px;
    padding: 13px;
    overflow: hidden;
    background:
        radial-gradient(circle at 48% 48%, rgba(239,23,34,.18), transparent 54%),
        #070707 !important;
    border: 1px solid rgba(239,23,34,.52) !important;
    border-radius: 25px !important;
    box-shadow:
        0 32px 74px rgba(0,0,0,.52),
        0 0 55px rgba(239,23,34,.08) !important;
}

.dyn-home-visual::before,
.dyn-home-visual::after {
    display: none;
}

.dyn-home-visual img {
    width: 100%;
    max-width: none;
    max-height: 590px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 17px;
    filter: none;
}

.dyn-home-benefits {
    position: relative;
    z-index: 5;
    padding: 0 0 42px;
    background: #050505;
}

.dyn-home-benefits .gs-container {
    width: min(1470px, calc(100% - 40px));
    margin-top: -18px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    background: rgba(8,8,8,.96);
    border: 1px solid rgba(239,23,34,.38);
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(0,0,0,.42);
}

.dyn-home-benefits article {
    min-width: 0;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 48px minmax(0,1fr);
    align-items: center;
    gap: 13px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.dyn-home-benefits article:last-child {
    border-right: 0;
}

.dyn-home-benefits__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 2px solid #ef1722;
    border-radius: 50%;
    font-size: 21px;
    font-weight: 900;
}

.dyn-home-benefits strong,
.dyn-home-benefits small {
    display: block;
}

.dyn-home-benefits strong {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
}

.dyn-home-benefits small {
    margin-top: 5px;
    color: #969696;
    line-height: 1.35;
}

@media (max-width: 1320px) {
    .dyn-home-hero__grid {
        grid-template-columns: minmax(420px, .9fr) minmax(610px, 1.1fr);
        gap: 24px;
    }

    .dyn-home-visual {
        min-height: 515px;
    }

    .dyn-home-visual img {
        max-height: 515px;
    }

    .dyn-home-benefits .gs-container {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }

    .dyn-home-benefits article:nth-child(3) {
        border-right: 0;
    }

    .dyn-home-benefits article:nth-child(n+4) {
        border-top: 1px solid rgba(255,255,255,.09);
    }
}

@media (max-width: 1050px) {
    .dyn-home-hero__grid {
        grid-template-columns: 1fr;
    }

    .dyn-home-visual {
        width: min(960px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .dyn-home-visual img {
        max-height: none;
        object-fit: contain;
    }
}

@media (max-width: 760px) {
    .dyn-home-hero h1 {
        letter-spacing: -2px;
    }

    .dyn-home-benefits .gs-container {
        width: calc(100% - 26px);
        grid-template-columns: 1fr;
    }

    .dyn-home-benefits article,
    .dyn-home-benefits article:nth-child(3),
    .dyn-home-benefits article:last-child {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .dyn-home-benefits article:last-child {
        border-bottom: 0;
    }
}

/* ==========================================================
   V19 — HERO CON LAPTOP, STREAMING Y LICENCIAS
   ========================================================== */

.dyn-home-hero {
    min-height: 700px;
    padding: 42px 0 46px;
}

.dyn-home-hero__grid {
    grid-template-columns: minmax(470px, .84fr) minmax(720px, 1.16fr);
    gap: 34px;
    align-items: center;
}

.dyn-home-visual {
    min-height: 560px;
    padding: 16px;
    overflow: hidden;
    background:
        radial-gradient(circle at 52% 42%, rgba(239, 23, 34, .17), transparent 48%),
        linear-gradient(145deg, #0a0a0a 0%, #101010 52%, #070707 100%) !important;
    border: 1px solid rgba(239, 23, 34, .38) !important;
    border-radius: 24px !important;
    box-shadow:
        0 30px 68px rgba(0, 0, 0, .48),
        0 0 45px rgba(239, 23, 34, .08) !important;
}

.dyn-home-visual::before,
.dyn-home-visual::after {
    display: none !important;
}

.dyn-home-visual img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: 560px;
    margin: 0;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    filter: none;
}

@media (max-width: 1320px) {
    .dyn-home-hero__grid {
        grid-template-columns: minmax(420px, .9fr) minmax(590px, 1.1fr);
        gap: 24px;
    }

    .dyn-home-visual {
        min-height: 500px;
    }

    .dyn-home-visual img {
        max-height: 500px;
    }
}

@media (max-width: 1050px) {
    .dyn-home-hero__grid {
        grid-template-columns: 1fr;
    }

    .dyn-home-visual {
        width: min(960px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .dyn-home-visual img {
        height: auto;
        max-height: none;
        object-fit: contain;
    }
}

@media (max-width: 680px) {
    .dyn-home-visual {
        padding: 10px;
        border-radius: 16px !important;
    }

    .dyn-home-visual img {
        border-radius: 11px;
    }
}

/* ==========================================================
   V20 — PNG TRANSPARENTE INTEGRADO
   ========================================================== */

.dyn-home-visual {
    position: relative;
    min-height: 560px;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: visible;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.dyn-home-visual::before {
    content: "";
    position: absolute;
    inset: 10% 3% 8%;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(239, 23, 34, .23) 0%,
        rgba(98, 0, 8, .12) 45%,
        transparent 72%
    );
    filter: blur(38px);
}

.dyn-home-visual::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 6%;
    bottom: 3%;
    height: 58px;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .62);
    filter: blur(25px);
}

.dyn-home-visual__glow {
    display: none !important;
}

.dyn-home-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 112%;
    max-width: 1040px;
    height: auto;
    max-height: 610px;
    margin: 0 -6% 0 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .48));
}

@media (max-width: 1320px) {
    .dyn-home-visual {
        min-height: 510px;
    }

    .dyn-home-visual img {
        width: 108%;
        max-height: 550px;
    }
}

@media (max-width: 1050px) {
    .dyn-home-visual {
        width: min(930px, 100%);
        min-height: auto;
        margin: 0 auto;
    }

    .dyn-home-visual img {
        width: 100%;
        max-width: 920px;
        max-height: none;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .dyn-home-visual {
        width: calc(100% + 18px);
        margin-left: -9px;
    }

    .dyn-home-visual img {
        width: 100%;
        filter: drop-shadow(0 18px 22px rgba(0, 0, 0, .42));
    }
}