/* WWGold Landing - Maqueta */

:root {
    --wwgold-gold: #ccbc70;
    --wwgold-black: #000000;
    --wwgold-white: #ffffff;
    --wwgold-container: 1200px;
    --wwgold-font: 'Open Sans', system-ui, -apple-system, sans-serif;
}

.landing-page {
    font-family: var(--wwgold-font);
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Contenedor centrado; fondos de sección van full-width fuera de este bloque */
.landing-container {
    width: 100%;
    max-width: var(--wwgold-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* -------------------------------------------------------------------------- */
/* Header                                                                    */
/* -------------------------------------------------------------------------- */

.site-header {
    width: 100%;
}

/* Barra superior dorada */
.site-header__top {
    background-color: var(--wwgold-gold);
    width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
}

.site-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.site-header__logo img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.site-header__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.site-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-family: var(--wwgold-font);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.site-header__btn:hover {
    opacity: 0.85;
}

.site-header__btn--outline {
    background-color: transparent;
    border: 1.5px solid var(--wwgold-black);
    color: var(--wwgold-black);
}

.site-header__btn--solid {
    background-color: var(--wwgold-white);
    border: 1.5px solid var(--wwgold-white);
    color: var(--wwgold-black);
}

.site-header__btn--users {
    background-color: #c4b97d;
    border: 2px solid var(--wwgold-black);
    color: var(--wwgold-black);
    font-weight: 700;
    padding: 0.5rem 1.375rem;
}

/* Barra de anuncio */
.site-header__announcement {
    background-color: #444444;
    border-bottom: 1px solid var(--wwgold-white);
    width: 100%;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.site-header__announcement.is-hidden {
    display: none;
}

.site-header__announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 52px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

.site-header__announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625rem 1rem;
    flex: 1;
    padding-right: 2rem;
}

.site-header__announcement-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--wwgold-white);
    width: 28px;
    height: 28px;
}

.site-header__announcement-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header__announcement-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--wwgold-white);
    text-align: center;
}

.site-header__announcement-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 1.125rem;
    border-radius: 999px;
    background-color: var(--wwgold-white);
    color: var(--wwgold-black);
    font-family: var(--wwgold-font);
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.site-header__announcement-btn:hover {
    opacity: 0.9;
}

.site-header__announcement-close {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--wwgold-white);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.site-header__announcement-close:hover {
    opacity: 0.75;
}

/* -------------------------------------------------------------------------- */
/* Hero - Sección 1                                                          */
/* -------------------------------------------------------------------------- */

.hero-section {
    width: 100%;
    background-color: var(--wwgold-black);
}

.hero-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 3.5rem;
    padding-bottom: 0;
}

.hero-section__title {
    margin: 0 0 1.5rem;
    max-width: 52rem;
    font-family: var(--wwgold-font);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--wwgold-white);
}

.hero-section__emphasis {
    text-transform: uppercase;
}

.hero-section__subtitle {
    margin: 0 0 2.5rem;
    max-width: 44rem;
    font-family: var(--wwgold-font);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.35;
    color: #aaaaaa;
}

.hero-section__figure {
    margin: 0;
    width: 100%;
    line-height: 0;
}

.hero-section__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* -------------------------------------------------------------------------- */
/* Producto - Sección 2                                                      */
/* -------------------------------------------------------------------------- */

.product-section {
    width: 100%;
    background-color: var(--wwgold-black);
}

.product-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.product-section__content {
    max-width: 36rem;
}

.product-section__title {
    margin: 0 0 1.5rem;
    font-family: var(--wwgold-font);
    font-size: 3.3rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--wwgold-white);
}

.product-section__text {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: #aaaaaa;
}

.product-section__figure {
    margin: 0;
    justify-self: end;
    width: 100%;
    max-width: 480px;
    line-height: 0;
}

.product-section__image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
}

/* -------------------------------------------------------------------------- */
/* About - Sección 3                                                         */
/* -------------------------------------------------------------------------- */

.about-section {
    width: 100%;
    background-color: var(--wwgold-gold);
}

.about-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.about-section__title {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: #222222;
}

.about-section__content {
    max-width: 32rem;
    justify-self: end;
}

.about-section__text {
    margin: 0 0 1.5rem;
    font-family: var(--wwgold-font);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    color: #222222;
}

.about-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.75rem;
    border: 1.5px solid var(--wwgold-black);
    border-radius: 999px;
    background-color: transparent;
    color: #222222;
    font-family: var(--wwgold-font);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.about-section__btn:hover {
    opacity: 0.75;
}

/* -------------------------------------------------------------------------- */
/* Banner - Sección 4 (imagen full-width)                                     */
/* -------------------------------------------------------------------------- */

