:root {
    --alow-navy: #0b2a6b;
    --alow-green: #71ea75;
    --alow-green-deep: #22b573;
    --alow-cyan: #018fd0;
    --alow-stat: #b9c6e8;
    --alow-footer-text: #cbd5f5;
    --alow-footer-muted: #7f93c9;
    --alow-muted: #4b5563;
    --alow-placeholder: #9ca3af;
    --alow-contact-bg: #f3f4f6;
    --alow-white: #ffffff;
    --alow-max: 1760px;
    --alow-gutter: 80px;
    --alow-header: 112px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--alow-navy);
    background: var(--alow-white);
}

img { max-width: 100%; height: auto; display: block; }

.alow-wrap {
    width: min(100% - 32px, var(--alow-max));
    margin-inline: auto;
}

.alow-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--alow-white);
    box-shadow: 0 1px 0 rgba(11, 42, 107, 0.08);
}

.alow-header__bar {
    height: var(--alow-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.alow-header__brand img {
    width: 140px;
    height: 65px;
    object-fit: contain;
}

.alow-header__nav {
    display: flex;
    gap: 72px;
    align-items: center;
}

.alow-header__nav .nav-link,
.alow-header__menu .nav-link {
    font-size: 15.1px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--alow-navy);
    text-decoration: none;
    padding: 0;
}

.alow-header__nav .nav-link:hover,
.alow-header__menu .nav-link:hover { color: var(--alow-cyan); }

.alow-social {
    display: flex;
    align-items: center;
    gap: 56px;
}

.alow-social__link {
    color: var(--alow-navy);
    font-size: 22px;
    line-height: 1;
}

.alow-social--light { gap: 40px; }
.alow-social--light .alow-social__link { color: #7eb6ea; }

.alow-header__menu {
    display: none;
    list-style: none;
    margin: 0;
    background: var(--alow-white);
    padding: 20px 24px 36px 32px;
}

.alow-header__menu.aberto { display: block; }
.alow-header__menu li { padding: 14px 0; }
.alow-header__menu .nav-link { display: inline-block; }
.alow-header__menu-social { padding-top: 20px; }

.hamburger {
    background: none;
    border: 0;
    width: 48px;
    height: 48px;
    padding: 0;
}

.hamburger-box { width: 28px; height: 20px; position: relative; margin: 0 auto; }
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--alow-navy);
    border-radius: 2px;
    left: 0;
    transition: transform .25s ease, opacity .2s ease;
}

.hamburger-inner { top: 8px; }
.hamburger-inner::before { content: ""; top: -8px; }
.hamburger-inner::after { content: ""; top: 8px; }
.hamburger.is-active .hamburger-inner { transform: rotate(45deg); }
.hamburger.is-active .hamburger-inner::before { opacity: 0; }
.hamburger.is-active .hamburger-inner::after { transform: rotate(-90deg); top: 0; }

.alow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 28px;
    border: 0;
    font-family: inherit;
    font-size: 13.9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--alow-white);
    background: var(--alow-green);
}

.alow-btn--green { background: var(--alow-green); }
.alow-btn--cyan { background: var(--alow-cyan); min-width: 277px; }
.alow-btn--sm { min-height: 50px; min-width: 213px; font-size: 12.8px; }
.alow-btn--ghost {
    background: transparent;
    color: var(--alow-navy);
    border: 1px solid rgba(11, 42, 107, 0.2);
    min-width: 0;
}
.alow-btn--ghost:hover { color: var(--alow-navy); background: #f3f6fb; filter: none; }
.alow-btn:hover { color: var(--alow-white); filter: brightness(0.96); }

.alow-hero {
    position: relative;
    min-height: 667px;
    color: var(--alow-white);
    overflow: hidden;
}

.alow-hero__bg,
.alow-hero__bg .carousel,
.alow-hero__bg .carousel-item,
.alow-hero__bg picture,
.alow-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.alow-hero__bg img { object-fit: cover; }

.alow-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 42, 107, 0.72) 0%, rgba(11, 42, 107, 0.28) 62%, rgba(11, 42, 107, 0.55) 100%);
}

.alow-hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 565px;
    gap: 40px;
    padding: 90px 0 70px;
    align-items: end;
}

