/* ==========================================================================
   LP Aunare - FiSA 2026
   CSS autocontido (a LP não carrega o main.css do site). Mobile-first,
   com o breakpoint de desktop em 992px, mesma convenção do site.
   ========================================================================== */

:root {
    --verde: #4f9e63;
    --verde-claro: #78d28f;
    --menta: #c6ffd5;
    --roxo: #4c1f51;
    --titulo: #250628;
    --texto: #6f685e;
    --creme: #f2ede4;
    --footer-bg: #f5fff8;
    --cinza-eyebrow: #f6f6f6;
    --branco: #ffffff;
    --container: 1200px;
    --gutter: 20px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.fisa {
    min-width: 20rem;
    margin: 0;
    color: var(--texto);
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--branco);
    overflow-x: hidden;
}

.fisa img {
    display: block;
    max-width: 100%;
}

.fisa h1,
.fisa h2,
.fisa p,
.fisa figure {
    margin: 0;
}

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

.fisa address {
    font-style: normal;
}

.fisa a {
    text-decoration: none;
}

/* --------------------------------------------------------------- Hero --- */

.fisa-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px var(--gutter);
    text-align: center;
}

.fisa-hero__bg,
.fisa-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fisa-hero__bg {
    object-fit: cover;
}

.fisa-hero__overlay {
    background: linear-gradient(
        116deg,
        rgba(28, 12, 33, 0.84) 20.35%,
        rgba(31, 66, 50, 0.84) 44.43%,
        rgba(32, 106, 64, 0.8) 84.72%
    );
}

.fisa-hero__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: var(--container);
}

.fisa-hero__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.fisa-hero__logos > *,
.fisa-hero__logos > img {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
}

/* O logotipo é aplicado como máscara para reproduzir a versão branca do layout. */
.fisa-logo-aunare {
    aspect-ratio: 831 / 274;
    background-color: var(--branco);
    -webkit-mask: url('../assets/logo-aunare.png') no-repeat center / contain;
    mask: url('../assets/logo-aunare.png') no-repeat center / contain;
}

.fisa-hero__logos .fisa-logo-fisa {
    height: auto;
}

.fisa-hero__title {
    font-size: 32px;
    line-height: 36px;
    font-weight: 600;
    color: var(--branco);
}

.fisa-hero__title em {
    font-style: italic;
    font-weight: 600;
    color: var(--menta);
}

.fisa-hero__subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--menta);
}

.fisa-hero__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.fisa-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--branco);
}

.fisa-info img {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* Separador "|" que só existe no desktop: no mobile vira quebra de linha. */
.fisa-info i {
    display: block;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.fisa-info--pill {
    gap: 12px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.fisa-scroll {
    position: relative;
    display: flex;
    justify-content: center;
    width: 24px;
    height: 42px;
    margin-top: 40px;
    border: 1.5px solid var(--branco);
    border-radius: 25px;
}

.fisa-scroll span {
    position: absolute;
    top: 8px;
    width: 4px;
    height: 8px;
    border-radius: 25px;
    background: var(--branco);
    animation: fisa-scroll-dot 1.8s ease-in-out infinite;
}

@keyframes fisa-scroll-dot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(14px); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fisa-scroll span { animation: none; }
}

/* ----------------------------------------------------------- Estrutura --- */

.fisa-section {
    position: relative;
    padding: 25px var(--gutter);
}

.fisa-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

/* Textura de DNA aplicada como marca d'água atrás do conteúdo. */
.fisa-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-width: none;
    height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    opacity: 0.07;
    object-fit: cover;
    pointer-events: none;
}

.fisa-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    text-align: center;
}

.fisa-eyebrow {
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--cinza-eyebrow);
    font-size: 15px;
    font-weight: 600;
    color: var(--verde);
}

.fisa-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: var(--roxo);
}

.fisa-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: var(--texto);
}

.fisa-text strong {
    font-weight: 700;
}

.fisa-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
}

.fisa-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--titulo);
}

.fisa-features img {
    width: 24px;
    height: 24px;
}

/* --------------------------------------------------- Hub Tasting / QR --- */

.fisa-section--positioning {
    background: var(--branco);
}

.fisa-section--hub {
    background: var(--creme);
}

.fisa-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.fisa-mockup {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
}

.fisa-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fisa-hub__lead {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    color: var(--texto);
}

.fisa-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
    background: var(--branco);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.fisa-card__title,
.fisa-card__qr,
.fisa-card__note {
    display: none;
}

.fisa-portfolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.fisa-portfolio--section {
    display: none;
}

.fisa-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 20px;
    border: 1.5px solid var(--verde-claro);
    border-radius: 100px;
    background: var(--verde);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: var(--branco);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.fisa-cta:hover,
.fisa-cta:focus-visible {
    background: #438653;
    transform: translateY(-2px);
}

.fisa-highlight {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    color: var(--titulo);
}

.fisa-stand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 600;
    color: var(--texto);
}

.fisa-stand img {
    width: 26px;
    height: 26px;
}

.fisa-section--portfolio {
    padding: 0;
}

/* ------------------------------------------------------------- Rodapé --- */

.fisa-footer {
    overflow: hidden;
}

.fisa-footer__fade {
    height: 60px;
    background: linear-gradient(to bottom, rgba(245, 255, 248, 0), var(--footer-bg));
}