.banner-section {
    width: 100%;
    line-height: 0;
}

.banner-section__figure {
    margin: 0;
    width: 100%;
}

.banner-section__image {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: center;
}

/* -------------------------------------------------------------------------- */
/* Ventajas - Sección 5                                                      */
/* -------------------------------------------------------------------------- */

.advantages-section {
    width: 100%;
    background-color: rgba(253, 245, 208, 0.67);
}

.advantages-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 3rem 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.advantages-section__title {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 3.3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #222222;
}

.advantages-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.advantages-section__list::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 1px;
    background-color: #222222;
    transform: translateX(-50%);
    z-index: 0;
}

.advantages-section__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

.advantages-section__item--last,
.advantages-section__item:last-child {
    padding-bottom: 0;
}

.advantages-section__icon-wrap {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.advantages-section__icon {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.advantages-section__content {
    flex: 1;
    min-width: 0;
    padding-top: 0.25rem;
}

.advantages-section__item-title {
    margin: 0 0 0.75rem;
    font-family: var(--wwgold-font);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    color: #222222;
}

.advantages-section__item--last .advantages-section__item-title {
    margin-bottom: 0;
}

.advantages-section__item-text {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
}

/* -------------------------------------------------------------------------- */
/* Cotizaciones - Sección (antes del formulario)                              */
/* -------------------------------------------------------------------------- */

.quotes-section {
    width: 100%;
    background-color: #ccbc70;
}

.quotes-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
    gap: 2rem 2rem;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.quotes-section__title {
    margin: 0 0 2rem;
    font-family: var(--wwgold-font);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #222222;
}

.quotes-section__content {
    min-width: 0;
}

.quotes-section__steps {
    display: grid;
    gap: 1.5rem 2rem;
}

.quotes-section__step {
    display: flex;
    flex-direction: column;
}

.quotes-section__step-label {
    margin: 0 0 0.5rem;
    font-family: var(--wwgold-font);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #573e13;
    text-transform: uppercase;
}

.quotes-section__step-text {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.45;
    color: #222222;
}

.quotes-section__step-text strong {
    font-weight: 700;
}

.quotes-section__widget {
    width: 100%;
    min-width: 0;
}

.quotes-section__iframe {
    display: block;
    width: 100%;
    min-height: 288px;
    border: 0;
    background: transparent;
}

.quotes-section__credit {
    display: inline-block;
    margin-top: 0.25rem;
    font-family: var(--wwgold-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    color: #30009c;
    text-decoration: none;
}

.quotes-section__credit:hover {
    text-decoration: underline;
}

.quotes-section__credit-source {
    display: block;
    margin-top: 0.25rem;
    font-family: var(--wwgold-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    color: #222222;
}

.quotes-section__prices {
    width: 100%;
    min-width: 0;
    padding: 1rem;
    background-color: var(--wwgold-white);
    border: 1px solid rgba(87, 62, 19, 0.2);
}

.quotes-section__prices-title {
    margin: 0 0 0.75rem;
    font-family: var(--wwgold-font);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #573e13;
    text-align: center;
}

.quotes-section__prices-subtitle {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.quotes-prices-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: var(--wwgold-font);
    font-size: 0.75rem;
    line-height: 1.25;
    color: #222222;
}

.quotes-prices-table th,
.quotes-prices-table td {
    padding: 0.3rem 0.4rem;
    border: 1px solid #ded8c7;
}

.quotes-prices-table th {
    font-weight: 700;
    color: var(--wwgold-white);
    text-align: center;
    background-color: #573e13;
}

.quotes-prices-table th:first-child {
    width: 35%;
}

.quotes-prices-table th.quotes-prices-table__price-header {
    white-space: pre-line;
}

.quotes-prices-table td {
    text-align: center;
}

.quotes-prices-table td.quotes-prices-table__price {
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* Cómo acceder - Sección                                                      */
/* -------------------------------------------------------------------------- */

.access-section {
    width: 100%;
    background-color: #88785a;
}

.access-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.access-section__header {
    width: 100%;
    max-width: 614px;
    text-align: center;
}

.access-section__title {
    margin: 0 0 1rem;
    font-family: var(--wwgold-font);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--wwgold-white);
}

.access-section__subtitle {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--wwgold-white);
    opacity: 0.92;
}

.access-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 2rem;
    width: 100%;
}

.access-section__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.access-section__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
}

.access-section__icon {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.access-section__item-title {
    margin: 0 0 0.75rem;
    font-family: var(--wwgold-font);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--wwgold-white);
}

.access-section__item-text {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--wwgold-white);
}

/* -------------------------------------------------------------------------- */
/* App download - Sección 6                                                    */
/* -------------------------------------------------------------------------- */

