/* Saiba mais — landing longa, ritmo visual Y/Z */
html {
    scroll-behavior: smooth;
}

.page-saiba-mais {
    --sm-violet: #7c3aed;
    --sm-pink: #ec4899;
    --sm-dark: #0f172a;
}

.sm-hero {
    margin: 0 -1.25rem;
    padding: 2.5rem 1.25rem 3rem;
    background: linear-gradient(155deg, #0f172a 0%, #1e3a8a 42%, #312e81 78%, #4c1d95 100%);
    border-radius: 0 0 32px 32px;
    position: relative;
    overflow: hidden;
}

.sm-hero::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 60%;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 55%);
    pointer-events: none;
}

.sm-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 55%);
    pointer-events: none;
}

.sm-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 960px) {
    .sm-hero__inner {
        grid-template-columns: 1.05fr 1fr;
        gap: 2.5rem;
    }
}

.sm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a5b4fc;
    margin-bottom: 0.75rem;
}

.sm-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 1rem;
}

.sm-hero__title span {
    background: linear-gradient(90deg, #fde68a, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sm-hero__lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.5rem;
    max-width: 36rem;
    font-weight: 500;
}

.sm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.sm-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.sm-hero__chip {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e7ff;
}

.sm-hero__visual {
    position: relative;
}

.sm-hero__zoom {
    position: relative;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 20px;
    line-height: 0;
    box-shadow: 0 28px 60px -12px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sm-hero__zoom:hover {
    transform: scale(1.02);
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.5);
}

.sm-hero__zoom:focus-visible {
    outline: 3px solid #fde68a;
    outline-offset: 4px;
}

.sm-hero__zoom img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sm-hero__zoom-label {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    pointer-events: none;
    white-space: nowrap;
}

/* Lightbox — hero ampliado */
body.sm-lightbox-open {
    overflow: hidden;
}

.sm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
        max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    box-sizing: border-box;
}

.sm-lightbox[hidden] {
    display: none !important;
}

.sm-lightbox.is-open {
    display: flex;
}

.sm-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
    cursor: zoom-out;
}

.sm-lightbox__inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sm-lightbox__img {
    max-width: min(96vw, 1280px);
    max-height: min(88vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 80px -12px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sm-lightbox__close {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.sm-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.sm-lightbox__close:focus-visible {
    outline: 2px solid #fde68a;
    outline-offset: 2px;
}

.sm-subnav-wrap {
    position: sticky;
    top: 56px;
    z-index: 90;
    margin: 0 -1.25rem 0;
    padding: 0 1.25rem;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.sm-subnav {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 0.35rem;
    padding: 0.55rem 0;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.sm-subnav a {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.sm-subnav a:hover {
    background: #e2e8f0;
    color: var(--text);
    text-decoration: none;
}

.sm-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2.25rem 0 2.5rem;
}

.sm-strip__item {
    text-align: center;
    padding: 1.15rem 1rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.sm-strip__item strong {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--sm-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.03em;
}

.sm-strip__item span {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.25rem;
    display: block;
    line-height: 1.35;
}

.sm-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 6.5rem;
}

.sm-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.sm-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand);
    margin: 0 0 0.5rem;
}

.sm-section__head h2 {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.65rem;
    color: var(--text);
}

.sm-section__head p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.sm-split {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .sm-split {
        grid-template-columns: 1fr 1fr;
    }

    .sm-split--reverse .sm-split__text {
        order: 2;
    }

    .sm-split--reverse .sm-split__media {
        order: 1;
    }
}

.sm-split__media img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* Mídia que deve manter proporção real do arquivo e “card” colado na imagem */
.sm-split__media--intrinsic {
    width: fit-content;
    max-width: 100%;
    justify-self: center;
}

.sm-split__media--intrinsic img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Carrossel (capturas do booking) */
.sm-carousel {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    background: var(--surface);
}

.sm-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    outline: none;
}

.sm-carousel__viewport:focus-visible {
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.35);
}

.sm-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.sm-carousel__track {
    display: flex;
}

.sm-carousel__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-width: 0;
}

.sm-carousel__slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.sm-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, transform 0.15s ease;
    backdrop-filter: blur(6px);
}

.sm-carousel__btn:hover {
    background: rgba(15, 23, 42, 0.85);
}

.sm-carousel__btn--prev {
    left: 0.5rem;
}

.sm-carousel__btn--next {
    right: 0.5rem;
}

.sm-carousel__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 0.5rem 0.85rem;
    background: linear-gradient(180deg, transparent, rgba(248, 250, 252, 0.95));
}

.sm-carousel__dot {
    width: 0.45rem;
    height: 0.45rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease;
}

.sm-carousel__dot:hover {
    background: #94a3b8;
}

.sm-carousel__dot.is-active {
    background: var(--brand);
    transform: scale(1.15);
}

/* Carrossel sobre fundo escuro (seção painel) */
.sm-carousel--dark {
    border-color: #334155;
    background: rgba(30, 41, 59, 0.5);
}

.sm-carousel--dark .sm-carousel__btn {
    background: rgba(255, 255, 255, 0.92);
    color: #000;
}

.sm-carousel--dark .sm-carousel__btn:hover {
    background: #fff;
    color: #000;
}

.sm-carousel--dark .sm-carousel__dots {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.9));
}

.sm-carousel--dark .sm-carousel__dot {
    background: #64748b;
}