.fisa-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px var(--gutter) 40px;
    background: var(--footer-bg);
    text-align: center;
}

.fisa-footer__brand {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--roxo);
}

.fisa-footer__event {
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    color: var(--texto);
}

.fisa-footer__contact {
    font-size: 14px;
    line-height: 20px;
    color: var(--texto);
}

.fisa-footer__contact a {
    font-weight: 600;
    color: var(--roxo);
    text-decoration: underline;
}

.fisa-footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.fisa-footer__social img {
    width: 28px;
    height: 28px;
}

.fisa-footer__copy {
    font-size: 12px;
    line-height: 16px;
    color: var(--roxo);
}

/* ====================================================== Desktop 992px+ === */

@media (min-width: 992px) {
    :root {
        --gutter: 40px;
    }

    /* ---- Hero ---- */
    .fisa-hero {
        min-height: 950px;
        padding: 40px var(--gutter) 80px;
    }

    .fisa-hero__overlay {
        background: linear-gradient(
            149deg,
            rgba(28, 12, 33, 0.84) 20.35%,
            rgba(31, 66, 50, 0.84) 44.43%,
            rgba(32, 106, 64, 0.8) 84.72%
        );
    }

    .fisa-hero__logos {
        gap: 22px;
    }

    .fisa-hero__logos > * {
        flex: 0 0 auto;
    }

    .fisa-logo-aunare {
        width: 415px;
        max-width: 415px;
    }

    .fisa-hero__logos .fisa-logo-fisa {
        width: 334px;
        max-width: 334px;
    }

    .fisa-hero__title {
        max-width: 1176px;
        font-size: 52px;
        line-height: 1.3;
        font-weight: 400;
    }

    .fisa-hero__subtitle {
        font-size: 42px;
    }

    .fisa-hero__info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        gap: 24px;
        max-width: 960px;
    }

    .fisa-info {
        gap: 12px;
        font-size: 24px;
        line-height: 26px;
    }

    .fisa-info img {
        width: 26px;
        height: 26px;
    }

    .fisa-info i {
        display: inline;
        height: auto;
        visibility: visible;
        font-style: normal;
    }

    .fisa-info--pill {
        padding: 12px 20px;
    }

    .fisa-scroll {
        width: 26px;
        height: 48px;
        margin-top: 90px;
    }

    /* ---- Seções ---- */
    .fisa-section {
        padding: 50px var(--gutter);
    }

    .fisa-eyebrow {
        padding: 12px 16px;
        font-size: 20px;
        font-weight: 500;
    }

    .fisa-title {
        font-size: 40px;
        line-height: 52px;
    }

    .fisa-section--positioning .fisa-title {
        line-height: 1.3;
        color: var(--titulo);
    }

    .fisa-text {
        font-size: 20px;
        line-height: 1.4;
    }

    .fisa-features {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }

    .fisa-features li {
        font-size: 20px;
    }

    /* ---- Hub: mockup + card do QR lado a lado ---- */
    .fisa-hub {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .fisa-mockup {
        flex: 0 1 547px;
        height: auto;
        border-radius: 0;
    }

    .fisa-mockup img {
        height: auto;
        object-fit: contain;
    }

    .fisa-hub__lead {
        display: none;
    }

    .fisa-card {
        flex: 0 0 auto;
        width: 380px;
        gap: 24px;
        padding: 40px;
    }

    .fisa-card__title,
    .fisa-card__qr {
        display: flex;
    }

    .fisa-card__note {
        display: block;
    }

    .fisa-card__title {
        font-size: 21px;
        line-height: 1.3;
        font-weight: 500;
        text-align: center;
        color: var(--verde);
    }

    .fisa-card__qr {
        align-items: center;
        justify-content: center;
        width: 300px;
        max-width: 100%;
        height: 300px;
        border: 1.5px solid #e5e7eb;
        border-radius: 24px;
        background: #f8fafc;
    }

    .fisa-card__qr img {
        width: 240px;
        height: 240px;
    }

    .fisa-card__note {
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
        color: #4b5563;
    }

    .fisa-portfolio--card {
        display: none;
    }

    .fisa-highlight {
        font-size: 26px;
        line-height: 1.4;
    }

    .fisa-stand {
        gap: 12px;
        font-size: 26px;
    }

    /* ---- Seção de portfólio (só desktop) ---- */
    .fisa-section--portfolio {
        padding: 50px var(--gutter) 0;
    }

    .fisa-portfolio--section {
        display: flex;
        gap: 32px;
    }

    .fisa-cta {
        width: 544px;
        max-width: 100%;
        min-height: 76px;
        border-width: 1.357px;
        border-radius: 67.857px;
        font-size: 21.7px;
    }

    /* ---- Rodapé ---- */
    .fisa-footer__fade {
        height: 180px;
    }

    .fisa-footer__inner {
        gap: 20px;
        padding: 40px var(--gutter) 50px;
    }

    .fisa-footer__brand {
        font-size: 20px;
    }

    .fisa-footer__event {
        font-size: 18px;
        line-height: 24px;
    }

    .fisa-footer__contact {
        font-size: 16px;
        line-height: 22px;
    }

    .fisa-footer__contact a {
        font-weight: 500;
    }

    .fisa-footer__social {
        gap: 40px;
    }

    .fisa-footer__copy {
        font-size: 17px;
        line-height: 26px;
    }
}
