/* ==========================================================
   LV WEB EXPRESS
   Página comercial de planes y creación de páginas web
========================================================== */


/* PORTADA */

.web-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--navy-950);
}

.web-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(
            circle at 82% 35%,
            rgba(22, 119, 255, 0.22),
            transparent 34%
        ),
        linear-gradient(
            105deg,
            #04101d 0%,
            #06192c 52%,
            #0b3561 100%
        );
}

.web-hero-grid {
    display: grid;
    min-height: 660px;
    grid-template-columns: minmax(0, 0.95fr) minmax(510px, 1.05fr);
    gap: 20px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}

.web-hero-content {
    position: relative;
    z-index: 3;
    max-width: 690px;
}

.web-eyebrow {
    margin-bottom: 17px;
    color: var(--turquoise-400);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.web-hero h1 {
    max-width: 690px;
    margin-bottom: 23px;
    color: var(--white);
    font-size: clamp(2.7rem, 5vw, 4.45rem);
    line-height: 1.06;
}

.web-hero h1 span {
    display: block;
    color: var(--turquoise-400);
}

.web-hero-description {
    max-width: 630px;
    margin-bottom: 24px;
    color: #d4dfeb;
    font-size: 1.08rem;
}

.web-hero-list {
    margin-bottom: 28px;
    padding: 0;
    list-style: none;
}

.web-hero-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    color: #f1f6fc;
    font-weight: 600;
}

.web-hero-list li::before {
    position: absolute;
    left: 0;
    color: var(--turquoise-400);
    content: "✓";
    font-weight: 900;
}

.web-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.web-hero-note {
    max-width: 610px;
    margin: 18px 0 0;
    color: #9fb1c6;
    font-size: 0.83rem;
}

.web-hero-visual {
    position: relative;
    min-height: 540px;
    overflow: visible;
}

.web-hero-visual img {
    position: absolute;
    top: 50%;
    left: 48%;
    width: 900px;
    max-width: none;
    transform: translate(-50%, -50%);
    filter:
        drop-shadow(
            0 28px 65px rgba(0, 0, 0, 0.28)
        );
}


/* FRANJA DE CONFIANZA */

.web-trust-strip {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.web-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.web-trust-grid article {
    padding: 25px 20px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.web-trust-grid article:last-child {
    border-right: 0;
}

.web-trust-grid strong {
    display: block;
    margin-bottom: 3px;
    color: var(--blue-600);
    font-family: var(--font-heading);
    font-size: 1.12rem;
}

.web-trust-grid span {
    color: var(--text-soft);
    font-size: 0.87rem;
}


/* INTRODUCCIÓN */

.web-introduction {
    background: var(--white);
}

.web-introduction-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 75px;
    align-items: start;
}

.web-introduction h2 {
    margin-bottom: 0;
}

.web-introduction-grid > div:last-child p {
    margin-bottom: 18px;
}


/* ENCABEZADOS */

.web-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(270px, 0.78fr);
    gap: 55px;
    align-items: end;
    margin-bottom: 55px;
}

.web-section-heading h2 {
    margin-bottom: 0;
}

.web-section-heading > p {
    margin-bottom: 4px;
}


/* PLANES */

.web-plans {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(22, 119, 255, 0.08),
            transparent 25%
        ),
        var(--background);
}

.web-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.web-plan-card {
    position: relative;
    display: flex;
    min-height: 700px;
    flex-direction: column;
    padding: 35px 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--white);
    box-shadow:
        0 14px 42px rgba(6, 17, 31, 0.08);
    transition:
        transform 300ms ease,
        box-shadow 300ms ease,
        border-color 300ms ease;
}

.web-plan-card:hover {
    border-color: rgba(22, 119, 255, 0.42);
    box-shadow:
        0 28px 65px rgba(22, 119, 255, 0.15);
    transform: translateY(-10px);
}

.web-plan-card.featured {
    border: 2px solid var(--blue-600);
    box-shadow:
        0 24px 65px rgba(22, 119, 255, 0.2);
    transform: translateY(-12px);
}

.web-plan-card.featured:hover {
    transform: translateY(-18px);
}

.web-plan-card.catalog {
    border-color: rgba(0, 194, 168, 0.34);
}