.sm-carousel--dark .sm-carousel__dot:hover {
    background: #94a3b8;
}

.sm-carousel--dark .sm-carousel__dot.is-active {
    background: #93c5fd;
}

/* Relatórios — seção Saiba mais */
.sm-kicker--analytics {
    color: #0d9488;
    letter-spacing: 0.11em;
}

.sm-relatorios__orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: 920px;
    margin: 0 auto 0.25rem;
}

.sm-relatorios__chip {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(29, 78, 216, 0.1));
    border: 1px solid rgba(13, 148, 136, 0.28);
    color: #0f766e;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.08);
}

.sm-relatorios__footnote {
    margin: 1.25rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 500;
    font-style: italic;
}

.sm-carousel--analytics {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow:
        var(--shadow),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 18px 48px -20px rgba(13, 148, 136, 0.35);
}

.sm-carousel--analytics .sm-carousel__dot.is-active {
    background: #0d9488;
}

.sm-anchor-heading {
    color: inherit;
    text-decoration: none;
}

.sm-anchor-heading:hover {
    text-decoration: underline;
}

.sm-text-link {
    color: #93c5fd;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(147, 197, 253, 0.5);
    text-underline-offset: 2px;
}

.sm-text-link:hover {
    color: #bfdbfe;
    text-decoration-color: rgba(191, 219, 254, 0.85);
}

.sm-wa-platform .sm-wa-platform__img {
    border-color: #86efac;
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.06),
        0 18px 40px -12px rgba(22, 163, 74, 0.2);
}

.sm-split__text h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.sm-split__text>p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0 0 1rem;
    font-weight: 500;
}

.sm-check {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sm-check li {
    padding-left: 1.65rem;
    position: relative;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.45;
}

.sm-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), #8b5cf6);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

.sm-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .sm-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .sm-bento {
        grid-template-columns: repeat(3, 1fr);
    }

    .sm-bento__wide {
        grid-column: span 2;
    }
}

.sm-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    box-sizing: border-box;
}

.sm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.sm-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.sm-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sm-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 500;
}

.sm-dark-band {
    margin: 0 -1.25rem;
    padding: 3rem 1.25rem;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-radius: 28px;
}

.sm-dark-band .sm-section__head h2 {
    color: #fff;
}

.sm-dark-band .sm-section__head p {
    color: #94a3b8;
}

.sm-dark-band .sm-kicker {
    color: #93c5fd;
}

.sm-dark-band .sm-card {
    background: rgba(30, 41, 59, 0.85);
    border-color: #334155;
    backdrop-filter: blur(8px);
}

.sm-dark-band .sm-card h3 {
    color: #f1f5f9;
}

.sm-dark-band .sm-card p {
    color: #94a3b8;
}

.sm-dark-band .sm-card__icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(139, 92, 246, 0.35));
}

.sm-dark-band .sm-split__text h3 {
    color: #f8fafc;
}

.sm-dark-band .sm-split__text>p {
    color: #94a3b8;
}

.sm-dark-band .sm-check li {
    color: #e2e8f0;
}

.sm-dark-band .sm-check li strong {
    color: #fff;
}

.sm-dark-band .sm-check li::before {
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.25);
}

.sm-steps {
    display: grid;
    gap: 1rem;
    counter-reset: smstep;
}

@media (min-width: 768px) {
    .sm-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sm-step {
    position: relative;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
}

.sm-step::before {
    counter-increment: smstep;
    content: counter(smstep, decimal-leading-zero);
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--sm-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.05em;
    margin-bottom: 0.35rem;
}

.sm-step strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.sm-step span {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 500;
}

.sm-faq {
    max-width: 720px;
    margin: 0 auto;
}

.sm-faq details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 0.65rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.sm-faq summary {
    padding: 1rem 1.15rem;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text);
}

.sm-faq summary::-webkit-details-marker {
    display: none;
}

.sm-faq summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--brand);
    flex-shrink: 0;
}

.sm-faq details[open] summary::after {
    content: '−';
}

.sm-faq .sm-faq__body {
    padding: 0 1.15rem 1.1rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

.sm-cta {
    text-align: center;
    padding: 2.75rem 1.5rem;
    margin-top: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 50%, #dc2626 100%);
    color: #fff;
    box-shadow: 0 20px 50px -15px rgba(234, 88, 12, 0.55);
}

.sm-cta h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sm-cta p {
    margin: 0 0 1.25rem;
    opacity: 0.95;
    font-weight: 500;
    font-size: 1rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.sm-cta .sm-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.sm-cta .btn-landing-primary {
    background: #fff;
    color: var(--brand-dark);
}

.sm-cta .btn-landing-primary:hover {
    color: var(--brand-dark);
}

.sm-cta a.btn-landing-outline {
    border-color: rgba(255, 255, 255, 0.95);
    color: #fff;
    text-decoration: none;
}

.sm-cta a.btn-landing-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
}

.sm-note {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    margin-top: 2rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Hero: botoes legiveis no fundo escuro */
.page-saiba-mais .sm-hero a.btn-landing.btn-landing-outline {
    color: #fff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.9);
}

.page-saiba-mais .sm-hero a.btn-landing.btn-landing-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.page-saiba-mais .sm-hero a.btn-landing.btn-landing-primary {
    color: var(--brand-dark);
    text-decoration: none;
}

.page-saiba-mais .sm-hero a.btn-landing.btn-landing-cta {
    color: #fff;
    text-decoration: none;
}