/* Brochure landing — gonuvia.ar */

.brochure-body {
    margin: 0;
    font-family: var(--brand-font-family, 'Poppins', sans-serif);
    color: var(--brand-navy, #262752);
    background: #fff;
}

.brochure-page {
    overflow-x: hidden;
}

.brochure-container {
    width: min(1140px, calc(100% - 2rem));
    margin-inline: auto;
}

.brochure-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(56, 69, 251, 0.08);
}

.brochure-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

.brochure-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brochure-logo .platform-logo--hero,
.brochure-logo .mp-hero-brand-fallback {
    max-height: 36px;
    width: auto;
}

.brochure-header-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brochure-link {
    color: var(--brand-navy, #262752);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.brochure-link:hover {
    color: var(--brand-primary, #3845fb);
}

.brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--brand-btn-border-radius, 12px);
    font-weight: 600;
    text-decoration: none;
    border: 0;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brochure-btn-primary {
    background: var(--brand-btn-background, linear-gradient(135deg, #3845fb 0%, #262752 100%));
    color: #fff;
    box-shadow: 0 8px 24px rgba(56, 69, 251, 0.25);
}

.brochure-btn-primary:hover {
    background: var(--brand-btn-background-hover, linear-gradient(135deg, #4a56fc 0%, #323468 100%));
    color: #fff;
    transform: translateY(-1px);
}

.brochure-btn-outline {
    background: transparent;
    color: var(--brand-primary, #3845fb);
    border: 2px solid var(--brand-primary, #3845fb);
    box-shadow: none;
}

.brochure-btn-outline:hover {
    background: var(--brand-primary-soft, rgba(56, 69, 251, 0.06));
    color: var(--brand-primary, #3845fb);
    transform: translateY(-1px);
}

.brochure-btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.brochure-hero {
    position: relative;
    padding: 4rem 0 5rem;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(232, 233, 254, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(232, 233, 254, 0.6) 0%, transparent 55%),
        #fff;
}

.brochure-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3rem;
    align-items: center;
}

.brochure-hero-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--brand-navy, #262752);
}

.brochure-hero-title span {
    color: var(--brand-primary, #3845fb);
}

.brochure-hero-text {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(38, 39, 82, 0.78);
    max-width: 34rem;
}

.brochure-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    color: rgba(38, 39, 82, 0.7);
}

.brochure-checklist li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.brochure-checklist li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: var(--brand-primary, #3845fb);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.brochure-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brochure-hero-screens {
    position: relative;
    width: min(100%, 720px);
    aspect-ratio: 6 / 5;
    margin-right: -2rem;
}

.brochure-hero-screenshot {
    position: absolute;
    width: 88%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(38, 39, 82, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.brochure-hero-screenshot--back {
    top: 0;
    left: 12%;
    z-index: 1;
    transform: scale(1);
}

.brochure-hero-screenshot--middle {
    top: 20%;
    left: 40%;
    z-index: 3;
    transform: scale(0.85);
}

.brochure-hero-screenshot--front {
    top: 45%;
    left: 0;
    z-index: 2;
    transform: scale(0.92);
}

.brochure-hero-image {
    width: min(100%, 560px);
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(38, 39, 82, 0.12);
}

.brochure-section-title {
    margin: 0 0 2.5rem;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--brand-navy, #262752);
}

.brochure-section-title--left {
    text-align: left;
}

.brochure-rubros {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(232, 233, 254, 0.7) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 10%, rgba(232, 233, 254, 0.5) 0%, transparent 50%),
        #fff;
}

.brochure-rubros-header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.brochure-rubros-title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-navy, #262752);
}

.brochure-rubros-title span {
    color: var(--brand-primary, #3845fb);
}

.brochure-rubros-lead {
    margin: 0;
    justify-self: end;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(38, 39, 82, 0.72);
    text-align: right;
}

.brochure-rubros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.brochure-rubro-card {
    position: relative;
    min-height: 380px;
    padding: 2rem;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 12px 32px rgba(38, 39, 82, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brochure-rubro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(38, 39, 82, 0.2);
    color: #fff;
}

.brochure-rubro-card--salud {
    background: url('../img/brochure/salud.png') center/cover no-repeat;
}

.brochure-rubro-card--deporte {
    background: url('../img/brochure/deporte.png') center/cover no-repeat;
}

.brochure-rubro-label {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.brochure-rubro-desc {
    margin: 0;
    max-width: calc(100% - 3.5rem);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

.brochure-rubro-arrow {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.brochure-rubro-card:hover .brochure-rubro-arrow {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.brochure-section-eyebrow {
    margin: 0 0 0.75rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-primary, #3845fb);
}

.brochure-features {
    padding: 5rem 0;
}

.brochure-features .brochure-container {
    width: min(1280px, calc(100% - 2rem));
}

.brochure-features-header {
    margin-bottom: 2.5rem;
}

.brochure-features-header .brochure-section-title {
    margin-bottom: 0;
}

.brochure-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.brochure-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(38, 39, 82, 0.08);
}

.brochure-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-accent, #e8e9fe);
    color: var(--brand-primary, #3845fb);
    font-size: 1.25rem;
}

.brochure-feature-body {
    min-width: 0;
}

.brochure-feature-body h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-navy, #262752);
}

.brochure-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brochure-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(38, 39, 82, 0.75);
    line-height: 1.5;
    font-size: 0.92rem;
}

.brochure-feature-list li:last-child {
    margin-bottom: 0;
}

.brochure-feature-list i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--brand-primary, #3845fb);
    font-size: 0.85rem;
}

.brochure-booking {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 70% 50% at 0% 50%, rgba(232, 233, 254, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(232, 233, 254, 0.5) 0%, transparent 55%),
        #fff;
}

.brochure-booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 3rem;
    align-items: center;
}

.brochure-booking-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--brand-primary-soft, rgba(56, 69, 251, 0.08));
    color: var(--brand-primary, #3845fb);
    font-size: 0.8rem;
    font-weight: 600;
}

.brochure-booking-title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--brand-navy, #262752);
}

.brochure-booking-title span {
    color: var(--brand-primary, #3845fb);
}

.brochure-booking-lead {
    margin: 0 0 1.75rem;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(38, 39, 82, 0.7);
}

.brochure-booking-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.brochure-booking-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.brochure-booking-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--brand-primary-soft, rgba(56, 69, 251, 0.08));
    color: var(--brand-primary, #3845fb);
    font-size: 0.95rem;
}

.brochure-booking-feature h3 {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-navy, #262752);
}

.brochure-booking-feature p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(38, 39, 82, 0.65);
}

.brochure-booking-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.brochure-booking-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--brand-navy, #262752);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.brochure-booking-ghost:hover {
    color: var(--brand-primary, #3845fb);
}

.brochure-booking-ghost-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--brand-primary-soft, rgba(56, 69, 251, 0.08));
    color: var(--brand-primary, #3845fb);
    font-size: 0.65rem;
}

.brochure-booking-visual {
    position: relative;
    width: min(100%, 720px);
    margin-inline: auto;
    aspect-ratio: 6 / 5;
}

.brochure-booking-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(38, 39, 82, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.brochure-booking-confirm-card {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: min(100%, 340px);
    padding: 0.85rem 1.15rem;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(38, 39, 82, 0.12);
    border: 1px solid rgba(56, 69, 251, 0.08);
}

.brochure-booking-confirm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brand-primary, #3845fb);
    color: #fff;
    font-size: 0.9rem;
}

.brochure-booking-confirm-card strong {
    display: block;
    margin-bottom: 0.1rem;
    font-size: 0.9rem;
    color: var(--brand-navy, #262752);
}

.brochure-booking-confirm-card p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(38, 39, 82, 0.65);
}

.brochure-steps {
    padding: 5rem 0;
    background: #fff;
}

.brochure-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.brochure-step {
    text-align: center;
    padding: 0 2rem;
}

.brochure-step + .brochure-step {
    border-left: 1px solid rgba(56, 69, 251, 0.12);
}

.brochure-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--brand-primary-soft, rgba(56, 69, 251, 0.08));
    color: var(--brand-primary, #3845fb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.brochure-step h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-navy, #262752);
}

.brochure-step p {
    margin: 0;
    color: rgba(38, 39, 82, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

.brochure-app {
    padding: 0 0 5rem;
    background: #fff;
}

.brochure-app-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    background: var(--brand-accent, #e8e9fe);
}

.brochure-app-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy, #262752);
}

.brochure-app-text {
    margin: 0;
    color: rgba(38, 39, 82, 0.75);
    font-size: 1rem;
}

.brochure-app-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.brochure-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 160px;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: #1a1a2e;
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brochure-store-badge:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.25);
}

.brochure-store-badge i {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.brochure-store-badge--google i {
    font-size: 1.5rem;
}

.brochure-store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brochure-store-badge-text small {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    opacity: 0.9;
}

.brochure-store-badge-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.brochure-footer {
    padding: 4rem 0 2rem;
    background: #fff;
    color: var(--brand-navy, #262752);
}

.brochure-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
}

.brochure-footer-brand .platform-logo--footer {
    display: block;
    width: 100px;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.brochure-footer-brand .mp-footer-brand-fallback {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-navy, #262752);
}

.brochure-footer-brand p {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 18rem;
    color: rgba(38, 39, 82, 0.7);
}

.brochure-footer h4 {
    margin: 0 0 1rem;
    color: var(--brand-navy, #262752);
    font-size: 0.95rem;
    font-weight: 600;
}

.brochure-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brochure-footer li {
    margin-bottom: 0.5rem;
}

.brochure-footer a {
    color: rgba(38, 39, 82, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.brochure-footer a:hover {
    color: var(--brand-primary, #3845fb);
}

.brochure-social {
    display: flex;
    gap: 0.75rem;
}

.brochure-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-primary-soft, rgba(56, 69, 251, 0.1));
    color: var(--brand-primary, #3845fb);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}

.brochure-social a:hover {
    background: var(--brand-primary, #3845fb);
    color: #fff;
}

.brochure-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(38, 39, 82, 0.08);
    font-size: 0.85rem;
    color: rgba(38, 39, 82, 0.55);
}

@media (max-width: 991px) {
    .brochure-hero-grid,
    .brochure-booking-grid {
        grid-template-columns: 1fr;
    }

    .brochure-booking-visual {
        margin-top: 2rem;
        width: min(100%, 560px);
    }

    .brochure-booking-confirm-card {
        position: static;
        transform: none;
        margin: 1rem auto 0;
    }

    .brochure-hero-screens {
        margin-top: 1rem;
        margin-right: 0;
        width: min(100%, 560px);
    }

    .brochure-features-grid,
    .brochure-steps-grid {
        grid-template-columns: 1fr;
    }

    .brochure-step {
        padding: 1.5rem 0;
    }

    .brochure-step + .brochure-step {
        border-left: none;
        border-top: 1px solid rgba(56, 69, 251, 0.12);
    }

    .brochure-app-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .brochure-app-badges {
        width: 100%;
        justify-content: center;
    }

    .brochure-feature-card {
        flex-direction: column;
        align-items: stretch;
    }

    .brochure-feature-icon {
        margin-bottom: 0.25rem;
    }

    .brochure-rubros-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brochure-rubros-lead {
        justify-self: start;
        max-width: none;
        text-align: left;
    }

    .brochure-rubros-grid {
        grid-template-columns: 1fr;
    }

    .brochure-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .brochure-header-nav .brochure-link {
        display: none;
    }

    .brochure-hero-screens {
        width: 100%;
        margin-right: 0;
        aspect-ratio: 5 / 5;
    }

    .brochure-hero-screenshot {
        width: 92%;
    }

    .brochure-hero-screenshot--back {
        top: 0;
        left: 8%;
        transform: scale(1);
    }

    .brochure-hero-screenshot--middle {
        top: 18%;
        left: 34%;
        transform: scale(0.85);
    }

    .brochure-hero-screenshot--front {
        top: 40%;
        left: 0;
        transform: scale(0.92);
    }

    .brochure-checklist {
        flex-direction: column;
        gap: 0.65rem;
    }

    .brochure-booking-visual {
        width: 100%;
        aspect-ratio: 5 / 4;
    }

    .brochure-booking-confirm-card {
        width: 100%;
    }

    .brochure-app-card {
        padding: 1.5rem;
    }

    .brochure-app-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .brochure-store-badge {
        justify-content: center;
    }

    .brochure-footer-grid {
        grid-template-columns: 1fr;
    }
}
