:root {
    --gp-bg: #f5f7fb;
    --gp-surface: rgba(255, 255, 255, 0.92);
    --gp-surface-soft: rgba(255, 255, 255, 0.78);
    --gp-border: rgba(148, 163, 184, 0.28);
    --gp-text: #0f172a;
    --gp-text-dim: #475569;
    --gp-text-muted: #64748b;
    --gp-cyan: #22d3ee;
    --gp-cyan-strong: #0891b2;
    --gp-indigo: #3b82f6;
    --gp-indigo-strong: #2563eb;
    --gp-gradient: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    --gp-gradient-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(59, 130, 246, 0.12));
    --gp-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body.gp-landing-page {
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f5f7fb 52%, #eef4f8 100%);
    color: var(--gp-text);
}

.gp-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.gp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(245, 247, 251, 0.84);
    border-bottom: 1px solid rgba(34, 211, 238, 0.14);
}

.gp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 76px;
}

.gp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.gp-brand__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gp-gradient);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.24);
    font-size: 2rem;
    line-height: 1;
}

.gp-brand__text {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.gp-brand__text-suffix {
    color: var(--gp-cyan-strong);
    font-weight: 900;
}

.gp-nav__links {
    display: none;
    align-items: center;
    gap: 28px;
}

.gp-nav__links a {
    color: var(--gp-text-dim);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
}

.gp-nav__links a:hover {
    color: var(--gp-cyan-strong);
}

.gp-nav__cta,
.gp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gp-nav__cta,
.gp-btn--primary {
    color: #ffffff;
    background: var(--gp-gradient);
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.18);
}

.gp-nav__cta:hover,
.gp-btn--primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
    transform: translateY(-1px);
}

.gp-btn--ghost {
    color: var(--gp-cyan-strong);
    background: var(--gp-surface-soft);
    border-color: rgba(34, 211, 238, 0.24);
}

.gp-btn--ghost:hover {
    color: var(--gp-cyan-strong);
    border-color: rgba(34, 211, 238, 0.42);
    transform: translateY(-1px);
}

.gp-hero {
    padding: 36px 0 72px;
}

.gp-hero__grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.gp-eyebrow,
.gp-section-heading__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--gp-gradient-soft);
    color: var(--gp-cyan-strong);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.gp-hero__copy h1 {
    margin: 18px 0 18px;
    max-width: 10ch;
    color: var(--gp-text);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.03;
    font-weight: 700;
}

.gp-hero__copy p,
.gp-section-heading p,
.gp-cta-final__panel p,
.gp-footer p {
    margin: 0;
    color: var(--gp-text-dim);
    font-size: 1rem;
    line-height: 1.65;
}

.gp-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.gp-hero__metrics {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.gp-hero__metrics li {
    padding: 18px 20px;
    border: 1px solid var(--gp-border);
    border-radius: 20px;
    background: var(--gp-surface);
    box-shadow: var(--gp-shadow);
}

.gp-hero__metrics strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gp-text);
    font-size: 1.1rem;
}

.gp-hero__metrics span {
    color: var(--gp-text-muted);
    font-size: 0.96rem;
}

.gp-hero__visual {
    position: relative;
    min-height: 460px;
}

.gp-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.gp-hero-card--main {
    padding: 28px;
    background: linear-gradient(145deg, #0f172a 0%, #132238 52%, #1e40af 100%);
    box-shadow: 0 32px 54px rgba(15, 23, 42, 0.28);
}

.gp-hero-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 0.92rem;
}

.gp-hero-card__logo {
    width: 132px;
    max-width: 100%;
}

.gp-hero-card__logo--white {
    width: 142px;
}

.gp-hero-card__stage {
    position: relative;
    margin: 34px 0 28px;
    padding: 26px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 64, 175, 0.34)),
        url("../images/fundoia.png") center/cover no-repeat;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.gp-hero-card__badge {
    width: min(280px, 100%);
    padding: 18px 18px 16px;
    border-radius: 22px;
    border: 1px solid rgba(34, 211, 238, 0.16);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(10px);
}