.web-plan-recommended {
    position: absolute;
    top: -15px;
    right: 28px;
    padding: 7px 15px;
    border-radius: 99px;
    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--turquoise-500)
        );
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
}

.web-plan-label {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 6px 11px;
    border-radius: 99px;
    background: rgba(22, 119, 255, 0.09);
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 800;
}

.web-plan-card.catalog .web-plan-label {
    background: rgba(0, 194, 168, 0.1);
    color: var(--turquoise-600);
}

.web-plan-top {
    min-height: 175px;
}

.web-plan-top h3 {
    margin-bottom: 12px;
    font-size: 1.65rem;
}

.web-plan-top p {
    font-size: 0.94rem;
}

.web-plan-price {
    margin: 14px 0 25px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.web-plan-price small {
    display: block;
    margin-bottom: 2px;
    color: var(--text-soft);
}

.web-plan-price strong {
    display: block;
    color: var(--navy-800);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.1;
}

.web-plan-card.featured .web-plan-price strong {
    color: var(--blue-600);
}

.web-plan-card.catalog .web-plan-price strong {
    color: var(--turquoise-600);
}

.web-plan-card ul {
    flex: 1;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.web-plan-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 25px;
    color: var(--text-soft);
    font-size: 0.91rem;
}

.web-plan-card li::before {
    position: absolute;
    left: 0;
    color: var(--blue-600);
    content: "✓";
    font-weight: 900;
}

.web-plan-card.catalog li::before {
    color: var(--turquoise-600);
}

.web-plan-button {
    width: 100%;
}

.web-plan-notes {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 34px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
}

.web-plan-notes p {
    margin: 0;
    font-size: 0.88rem;
}


/* COMPARACIÓN */

.web-comparison {
    background: var(--white);
}

.web-comparison-heading {
    max-width: 700px;
    margin-bottom: 42px;
}

.web-comparison-heading h2 {
    margin-bottom: 0;
}

.web-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow:
        0 14px 38px rgba(6, 17, 31, 0.07);
}

.web-comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--white);
}

.web-comparison-table th,
.web-comparison-table td {
    padding: 17px 20px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.web-comparison-table th:first-child,
.web-comparison-table td:first-child {
    text-align: left;
}

.web-comparison-table thead th {
    background: var(--navy-800);
    color: var(--white);
    font-family: var(--font-heading);
}

.web-comparison-table thead th:nth-child(3) {
    background: var(--blue-600);
}

.web-comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.web-comparison-table tbody tr:hover {
    background: #f6faff;
}


/* INCLUIDO */

.web-included {
    background: var(--background);
}

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

.web-included-grid article {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: var(--white);
    box-shadow:
        0 10px 28px rgba(6, 17, 31, 0.05);
    transition:
        transform 260ms ease,
        box-shadow 260ms ease;
}

.web-included-grid article:hover {
    box-shadow:
        0 22px 50px rgba(22, 119, 255, 0.12);
    transform: translateY(-7px);
}

.web-included-grid article::after {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(22, 119, 255, 0.07);
    content: "";
}

.web-included-grid article:nth-child(even)::after {
    background: rgba(0, 194, 168, 0.08);
}

.web-included-grid span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--turquoise-500)
        );
    color: var(--white);
    font-weight: 800;
}

.web-included-grid h3,
.web-included-grid p {
    position: relative;
    z-index: 2;
}


/* DISEÑOS */

.web-designs {
    background: var(--white);
}

.web-designs-heading {
    max-width: 830px;
    margin-bottom: 50px;
}

.web-designs-heading h2 {
    margin-bottom: 17px;
}

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

.web-design-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow:
        0 14px 40px rgba(6, 17, 31, 0.08);
    transition:
        transform 300ms ease,
        box-shadow 300ms ease;
}

.web-design-card:hover {
    box-shadow:
        0 28px 65px rgba(22, 119, 255, 0.16);
    transform: translateY(-9px);
}

.web-design-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 500ms ease;
}

.web-design-card:hover img {
    transform: scale(1.04);
}

.web-design-card > div {
    padding: 25px;
}

.web-design-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--blue-600);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.web-design-card h3 {
    margin-bottom: 9px;
}