.app-section {
    width: 100%;
    background-color: var(--wwgold-black);
}

.app-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: center;
    gap: 2.5rem 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.app-section__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-section__logo-image {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.app-section__content {
    min-width: 0;
}

.app-section__title {
    margin: 0 0 1.25rem;
    font-family: var(--wwgold-font);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--wwgold-white);
}

.app-section__text {
    margin: 0 0 2rem;
    font-family: var(--wwgold-font);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #aaaaaa;
}

.app-section__stores {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.app-section__store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    background-color: #222222;
    border-radius: 20px;
    line-height: 0;
    transition: opacity 0.2s ease;
}

.app-section__store-link:hover {
    opacity: 0.85;
}

.app-section__store-badge {
    display: block;
    height: 54px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* -------------------------------------------------------------------------- */
/* Pasos - Sección 7                                                         */
/* -------------------------------------------------------------------------- */

.steps-section {
    width: 100%;
    background-color: #fdf5d0;
}

.steps-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.steps-section__label {
    margin: 0 0 0.75rem;
    font-family: var(--wwgold-font);
    font-size: 1rem;
    font-weight: 400;
    color: #222222;
    opacity: 0.7;
}

.steps-section__title {
    margin: 0 0 1.25rem;
    max-width: 52rem;
    font-family: var(--wwgold-font);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #222222;
}

.steps-section__intro {
    margin: 0 0 3rem;
    max-width: 52rem;
    font-family: var(--wwgold-font);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
}

.steps-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

.steps-section__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.steps-section__number {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--wwgold-font);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #222222;
}

.steps-section__step-title {
    margin: 0 0 0.75rem;
    font-family: var(--wwgold-font);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #222222;
}

.steps-section__step-text {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #222222;
}