.alow-hero h1 {
    margin: 0 0 18px;
    font-size: 60.3px;
    font-weight: 700;
    line-height: 1.05;
}

.alow-hero h1 span { display: block; color: var(--alow-white); }
.alow-hero h1 em {
    display: block;
    font-style: normal;
    color: var(--alow-green);
}

.alow-hero__copy p {
    max-width: 772px;
    margin: 0 0 36px;
    font-size: 17.6px;
    font-weight: 700;
    line-height: 25px;
}

.alow-hero__ctas { display: flex; flex-wrap: wrap; gap: 32px; }
.alow-hero__ctas .alow-btn--green { min-width: 363px; }
.alow-hero__ctas .alow-btn--cyan { min-width: 277px; }

.alow-hero__stats {
    background: rgba(11, 42, 107, 0.78);
    padding: 28px 32px;
}

.alow-hero__stat {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.alow-hero__stat:last-child { border-bottom: 0; }
.alow-hero__stat img { width: 40px; height: 40px; object-fit: contain; flex: 0 0 40px; }
.alow-hero__stat strong { display: block; font-size: 22px; line-height: 1.2; }
.alow-hero__stat span {
    display: block;
    color: var(--alow-stat);
    font-size: 11.6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.alow-instagram { padding: 72px 0 40px; }

.alow-instagram__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 104px;
}

.alow-instagram__col { text-align: center; }

.alow-instagram__head {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--alow-navy);
}

.alow-instagram__head i { font-size: 28px; }
.alow-instagram__head strong { font-size: 18.6px; }
.alow-instagram__col .alow-btn { margin-bottom: 28px; }

.alow-instagram__posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.alow-instagram__post {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #eef1f6;
}

.alow-instagram__post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.alow-instagram__post:hover img {
    transform: scale(1.06);
}

.alow-instagram__feed img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.alow-section-head {
    width: min(100% - 32px, 987px);
    margin: 0 auto 48px;
    text-align: center;
}

.alow-kicker {
    margin: 0 0 8px;
    color: var(--alow-cyan);
    font-size: 13.9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.alow-risco {
    height: 0.2rem;
    width: 7rem;
    margin: 10px auto 16px;
    background: var(--alow-green);
    transition: transform 0.9s cubic-bezier(.22, .61, .36, 1) 0.1s;
}

.alow-in {
    transition:
        opacity var(--alow-dur, 0.85s) cubic-bezier(.22, .61, .36, 1) var(--alow-delay, 0s),
        transform var(--alow-dur, 0.85s) cubic-bezier(.22, .61, .36, 1) var(--alow-delay, 0s);
}

.alow-in--card { --alow-dur: 0.7s; }
.alow-in--fast { --alow-dur: 0.5s; }

.alow-section-head h2,
.alow-gallery h2 {
    margin: 0 0 12px;
    font-size: 34.8px;
    font-weight: 700;
    color: var(--alow-navy);
}

.alow-section-head p { margin: 0; font-size: 15.1px; }

.alow-projects { padding: 40px 0 20px; }

.alow-projects__list {
    width: min(100%, 1920px);
    margin: 0 auto;
    border-top: 1px solid #e6e8ee;
}

.alow-project {
    display: grid;
    grid-template-columns: 416px 140px minmax(240px, 1fr) minmax(320px, 480px);
    gap: 32px 40px;
    align-items: center;
    width: min(100% - 32px, var(--alow-max));
    margin: 0 auto;
    padding: 16px 0;
    border-bottom: 1px solid #e6e8ee;
    min-height: 227px;
}

.alow-project__media img {
    width: 416px;
    height: 195px;
    object-fit: cover;
    border-radius: 4px;
}

.alow-project__logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.alow-project__copy h3 {
    margin: 0 0 8px;
    color: var(--alow-cyan);
    font-size: 28px;
    font-weight: 700;
}

.alow-project__copy p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.alow-project__ops p {
    margin: 0 0 8px;
    color: var(--alow-green-deep);
    font-size: 13.9px;
    font-weight: 700;
}

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

.alow-project__ops li {
    position: relative;
    padding-left: 14px;
    color: var(--alow-muted);
    font-size: 13.9px;
    line-height: 22.7px;
}

.alow-project__ops li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.alow-gallery { padding: 28px 0 12px; }

.alow-gallery__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.alow-gallery__head h2 { margin: 0; font-size: 26.7px; }

.alow-gallery__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
}