.web-design-card p {
    margin-bottom: 0;
}


/* PROCESO */

.web-process {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(22, 119, 255, 0.14),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            var(--navy-950),
            var(--navy-800)
        );
}

.web-process .section-label {
    color: var(--turquoise-400);
}

.web-process-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.web-process-heading h2 {
    margin-bottom: 0;
    color: var(--white);
}

.web-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.web-process-grid li {
    position: relative;
    min-height: 265px;
    padding: 27px 22px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.web-process-grid li::after {
    position: absolute;
    top: 47px;
    right: -19px;
    width: 19px;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            var(--blue-500),
            var(--turquoise-500)
        );
    content: "";
}

.web-process-grid li:last-child::after {
    display: none;
}

.web-process-grid span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            var(--blue-600),
            var(--turquoise-500)
        );
    color: var(--white);
    font-weight: 800;
}

.web-process-grid h3 {
    margin-bottom: 12px;
    color: var(--white);
}

.web-process-grid p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.91rem;
}


/* FAQ */

.web-faq {
    background: var(--background);
}

.web-faq-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 70px;
    align-items: start;
}

.web-faq-intro {
    position: sticky;
    top: 125px;
}

.web-faq-intro h2 {
    margin-bottom: 20px;
}

.web-faq-list details {
    margin-bottom: 13px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    box-shadow:
        0 8px 24px rgba(6, 17, 31, 0.05);
}

.web-faq-list summary {
    position: relative;
    padding: 21px 55px 21px 22px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.web-faq-list summary::-webkit-details-marker {
    display: none;
}

.web-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    color: var(--blue-600);
    content: "+";
    font-size: 1.45rem;
    transform: translateY(-50%);
}

.web-faq-list details[open] summary::after {
    content: "−";
}

.web-faq-list details p {
    margin: 0;
    padding: 0 22px 21px;
}


/* CTA FINAL */

.web-final-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        linear-gradient(
            125deg,
            var(--blue-700),
            var(--blue-600) 55%,
            var(--turquoise-600)
        );
}

.web-final-cta::before {
    position: absolute;
    top: -160px;
    right: 8%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    content: "";
}

.web-final-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.web-final-cta .section-label {
    color: rgba(255, 255, 255, 0.82);
}

.web-final-cta h2 {
    max-width: 750px;
    margin-bottom: 14px;
    color: var(--white);
}

.web-final-cta p {
    max-width: 690px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
}

.web-final-cta .button {
    flex-shrink: 0;
    background: var(--white);
    color: var(--blue-700);
}


/* RESPONSIVO */

@media (max-width: 1120px) {

    .web-hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    }

    .web-hero-visual img {
        left: 52%;
        width: 790px;
    }

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

    .web-plan-card.featured {
        transform: none;
    }

    .web-plan-card.featured:hover {
        transform: translateY(-10px);
    }

    .web-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .web-process-grid li::after {
        display: none;
    }

}


@media (max-width: 860px) {

    .web-hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 25px;
    }

    .web-hero-content {
        max-width: 720px;
    }

    .web-hero-visual {
        min-height: 420px;
    }

    .web-hero-visual img {
        top: 49%;
        left: 50%;
        width: 780px;
    }

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

    .web-trust-grid article:nth-child(2) {
        border-right: 0;
    }

    .web-trust-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .web-introduction-grid,
    .web-section-heading,
    .web-faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .web-faq-intro {
        position: static;
    }

    .web-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 620px) {

    .web-hero-grid {
        padding-top: 55px;
    }

    .web-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.35rem);
    }

    .web-hero-actions {
        flex-direction: column;
    }

    .web-hero-actions,
    .web-hero-actions .button {
        width: 100%;
    }

    .web-hero-visual {
        min-height: 310px;
    }

    .web-hero-visual img {
        width: 610px;
    }

    .web-plans-grid,
    .web-included-grid,
    .web-design-grid,
    .web-process-grid {
        grid-template-columns: 1fr;
    }

    .web-plan-card {
        min-height: auto;
    }

    .web-plan-top {
        min-height: auto;
    }

    .web-plan-notes {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .web-final-cta {
        padding: 72px 0;
    }

    .web-final-cta .button {
        width: 100%;
    }

}