.steps-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 2rem;
    border: 1.5px solid #222222;
    border-radius: 999px;
    background-color: transparent;
    color: #222222;
    font-family: var(--wwgold-font);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.steps-section__btn:hover {
    opacity: 0.75;
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                    */
/* -------------------------------------------------------------------------- */

.site-footer {
    width: 100%;
    background-color: #272724;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.site-footer__copy {
    margin: 0;
    font-family: var(--wwgold-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #aaaaaa;
}

.site-footer__link {
    font-family: var(--wwgold-font);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #aaaaaa;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.site-footer__link:hover {
    text-decoration: none;
    opacity: 0.85;
}

/* Responsive - Header */
@media (max-width: 640px) {
    .site-header__top-inner {
        min-height: 60px;
    }

    .site-header__logo img {
        height: 36px;
        max-width: 120px;
    }

    .site-header__btn {
        padding: 0.375rem 0.625rem;
        font-size: 0.6875rem;
    }

    .site-header__announcement-text {
        font-size: 0.75rem;
    }

    .site-header__announcement-btn {
        font-size: 0.75rem;
        padding: 0.3125rem 0.875rem;
    }

    .landing-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 400px) {
    .site-header__actions {
        gap: 0.375rem;
    }

    .site-header__btn {
        padding: 0.3125rem 0.5rem;
        font-size: 0.625rem;
    }
}

/* Responsive - Hero */
@media (max-width: 992px) {
    .hero-section__title {
        font-size: 2.75rem;
    }

    .hero-section__subtitle {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .hero-section__inner {
        padding-top: 2.5rem;
    }

    .hero-section__title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .hero-section__subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 400px) {
    .hero-section__title {
        font-size: 1.5rem;
    }

    .hero-section__subtitle {
        font-size: 1.0625rem;
    }
}

/* Responsive - Producto */
@media (max-width: 992px) {
    .product-section__inner {
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .product-section__title {
        font-size: 2.5rem;
    }

    .product-section__text {
        font-size: 1.35rem;
    }

    .product-section__figure {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .product-section__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .product-section__content {
        max-width: none;
    }

    .product-section__figure {
        justify-self: center;
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .product-section__title {
        font-size: 2rem;
    }

    .product-section__text {
        font-size: 1.125rem;
    }

    .product-section__figure {
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .product-section__title {
        font-size: 1.625rem;
    }

    .product-section__text {
        font-size: 1rem;
    }
}

/* Responsive - About */
@media (max-width: 992px) {
    .about-section__inner {
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-section__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-section__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .about-section__content {
        max-width: none;
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .about-section__title {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .about-section__title {
        font-size: 1.625rem;
    }
}

/* Responsive - Ventajas */
@media (max-width: 992px) {
    .advantages-section__inner {
        gap: 2.5rem 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .advantages-section__title {
        font-size: 2.75rem;
    }

    .advantages-section__item-title {
        font-size: 1.75rem;
    }

    .advantages-section__item-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .advantages-section__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .advantages-section__title {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .advantages-section__title {
        font-size: 2rem;
    }

    .advantages-section__item {
        gap: 1rem;
        padding-bottom: 2rem;
    }

    .advantages-section__list::before {
        left: 24px;
        top: 24px;
        bottom: 24px;
    }

    .advantages-section__icon-wrap,
    .advantages-section__icon {
        width: 48px;
        height: 48px;
    }

    .advantages-section__item-title {
        font-size: 1.5rem;
    }

    .advantages-section__item-text {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .advantages-section__title {
        font-size: 1.625rem;
    }

    .advantages-section__item-title {
        font-size: 1.25rem;
    }
}

/* Responsive - App */
@media (max-width: 768px) {
    .app-section__inner {
        grid-template-columns: 1fr;
        padding-top: 3rem;
        padding-bottom: 3rem;
        text-align: center;
    }

    .app-section__logo-image {
        max-width: 200px;
    }

    .app-section__stores {
        justify-content: center;
    }

    .app-section__title {
        font-size: 1.625rem;
    }

    .app-section__text {
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    .app-section__stores {
        flex-direction: column;
    }

    .app-section__store-badge {
        height: 48px;
    }
}

/* Responsive - Pasos */
@media (max-width: 992px) {
    .steps-section__title {
        font-size: 2.5rem;
    }

    .steps-section__intro {
        font-size: 1.75rem;
    }

    .steps-section__step-title {
        font-size: 1.625rem;
    }
}

@media (max-width: 768px) {
    .steps-section__inner {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .steps-section__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-section__title {
        font-size: 2rem;
    }

    .steps-section__intro {
        font-size: 1.375rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .steps-section__title {
        font-size: 1.75rem;
    }

    .steps-section__intro {
        font-size: 1.125rem;
    }

    .steps-section__number {
        font-size: 2.5rem;
    }

    .steps-section__step-title {
        font-size: 1.375rem;
    }

    .steps-section__step-text {
        font-size: 1.0625rem;
    }
}

/* Responsive - Cotizaciones */
@media (max-width: 992px) {
    .quotes-section__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .quotes-section__content {
        grid-column: 1 / -1;
    }

    .quotes-section__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .quotes-section__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .quotes-section__title {
        font-size: 2.25rem;
        text-align: center;
    }

    .quotes-section__steps {
        gap: 1.25rem;
    }

    .quotes-section__step {
        align-items: center;
        text-align: center;
    }

    .quotes-section__step-label {
        font-size: 1.125rem;
    }

    .quotes-section__step-text {
        font-size: 1rem;
    }

    .quotes-section__prices {
        width: 100%;
        max-width: 30rem;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .quotes-section__title {
        font-size: 1.875rem;
    }

    .quotes-section__steps {
        grid-template-columns: 1fr;
    }

    .quotes-section__iframe {
        min-height: 288px;
    }
}

/* Responsive - Cómo acceder */
@media (max-width: 992px) {
    .access-section__title {
        font-size: 2.25rem;
    }

    .access-section__list {
        gap: 2rem 1.5rem;
    }

    .access-section__item-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .access-section__inner {
        gap: 2.5rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .access-section__title {
        font-size: 2.2rem;
    }

    .access-section__subtitle {
        font-size: 1.1rem;
    }

    .access-section__list {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .access-section__inner {
        gap: 2rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .access-section__title {
        font-size: 2rem;
    }

    .access-section__icon-wrap,
    .access-section__icon {
        width: 48px;
        height: 48px;
    }

    .access-section__item-title {
        font-size: 1.6rem;
    }

    .access-section__item-text {
        font-size: 0.9375rem;
    }
}

/* -------------------------------------------------------------------------- */
/* Banner de instalación PWA                                                 */
/* -------------------------------------------------------------------------- */

.pwa-install {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background-color: #222222;
    border-top: 1px solid var(--wwgold-gold);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.pwa-install[hidden] {
    display: none !important;
}

body.has-pwa-install {
    padding-bottom: 5.5rem;
}

.pwa-install__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    min-height: 56px;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    padding-right: 2.75rem;
    position: relative;
}

.pwa-install__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--wwgold-white);
    text-align: center;
}

.pwa-install__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 1.125rem;
    border: none;
    border-radius: 999px;
    background-color: var(--wwgold-gold);
    color: var(--wwgold-black);
    font-family: var(--wwgold-font);
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.pwa-install__btn:hover,
.pwa-install__btn:focus {
    opacity: 0.9;
}

.pwa-install__btn[hidden] {
    display: none !important;
}

.pwa-install__close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--wwgold-white);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}

.pwa-install__close:hover,
.pwa-install__close:focus {
    opacity: 0.75;
}