.alow-gallery__row figure {
    overflow: hidden;
    border-radius: 6px;
    margin: 0;
}

.alow-gallery__row img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.alow-partners { padding: 72px 0 40px; }

.alow-partners__sheet {
    width: 100%;
    height: auto;
}

.alow-partners__grid {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 28px 20px;
    align-items: center;
}

.alow-partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}

.alow-partners__item img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.alow-contact {
    background: var(--alow-contact-bg);
    padding: 74px 0 80px;
}

.alow-contact__title {
    margin: 0 0 8px;
    text-align: center;
    font-size: 30.2px;
    font-weight: 700;
}

.alow-contact .alow-risco { margin-bottom: 40px; }

.alow-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.alow-form__input,
.alow-form input,
.alow-form textarea {
    width: 100%;
    border: 1px solid #d5d8e0;
    background: var(--alow-white);
    border-radius: 0;
    min-height: 61px;
    padding: 16px 18px;
    font-size: 13.9px;
    color: var(--alow-navy);
}

.alow-form textarea,
.alow-form__input--area {
    min-height: 171px;
    resize: vertical;
}

.alow-form .input { margin: 0; }
.alow-form__captcha { margin: 24px 0 8px; }
.alow-form__actions { display: flex; justify-content: center; margin-top: 32px; }
.alow-form__actions .alow-btn { min-width: 427px; min-height: 67px; font-size: 15.1px; }

.alow-footer {
    background: var(--alow-navy);
    color: var(--alow-footer-text);
    padding: 80px 0 28px;
}

.alow-footer__inner {
    width: min(100% - 32px, var(--alow-max));
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.alow-footer__brand img {
    width: 337px;
    max-width: 100%;
    height: 156px;
    object-fit: contain;
}

.alow-footer__contacts { display: grid; gap: 28px; }

.alow-footer__contact {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    color: var(--alow-footer-text);
    text-decoration: none;
    font-size: 15.1px;
}

.alow-footer__contact i { color: #7eb6ea; width: 28px; text-align: center; font-size: 22px; }

.alow-footer__aside {
    text-align: right;
    justify-self: end;
}

.alow-footer__aside p { margin: 0 0 6px; font-size: 13.9px; }
.alow-footer__aside .alow-social { justify-content: flex-end; margin-top: 28px; }

.alow-footer__copy {
    width: min(100% - 32px, var(--alow-max));
    margin: 0 auto;
    padding-top: 22px;
    border-top: 1px solid rgba(203, 213, 245, 0.25);
    text-align: center;
    color: var(--alow-footer-muted);
    font-size: 8.8px;
    letter-spacing: 1.76px;
    text-transform: uppercase;
}

.alow-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.alow-whatsapp:hover { color: #fff; }

.alow-show__hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--alow-navy);
    color: #fff;
}
.alow-show__hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: alowKenBurns 18s ease-out forwards;
}
.alow-show__hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 42, 107, 0.15) 20%, rgba(5, 14, 40, 0.82) 100%);
}
.alow-show__hero-copy {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, var(--alow-max));
    margin: 0 auto;
    padding: 0 0 56px;
}
.alow-show__hero-copy .alow-kicker { color: var(--alow-green); }
.alow-show__hero-copy h1 {
    margin: 8px 0 12px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 800;
}
.alow-show__hero-copy p { margin: 0; color: #d7e0f5; font-size: 15px; }

.alow-show__body { padding: 56px 0 80px; }
.alow-show__empty { color: var(--alow-muted); }

.alow-show__masonry {
    columns: 3;
    column-gap: 18px;
}
.alow-show__item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: #0b2a6b;
    border-radius: 8px;
    overflow: hidden;
    break-inside: avoid;
    cursor: zoom-in;
    opacity: 0;
    transform: translateY(28px);
    animation: alowReveal 0.7s ease forwards;
    animation-delay: calc(var(--i, 0) * 80ms);
}
.alow-show__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.alow-show__item:nth-child(3n + 1) img { aspect-ratio: 4 / 5; }
.alow-show__item:nth-child(3n + 2) img { aspect-ratio: 1 / 1; }
.alow-show__item:nth-child(3n) img { aspect-ratio: 5 / 4; }
.alow-show__item:hover img { transform: scale(1.08); }
.alow-show__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(11, 42, 107, 0.72);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.alow-show__item:hover .alow-show__zoom { opacity: 1; }