.gp-hero-card__badge-icon {
    width: 128px;
    height: 128px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gp-gradient);
    color: #ffffff;
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.16);
    font-size: 6rem;
    line-height: 1;
}

.gp-hero-card__badge-icon i {
    font-size: 5.4rem;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
    transform: scale(1.24);
}

.gp-hero-card__badge strong,
.gp-hero-card__stats strong {
    display: block;
    color: var(--gp-text);
}

.gp-hero-card__badge strong {
    margin-bottom: 6px;
    font-size: 1.02rem;
    color: #ffffff;
}

.gp-hero-card__badge span,
.gp-hero-card__stats-label {
    color: var(--gp-text-dim);
    font-size: 0.92rem;
    line-height: 1.55;
}

.gp-hero-card__badge > span:last-child {
    color: rgba(226, 232, 240, 0.86);
}

.gp-hero-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.gp-hero-card__stats div {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
}

.gp-hero-card__chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gp-hero-card__chip-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.16);
    color: #ffffff;
    font-size: 0.92rem;
}

.gp-hero-card--floating {
    position: absolute;
    right: 0;
    bottom: 18px;
    width: min(280px, 82%);
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.14);
}

.gp-hero-card__mini-title {
    margin-bottom: 10px;
    color: var(--gp-cyan-strong);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gp-features {
    padding: 78px 0;
    background: linear-gradient(180deg, rgba(238, 244, 248, 0.4) 0%, rgba(248, 250, 252, 0.92) 100%);
}

.gp-section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.gp-section-heading h2,
.gp-cta-final__panel h2 {
    margin: 16px 0 14px;
    color: var(--gp-text);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
    font-weight: 600;
}

.gp-feature-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
}

.gp-feature-card {
    height: 100%;
    padding: 26px 24px;
    border: 1px solid var(--gp-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--gp-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gp-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.28);
    box-shadow: 0 14px 28px rgba(34, 211, 238, 0.14);
}

.gp-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--gp-gradient-soft);
    color: var(--gp-cyan-strong);
    font-size: 1.2rem;
}

.gp-feature-card h3 {
    margin: 0 0 12px;
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
}

.gp-feature-card p {
    margin: 0;
    color: var(--gp-text-muted);
    line-height: 1.65;
}

.gp-feature-card code {
    color: var(--gp-indigo-strong);
    font-size: 0.95em;
}

.gp-cta-final {
    padding: 0 0 88px;
}

.gp-cta-final__panel {
    display: grid;
    gap: 24px;
    padding: 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0f172a 0%, #132238 46%, #1e40af 100%);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.22);
}

.gp-cta-final__panel h2,
.gp-cta-final__panel p,
.gp-cta-final__panel .gp-section-heading__eyebrow {
    color: #ffffff;
}

.gp-cta-final__panel .gp-section-heading__eyebrow {
    background: rgba(34, 211, 238, 0.14);
}

.gp-footer {
    padding: 28px 0 42px;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.gp-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gp-footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gp-footer__logo {
    width: 164px;
    max-width: 100%;
    height: auto;
}

.gp-footer__copy p {
    margin: 0;
}

.gp-footer__copy a,
.gp-footer__actions a {
    color: var(--gp-indigo-strong);
    font-weight: 600;
    text-decoration: none;
}

.gp-footer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.gp-footer__inner strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .gp-hero {
        padding: 58px 0 90px;
    }

    .gp-hero__actions {
        flex-direction: row;
    }

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

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

    .gp-cta-final__panel {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .gp-footer__inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .gp-footer__brand-block {
        max-width: 620px;
    }

    .gp-footer__actions {
        align-items: flex-end;
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .gp-nav__links {
        display: inline-flex;
    }

    .gp-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
        gap: 52px;
    }

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