/* ==========================================================================
   WEB DESIGN SECTION
   ========================================================================== */

/* ==========================================================================
   HERO
   ========================================================================== */
.web-hero {
    /* Misma altura que el hero de la home (.hero-swiper) */
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 40px 25px;
    background:
        radial-gradient(circle at 12% 15%, rgba(28, 106, 175, 0.30), transparent 55%),
        linear-gradient(160deg, #16293a 0%, var(--primary-bg-color) 65%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.web-hero-content {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.web-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.web-hero-title {
    color: var(--heading-color);
    font-size: 3rem;
    letter-spacing: -1.2px;
    margin-bottom: 1rem;
}

.web-hero-text {
    max-width: 660px;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.web-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.web-hero-price {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    border: 1px solid var(--highlight-color);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 20px rgba(28, 106, 175, 0.20);
}

.web-hero-price-label {
    font-family: var(--primary-font), sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.web-hero-price-amount {
    font-family: var(--primary-font), sans-serif;
    font-size: 2.75rem;
    line-height: 1.1;
    color: var(--heading-color);
}

.web-hero-price-tax {
    font-size: 0.85rem;
}

.web-hero-image {
    display: block;
    width: 100%;
    max-width: 560px;
    /* Limita la imagen por altura para que no estire el hero más allá del 70vh */
    max-height: 45vh;
    height: auto;
    object-fit: contain;
    margin-left: auto;
}

/* ==========================================================================
   TARJETAS DE PRECIO
   ========================================================================== */
.price-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--highlight-color);
}

.price-card-featured {
    border-color: var(--highlight-color);
    box-shadow: 0 0 25px rgba(28, 106, 175, 0.22);
}

.price-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-card-name {
    font-family: var(--primary-font), sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--heading-color);
    margin: 0;
}

.price-card-badge {
    padding: 4px 12px;
    border-radius: 25px;
    background-color: var(--highlight-color);
    color: var(--heading-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.price-card-amount {
    font-family: var(--primary-font), sans-serif;
    font-size: 3.25rem;
    line-height: 1;
    color: var(--heading-color);
}

.price-card-tax {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price-card-body {
    flex-grow: 1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-card-body .check-list {
    margin-top: 0;
}

.price-card-footer {
    margin-top: 2rem;
}

/* ==========================================================================
   COMPLEMENTOS
   ========================================================================== */
.price-extras {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
}

.price-extra-item {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding: 0.75rem 0;
}

.price-extra-item + .price-extra-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-extra-item i {
    color: var(--highlight-color);
}

.price-extra-name {
    color: var(--heading-color);
    font-family: var(--primary-font), sans-serif;
    letter-spacing: 0.5px;
}

.price-extra-amount {
    margin-left: auto;
    color: var(--heading-color);
    font-family: var(--primary-font), sans-serif;
    font-size: 1.35rem;
    white-space: nowrap;
}

.price-extra-note {
    flex-basis: 100%;
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

/* ==========================================================================
   FUERA DE ALCANCE
   ========================================================================== */
.web-scope-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.web-scope-list li {
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 25px;
    font-size: 0.95rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* -- Tablet: las columnas se apilan, la imagen se centra y se reduce -- */
@media (max-width: 991.98px) {
    .web-hero-image {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .web-hero {
        padding: 45px 25px;
    }

    .web-hero-title {
        font-size: 2.1rem;
    }

    .web-hero-text {
        font-size: 1rem;
    }

    .web-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .web-hero-actions .basic-btn {
        justify-content: center;
    }

    .price-card-amount {
        font-size: 2.75rem;
    }

    .price-extras {
        padding: 1rem 1.25rem;
    }

    .price-extra-amount {
        margin-left: 0;
    }
}
