/* INICIO CSS INDEX */
:root {
    --pa-bg: #f7f7f8;
    --pa-card: #ffffff;
    --pa-card-soft: #fff8f8;
    --pa-border: #ececec;
    --pa-text: #171717;
    --pa-text-soft: #666666;
    --pa-primary: #df1f26;
    --pa-primary-dark: #b8181e;
    --pa-yellow: #ffcf00;
    --pa-yellow-soft: #fff7d8;
    --pa-shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.05);
    --pa-shadow-md: 0 12px 34px rgba(0, 0, 0, 0.08);
    --pa-shadow-lg: 0 20px 44px rgba(0, 0, 0, 0.12);
}

/* INICIO CSS BASE */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--pa-bg);
    color: var(--pa-text);
    font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}
/* FIM CSS BASE */

.pa-body {
    background: linear-gradient(180deg, #fcfcfc 0%, #f6f6f7 100%);
}

.pa-site {
    min-height: 100vh;
}

/* INICIO CSS HEADER */
.pa-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(252, 252, 252, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pa-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pa-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.pa-brand__logo {
    display: block;
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.pa-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1 1 auto;
}

.pa-nav a {
    color: #3d3d3d;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-transform: lowercase;
    transition: 0.2s ease;
}

.pa-nav a:hover {
    color: var(--pa-primary);
}

.pa-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
/* FIM CSS HEADER */

/* INICIO CSS BOTOES */
.pa-btn {
    min-height: 46px;
    border-radius: 16px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-transform: lowercase;
    transition: 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

.pa-btn:hover {
    transform: translateY(-1px);
}

.pa-btn--primary {
    background: var(--pa-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(223, 31, 38, 0.16);
}

.pa-btn--primary:hover {
    background: var(--pa-primary-dark);
    color: #fff;
}

.pa-btn--ghost,
.pa-btn--light {
    background: #fff;
    color: var(--pa-text);
    border-color: var(--pa-border);
    box-shadow: var(--pa-shadow-sm);
}

.pa-btn--ghost:hover,
.pa-btn--light:hover {
    color: var(--pa-primary);
    border-color: rgba(223, 31, 38, 0.18);
}

.pa-btn--large {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 18px;
    font-size: 15px;
}

.pa-btn--block {
    width: 100%;
}
/* FIM CSS BOTOES */

/* INICIO CSS TITULOS */
.pa-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(223, 31, 38, 0.08);
    color: var(--pa-primary);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pa-section {
    padding: 34px 0;
}

.pa-section--soft {
    background: linear-gradient(180deg, #fff8f8 0%, #f8f8fa 100%);
}

.pa-section--plans {
    background: linear-gradient(180deg, #fffdf7 0%, #f9f9fb 100%);
}

.pa-section__head {
    max-width: 820px;
    margin: 0 auto 26px;
    text-align: center;
}

.pa-section__title {
    margin: 14px 0 12px;
    color: var(--pa-text);
    font-size: 40px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pa-section__text {
    margin: 0;
    color: var(--pa-text-soft);
    font-size: 16px;
    line-height: 1.75;
    font-weight: 600;
}
/* FIM CSS TITULOS */

/* INICIO CSS HERO */
.pa-hero {
    padding: 42px 0 18px;
}

.pa-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 26px;
    align-items: center;
}

.pa-hero__title {
    margin: 18px 0 16px;
    color: var(--pa-text);
    font-size: 58px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pa-hero__text {
    max-width: 650px;
    margin: 0 0 24px;
    color: var(--pa-text-soft);
    font-size: 18px;
    line-height: 1.78;
    font-weight: 600;
}

.pa-hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pa-mini-search {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 560px;
}

.pa-mini-search__item {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--pa-border);
    box-shadow: var(--pa-shadow-sm);
    display: flex;
    align-items: center;
    color: #444;
    font-size: 14px;
    font-weight: 700;
}

.pa-hero-card {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--pa-shadow-lg);
}

.pa-hero-card__image {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
}

.pa-hero-card__floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 230px;
}

.pa-hero-card__floating strong {
    color: var(--pa-text);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.pa-hero-card__floating span {
    color: var(--pa-text-soft);
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
}

.pa-hero-card__floating--top {
    top: 22px;
    left: 22px;
}

.pa-hero-card__floating--bottom {
    left: 22px;
    bottom: 22px;
}
/* FIM CSS HERO */

/* INICIO CSS STRIP */
.pa-strip {
    padding: 10px 0 8px;
}

.pa-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pa-strip__item {
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--pa-shadow-sm);
}

.pa-strip__item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--pa-text);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.pa-strip__item span {
    color: var(--pa-text-soft);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}
/* FIM CSS STRIP */

/* INICIO CSS FEATURE */
.pa-feature {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: 18px;
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--pa-shadow-md);
    overflow: hidden;
}

.pa-feature--reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.pa-feature__image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 22px;
    object-fit: cover;
    display: block;
}

.pa-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.pa-feature__title {
    margin: 0;
    color: var(--pa-text);
    font-size: 34px;
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pa-feature__text {
    margin: 0;
    color: var(--pa-text-soft);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

.pa-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pa-tags span {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff6f6;
    color: var(--pa-primary);
    border: 1px solid rgba(223, 31, 38, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
}
/* FIM CSS FEATURE */

/* INICIO CSS INFO CARDS */
.pa-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.pa-info-card {
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 24px;
    box-shadow: var(--pa-shadow-sm);
    overflow: hidden;
}

.pa-info-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.pa-info-card__body {
    padding: 20px;
}

.pa-info-card__body h3 {
    margin: 0 0 10px;
    color: var(--pa-text);
    font-size: 24px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pa-info-card__body p {
    margin: 0;
    color: var(--pa-text-soft);
    font-size: 14px;
    line-height: 1.68;
    font-weight: 600;
}

.pa-cta-line {
    display: flex;
    justify-content: center;
}
/* FIM CSS INFO CARDS */

/* INICIO CSS PLANS */
.pa-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.pa-plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 28px;
    padding: 24px;
    box-shadow: var(--pa-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pa-plan-card--featured {
    border-color: rgba(223, 31, 38, 0.18);
    box-shadow: 0 16px 38px rgba(223, 31, 38, 0.12);
    transform: translateY(-4px);
}

.pa-plan-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--pa-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pa-plan-card__name {
    color: #777;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pa-plan-card__price {
    color: var(--pa-primary);
    font-size: 56px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pa-plan-card__subtitle {
    color: var(--pa-text-soft);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: lowercase;
}

.pa-plan-card__list {
    margin: 0;
    padding: 0 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--pa-text-soft);
}

.pa-plan-card__list li {
    font-size: 14px;
    line-height: 1.58;
    font-weight: 600;
}
/* FIM CSS PLANS */

/* INICIO CSS FAQ */
.pa-faq {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pa-faq__item {
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 22px;
    box-shadow: var(--pa-shadow-sm);
    overflow: hidden;
}

.pa-faq__question {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--pa-text);
    text-transform: lowercase;
    position: relative;
}

.pa-faq__question::-webkit-details-marker {
    display: none;
}

.pa-faq__question::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: var(--pa-primary);
}

.pa-faq__item[open] .pa-faq__question::after {
    content: '–';
}

.pa-faq__answer {
    padding: 0 22px 20px;
    border-top: 1px solid #f2f2f2;
}

.pa-faq__answer p {
    margin: 16px 0 0;
    color: var(--pa-text-soft);
    font-size: 14px;
    line-height: 1.72;
    font-weight: 600;
}

.pa-faq__link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff5f5;
    color: var(--pa-primary);
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: lowercase;
}
/* FIM CSS FAQ */

/* INICIO CSS DOWNLOAD */
.pa-download {
    padding: 34px 0 28px;
}

.pa-download-card {
    background: #fff;
    border: 1px solid var(--pa-border);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--pa-shadow-md);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 20px;
    align-items: center;
}

.pa-download-card__title {
    margin: 14px 0 12px;
    color: var(--pa-text);
    font-size: 38px;
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.pa-download-card__text {
    margin: 0 0 18px;
    color: var(--pa-text-soft);
    font-size: 15px;
    line-height: 1.72;
    font-weight: 600;
}

.pa-download-card__image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
}
/* FIM CSS DOWNLOAD */

/* INICIO CSS FOOTER */
.pa-footer {
    padding: 18px 0 28px;
}

.pa-footer__inner {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.pa-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
}

.pa-footer__brand img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.pa-footer__brand p {
    margin: 0;
}

.pa-footer__links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pa-footer__links a {
    color: #555;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: lowercase;
}

.pa-footer__links a:hover {
    color: var(--pa-primary);
}
/* FIM CSS FOOTER */

/* INICIO CSS RESPONSIVO */
@media (max-width: 1199px) {
    .pa-hero__grid,
    .pa-feature,
    .pa-feature--reverse,
    .pa-download-card {
        grid-template-columns: 1fr;
    }

    .pa-strip__grid,
    .pa-cards,
    .pa-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .pa-header {
        position: relative;
    }

    .pa-header__inner {
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
        flex-wrap: wrap;
    }

    .pa-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .pa-hero__title,
    .pa-section__title,
    .pa-download-card__title {
        font-size: 42px;
    }

    .pa-hero__grid {
        grid-template-columns: 1fr;
    }

    .pa-hero-card {
        min-height: 420px;
    }

    .pa-hero-card__image {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .pa-hero {
        padding-top: 24px;
    }

    .pa-nav {
        gap: 14px;
    }

    .pa-nav a {
        font-size: 13px;
        white-space: nowrap;
    }

    .pa-header__actions {
        width: 100%;
    }

    .pa-header__actions .pa-btn {
        flex: 1 1 0;
    }

    .pa-hero__title,
    .pa-section__title,
    .pa-download-card__title {
        font-size: 30px;
    }

    .pa-hero__text,
    .pa-section__text,
    .pa-download-card__text {
        font-size: 14px;
    }

    .pa-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pa-hero__actions .pa-btn {
        width: 100%;
    }

    .pa-mini-search {
        grid-template-columns: 1fr;
    }

    .pa-strip__grid,
    .pa-cards,
    .pa-plans {
        grid-template-columns: 1fr;
    }

    .pa-feature {
        padding: 12px;
        border-radius: 22px;
    }

    .pa-feature__image {
        min-height: 220px;
        border-radius: 18px;
    }

    .pa-feature__title {
        font-size: 24px;
    }

    .pa-info-card__image {
        height: 180px;
    }

    .pa-info-card__body {
        padding: 16px;
    }

    .pa-info-card__body h3 {
        font-size: 21px;
    }

    .pa-plan-card {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .pa-plan-card__price {
        font-size: 46px;
    }

    .pa-faq__question {
        padding: 18px 18px;
        font-size: 16px;
    }

    .pa-faq__question::after {
        right: 18px;
    }

    .pa-faq__answer {
        padding: 0 18px 18px;
    }

    .pa-download-card {
        padding: 18px;
        border-radius: 22px;
    }

    .pa-download-card__image {
        min-height: 220px;
        border-radius: 18px;
    }

    .pa-hero-card {
        min-height: 320px;
        border-radius: 22px;
    }

    .pa-hero-card__image {
        min-height: 320px;
    }

    .pa-hero-card__floating {
        position: static;
        margin: 10px;
        max-width: none;
    }

    .pa-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .pa-footer__links {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* FIM CSS RESPONSIVO */

/* FIM CSS INDEX */