.alow-show__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}
.alow-show__more { margin-top: 64px; }
.alow-show__more-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

body.alow-lightbox-open { overflow: hidden; }
.alow-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(5, 12, 32, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}
.alow-lightbox[hidden] { display: none; }
.alow-lightbox__img {
    max-width: min(92vw, 1400px);
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.alow-lightbox__img.is-in { opacity: 1; transform: scale(1); }
.alow-lightbox__count {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    margin: 0;
    color: #d7e0f5;
    letter-spacing: 0.12em;
    font-size: 13px;
}
.alow-lightbox__nav,
.alow-lightbox__close {
    position: absolute;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.alow-lightbox__nav:hover,
.alow-lightbox__close:hover { background: var(--alow-cyan); }
.alow-lightbox__nav--prev { left: 20px; }
.alow-lightbox__nav--next { right: 20px; }
.alow-lightbox__close { top: 20px; right: 20px; }

@keyframes alowReveal {
    to { opacity: 1; transform: none; }
}
@keyframes alowKenBurns {
    to { transform: scale(1); }
}

.alow-page {
    width: min(100% - 32px, 920px);
    margin: 48px auto 80px;
}

.alow-page h1 { margin: 0 0 24px; font-size: 34px; }

.alow-holding {
    position: relative;
    min-height: calc(100vh - var(--alow-header));
    display: flex;
    align-items: center;
    color: var(--alow-white);
    background: var(--alow-navy);
    overflow: hidden;
}

.alow-holding__bg,
.alow-holding__bg img,
.alow-holding__shade {
    position: absolute;
    inset: 0;
}

.alow-holding__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alow-holding__shade {
    background: radial-gradient(ellipse at center, rgba(11, 42, 107, 0.55) 0%, rgba(11, 42, 107, 0.88) 100%);
}

.alow-holding__inner {
    position: relative;
    z-index: 2;
    padding: 72px 0 88px;
    text-align: center;
}

.alow-holding .alow-kicker { color: var(--alow-green); }
.alow-holding .alow-risco { margin: 12px auto 28px; }

.alow-holding h1 {
    margin: 0 auto 20px;
    max-width: 16ch;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.alow-holding__copy {
    max-width: 38rem;
    margin: 0 auto 36px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.alow-holding__copy p { margin: 0 0 12px; }
.alow-holding__copy p:last-child { margin-bottom: 0; }

.alow-holding__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.alow-social--holding { gap: 28px; justify-content: center; }
.alow-social--holding .alow-social__link { color: var(--alow-white); }

body.page-holding .alow-header__bar {
    justify-content: center;
    gap: 40px;
}

body.page-holding .alow-footer { margin-top: 0; }
body.page-holding .alow-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}
body.page-holding .alow-footer__contacts { justify-items: center; }
body.page-holding .alow-footer__contact { justify-content: center; }
body.page-holding .alow-footer__aside {
    text-align: center;
    justify-self: center;
}
body.page-holding .alow-footer__aside .alow-social {
    justify-content: center;
}

@media (max-width: 1199.98px) {
    .alow-header__nav { gap: 32px; }
    .alow-social { gap: 28px; }
    .alow-hero__content { grid-template-columns: 1fr; }
    .alow-hero h1 { font-size: 42px; }
    .alow-instagram__grid { gap: 32px; }
    .alow-project { grid-template-columns: 1fr 1fr; }
    .alow-project__media { grid-column: 1 / -1; }
    .alow-project__media img { width: 100%; height: 200px; }
    .alow-gallery__row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .alow-show__masonry { columns: 2; }
    .alow-partners__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .alow-footer__inner { grid-template-columns: 1fr; text-align: left; }
    .alow-footer__aside { text-align: left; justify-self: start; }
    .alow-footer__aside .alow-social { justify-content: flex-start; }
    .alow-footer__brand img {
        width: min(337px, 100%);
        height: auto;
        aspect-ratio: 337 / 156;
    }
    body.page-holding .alow-footer__inner,
    body.page-holding .alow-footer__aside { text-align: center; }
    body.page-holding .alow-footer__aside { justify-self: center; }
    body.page-holding .alow-footer__aside .alow-social { justify-content: center; }
}

@media (max-width: 767.98px) {
    :root { --alow-header: 80px; }
    .alow-header__bar { height: 80px; }
    .alow-hero { min-height: auto; }
    .alow-hero__content { padding: 48px 0 36px; }
    .alow-holding h1 { font-size: 40px; }
    .alow-holding__inner { padding: 56px 0 64px; }
    .alow-hero__ctas .alow-btn--green,
    .alow-hero__ctas .alow-btn--cyan,
    .alow-form__actions .alow-btn { min-width: 0; width: 100%; }
    .alow-instagram__grid,
    .alow-form__grid,
    .alow-gallery__row { grid-template-columns: 1fr; }
    .alow-project { grid-template-columns: 1fr; }
    .alow-partners__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .alow-gallery__head { flex-direction: column; align-items: flex-start; }
    .alow-section-head h2 { font-size: 28px; }
    .alow-show__masonry { columns: 1; }
    .alow-show__hero { min-height: 60vh; }
    .alow-lightbox__nav--prev { left: 8px; }
    .alow-lightbox__nav--next { right: 8px; }
    .alow-btn--cyan { min-width: 0; }
}

/* ===== Entrada por rolagem ===== */
[data-entra] {
    opacity: 0;
    transform: translateY(26px);
}

[data-entra][data-visivel] {
    opacity: 1;
    transform: none;
}

[data-risco] {
    transform: scaleX(0);
    transform-origin: left center;
}

[data-risco][data-visivel] {
    transform: scaleX(1);
}

[data-barra] {
    transform: scaleX(0);
    transform-origin: left center;
}

[data-visivel] [data-barra] {
    transform: scaleX(1);
}

[data-check],
[data-bastao] {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

[data-bastao] {
    opacity: 0.3;
}

[data-visivel] [data-bastao] {
    stroke-dashoffset: 0;
    opacity: 1;
}

[data-visivel] [data-check] {
    stroke-dashoffset: 0;
}

[data-flecha] path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 0.75s ease-out 0.15s;
}

[data-visivel] [data-flecha] path {
    stroke-dashoffset: 0;
}

[data-mini] img {
    transition: transform 0.7s cubic-bezier(.22, .61, .36, 1);
}

[data-mini]:hover img {
    transform: scale(1.13);
}

[data-corpo] {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(.22, .61, .36, 1);
}

[data-corpo] > div {
    overflow: hidden;
}

[data-texto] {
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease 0.06s, transform 0.3s ease 0.06s;
}

[data-realce] {
    opacity: 0;
    transition: opacity 0.25s ease;
}

[data-dica] {
    transition: opacity 0.2s ease;
}

[data-seta] {
    transition: transform 0.32s cubic-bezier(.22, .61, .36, 1);
}

@media (hover: hover) {
    [data-marco]:hover [data-corpo] { grid-template-rows: 1fr; }
    [data-marco]:hover [data-texto] { opacity: 1; transform: none; }
    [data-marco]:hover [data-realce] { opacity: 1; }
    [data-marco]:hover [data-dica] { opacity: 0; }
    [data-marco]:hover [data-seta] { transform: rotate(180deg); }
}

@media (hover: none) {
    [data-dica] { display: none; }
}

[data-marco][data-aberto] [data-corpo] { grid-template-rows: 1fr; }
[data-marco][data-aberto] [data-texto] { opacity: 1; transform: none; }
[data-marco][data-aberto] [data-realce] { opacity: 1; }
[data-marco][data-aberto] [data-dica] { opacity: 0; }
[data-marco][data-aberto] [data-seta] { transform: rotate(180deg); }

@media (prefers-reduced-motion: reduce) {
    .alow-show__item,
    .alow-show__hero img,
    .alow-lightbox__img { animation: none; transition: none; opacity: 1; transform: none; }
    [data-entra] { opacity: 1; transform: none; }
    [data-risco] { transform: scaleX(1); }
    [data-flecha] path,
    [data-check],
    [data-bastao] {
        stroke-dashoffset: 0 !important;
        opacity: 1 !important;
    }
    [data-barra] { transform: scaleX(1) !important; }
}
