* {
    box-sizing: border-box;
}

:root {
    --bg-0: #061126;
    --bg-1: #0d2455;
    --card-0: rgba(12, 29, 67, 0.82);
    --card-1: rgba(8, 19, 46, 0.92);
    --line: rgba(132, 175, 255, 0.24);
    --line-strong: rgba(170, 206, 255, 0.42);
    --text: #e8eeff;
    --muted: #b8c9f0;
    --accent: #ffd34d;
    --cta: #1bb964;
    --cta-2: #2e66ff;
    --shadow-lg: 0 20px 55px rgba(2, 7, 23, 0.45);
    --shadow-md: 0 12px 30px rgba(2, 7, 23, 0.35);
    --radius-xl: 24px;
    --radius-md: 14px;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(42, 94, 195, 0.58) 0%, rgba(32, 74, 154, 0) 32%),
        linear-gradient(170deg, rgba(13, 36, 85, 0.94) 0%, rgba(6, 17, 38, 0.97) 64%),
        url("../img/feitu-bg-workspace.jpg") center top / cover fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body.menu-aberto {
    overflow: hidden;
}

html {
    background: var(--bg-0);
    overscroll-behavior-y: none;
}

.fundo-efeito {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 76% 14%, rgba(92, 158, 255, 0.24) 0%, rgba(92, 158, 255, 0) 38%), radial-gradient(circle at 18% 82%, rgba(0, 214, 255, 0.18) 0%, rgba(0, 214, 255, 0) 42%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

.header-barra {
    position: sticky;
    top: -1px;
    z-index: 60;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 22px;
    background: rgba(5, 11, 33, 0.76);
    border-bottom: 1px solid rgba(117, 161, 246, 0.25);
    backdrop-filter: blur(12px);
}

.header-esquerda {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: #c1d3ff;
}

.header-logo-mini {
    display: block;
    width: 42px;
    height: auto;
    flex: 0 0 auto;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.header-logo-link:hover,
.header-logo-link:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.08);
    outline: none;
}

.header-direita {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-login-off,
.btn-menu,
.btn-fechar-menu {
    border: 0;
    border-radius: 11px;
    padding: 10px 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-login-off:hover,
.btn-menu:hover,
.btn-fechar-menu:hover,
.feature-panel:hover,
.card-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.06);
}

.btn-login-off {
    background: linear-gradient(180deg, #354d82 0%, #24375f 100%);
    color: #f1f5ff;
}

.btn-menu {
    background: linear-gradient(180deg, #1cc565 0%, #0f9b4d 100%);
    color: #fff;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: linear-gradient(150deg, rgba(2, 7, 22, 0.97) 0%, rgba(8, 21, 55, 0.97) 100%);
    padding: 32px;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.menu-overlay.ativo {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.menu-topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-topo h2 {
    margin: 0;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.menu-lista {
    list-style: none;
    padding: 0;
    margin: 28px auto 0;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
}

.menu-lista a {
    display: block;
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: #d8e6ff;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.menu-lista a:hover {
    background: rgba(116, 163, 255, 0.13);
    border-color: rgba(116, 163, 255, 0.35);
    transform: translateX(4px);
}

.menu-lista a.menu-active {
    background: linear-gradient(90deg, rgba(255, 211, 77, 0.18), rgba(27, 185, 100, 0.12));
    border-color: rgba(255, 211, 77, 0.45);
    color: #fff;
}

.pagina-principal {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px;
}

.topo-layout,
.layout-conteudo,
.home-sections {
    display: grid;
    gap: 18px;
}

.topo-layout > *,
.layout-conteudo > *,
.home-sections > * {
    min-width: 0;
}

.topo-layout {
    grid-template-columns: 1.2fr 0.8fr;
    margin-bottom: 18px;
}

.layout-conteudo {
    grid-template-columns: 2fr 1fr;
}

.home-sections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.bloco-demo-xp,
.bloco-publicidade,
.bloco-conteudo,
.card-pagina,
.feature-panel {
    background: linear-gradient(170deg, var(--card-0) 0%, var(--card-1) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.feature-panel,
.card-link {
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-panel:hover,
.card-link:hover {
    border-color: var(--line-strong);
    background: linear-gradient(170deg, rgba(20, 48, 109, 0.86) 0%, rgba(14, 33, 74, 0.9) 100%);
}

.section-eyebrow,
.link-inline,
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.38px;
    text-transform: uppercase;
}

.section-eyebrow {
    color: #8bb4ff;
}

.link-inline,
.card-cta {
    color: #ffe07a;
}

.logo-linha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.logo-feitu {
    width: clamp(110px, 16vw, 180px);
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.selo-demo,
.ad-tag {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.selo-demo {
    border: 1px solid rgba(123, 169, 255, 0.45);
    background: rgba(123, 169, 255, 0.14);
}

.ad-tag {
    align-self: flex-start;
    color: #0d2452;
    background: linear-gradient(180deg, #ffe67c 0%, #f5c83e 100%);
}

.bloco-demo-xp h1,
.bloco-conteudo h2,
.feature-panel h3 {
    margin: 12px 0 10px;
}

.bloco-demo-xp h1 {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1.1;
}

.bloco-demo-xp p,
.bloco-conteudo p,
.feature-panel p,
.helper-copy,
.page-intro {
    color: var(--muted);
    line-height: 1.6;
}

.hero-acoes,
.page-actions {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-cta,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 11px;
    padding: 10px 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-cta {
    background: linear-gradient(180deg, #3f79ff 0%, #2957ca 100%);
    color: #f3f7ff;
    box-shadow: 0 10px 22px rgba(35, 92, 220, 0.35);
}

.btn-ghost {
    border: 1px solid rgba(140, 181, 255, 0.4);
    background: rgba(94, 141, 236, 0.12);
    color: #deebff;
}

.publicidade-slot {
    margin-top: 10px;
    min-height: 205px;
    border-radius: 16px;
    border: 1px solid rgba(140, 182, 255, 0.38);
    background: linear-gradient(160deg, rgba(39, 72, 153, 0.35) 0%, rgba(14, 32, 75, 0.62) 100%);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.xp-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    align-items: stretch;
    min-height: 390px;
}

.xp-hero::before {
    content: "";
    position: absolute;
    inset: -80px -40px auto auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 211, 77, 0.22) 0%, rgba(255, 211, 77, 0) 68%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.xp-hero-stage {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
}

.xp-window-frame,
.visual-media-frame {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(178, 207, 255, 0.42);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(232, 241, 255, 0.95), rgba(158, 198, 255, 0.82));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 22px 38px rgba(0, 0, 0, 0.28);
}

.xp-window-frame {
    align-self: center;
}

.xp-titlebar {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 10px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.2px;
    background: linear-gradient(180deg, #2f81ff 0%, #1656d4 48%, #0b3fa8 100%);
    border-bottom: 1px solid rgba(2, 22, 78, 0.42);
}

.xp-window-actions {
    display: inline-flex;
    gap: 4px;
    flex: 0 0 auto;
}

.xp-window-actions i {
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(180deg, #9ec5ff, #2a62d0);
}

.xp-window-actions i:last-child {
    background: linear-gradient(180deg, #ff9a7a, #de3d26);
}

.xp-window-body {
    aspect-ratio: 4 / 3;
    min-height: 0;
    overflow: hidden;
    padding: 12px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 211, 77, 0.24), rgba(255, 211, 77, 0) 28%),
        radial-gradient(circle at 88% 80%, rgba(27, 185, 100, 0.3), rgba(27, 185, 100, 0) 34%),
        linear-gradient(145deg, #1f76d3 0%, #0a2b83 58%, #061126 100%);
}

.media-object,
.hero-media,
.visual-media,
.ad-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    max-width: 100%;
}

.hero-media {
    min-height: 0;
    border-radius: 12px;
}

.xp-visual-fallback {
    position: relative;
    min-height: 100%;
    padding: 16px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(36, 154, 255, 0.94), rgba(18, 84, 188, 0.94)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.12) 0 10px, rgba(255, 255, 255, 0) 10px 22px);
}

.xp-window-mini {
    width: min(78%, 260px);
    min-height: 92px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(242, 247, 255, 0.94);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.28);
}

.xp-window-mini span {
    display: block;
    height: 24px;
    background: linear-gradient(180deg, #2f81ff, #0b45b8);
}

.xp-window-mini strong {
    display: block;
    padding: 14px;
    color: #0d2452;
}

.xp-visual-grid {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    grid-template-columns: repeat(2, 42px);
    gap: 8px;
}

.xp-visual-grid i {
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(180deg, #ffe67c, #1bb964);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.ad-media {
    aspect-ratio: 16 / 7;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(7, 17, 41, 0.72);
}

.page-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 85% 18%, rgba(255, 211, 77, 0.2), rgba(255, 211, 77, 0) 34%),
        linear-gradient(170deg, rgba(12, 32, 76, 0.92), rgba(5, 13, 34, 0.96));
    box-shadow: var(--shadow-lg);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: auto -80px -130px auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 185, 100, 0.22), rgba(27, 185, 100, 0) 70%);
    pointer-events: none;
}

.page-hero-servicos {
    background:
        radial-gradient(circle at 86% 16%, rgba(27, 185, 100, 0.24), rgba(27, 185, 100, 0) 36%),
        linear-gradient(170deg, rgba(12, 45, 85, 0.94), rgba(5, 13, 34, 0.96));
}

.page-hero-precos {
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 211, 77, 0.28), rgba(255, 211, 77, 0) 36%),
        linear-gradient(170deg, rgba(48, 40, 84, 0.92), rgba(5, 13, 34, 0.96));
}

.page-hero-portfolio {
    background:
        radial-gradient(circle at 82% 18%, rgba(92, 158, 255, 0.34), rgba(92, 158, 255, 0) 36%),
        linear-gradient(170deg, rgba(20, 32, 92, 0.94), rgba(5, 13, 34, 0.96));
}

.page-hero-contactos {
    background:
        radial-gradient(circle at 84% 18%, rgba(0, 214, 255, 0.24), rgba(0, 214, 255, 0) 36%),
        linear-gradient(170deg, rgba(11, 53, 73, 0.92), rgba(5, 13, 34, 0.96));
}

.page-hero-copy,
.page-hero-art {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.page-hero h1 {
    max-width: 820px;
    margin: 8px 0 10px;
    font-size: clamp(1.85rem, 4.4vw, 3.4rem);
    line-height: 1;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.page-path {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid rgba(140, 181, 255, 0.34);
    border-radius: 12px;
    padding: 10px 14px;
    color: #d9e7ff;
    background: rgba(7, 17, 41, 0.48);
    font-size: 0.86rem;
    font-weight: 800;
}

.page-hero-art {
    display: flex;
    justify-content: flex-end;
}

.page-xp-window {
    overflow: hidden;
    width: min(360px, 100%);
    border: 1px solid rgba(178, 207, 255, 0.42);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(232, 241, 255, 0.95), rgba(158, 198, 255, 0.82));
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.26);
}

.page-xp-body {
    min-height: 184px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px;
    background:
        radial-gradient(circle at 78% 16%, rgba(255, 211, 77, 0.22), rgba(255, 211, 77, 0) 34%),
        linear-gradient(145deg, #1f76d3 0%, #0a2b83 58%, #061126 100%);
}

.page-folder-icon {
    position: relative;
    width: 82px;
    height: 62px;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffe67c, #f3b738);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.24);
}

.page-folder-icon::before {
    content: "";
    position: absolute;
    left: 9px;
    top: -13px;
    width: 38px;
    height: 18px;
    border-radius: 8px 8px 0 0;
    background: #ffd34d;
}

.page-file-lines {
    display: grid;
    gap: 8px;
}

.page-file-lines i {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(232, 241, 255, 0.82);
}

.page-file-lines i:nth-child(2) {
    width: 78%;
}

.page-file-lines i:nth-child(3) {
    width: 56%;
}

.page-xp-body strong {
    grid-column: 1 / -1;
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.4px;
}

.xp-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 211, 77, 0.32);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(120deg, rgba(255, 211, 77, 0.16), rgba(45, 101, 255, 0.12)),
        linear-gradient(170deg, rgba(13, 32, 75, 0.88), rgba(7, 17, 41, 0.94));
    box-shadow: var(--shadow-lg);
}

.xp-notice-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0d2452;
    font-size: 1.45rem;
    font-weight: 900;
    background: linear-gradient(180deg, #ffe67c, #f5c83e);
}

.xp-notice h2 {
    margin: 5px 0 0;
    font-size: clamp(1.22rem, 2.5vw, 2rem);
    line-height: 1.1;
}

.visual-showcase {
    margin-bottom: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 84% 12%, rgba(27, 185, 100, 0.2), rgba(27, 185, 100, 0) 34%),
        linear-gradient(170deg, rgba(9, 24, 59, 0.92), rgba(5, 13, 34, 0.96));
    box-shadow: var(--shadow-lg);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 16px;
}

.section-heading h2 {
    margin: 8px 0;
    font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.section-heading p,
.visual-card-copy p {
    color: var(--muted);
    line-height: 1.55;
}

.visual-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.visual-card {
    overflow: hidden;
    min-width: 0;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 20px;
    background: rgba(8, 20, 49, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.visual-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 211, 77, 0.48);
    box-shadow: var(--shadow-md);
}

.visual-card-featured {
    grid-column: span 2;
}

.visual-media-frame {
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 0;
    border-width: 0 0 1px;
}

.visual-card-featured .visual-media-frame {
    aspect-ratio: 16 / 7.8;
}

.visual-media-frame .xp-titlebar {
    min-height: 30px;
    font-size: 0.74rem;
}

.visual-media {
    flex: 1 1 auto;
    min-height: 0;
    border-radius: 0;
}

.visual-card-copy {
    padding: 16px;
}

.visual-card-copy h3 {
    margin: 12px 0 8px;
}

.visual-card-copy p {
    margin: 0;
}

.xp-service-card {
    position: relative;
    overflow: hidden;
}

.xp-card-icon {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 11px;
    color: #0d2452;
    font-weight: 900;
    background: linear-gradient(180deg, #ffe67c, #1bb964);
}

.xp-card-icon::before,
.xp-card-icon::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.xp-card-icon::before {
    width: 18px;
    height: 18px;
    background: rgba(13, 36, 82, 0.86);
}

.xp-card-icon::after {
    width: 9px;
    height: 9px;
    right: 8px;
    top: 8px;
    background: #fff;
    box-shadow: -12px 13px 0 rgba(255, 255, 255, 0.72);
}

.xp-status-panel {
    background:
        linear-gradient(170deg, rgba(14, 58, 116, 0.72), rgba(8, 19, 46, 0.94)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
}

.lista-cards,
.ads-grid {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.lista-cards,
.ads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lista-cards > :only-child {
    grid-column: 1 / -1;
}

.card-pagina h2,
.feature-panel h3 {
    margin: 0 0 8px;
}

.card-pagina p {
    margin: 0;
}

.card-cta {
    margin-top: 14px;
}

.destaque-frase {
    background: linear-gradient(170deg, rgba(18, 37, 81, 0.92) 0%, rgba(12, 27, 61, 0.92) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 14px;
    margin-top: 12px;
}

.destaque-frase-grande {
    font-size: 1.05rem;
}

.mini-metricas {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.metrica-item {
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(44, 78, 158, 0.16);
}

.metrica-item strong {
    display: block;
    font-size: 1.02rem;
}

.rodape-site {
    margin-top: 24px;
    border-top: 1px solid rgba(123, 167, 248, 0.28);
    background: rgba(6, 13, 35, 0.5);
}

.rodape-colunas {
    max-width: 1240px;
    margin: 0 auto;
    padding: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
    gap: 18px;
}

.rodape-colunas ul {
    margin: 0;
    padding-left: 18px;
    color: #cad9fb;
}

.redes-sociais {
    display: flex;
    gap: 10px;
}

.redes-sociais a {
    width: 44px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(149, 187, 255, 0.4);
    background: linear-gradient(180deg, rgba(47, 84, 170, 0.8) 0%, rgba(29, 58, 129, 0.8) 100%);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: lowercase;
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-facebook {
    color: #fff;
    background: linear-gradient(180deg, #3578e5, #174fb6);
}

.social-facebook svg path,
.social-tiktok svg path {
    fill: currentColor;
}

.social-youtube {
    background: #fff;
}

.social-youtube svg path:first-child {
    fill: #ff0033;
}

.social-youtube .social-play {
    fill: #fff;
}

.social-tiktok {
    color: #fff;
    background: linear-gradient(135deg, #111, #23263a);
}

.social-instagram {
    background: radial-gradient(circle at 25% 105%, #feda75 0 18%, #fa7e1e 32%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.social-instagram svg rect,
.social-instagram svg circle {
    fill: none;
    stroke: #fff;
    stroke-width: 1.9;
}

.rodape-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    background: rgba(2, 6, 18, 0.9);
    color: #b0c3ee;
    text-align: center;
    padding: 12px;
    font-size: 0.92rem;
}

.contact-form-section {
    margin-top: 18px;
}

.contact-form {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.contact-form label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #d8e6ff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(140, 181, 255, 0.3);
    background: rgba(9, 23, 56, 0.78);
    color: #eef4ff;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form-note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 211, 77, 0.28);
    background: rgba(255, 211, 77, 0.1);
    color: #ffe8a2;
    line-height: 1.55;
}

.contact-form-note.success {
    border-color: rgba(27, 185, 100, 0.35);
    background: rgba(27, 185, 100, 0.14);
    color: rgba(213, 255, 233, 0.96);
}

.contact-form-note.error {
    border-color: rgba(255, 106, 106, 0.35);
    background: rgba(255, 106, 106, 0.12);
    color: rgba(255, 220, 220, 0.96);
}

.trap-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visivel {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .home-sections {
        grid-template-columns: 1fr;
    }

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

.rodape-legal a {
    color: #dce7ff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-notice {
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(620px, calc(100% - 40px));
    padding: 18px;
    border: 1px solid rgba(154, 194, 255, 0.4);
    border-radius: 18px;
    color: #edf4ff;
    background:
        radial-gradient(circle at 92% 10%, rgba(30, 225, 120, 0.16), transparent 30%),
        rgba(6, 18, 46, 0.97);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(18px);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice strong {
    display: block;
    margin-bottom: 4px;
    color: #ffd34d;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.cookie-notice p {
    margin: 0;
    color: #b9c9e9;
    font-size: 0.88rem;
    line-height: 1.55;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-notice-actions a {
    color: #dce7ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-notice-actions button {
    min-height: 40px;
    padding: 9px 13px;
    border: 0;
    border-radius: 11px;
    color: #07172e;
    background: #1ee178;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    cursor: pointer;
}

.cookie-policy {
    width: min(1240px, calc(100% - 32px));
    margin: 18px auto 0;
}

.cookie-policy-intro,
.cookie-policy-summary {
    padding: 28px;
    border: 1px solid rgba(140, 181, 255, 0.26);
    border-radius: 22px;
    background: rgba(8, 20, 49, 0.82);
    box-shadow: var(--shadow-lg);
}

.cookie-policy-intro h2,
.cookie-policy-summary h2 {
    margin: 8px 0 10px;
}

.cookie-policy-intro p,
.cookie-policy-summary p {
    max-width: 820px;
    margin: 0;
    color: #afc1e8;
    line-height: 1.7;
}

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

.cookie-policy-grid article {
    min-height: 190px;
    padding: 22px;
    border: 1px solid rgba(140, 181, 255, 0.22);
    border-radius: 18px;
    background: rgba(8, 20, 49, 0.78);
}

.cookie-policy-grid article > span {
    color: #ffd34d;
    font-size: 0.74rem;
    font-weight: 900;
}

.cookie-policy-grid h3 {
    margin: 22px 0 8px;
    font-size: 1.22rem;
}

.cookie-policy-grid p {
    margin: 0;
    color: #afc1e8;
    line-height: 1.65;
}

.cookie-policy-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}

.cookie-policy-date {
    margin: 16px 0 0;
    color: #829ac8;
    font-size: 0.82rem;
    text-align: right;
}

@media (max-width: 980px) {
    .topo-layout,
    .xp-hero,
    .page-hero,
    .layout-conteudo,
    .rodape-colunas,
    .lista-cards,
    .ads-grid {
        grid-template-columns: 1fr;
    }

    .menu-lista {
        grid-template-columns: 1fr;
    }

    .xp-hero {
        min-height: auto;
    }

    .xp-window-body {
        min-height: 0;
    }

    .page-hero-art {
        justify-content: flex-start;
    }
}

@media (max-width: 920px) {
    .header-barra {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .pagina-principal,
    .rodape-colunas {
        padding: 16px;
    }
}

@media (max-width: 560px) {
    .pagina-principal {
        max-width: 100vw;
        overflow: hidden;
        padding: 14px;
    }

    .topo-layout > *,
    .page-hero,
    .layout-conteudo > *,
    .home-sections > *,
    .visual-showcase,
    .xp-notice {
        max-width: calc(100vw - 28px);
    }

    .xp-hero,
    .hero-copy,
    .xp-hero-stage {
        max-width: 100%;
        overflow: hidden;
    }

    .bloco-demo-xp h1 {
        overflow-wrap: anywhere;
        font-size: clamp(1.55rem, 10vw, 2.2rem);
    }

    .xp-window-body {
        min-height: 0;
        padding: 10px;
    }

    .logo-linha {
        align-items: flex-start;
        flex-direction: column;
    }

    .selo-demo {
        align-self: flex-start;
    }

    .xp-hero-stage,
    .xp-window-frame,
    .visual-media-frame,
    .publicidade-slot {
        width: 100%;
        min-width: 0;
    }

    .xp-visual-grid {
        right: 12px;
        bottom: 12px;
        grid-template-columns: repeat(2, 34px);
        gap: 7px;
    }

    .xp-visual-grid i {
        height: 28px;
    }

    .header-direita {
        width: 100%;
    }

    .btn-login-off,
    .btn-menu,
    .btn-cta,
    .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .hero-acoes,
    .page-actions {
        flex-direction: column;
    }

    .xp-notice,
    .visual-card-grid,
    .visual-card-featured {
        grid-template-columns: 1fr;
        grid-column: auto;
    }

    .xp-notice {
        align-items: flex-start;
    }

    .page-hero {
        padding: 16px;
    }

    .page-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .page-path {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .page-xp-body {
        grid-template-columns: 1fr;
        min-height: 150px;
    }

    .page-folder-icon {
        width: 68px;
        height: 52px;
    }
}


/* Floating language switcher */
.translate-host {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body > .skiptranslate,
.goog-te-banner-frame,
.goog-te-gadget-icon {
    display: none !important;
}

html.translated-ltr body,
html.translated-rtl body {
    top: 0 !important;
}

.language-switcher {
    position: relative;
    z-index: 1;
    display: inline-flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(166, 199, 255, 0.38);
    border-radius: 999px;
    background: rgba(5, 17, 43, 0.82);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(14px);
}

.language-button {
    min-width: 58px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    color: #cfe0ff;
    background: transparent;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.language-button:hover,
.language-button.is-active {
    color: #06112b;
    background: linear-gradient(135deg, #ffd34d, #9ee86a);
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .language-switcher {
        padding: 4px;
    }

    .language-button {
        min-width: 48px;
        height: 28px;
        font-size: 0.64rem;
    }

    .feitu-build-loader {
        min-height: min(500px, 78vh);
    }

    .feitu-loader-copy {
        font-size: 0.78rem;
    }

    .loader-design-window {
        width: 228px;
        height: 276px;
    }

    .loader-browser-window {
        width: min(520px, 88vw);
        height: 196px;
    }

    .loader-code-column,
    .loader-device {
        display: none;
    }
}
/* FEITU v3: splash, logo/banner split and visual-first pages */
.splash-pending {
    overflow: hidden;
}

.entry-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(55, 126, 255, 0.3), transparent 38%),
        rgba(3, 9, 25, 0.97);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.entry-splash.is-leaving {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.feitu-builder-splash {
    background:
        radial-gradient(circle at 50% 44%, rgba(72, 113, 139, 0.36), transparent 42%),
        linear-gradient(145deg, #30424b 0%, #243642 52%, #182734 100%);
}

.feitu-build-loader {
    width: min(720px, 92vw);
    min-height: min(520px, 82vh);
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    gap: 18px;
    animation: splash-arrive 0.55s ease both;
}

.feitu-loader-copy {
    position: relative;
    height: 42px;
    text-align: center;
    color: rgba(235, 229, 219, 0.72);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.feitu-loader-copy span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
}

.loader-copy-design {
    animation: loader-copy-design 3.7s ease both;
}

.loader-copy-real {
    animation: loader-copy-real 3.7s ease both;
}

.loader-copy-site {
    animation: loader-copy-site 3.7s ease both;
}

.feitu-loader-scene {
    position: relative;
    height: min(330px, 52vh);
}

.loader-design-window,
.loader-browser-window {
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    border-radius: 6px;
    background: #eeeeee;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.loader-design-window {
    width: min(250px, 62vw);
    height: 300px;
    transform: translate(-50%, -50%) scale(0.62);
    opacity: 0;
    animation: loader-design-window 3.7s ease both;
}

.loader-design-top {
    height: 100px;
    background: #cfcfcf;
}

.loader-design-body {
    position: relative;
    height: 200px;
    padding: 20px 38px;
    background: #f2f2f2;
}

.loader-design-body i {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    background: #d4d4d4;
    opacity: 0;
    animation: loader-design-tile 3.7s ease both;
}

.loader-design-body i:nth-child(1) { left: 38px; top: 20px; animation-delay: 0.48s; }
.loader-design-body i:nth-child(2) { left: 102px; top: 16px; animation-delay: 0.58s; }
.loader-design-body i:nth-child(3) { left: 166px; top: 4px; animation-delay: 0.68s; }
.loader-design-body i:nth-child(4) { left: 38px; top: 88px; width: 112px; animation-delay: 0.78s; }
.loader-design-body i:nth-child(5) { left: 166px; top: 76px; animation-delay: 0.88s; }
.loader-design-body i:nth-child(6) { left: 38px; top: 148px; animation-delay: 0.98s; }
.loader-design-body i:nth-child(7) { left: 102px; top: 144px; width: 114px; animation-delay: 1.08s; }

.loader-browser-window {
    width: min(550px, 86vw);
    height: min(210px, 40vh);
    transform: translate(-50%, -44%) scale(0.82);
    opacity: 0;
    animation: loader-browser-window 3.7s ease both;
}

.loader-browser-top {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: #d0d0d0;
}

.loader-browser-top b {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 8px solid #a3a3a3;
}

.loader-browser-top span {
    display: inline-flex;
    gap: 5px;
}

.loader-browser-top i {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #a4a4a4;
}

.loader-browser-body {
    position: relative;
    height: calc(100% - 38px);
    background: #f4f4f4;
}

.loader-code-column {
    position: absolute;
    left: 34px;
    top: 34px;
    width: 138px;
    display: grid;
    gap: 10px;
}

.loader-code-column i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: #d6d6d6;
    transform-origin: left;
    animation: loader-code-line 3.7s ease both;
}

.loader-code-column i:nth-child(2) { width: 78%; animation-delay: 2.32s; }
.loader-code-column i:nth-child(3) { width: 62%; animation-delay: 2.42s; }
.loader-code-column i:nth-child(4) { width: 88%; animation-delay: 2.52s; }

.loader-site-card {
    position: absolute;
    left: 50%;
    top: 34px;
    width: 128px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #31513b;
    background: linear-gradient(135deg, #dfeadc, #cdd8d5);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    transform: translateX(-50%);
    opacity: 0;
    animation: loader-site-card 3.7s ease both;
}

.loader-site-card strong {
    font-size: 1.15rem;
    letter-spacing: 0.06em;
}

.loader-site-card small {
    margin-top: -24px;
    color: #748071;
    font-weight: 800;
}

.loader-device {
    position: absolute;
    right: 54px;
    bottom: 28px;
    border-radius: 10px;
    background: #d8d8d8;
    opacity: 0;
    animation: loader-device-pop 3.7s ease both;
}

.loader-tablet {
    width: 72px;
    height: 54px;
    animation-delay: 2.54s;
}

.loader-phone {
    right: 30px;
    width: 24px;
    height: 52px;
    animation-delay: 2.68s;
}
.entry-splash-card {
    width: min(680px, 92vw);
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(180, 211, 255, 0.45);
    border-radius: 22px;
    background: linear-gradient(165deg, rgba(16, 42, 94, 0.96), rgba(4, 13, 34, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
    animation: splash-arrive 0.65s cubic-bezier(.2,.8,.2,1) both;
}

.entry-splash-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 34px 10px 10px;
    border: 1px solid rgba(180, 211, 255, 0.32);
    border-radius: 16px;
    background: linear-gradient(180deg, #0f48a8 0 30px, #050d20 30px 100%);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.16), 0 18px 38px rgba(0, 0, 0, 0.32);
}

.splash-media,
.home-ad-media,
.banner-piece-object,
.banners-feature-object,
.visual-only-media,
.publicidade-media,
.portfolio-media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}

.entry-splash-media::before,
.home-ad-stage::before,
.visual-only-card::before,
.publicidade-media-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 14px;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 13px 0 #febc2e, 26px 0 #28c840;
}

.entry-splash-media::after,
.home-ad-stage::after,
.visual-only-card::after,
.publicidade-media-frame::after {
    content: "FEITU / media";
    position: absolute;
    top: 7px;
    right: 12px;
    z-index: 2;
    color: rgba(235, 245, 255, 0.72);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.entry-splash-media > .media-object,
.home-ad-stage > .media-object,
.banner-piece-media > .media-object,
.banners-feature-media > .media-object,
.visual-only-card > .media-object,
.publicidade-media-frame > .media-object {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.entry-splash-progress {
    overflow: hidden;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.entry-splash-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: left;
    background: linear-gradient(90deg, #ffd34d, #1bb964, #2e66ff);
    animation: splash-progress 3.7s linear both;
}

.entry-splash-card small {
    color: #c8d8fa;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.header-barra {
    display: grid;
    grid-template-columns: 1fr auto;
}

.header-direita {
    justify-content: flex-end;
}

.home-banner-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    min-height: clamp(320px, 45vw, 520px);
    margin-bottom: 18px;
}

.home-ad-stage {
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.home-ad-stage {
    position: relative;
    display: block;
    padding: 38px 12px 12px;
    min-height: inherit;
    background: linear-gradient(180deg, #1054c0 0 34px, #050d20 34px 100%);
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.home-ad-stage:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 211, 77, 0.52);
}

.home-campaign-stage {
    isolation: isolate;
}

.home-campaign-stage > .media-object {
    position: absolute;
    inset: 38px 12px 12px;
    width: calc(100% - 24px);
    height: calc(100% - 50px);
    filter: saturate(1.08) contrast(1.04);
}

.home-campaign-stage .media-youtube {
    pointer-events: none;
}

.home-campaign-stage .home-ad-copy {
    position: absolute;
    left: clamp(22px, 5vw, 70px);
    bottom: clamp(24px, 5vw, 62px);
    z-index: 4;
    width: min(560px, calc(100% - 44px));
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(3, 10, 27, 0.8), rgba(8, 26, 58, 0.48)),
        radial-gradient(circle at 18% 20%, rgba(255, 211, 77, 0.2), transparent 34%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(10px);
}

.home-campaign-stage .home-ad-copy span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ffdf64;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.home-campaign-stage .home-ad-copy h1 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.2rem, 6.6vw, 6.1rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.home-campaign-stage .home-ad-copy p {
    max-width: 48ch;
    margin: 18px 0 22px;
    color: rgba(238, 246, 255, 0.9);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.55;
}

.home-campaign-stage .home-ad-copy strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    color: #061536;
    background: linear-gradient(135deg, #f7e85a, #26de73);
    box-shadow: 0 14px 34px rgba(27, 185, 100, 0.28);
}

.home-campaign-stage::before,
.home-campaign-stage::after {
    z-index: 6;
    pointer-events: none;
}

.home-campaign-stage::after {
    content: "FEITU / banners";
}

.home-campaign-stage:focus-visible {
    outline: 3px solid rgba(255, 211, 77, 0.74);
    outline-offset: 4px;
}

.banner-showcase {
    margin-bottom: 18px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 211, 77, 0.14), transparent 30%),
        linear-gradient(145deg, rgba(7, 20, 50, 0.94), rgba(5, 12, 30, 0.98));
    box-shadow: var(--shadow-lg);
}

.banner-showcase-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

.banner-showcase-heading h2 {
    max-width: 720px;
    margin: 10px 0 0;
    font-size: clamp(1.65rem, 2.7vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.banner-showcase-heading p {
    max-width: 620px;
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.banner-showcase-heading .link-inline {
    align-self: center;
    padding: 12px 16px;
    border: 1px solid rgba(255, 211, 77, 0.4);
    border-radius: 999px;
    background: rgba(255, 211, 77, 0.08);
}

.banner-slider {
    position: relative;
    isolation: isolate;
}

.banner-slider::before,
.banner-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(54px, 8vw, 112px);
    pointer-events: none;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.banner-slider::before {
    left: -1px;
    background: linear-gradient(90deg, rgba(6, 17, 43, 0.98), rgba(6, 17, 43, 0));
}

.banner-slider::after {
    right: -1px;
    background: linear-gradient(270deg, rgba(6, 17, 43, 0.98), rgba(6, 17, 43, 0));
}

.banner-slider.is-at-start::before,
.banner-slider.is-at-end::after {
    opacity: 0;
}

.banner-strip {
    display: grid;
    grid-template-columns: minmax(360px, 1.35fr);
    grid-auto-columns: minmax(230px, 0.85fr);
    grid-auto-flow: column;
    gap: 16px;
    overflow-x: auto;
    padding: 2px 6px 8px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.banner-strip::-webkit-scrollbar {
    display: none;
}

.banner-slider-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 211, 77, 0.52);
    border-radius: 999px;
    color: #06122e;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 32%),
        linear-gradient(135deg, #ffef7b, #25e26d);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 0 7px rgba(6, 18, 46, 0.58);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.banner-slider-control:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(255, 211, 77, 0.12);
}

.banner-slider-control:focus-visible {
    outline: 3px solid rgba(255, 211, 77, 0.78);
    outline-offset: 4px;
}

.banner-slider-control span {
    display: block;
    margin-top: -2px;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.banner-slider-control-prev {
    left: -8px;
}

.banner-slider-control-next {
    right: -8px;
}

.banner-slider-control[disabled] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scale(0.82);
}

.banner-piece-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border: 1px solid rgba(180, 211, 255, 0.28);
    border-radius: 26px;
    color: #fff;
    background: rgba(6, 18, 46, 0.78);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transition: transform 0.22s ease, border-color 0.22s ease;
    scroll-snap-align: start;
}

.banner-piece-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 211, 77, 0.58);
}

.banner-piece-media {
    position: absolute;
    inset: 0;
}

.banner-piece-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 12%, rgba(1, 6, 18, 0.22) 44%, rgba(1, 6, 18, 0.92) 100%),
        radial-gradient(circle at 18% 18%, rgba(255, 211, 77, 0.14), transparent 28%);
}

.banner-piece-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
}

.banner-piece-copy span,
.banners-feature-copy span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #ffdf64;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.banner-piece-copy h3 {
    max-width: 16ch;
    margin: 0;
    font-size: clamp(1.15rem, 1.55vw, 1.85rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.banner-piece-copy p {
    margin: 10px 0 0;
    color: rgba(237, 244, 255, 0.86);
    line-height: 1.45;
}

.banner-piece-card:not(.is-featured) .banner-piece-copy p {
    display: none;
}

.banner-piece-card.is-featured {
    min-width: 420px;
}

.visual-only-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.visual-only-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    padding: 34px 10px 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, #0f48a8 0 30px, #071229 30px 100%);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.visual-only-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.visual-only-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 211, 77, 0.52);
}

.publicidade-page-shell {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: linear-gradient(170deg, rgba(9, 24, 59, 0.94), rgba(5, 13, 34, 0.98));
    box-shadow: var(--shadow-lg);
}

.publicidade-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.publicidade-media-card,
.portfolio-card {
    overflow: hidden;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 20px;
    background: rgba(8, 20, 49, 0.76);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.publicidade-media-card:hover,
.portfolio-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 211, 77, 0.5);
}

.publicidade-media-frame,
.portfolio-media-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 34px 10px 10px;
    background: linear-gradient(180deg, #0f48a8 0 30px, #050d20 30px 100%);
}

.banners-page-shell {
    overflow: hidden;
}

.banners-page-heading {
    max-width: 840px;
    margin-bottom: 22px;
}

.banners-page-heading h2 {
    font-size: clamp(2rem, 3.8vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.banners-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 0;
    overflow: hidden;
    min-height: 470px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 211, 77, 0.34);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 211, 77, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(10, 32, 76, 0.94), rgba(4, 12, 31, 0.98));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.banners-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 211, 77, 0.62);
}

.banners-feature-media {
    position: relative;
    overflow: hidden;
    min-height: inherit;
}

.banners-feature-media::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 16px 0 #febc2e, 32px 0 #28c840;
}

.banners-feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 42%, rgba(3, 10, 27, 0.62) 78%, rgba(3, 10, 27, 0.88) 100%),
        linear-gradient(180deg, rgba(4, 11, 28, 0.05), rgba(4, 11, 28, 0.42));
}

.banners-feature-copy {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px);
}

.banners-feature-copy h3 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(1.8rem, 3.4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.banners-feature-copy p {
    margin: 18px 0 24px;
    color: rgba(238, 246, 255, 0.88);
    line-height: 1.65;
}

.banners-feature-copy strong,
.banner-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #061536;
    background: linear-gradient(135deg, #f7e85a, #25da73);
    box-shadow: 0 14px 30px rgba(37, 218, 115, 0.2);
}

.banners-collection-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 4px 0 16px;
}

.banners-collection-heading h3 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(1.25rem, 2.1vw, 2.15rem);
    line-height: 1.08;
}

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

.banner-gallery-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(11, 30, 68, 0.92), rgba(4, 12, 31, 0.96));
}

.banner-gallery-card .publicidade-media-frame {
    aspect-ratio: 4 / 3;
}

.banner-card-action {
    margin-top: 14px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.84rem;
    font-weight: 900;
}

.portfolio-layout-preview {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    padding: 10px;
    color: #f7fbff;
    background: linear-gradient(145deg, #123f92 0%, #071831 100%);
}

.portfolio-layout-preview::before,
.portfolio-layout-preview::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(1px);
}

.portfolio-layout-preview::before {
    width: 130px;
    height: 130px;
    right: -46px;
    top: -48px;
    background: rgba(255, 211, 77, 0.36);
}

.portfolio-layout-preview::after {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -90px;
    background: rgba(27, 185, 100, 0.24);
}

.site-cover-browser {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 22px;
    padding: 0 9px;
    border-radius: 13px 13px 0 0;
    color: rgba(232, 238, 255, 0.78);
    background: rgba(2, 7, 23, 0.62);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.site-cover-browser span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6b6b;
}

.site-cover-browser span:nth-child(2) {
    background: #ffd34d;
}

.site-cover-browser span:nth-child(3) {
    background: #1bb964;
}

.site-cover-browser strong {
    margin-left: auto;
}

.site-cover-screen {
    position: relative;
    flex: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: 0;
    border: 1px solid rgba(232, 238, 255, 0.18);
    border-top: 0;
    border-radius: 0 0 15px 15px;
    overflow: hidden;
    background: rgba(244, 248, 255, 0.1);
    backdrop-filter: blur(8px);
}

.site-cover-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px 6px;
    font-size: 0.58rem;
    color: rgba(236, 244, 255, 0.75);
}

.site-cover-nav b {
    margin-right: auto;
    color: #fff;
    font-size: 0.66rem;
    letter-spacing: 0.2px;
}

.site-cover-nav i {
    width: 20px;
    height: 5px;
    border-radius: 999px;
    background: rgba(236, 244, 255, 0.42);
}

.site-cover-main {
    display: flex;
    min-height: 0;
    padding: 6px 11px 8px;
    gap: 10px;
}

.site-cover-copy {
    position: relative;
    z-index: 2;
    width: 46%;
    min-width: 0;
    padding: 9px;
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(10, 27, 61, 0.74), rgba(255, 255, 255, 0.1));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.site-cover-copy small {
    color: #ffd34d;
    font-size: 0.52rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.site-cover-copy strong {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: clamp(0.88rem, 1.55vw, 1.25rem);
    line-height: 1.04;
}

.site-cover-copy p {
    margin: 7px 0 0;
    color: rgba(232, 238, 255, 0.74);
    font-size: 0.54rem;
    line-height: 1.25;
}

.site-cover-copy em {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #051226;
    background: #1ee178;
    font-size: 0.52rem;
    font-style: normal;
    font-weight: 900;
}

.site-cover-art {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(2, 7, 23, 0.26);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-cover-footer {
    display: grid;
    grid-template-columns: 1fr 0.75fr 0.5fr;
    gap: 6px;
    padding: 0 11px 10px;
}

.site-cover-footer span {
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ecommerce-art {
    background: radial-gradient(circle at 42% 36%, #65e89b 0 17%, transparent 18%), linear-gradient(145deg, #153b7d, #061831);
}

.product-shot {
    position: absolute;
    width: 54%;
    aspect-ratio: 1;
    left: 14%;
    top: 16%;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8fbff, #79e4a5);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.price-card,
.mini-cart,
.article-card,
.author-card,
.domain-search,
.lead-form,
.metric-pill {
    position: absolute;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: #061126;
}

.price-card {
    right: 8%;
    top: 18%;
    padding: 8px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.price-card b,
.price-card span,
.domain-search span,
.domain-search b,
.metric-pill {
    display: block;
    font-size: 0.62rem;
    font-weight: 900;
}

.price-card span {
    color: #50709f;
    font-size: 0.48rem;
}

.mini-cart {
    right: 9%;
    bottom: 13%;
    display: grid;
    grid-template-columns: repeat(3, 12px);
    gap: 8px;
    padding: 8px;
}

.mini-cart i {
    height: 22px;
    border-radius: 7px;
    background: #2e66ff;
}

.blog-art {
    background: linear-gradient(145deg, #f7e9c5, #2d426f 72%);
}

.article-card {
    left: 11%;
    right: 12%;
    top: 13%;
    height: 58%;
    padding: 12px;
}

.article-card span {
    display: block;
    width: 42%;
    height: 8px;
    border-radius: 999px;
    background: #ffd34d;
}

.article-card b,
.article-card i,
.author-card span {
    display: block;
    height: 9px;
    margin-top: 8px;
    border-radius: 999px;
    background: #0d2455;
}

.article-card b {
    width: 80%;
    height: 15px;
}

.article-card i:nth-child(4) {
    width: 56%;
}

.author-card {
    right: 8%;
    bottom: 10%;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 6px;
    width: 54%;
    padding: 8px;
}

.author-card em {
    grid-row: span 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1bb964;
}

.author-card span {
    margin: 0;
    height: 7px;
}

.institucional-art {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    padding: 9px;
    background: linear-gradient(145deg, #d7e6ff, #2447c6 70%);
}

.service-tile {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
}

.service-tile.tall {
    grid-row: span 2;
    background: linear-gradient(145deg, #fff, #a8c4ff);
}

.service-tile.accent {
    background: #1ee178;
}

.team-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.team-row i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #071831;
    border: 2px solid rgba(255, 255, 255, 0.72);
}

.dominios-art {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.24), transparent 36%), linear-gradient(145deg, #082454, #6689ff);
}

.domain-search {
    left: 9%;
    right: 9%;
    top: 13%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
}

.domain-search b {
    padding: 3px 7px;
    border-radius: 999px;
    color: #052015;
    background: #1ee178;
    text-transform: uppercase;
}

.globe-lines {
    position: absolute;
    left: 20%;
    right: 20%;
    top: 38%;
    aspect-ratio: 1;
    border: 2px solid rgba(255, 255, 255, 0.64);
    border-radius: 50%;
}

.globe-lines i {
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
}

.globe-lines i:nth-child(2) {
    inset: 35% 8%;
}

.globe-lines i:nth-child(3) {
    inset: 8% 39%;
}

.dns-tags {
    position: absolute;
    left: 9%;
    right: 9%;
    bottom: 10%;
    display: flex;
    gap: 5px;
}

.dns-tags em {
    flex: 1;
    padding: 4px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #0d2455;
    font-size: 0.52rem;
    font-style: normal;
    font-weight: 900;
    text-align: center;
}

.landing-art {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(145deg, #c9fff0, #0b7b65 72%);
}

.lead-form {
    position: static;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 9px;
}

.lead-form span,
.lead-form b {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: #dce8ff;
}

.lead-form b {
    height: 18px;
    background: #1bb964;
}

.conversion-chart {
    display: flex;
    align-items: end;
    gap: 7px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(3, 9, 25, 0.28);
}

.conversion-chart i {
    flex: 1;
    border-radius: 999px 999px 4px 4px;
    background: #fff;
}

.conversion-chart i:nth-child(1) { height: 34%; }
.conversion-chart i:nth-child(2) { height: 54%; }
.conversion-chart i:nth-child(3) { height: 74%; background: #ffd34d; }
.conversion-chart i:nth-child(4) { height: 92%; background: #1ee178; }

.marketing-art {
    background: linear-gradient(145deg, #ffcf78, #143476 72%);
}

.social-card {
    position: absolute;
    right: 10%;
    top: 16%;
    width: 46%;
    height: 30%;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.78);
}

.social-card.main {
    left: 9%;
    right: auto;
    top: 29%;
    height: 42%;
    background: linear-gradient(145deg, #fff, #ffd34d);
}

.growth-line {
    position: absolute;
    left: 44%;
    right: 8%;
    bottom: 13%;
    display: flex;
    align-items: end;
    gap: 5px;
    height: 35%;
}

.growth-line i {
    flex: 1;
    border-radius: 999px;
    background: #1ee178;
}

.growth-line i:nth-child(1) { height: 45%; }
.growth-line i:nth-child(2) { height: 70%; }
.growth-line i:nth-child(3) { height: 96%; }

.metric-pill {
    left: 10%;
    top: 10%;
    padding: 6px 9px;
    color: #061126;
    background: #1ee178;
}

.portfolio-layout-preview {
    padding: 8px;
    background: #071225;
}

.portfolio-layout-preview::before,
.portfolio-layout-preview::after {
    display: none;
}

.mock-browser {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.mock-browser-bar {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 7px;
    height: 21px;
    flex: 0 0 21px;
    padding: 0 7px;
    background: #ececf0;
    border-bottom: 1px solid #d4d4d8;
}

.mock-browser-dots {
    display: flex;
    gap: 4px;
}

.mock-browser-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 10px 0 #febc2e, 20px 0 #28c840;
}

.mock-browser-dots i:not(:first-child) {
    display: none;
}

.mock-browser-address {
    overflow: hidden;
    height: 13px;
    padding: 1px 8px;
    border: 1px solid #d7d7db;
    border-radius: 4px;
    color: #777a82;
    background: #fff;
    font: 600 5px/9px "Trebuchet MS", sans-serif;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mock-browser-address span {
    display: inline-block;
    width: 3px;
    height: 4px;
    margin-right: 4px;
    border: 1px solid #8f9298;
    border-radius: 1px;
}

.mock-browser-bar > b {
    width: 12px;
    height: 8px;
    border-top: 1px solid #9a9da3;
    border-bottom: 1px solid #9a9da3;
}

.mini-website {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    color: #161616;
    background: #fff;
    font-family: "Trebuchet MS", sans-serif;
}

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

.mini-website button {
    border: 0;
    font-family: inherit;
}

.mini-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    height: 24px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.12);
    background: inherit;
}

.mini-nav strong {
    margin-right: auto;
    font-size: 7px;
    letter-spacing: -0.2px;
}

.mini-nav nav {
    font-size: 4.5px;
    font-weight: 800;
    letter-spacing: 0.25px;
}

.mini-nav > span,
.mini-nav > button {
    margin-left: auto;
    color: inherit;
    background: none;
    font-size: 4.5px;
    font-weight: 900;
}

.mini-website h4,
.mini-website p {
    margin: 0;
}

/* Ecommerce */
.mini-website-ecommerce {
    color: #101010;
    background: #f3efe7;
}

.mini-website-ecommerce .mini-nav {
    background: #f3efe7;
}

.shop-hero {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 82px;
}

.mini-copy {
    padding: 10px 4px 4px 14px;
}

.mini-copy small {
    font-size: 4px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.mini-copy h4 {
    margin: 4px 0;
    font: 900 17px/0.82 Impact, sans-serif;
    letter-spacing: -0.6px;
}

.mini-copy p {
    width: 90%;
    font: 600 4.5px/1.3 "Trebuchet MS", sans-serif;
}

.mini-copy button {
    margin-top: 5px;
    padding: 4px 7px;
    color: #fff;
    background: #111;
    font-size: 4px;
    font-weight: 900;
}

.shop-product {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #91caec, #4b8dba);
}

.shop-product::before {
    content: "NORTH";
    position: absolute;
    left: -3px;
    top: 20px;
    color: rgba(255, 255, 255, 0.3);
    font: 900 26px/1 Impact, sans-serif;
}

.shoe-shape {
    position: absolute;
    z-index: 2;
    width: 73px;
    height: 25px;
    left: 23px;
    top: 28px;
    border-radius: 55% 30% 28% 25%;
    background: #f8f6e9;
    box-shadow: inset -8px -5px 0 #d7d1bd, 0 8px 12px rgba(17, 40, 55, 0.22);
    transform: rotate(-12deg);
}

.shoe-shape::before {
    content: "";
    position: absolute;
    width: 34px;
    height: 14px;
    right: 5px;
    top: -8px;
    border-radius: 70% 35% 0 0;
    background: #f8f6e9;
}

.shoe-shape::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 6px;
    bottom: 2px;
    border-bottom: 2px dashed #6f86a0;
}

.shop-product > span,
.shop-product > b {
    position: absolute;
    bottom: 6px;
    font-size: 4px;
}

.shop-product > span {
    left: 8px;
}

.shop-product > b {
    right: 8px;
}

.shop-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 31px;
    border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.shop-strip div {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 7px;
    border-right: 1px solid rgba(17, 17, 17, 0.12);
}

.shop-strip i {
    width: 22px;
    height: 20px;
    border-radius: 2px;
    background: linear-gradient(145deg, #d8c2a8, #7d5237);
}

.shop-strip div:nth-child(2) i {
    background: linear-gradient(145deg, #a8d6c8, #146953);
}

.shop-strip div:nth-child(3) i {
    background: linear-gradient(145deg, #f0d568, #d55d37);
}

.shop-strip span {
    font-size: 4px;
    font-weight: 800;
}

/* Editorial blog */
.mini-website-blog {
    color: #2b2a25;
    background: #f4f0e6;
    font-family: Georgia, serif;
}

.mini-website-blog .mini-nav strong {
    font-size: 8px;
}

.mini-website-blog .mini-nav nav,
.mini-website-blog .mini-nav > span {
    font-family: "Trebuchet MS", sans-serif;
}

.journal-hero {
    display: grid;
    grid-template-columns: 51% 49%;
    height: 101px;
    padding: 8px 11px;
    gap: 11px;
}

.journal-photo {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent 45%, rgba(37, 34, 23, 0.33)),
        radial-gradient(circle at 64% 30%, #f6d58b 0 8%, transparent 9%),
        linear-gradient(150deg, #9ec1c5 0 47%, #d9c7a2 48% 62%, #385b4d 63%);
}

.journal-photo::before,
.journal-photo::after {
    content: "";
    position: absolute;
    bottom: -13px;
    width: 68px;
    height: 53px;
    border-radius: 50% 50% 0 0;
    background: #476857;
    transform: rotate(18deg);
}

.journal-photo::before {
    left: -20px;
}

.journal-photo::after {
    right: -23px;
    background: #29473c;
    transform: rotate(-22deg);
}

.journal-photo em {
    position: absolute;
    z-index: 2;
    left: 6px;
    bottom: 5px;
    color: #fff;
    font: 700 4px/1.3 "Trebuchet MS", sans-serif;
    letter-spacing: 0.5px;
}

.journal-copy {
    padding-top: 5px;
}

.journal-copy small {
    font: 800 4px/1 "Trebuchet MS", sans-serif;
    letter-spacing: 0.5px;
}

.journal-copy h4 {
    margin: 7px 0;
    font: 400 16px/0.95 Georgia, serif;
    letter-spacing: -0.6px;
}

.journal-copy p {
    font: 5px/1.45 Georgia, serif;
    color: #625f56;
}

.journal-copy > span {
    display: block;
    margin-top: 8px;
    font: 900 4px/1 "Trebuchet MS", sans-serif;
}

.journal-copy > span b {
    margin-left: 6px;
}

.journal-footer {
    display: flex;
    align-items: center;
    gap: 13px;
    height: 13px;
    padding: 0 11px;
    border-top: 1px solid #cbc5b8;
    font: 700 4px/1 "Trebuchet MS", sans-serif;
}

.journal-footer b {
    margin-right: auto;
}

/* Architecture */
.mini-website-institucional {
    color: #fff;
    background: #242625;
}

.mini-website-institucional .mini-nav {
    position: absolute;
    inset: 0 0 auto;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(20, 23, 22, 0.2);
}

.forma-hero {
    position: relative;
    height: 102px;
    background: #65685f;
}

.building-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent 0 57%, rgba(15, 23, 21, 0.62) 57%),
        linear-gradient(155deg, #a5aba3 0 43%, #60655f 44%);
}

.building-art::before {
    content: "";
    position: absolute;
    width: 118px;
    height: 70px;
    right: 2px;
    top: 23px;
    background: #d4d0c4;
    clip-path: polygon(20% 0, 100% 15%, 100% 100%, 0 100%, 0 23%);
    box-shadow: inset 0 -21px #a6a89d;
}

.building-art i {
    position: absolute;
    z-index: 2;
    width: 19px;
    height: 30px;
    top: 46px;
    background: #283330;
    border: 2px solid #c7c4b9;
}

.building-art i:nth-child(1) { right: 71px; }
.building-art i:nth-child(2) { right: 45px; }
.building-art i:nth-child(3) { right: 19px; }

.building-art b {
    position: absolute;
    z-index: 3;
    right: 8px;
    bottom: 5px;
    font-size: 4px;
    text-align: right;
}

.building-art b small {
    font-size: 3.5px;
    font-weight: 400;
}

.forma-title {
    position: absolute;
    z-index: 4;
    left: 13px;
    top: 39px;
}

.forma-title small {
    font-size: 4px;
    letter-spacing: 0.7px;
}

.forma-title h4 {
    margin: 4px 0 7px;
    font: 400 18px/0.9 Georgia, serif;
    letter-spacing: -0.8px;
}

.forma-title span {
    padding-bottom: 2px;
    border-bottom: 1px solid #fff;
    font-size: 4px;
    font-weight: 900;
}

.forma-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 36px;
    background: #ece9df;
    color: #232522;
}

.forma-stats div {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    border-right: 1px solid #c8c5bb;
}

.forma-stats b {
    font: 400 14px/1 Georgia, serif;
}

.forma-stats span {
    font-size: 3.5px;
    font-weight: 900;
}

/* Domains */
.mini-website-dominios {
    color: #ecf7ff;
    background:
        radial-gradient(circle at 75% 15%, rgba(61, 226, 183, 0.22), transparent 29%),
        #081b3e;
}

.mini-website-dominios .mini-nav {
    border-color: rgba(168, 216, 255, 0.17);
}

.mini-website-dominios .mini-nav strong span {
    color: #34e0a1;
}

.mini-website-dominios .mini-nav button {
    padding: 3px 7px;
    border: 1px solid #34e0a1;
    border-radius: 20px;
    color: #34e0a1;
}

.domain-hero {
    position: relative;
    height: 103px;
    padding: 13px 20px 7px;
    text-align: center;
}

.domain-hero::before,
.domain-hero::after {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(67, 219, 255, 0.13);
    border-radius: 50%;
}

.domain-hero::before {
    left: -22px;
    top: 8px;
}

.domain-hero::after {
    right: -28px;
    bottom: -14px;
}

.domain-hero > small {
    color: #34e0a1;
    font-size: 4px;
    font-weight: 900;
    letter-spacing: 0.8px;
}

.domain-hero h4 {
    margin: 6px 0 9px;
    font-size: 17px;
    line-height: 0.95;
    letter-spacing: -0.7px;
}

.domain-box {
    display: grid;
    grid-template-columns: 1fr 22px 40px;
    align-items: center;
    height: 23px;
    max-width: 220px;
    margin: 0 auto;
    padding-left: 9px;
    border-radius: 5px;
    background: #fff;
    color: #778095;
    text-align: left;
}

.domain-box span {
    font-size: 5px;
}

.domain-box b {
    color: #102449;
    font-size: 5px;
}

.domain-box button {
    align-self: stretch;
    color: #062119;
    background: #34e0a1;
    font-size: 4px;
    font-weight: 900;
}

.domain-prices {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
    font-size: 4px;
}

.domain-prices b {
    color: #34e0a1;
}

.domain-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 12px;
    color: #8ca7c9;
    background: rgba(255, 255, 255, 0.04);
    font-size: 3.5px;
    font-weight: 900;
}

/* Campaign landing page */
.mini-website-landing {
    color: #17332f;
    background: #f6e5cf;
}

.mini-website-landing .mini-nav {
    background: #f6e5cf;
}

.mini-website-landing .mini-nav button {
    padding: 4px 7px;
    border-radius: 20px;
    color: #fff;
    background: #17332f;
}

.escape-hero {
    display: grid;
    grid-template-columns: 49% 51%;
    height: 101px;
}

.escape-copy {
    padding: 11px 5px 5px 14px;
}

.escape-copy small {
    font-size: 4px;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.escape-copy h4 {
    margin: 6px 0;
    font: 400 18px/0.9 Georgia, serif;
    letter-spacing: -0.8px;
}

.escape-copy p {
    width: 94%;
    font-size: 4.5px;
    line-height: 1.35;
}

.escape-copy button {
    margin-top: 7px;
    padding: 4px 7px;
    border-radius: 20px;
    color: #fff;
    background: #e15d42;
    font-size: 4px;
    font-weight: 900;
}

.escape-scene {
    position: relative;
    overflow: hidden;
    background: linear-gradient(#eda97a 0 45%, #96b8ad 46%);
}

.sun {
    position: absolute;
    width: 28px;
    height: 28px;
    right: 18px;
    top: 13px;
    border-radius: 50%;
    background: #ffd99c;
}

.mountain {
    position: absolute;
    width: 130px;
    height: 72px;
    left: -4px;
    bottom: -24px;
    background: #668d80;
    clip-path: polygon(0 100%, 28% 28%, 43% 61%, 62% 12%, 100% 100%);
}

.mountain.back {
    left: 28px;
    bottom: 0;
    opacity: 0.5;
    background: #d18466;
}

.mountain.front {
    z-index: 2;
}

.escape-scene > span {
    position: absolute;
    z-index: 3;
    right: 6px;
    bottom: 5px;
    color: #fff;
    font-size: 3.5px;
    font-weight: 900;
    text-align: right;
}

.escape-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 14px;
    color: #f6e5cf;
    background: #17332f;
    font-size: 4px;
}

/* Creative agency */
.mini-website-marketing {
    color: #131313;
    background: #f4f064;
}

.mini-website-marketing .mini-nav {
    border-color: rgba(0, 0, 0, 0.22);
}

.mini-website-marketing .mini-nav strong {
    font-size: 8px;
}

.mini-website-marketing .mini-nav button {
    padding: 3px 6px;
    border: 1px solid #111;
    border-radius: 20px;
}

.pulse-hero {
    display: grid;
    grid-template-columns: 56% 44%;
    height: 95px;
    padding: 8px 11px 5px;
}

.pulse-copy small {
    font-size: 4px;
    font-weight: 900;
}

.pulse-copy h4 {
    margin: 5px 0 4px;
    font: 900 25px/0.75 Impact, sans-serif;
    letter-spacing: -1px;
}

.pulse-copy > span {
    font-size: 3.5px;
    font-weight: 900;
}

.pulse-art {
    position: relative;
    overflow: hidden;
    background: #fb644b;
    border-radius: 50% 50% 8px 8px;
}

.pulse-art::before,
.pulse-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.pulse-art::before {
    width: 52px;
    height: 52px;
    left: -18px;
    bottom: -13px;
    background: #4753d7;
}

.pulse-art::after {
    width: 30px;
    height: 30px;
    right: -7px;
    top: 11px;
    border: 7px solid #f4f064;
}

.pulse-art i {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
    width: 22px;
    height: 22px;
    padding-top: 8px;
    border-radius: 50%;
    color: #fff;
    background: #111;
    font-size: 4px;
    font-style: normal;
    font-weight: 900;
    text-align: center;
}

.pulse-art b {
    position: absolute;
    z-index: 2;
    right: 7px;
    bottom: 13px;
    color: #fff;
    font: 900 16px/1 Impact, sans-serif;
}

.pulse-art span {
    position: absolute;
    z-index: 2;
    right: 7px;
    bottom: 7px;
    color: #fff;
    font-size: 3px;
    font-weight: 900;
}

.pulse-art em {
    position: absolute;
    z-index: 2;
    width: 24px;
    height: 12px;
    left: 28px;
    bottom: 14px;
    border-radius: 50%;
    border: 3px solid #fff;
    transform: rotate(-24deg);
}

.pulse-work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.22);
}

.pulse-work div {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 3.5px;
}

.pulse-work b {
    font-size: 6px;
}

.default-site {
    display: grid;
    height: 100%;
    place-items: center;
    background: linear-gradient(145deg, #173f8c, #071831);
    color: #fff;
}

.default-site h4 {
    font-size: 18px;
    text-align: center;
}

.portfolio-layout-ecommerce {
    background: linear-gradient(145deg, #275f83, #071831);
}

.portfolio-layout-blog {
    background: linear-gradient(145deg, #776e5d, #071831);
}

.portfolio-layout-institucional {
    background: linear-gradient(145deg, #646863, #071831);
}

.portfolio-layout-landing {
    background: linear-gradient(145deg, #c47c61, #071831);
}

.portfolio-layout-dominios {
    background: linear-gradient(145deg, #123b77, #071831);
}

.portfolio-layout-marketing {
    background: linear-gradient(145deg, #d8d44d, #071831);
}

.publicidade-media-copy,
.portfolio-copy {
    padding: 16px;
}

.publicidade-media-copy span {
    color: #ffd34d;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.publicidade-media-copy h3,
.portfolio-copy h3 {
    margin: 8px 0;
}

.publicidade-media-copy p,
.portfolio-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.portfolio-content-shell {
    grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
}

.construction-page,
.preview-access-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 35%, rgba(46, 102, 255, 0.35), transparent 38%),
        linear-gradient(160deg, #07142f, #020716 72%);
}

.construction-card,
.preview-access-card {
    width: min(650px, 100%);
    padding: clamp(28px, 6vw, 56px);
    border: 1px solid rgba(150, 188, 255, 0.35);
    border-radius: 28px;
    background: linear-gradient(165deg, rgba(16, 42, 94, 0.94), rgba(4, 13, 34, 0.98));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.construction-card img,
.preview-access-card img {
    width: min(250px, 70%);
    height: auto;
}

.construction-label,
.preview-access-card > span {
    display: block;
    margin-top: 20px;
    color: #ffd34d;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.construction-card h1,
.preview-access-card h1 {
    margin: 10px 0;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
}

.construction-card p,
.preview-access-card p {
    color: var(--muted);
    line-height: 1.6;
}

.construction-card > a {
    display: inline-block;
    margin-top: 22px;
    color: rgba(216, 230, 255, 0.52);
    font-size: 0.82rem;
}

.construction-progress {
    overflow: hidden;
    height: 6px;
    margin-top: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.construction-progress span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffd34d, #1bb964, #2e66ff);
    animation: construction-move 2.2s ease-in-out infinite alternate;
}

.preview-access-card form {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    text-align: left;
}

.preview-access-card label {
    font-weight: 700;
    color: #dce7ff;
}

.preview-access-card input,
.preview-access-card button {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(140, 181, 255, 0.35);
}

.preview-access-card input {
    color: #fff;
    background: rgba(7, 18, 43, 0.82);
}

.preview-access-card button {
    margin-top: 8px;
    color: #fff;
    background: linear-gradient(180deg, #1cc565, #0f9b4d);
    font-weight: 800;
    cursor: pointer;
}

.preview-error {
    margin-top: 14px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(185, 54, 69, 0.28);
    color: #ffdce0;
}


@keyframes loader-copy-design {
    0%, 8% { opacity: 0; transform: translateY(-16px); }
    14%, 34% { opacity: 1; transform: translateY(0); }
    42%, 100% { opacity: 0; transform: translateY(-14px); }
}

@keyframes loader-copy-real {
    0%, 34% { opacity: 0; transform: translateY(-16px); }
    43%, 56% { opacity: 1; transform: translateY(0); }
    64%, 100% { opacity: 0; transform: translateY(-14px); }
}

@keyframes loader-copy-site {
    0%, 58% { opacity: 0; transform: translateY(-16px); }
    68%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes loader-design-window {
    0%, 8% { opacity: 0; transform: translate(-50%, -44%) scale(0.45); }
    18%, 50% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    60%, 100% { opacity: 0; transform: translate(-50%, -52%) scale(0.72); }
}

@keyframes loader-design-tile {
    0%, 14% { opacity: 0; transform: translateY(-18px); }
    24%, 50% { opacity: 1; transform: translateY(0); }
    60%, 100% { opacity: 0; transform: translateY(10px); }
}

@keyframes loader-browser-window {
    0%, 52% { opacity: 0; transform: translate(-50%, -38%) scale(0.65); }
    66%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes loader-code-line {
    0%, 60% { opacity: 0; transform: scaleX(0); }
    72%, 100% { opacity: 1; transform: scaleX(1); }
}

@keyframes loader-site-card {
    0%, 62% { opacity: 0; transform: translateX(-50%) translateY(14px); }
    76%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes loader-device-pop {
    0%, 66% { opacity: 0; transform: translateY(16px) scale(0.86); }
    80%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes template-category-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes splash-arrive {
    from { opacity: 0; transform: scale(0.92) translateY(18px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes splash-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes construction-move {
    from { transform: translateX(0); }
    to { transform: translateX(138%); }
}

@media (max-width: 980px) {
    .home-banner-split,
    .publicidade-media-grid,
    .portfolio-grid,
    .portfolio-content-shell {
        grid-template-columns: 1fr;
    }

    .banner-showcase-heading,
    .banners-feature-card,
    .banners-collection-heading {
        grid-template-columns: 1fr;
    }

    .home-banner-split,
    .home-ad-stage {
        min-height: 330px;
    }

    .home-campaign-stage .home-ad-copy {
        width: min(520px, calc(100% - 36px));
    }

    .banner-strip {
        grid-template-columns: minmax(300px, 74vw);
        grid-auto-columns: minmax(250px, 62vw);
    }

    .banners-feature-card {
        min-height: 0;
    }

    .banners-feature-media {
        min-height: 360px;
    }

    .banners-feature-media::after {
        background: linear-gradient(180deg, transparent 20%, rgba(3, 10, 27, 0.84) 100%);
    }

    .visual-only-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .header-barra {
        grid-template-columns: 1fr auto;
    }

    .home-banner-split,
    .home-ad-stage {
        min-height: 430px;
    }

    .home-campaign-stage > .media-object {
        inset: 36px 10px 10px;
        width: calc(100% - 20px);
        height: calc(100% - 46px);
    }

    .home-campaign-stage .home-ad-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
        padding: 18px;
        border-radius: 20px;
    }

    .home-campaign-stage .home-ad-copy h1 {
        max-width: 13ch;
        font-size: clamp(2rem, 13vw, 3.4rem);
    }

    .home-campaign-stage .home-ad-copy p {
        margin: 12px 0 16px;
        font-size: 0.95rem;
    }

    .banner-showcase {
        padding: 18px;
        border-radius: 24px;
    }

    .banner-showcase-heading {
        display: block;
    }

    .banner-showcase-heading h2 {
        font-size: clamp(1.45rem, 7vw, 2.15rem);
        line-height: 1.12;
    }

    .banner-piece-copy h3 {
        max-width: 18ch;
        font-size: clamp(1.15rem, 6vw, 1.65rem);
        line-height: 1.08;
    }

    .banner-strip {
        grid-template-columns: minmax(78vw, 1fr);
        grid-auto-columns: minmax(78vw, 1fr);
        gap: 12px;
        padding-inline: 2px;
    }

    .banner-slider::before,
    .banner-slider::after {
        width: 42px;
    }

    .banner-slider-control {
        width: 40px;
        height: 40px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 0 0 5px rgba(6, 18, 46, 0.62);
    }

    .banner-slider-control span {
        font-size: 1.7rem;
    }

    .banner-slider-control-prev {
        left: -10px;
    }

    .banner-slider-control-next {
        right: -10px;
    }

    .banner-piece-card,
    .banner-piece-card.is-featured {
        min-width: 0;
        min-height: 340px;
    }

    .banners-feature-media {
        min-height: 300px;
    }

    .banners-feature-copy {
        padding: 22px;
    }

    .banners-feature-copy h3 {
        font-size: clamp(1.65rem, 8vw, 2.45rem);
        line-height: 1.02;
    }

    .banners-collection-heading {
        display: block;
    }

    .banners-collection-heading h3 {
        font-size: clamp(1.25rem, 6.2vw, 1.85rem);
        line-height: 1.12;
    }

    .banners-page-heading h2 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1;
    }

    .visual-only-showcase {
        grid-template-columns: 1fr;
    }

    .visual-only-card:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .entry-splash {
        padding: 12px;
    }

    .publicidade-page-shell {
        padding: 15px;
    }
}

/* Template catalog */
.template-catalog {
    width: min(1240px, calc(100% - 32px));
    margin: 18px auto 0;
}

.services-overview {
    margin-bottom: 22px;
    padding: 30px;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 8%, rgba(30, 225, 120, 0.14), transparent 28%),
        rgba(8, 20, 49, 0.84);
    box-shadow: var(--shadow-lg);
}

.services-overview-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: end;
}

.services-overview-header h2 {
    margin: 8px 0 0;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1.05;
}

.services-overview-header p {
    margin: 0;
    color: #afc1e8;
    line-height: 1.7;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.service-overview-card {
    scroll-margin-top: 84px;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(140, 181, 255, 0.24);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(21, 51, 108, 0.84), rgba(7, 20, 49, 0.9));
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-overview-card-sub {
    border-style: dashed;
    background:
        linear-gradient(145deg, rgba(24, 70, 132, 0.7), rgba(6, 22, 52, 0.92)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 8px, transparent 8px 18px);
}

.service-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 211, 77, 0.5);
}

.service-overview-card > span {
    display: none;
}

.service-overview-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
}

.service-overview-card p {
    margin: 0;
    color: #afc1e8;
    line-height: 1.65;
}

.service-overview-card a {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 18px;
    color: #1ee178;
    font-size: 0.82rem;
    font-weight: 900;
}

.content-online-showcase {
    scroll-margin-top: 84px;
    margin-top: 24px;
    padding: 30px;
    border: 1px solid rgba(140, 181, 255, 0.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 18%, rgba(30, 225, 120, 0.12), transparent 30%),
        radial-gradient(circle at 92% 10%, rgba(255, 211, 77, 0.12), transparent 28%),
        rgba(5, 16, 42, 0.78);
}

.content-online-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.content-online-card {
    overflow: hidden;
    border: 1px solid rgba(140, 181, 255, 0.24);
    border-radius: 22px;
    background: rgba(8, 22, 54, 0.94);
}

.content-online-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    padding: 34px 10px 10px;
    background: linear-gradient(180deg, #0f48a8 0 30px, #050d20 30px 100%);
}

.content-online-media::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 14px;
    z-index: 2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 13px 0 #febc2e, 26px 0 #28c840;
}

.content-online-media::after {
    content: "FEITU / content";
    position: absolute;
    top: 7px;
    right: 12px;
    z-index: 2;
    color: rgba(235, 245, 255, 0.72);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-online-object {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 12px;
    object-fit: cover;
}

.content-online-copy {
    padding: 18px;
}

.content-online-copy span {
    color: #ffd34d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.content-online-copy h3 {
    margin: 8px 0 8px;
    color: #f2f6ff;
}

.content-online-copy p {
    margin: 0;
    color: #aebfe4;
    line-height: 1.6;
}

.template-catalog-intro,
.template-custom-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 211, 77, 0.12), transparent 30%),
        rgba(8, 20, 49, 0.82);
    box-shadow: var(--shadow-lg);
}

.template-catalog-intro h2,
.template-custom-cta h2,
.template-category-header h2,
.about-shell h2,
.about-team h2 {
    margin: 8px 0 10px;
}

.template-catalog-intro p,
.template-custom-cta p {
    max-width: 720px;
    margin: 0;
    color: #afc1e8;
    line-height: 1.7;
}

.template-category-filter {
    position: relative;
    display: grid;
    max-width: 520px;
    gap: 14px;
}

.template-filter-toggle {
    display: flex;
    width: 100%;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 18px;
    color: #f4f7ff;
    background:
        linear-gradient(120deg, rgba(20, 45, 96, 0.92), rgba(38, 101, 190, 0.58), rgba(20, 45, 96, 0.92));
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.template-filter-toggle span {
    color: #9eb6e5;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.template-filter-toggle strong {
    color: #ffd34d;
    font-size: 1rem;
}

.template-filter-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% - 2px);
    left: 0;
    display: grid;
    width: min(100%, 520px);
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(140, 181, 255, 0.26);
    border-radius: 18px;
    background: rgba(4, 14, 35, 0.98);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.template-filter-menu[hidden] {
    display: none;
}

.template-filter-menu button {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(140, 181, 255, 0.18);
    border-radius: 13px;
    color: #dce8ff;
    background: rgba(16, 45, 96, 0.76);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.template-filter-menu button:hover,
.template-filter-menu button.is-active {
    color: #07172e;
    border-color: rgba(255, 211, 77, 0.72);
    background: #ffd34d;
}

.template-subfilter {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.template-subfilter[hidden] {
    display: none;
}

.template-filter-row {
    display: grid;
    gap: 10px;
}

.template-category-filter > span,
.template-filter-row > span,
.template-subfilter > span {
    color: #8fa8d7;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.template-category-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.template-category-nav a,
.template-category-nav button {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(140, 181, 255, 0.24);
    border-radius: 16px;
    color: #f4f7ff;
    background:
        linear-gradient(120deg, rgba(20, 45, 96, 0.84), rgba(38, 101, 190, 0.48), rgba(20, 45, 96, 0.84));
    background-size: 220% 100%;
    font: inherit;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
    animation: template-category-glow 4.5s ease-in-out infinite;
}

.template-category-nav a:hover,
.template-category-nav button:hover,
.template-category-nav a.is-active,
.template-category-nav button.is-active {
    border-color: rgba(255, 211, 77, 0.72);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.template-category-nav a.is-active,
.template-category-nav button.is-active {
    color: #07172e;
    background: linear-gradient(135deg, #ffd34d, #1ee178);
}

.template-category-nav span {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #09152d;
    background: #ffd34d;
    font-size: 0.72rem;
}

.template-category-nav .is-active span {
    background: rgba(7, 23, 46, 0.9);
    color: #f4f7ff;
}




.template-category-empty {
    margin-top: 22px;
    padding: 30px;
    border: 1px dashed rgba(140, 181, 255, 0.34);
    border-radius: 24px;
    color: #c7d6f7;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 211, 77, 0.16), transparent 30%),
        rgba(5, 16, 42, 0.58);
    text-align: center;
}

.template-category-empty[hidden] {
    display: none;
}

.template-category-empty span {
    display: block;
    color: #ffd34d;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.template-category-empty p {
    max-width: 620px;
    margin: 10px auto 0;
    line-height: 1.65;
}

.anchor-offset {
    position: relative;
    top: -110px;
    display: block;
    height: 0;
    overflow: hidden;
}

.template-category {
    scroll-margin-top: 82px;
    margin-top: 22px;
    padding: 26px;
    border: 1px solid rgba(140, 181, 255, 0.22);
    border-radius: 24px;
    background: rgba(5, 16, 42, 0.78);
}

.template-category[hidden],
.template-content-panel[hidden] {
    display: none;
}

.template-category.is-active {
    animation: template-category-enter 0.24s ease both;
}

@keyframes template-category-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.template-category-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.template-category-header p {
    margin: 0 0 9px;
    color: #8fa8d7;
    font-size: 0.86rem;
}

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

.template-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(140, 181, 255, 0.26);
    border-radius: 20px;
    background: rgba(8, 22, 54, 0.94);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 211, 77, 0.54);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
}

.template-card-preview {
    display: block;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #071225;
}

.template-card-copy {
    padding: 18px;
}

.template-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.template-code-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 9px;
    border: 1px solid rgba(255, 211, 77, 0.46);
    border-radius: 999px;
    color: #07172e;
    background: #ffd34d;
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.template-preview-code {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #07172e;
    background: #ffd34d;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.08em;
}

.template-card-heading span {
    color: #ffd34d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.template-card-heading small {
    color: #7188b5;
    font-size: 0.62rem;
    font-weight: 800;
}

.template-card h3 {
    margin: 8px 0 6px;
    color: #f2f6ff;
    font-size: 1.35rem;
}

.template-card p {
    min-height: 48px;
    margin: 0;
    color: #aebfe4;
    line-height: 1.55;
}

.template-select-button {
    display: inline-flex;
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #07172e;
    background: #1ee178;
    font-size: 0.84rem;
    font-weight: 900;
}

.template-select-button:hover {
    background: #ffd34d;
}

.template-preview-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(30, 225, 120, 0.16), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(255, 211, 77, 0.14), transparent 28%),
        linear-gradient(160deg, #07142f, #020716 72%);
}

.template-preview-shell {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 28px 0 48px;
}

.template-preview-back {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 999px;
    color: #cfe0ff;
    background: rgba(5, 17, 43, 0.72);
    font-size: 0.82rem;
    font-weight: 900;
}

.template-preview-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid rgba(140, 181, 255, 0.25);
    border-radius: 26px;
    background: rgba(8, 20, 49, 0.82);
    box-shadow: var(--shadow-lg);
}

.template-preview-hero h1 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 0.96;
}

.template-preview-hero p {
    max-width: 740px;
    margin: 0;
    color: #afc1e8;
    line-height: 1.7;
}

.template-preview-stage {
    overflow: hidden;
    padding: clamp(12px, 2vw, 22px);
    border: 1px solid rgba(140, 181, 255, 0.25);
    border-radius: 28px;
    background: rgba(4, 13, 34, 0.92);
    box-shadow: var(--shadow-lg);
}

.template-preview-object {
    width: 100%;
    min-height: min(680px, 72vh);
    display: block;
    border-radius: 20px;
}

.template-preview-stage .portfolio-layout-preview {
    aspect-ratio: 16 / 9;
    padding: 14px;
}

.template-preview-stage .mock-browser-bar {
    height: 48px;
    flex-basis: 48px;
    grid-template-columns: 78px minmax(0, 1fr) 42px;
}

.template-preview-stage .mock-browser-address {
    height: 26px;
    font-size: 0.78rem;
    line-height: 20px;
}

.template-preview-stage .mock-browser-dots i {
    width: 12px;
    height: 12px;
}

.template-custom-cta {
    margin-top: 22px;
}

.template-custom-cta .btn-cta {
    justify-self: end;
}

.template-preview-modal[hidden] {
    display: none;
}

.template-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: clamp(10px, 2vw, 28px);
}

.template-preview-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(30, 225, 120, 0.18), transparent 28%),
        rgba(1, 6, 18, 0.82);
    backdrop-filter: blur(14px);
}

.template-preview-dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    height: min(860px, 92vh);
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(140, 181, 255, 0.36);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(11, 39, 96, 0.96), rgba(3, 11, 30, 0.98));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.template-preview-modal-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid rgba(140, 181, 255, 0.22);
}

.template-preview-modal-meta {
    min-width: 0;
}

.template-preview-modal-header h2 {
    margin: 4px 0 0;
    color: #f2f6ff;
    font-size: clamp(1.25rem, 3vw, 2rem);
}

.template-preview-browser-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid rgba(140, 181, 255, 0.22);
    border-radius: 18px;
    background: rgba(4, 14, 34, 0.66);
}

.template-preview-browser-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.template-preview-browser-controls button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(140, 181, 255, 0.26);
    border-radius: 12px;
    color: #dce8ff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.92rem;
    font-weight: 1000;
    cursor: pointer;
}

.template-preview-browser-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.36;
}

.template-preview-browser-address {
    min-width: 0;
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #cfe0ff;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.template-preview-browser-state {
    min-width: 86px;
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
}

.template-preview-modal-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.template-preview-modal-actions button,
.template-preview-modal-actions a,
.template-preview-modal-actions span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(140, 181, 255, 0.32);
    border-radius: 999px;
    color: #dce8ff;
    background: rgba(7, 20, 49, 0.82);
    font-size: 0.78rem;
    font-weight: 900;
}

.template-preview-device-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid rgba(140, 181, 255, 0.28);
    border-radius: 999px;
    background: rgba(4, 14, 34, 0.7);
}

.template-preview-device-toggle button {
    min-width: 74px;
}

.template-preview-device-toggle button.is-active {
    color: #07172e;
    background: linear-gradient(135deg, #ffe865, #20e07b);
}

.template-preview-modal-actions button,
.template-preview-modal-actions a {
    padding: 0 12px;
    cursor: pointer;
}

.template-preview-modal-actions span {
    min-width: 62px;
    color: #07172e;
    background: #ffd34d;
}

.template-preview-viewport {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 16px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        #040d22;
    background-size: 28px 28px;
}

.template-preview-loading {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(140, 181, 255, 0.24);
    border-radius: 20px;
    color: #dce8ff;
    background: rgba(4, 13, 34, 0.88);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.template-preview-loading span {
    width: 42px;
    height: 42px;
    border: 3px solid rgba(255, 255, 255, 0.16);
    border-top-color: #ffd34d;
    border-radius: 50%;
    animation: template-preview-spin 0.9s linear infinite;
}

.template-preview-modal.is-ready .template-preview-loading {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.96);
}

.template-preview-modal.is-loading .template-preview-zoom-shell {
    opacity: 0.3;
    transform: scale(0.98);
}

.template-preview-zoom-shell {
    min-width: 760px;
    height: 100%;
    min-height: 620px;
    margin: 0 auto;
    transform-origin: top center;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.template-preview-zoom-shell iframe {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    border: 0;
    border-radius: 18px;
    background: #071225;
}

.template-modal-open {
    overflow: hidden;
}

.template-preview-modal.is-mobile .template-preview-zoom-shell {
    min-width: 392px;
    width: min(392px, 100%);
}

.template-preview-modal.is-mobile .template-preview-viewport {
    padding-inline: 10px;
}

.template-preview-page-embedded {
    background: #040d22;
}

.template-preview-page-embedded .template-preview-shell {
    width: 100%;
    padding: 0;
}

.template-preview-page-embedded .template-preview-stage {
    min-height: 100vh;
    padding: 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.template-preview-page-embedded .template-preview-object {
    min-height: calc(100vh - 28px);
}

.template-demo-clickable {
    cursor: pointer;
}

.mock-browser-address.is-demo-path {
    color: #1f355f;
    background: #fff;
}

.template-demo-pressed {
    transform: translateY(-1px) scale(0.985);
}

.template-demo-clickable:hover,
.template-demo-clickable:focus-visible,
.template-demo-active {
    outline: 2px solid #ffd34d;
    outline-offset: 2px;
    filter: brightness(1.08);
}

.template-demo-tabs {
    position: absolute;
    z-index: 14;
    left: clamp(10px, 4vw, 52px);
    right: clamp(10px, 4vw, 52px);
    bottom: clamp(9px, 2.4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(5px, 1.1vw, 12px);
    padding: clamp(5px, 1vw, 10px);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(5, 13, 32, 0.62);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.template-demo-tabs button {
    min-width: clamp(50px, 10vw, 112px);
    min-height: clamp(22px, 4vw, 38px);
    padding: 0 clamp(8px, 1.6vw, 18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    font-size: clamp(8px, 1.25vw, 13px);
    font-weight: 900;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.template-demo-tabs button:hover,
.template-demo-tabs button:focus-visible,
.template-demo-tabs button.is-active {
    color: #07172e;
    background: linear-gradient(135deg, #ffe865, #20e07b);
    box-shadow: 0 10px 22px rgba(32, 224, 123, 0.26);
    transform: translateY(-1px);
    outline: 0;
}

.mock-browser.template-browser-active {
    background: #061225;
}

.mock-browser-bar.has-demo-controls {
    grid-template-columns: 42px auto minmax(0, 1fr) 18px;
    background: linear-gradient(180deg, #eef1f7, #dfe3eb);
}

.template-preview-stage .mock-browser-bar.has-demo-controls {
    grid-template-columns: 78px auto minmax(0, 1fr) 42px;
}

.template-browser-controls {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.template-browser-controls button {
    width: clamp(17px, 2vw, 23px);
    height: clamp(17px, 2vw, 23px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(31, 53, 95, 0.18);
    border-radius: 50%;
    color: #1f355f;
    background: rgba(255, 255, 255, 0.82);
    font-size: clamp(8px, 1vw, 11px);
    font-weight: 1000;
    line-height: 1;
    cursor: pointer;
}

.template-browser-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.template-browser-tabstrip {
    position: relative;
    z-index: 8;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 5px;
    min-height: clamp(32px, 4.2vw, 46px);
    padding: clamp(5px, 0.8vw, 9px) clamp(8px, 1.2vw, 14px) 0;
    overflow-x: auto;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(123, 160, 221, 0.28);
    background:
        linear-gradient(90deg, rgba(29, 73, 152, 0.64), rgba(8, 20, 48, 0.96)),
        #071225;
    box-shadow: none;
    backdrop-filter: none;
    scrollbar-width: thin;
}

.template-browser-tabstrip button {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-width: clamp(78px, 11vw, 142px);
    max-width: 168px;
    min-height: clamp(27px, 3.5vw, 37px);
    justify-content: flex-start;
    padding: 0 clamp(22px, 2vw, 30px) 0 clamp(10px, 1.3vw, 15px);
    overflow: hidden;
    border: 1px solid rgba(175, 205, 255, 0.28);
    border-bottom: 0;
    border-radius: 13px 13px 0 0;
    color: rgba(227, 238, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    text-align: left;
    text-overflow: ellipsis;
}

.template-browser-tabstrip button::after {
    content: 'x';
    position: absolute;
    top: 50%;
    right: 9px;
    transform: translateY(-50%);
    color: currentColor;
    font-size: 0.82em;
    font-weight: 1000;
    opacity: 0.58;
}

.template-browser-tabstrip button:hover,
.template-browser-tabstrip button:focus-visible,
.template-browser-tabstrip button.is-active {
    color: #07172e;
    background: linear-gradient(180deg, #f8fbff, #dfe8ff);
    box-shadow: 0 -10px 24px rgba(44, 104, 219, 0.18);
    transform: none;
}

.template-browser-tabstrip .template-browser-plus {
    min-width: clamp(28px, 3vw, 38px);
    width: clamp(28px, 3vw, 38px);
    padding: 0;
    justify-content: center;
    border-radius: 999px;
    border-bottom: 1px solid rgba(175, 205, 255, 0.28);
    font-size: clamp(13px, 1.4vw, 17px);
}

.template-browser-tabstrip .template-browser-plus::after {
    display: none;
}

.template-browser-refreshing .mini-website::after {
    content: '';
    position: absolute;
    z-index: 16;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent),
        rgba(255, 255, 255, 0.06);
    animation: template-browser-refresh 0.52s ease;
}

@keyframes template-preview-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes template-browser-refresh {
    from {
        opacity: 0;
        transform: translateX(-40%);
    }
    35% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateX(40%);
    }
}

.template-demo-view {
    --demo-accent: #ffd34d;
    --demo-accent-2: #20e07b;
    --demo-bg: rgba(4, 12, 31, 0.86);
    --demo-surface: rgba(255, 255, 255, 0.12);
    --demo-border: rgba(255, 255, 255, 0.26);
    --demo-text: #f8fbff;
    --demo-muted: rgba(226, 236, 255, 0.82);
    position: absolute;
    z-index: 12;
    inset: clamp(48px, 12vw, 96px) clamp(12px, 4.5vw, 52px) clamp(16px, 4vw, 42px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(145px, 0.95fr);
    gap: clamp(10px, 2vw, 24px);
    align-items: stretch;
    padding: clamp(14px, 2.7vw, 32px);
    overflow: hidden;
    border: 1px solid var(--demo-border);
    border-radius: clamp(16px, 3vw, 32px);
    color: var(--demo-text);
    background:
        radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--demo-accent) 34%, transparent), transparent 34%),
        radial-gradient(circle at 82% 74%, color-mix(in srgb, var(--demo-accent-2) 22%, transparent), transparent 34%),
        linear-gradient(145deg, var(--demo-bg), rgba(2, 8, 24, 0.94));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.template-demo-view[hidden] {
    display: none;
}

.mini-website[data-demo-profile="restaurant"] .template-demo-view {
    --demo-accent: #ffbe6f;
    --demo-accent-2: #a3c76d;
    --demo-bg: rgba(45, 18, 12, 0.9);
}

.mini-website[data-demo-profile="cafe"] .template-demo-view {
    --demo-accent: #ffe0a1;
    --demo-accent-2: #f28d83;
    --demo-bg: rgba(42, 28, 16, 0.88);
}

.mini-website[data-demo-profile="ecommerce"] .template-demo-view {
    --demo-accent: #8ef7ff;
    --demo-accent-2: #ff5fb8;
    --demo-bg: rgba(5, 12, 32, 0.9);
}

.mini-website[data-demo-profile="domains"] .template-demo-view {
    --demo-accent: #8db5ff;
    --demo-accent-2: #4cf0b1;
    --demo-bg: rgba(3, 18, 48, 0.9);
}

.mini-website[data-demo-profile="campaign"] .template-demo-view {
    --demo-accent: #ffd34d;
    --demo-accent-2: #ff6dcb;
    --demo-bg: rgba(14, 9, 42, 0.9);
}

.template-demo-view::before {
    content: '';
    position: absolute;
    inset: auto -8% -20% 42%;
    height: 42%;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--demo-accent) 22%, transparent), transparent);
    filter: blur(18px);
    pointer-events: none;
}

.template-demo-view-copy,
.template-demo-widget-stack {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.template-demo-view-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.template-demo-view-copy small {
    color: var(--demo-accent);
    font-size: clamp(7px, 1.1vw, 12px);
    font-weight: 1000;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.template-demo-view-copy h3 {
    max-width: 12em;
    margin: clamp(5px, 1vw, 10px) 0;
    color: var(--demo-text);
    font-size: clamp(17px, 3.1vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.template-demo-view-copy p {
    max-width: 34em;
    color: var(--demo-muted);
    font-size: clamp(8px, 1.35vw, 15px);
    line-height: 1.45;
}

.template-demo-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(5px, 0.9vw, 10px);
    margin-top: clamp(10px, 1.8vw, 20px);
}

.template-demo-pill-row span {
    padding: clamp(4px, 0.7vw, 8px) clamp(7px, 1.1vw, 12px);
    border: 1px solid color-mix(in srgb, var(--demo-accent) 50%, transparent);
    border-radius: 999px;
    color: var(--demo-text);
    background: rgba(255, 255, 255, 0.08);
    font-size: clamp(7px, 1vw, 11px);
    font-weight: 900;
}

.template-demo-widget-stack {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: clamp(8px, 1.4vw, 16px);
}

.template-demo-widget-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(6px, 1.1vw, 13px);
}

.template-demo-widget,
.template-demo-action-card {
    border: 1px solid var(--demo-border);
    border-radius: clamp(12px, 2vw, 22px);
    background: var(--demo-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.template-demo-widget {
    min-height: clamp(62px, 10vw, 112px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(9px, 1.6vw, 18px);
}

.template-demo-widget span {
    color: var(--demo-muted);
    font-size: clamp(7px, 1vw, 11px);
    font-weight: 800;
}

.template-demo-widget strong {
    color: var(--demo-text);
    font-size: clamp(13px, 2vw, 26px);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

.template-demo-action-card {
    display: grid;
    grid-template-columns: minmax(108px, 0.62fr) minmax(0, 1fr) auto;
    gap: clamp(8px, 1.5vw, 18px);
    align-items: center;
    padding: clamp(10px, 1.7vw, 18px);
}

.template-demo-action-card b {
    color: var(--demo-accent);
    font-size: clamp(12px, 1.45vw, 17px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.template-demo-action-card span {
    color: var(--demo-muted);
    font-size: clamp(8px, 0.95vw, 11px);
    line-height: 1.4;
}

.template-demo-action-card b,
.template-demo-action-card span {
    min-width: 0;
}

.template-demo-action {
    min-height: clamp(30px, 4.5vw, 46px);
    padding: 0 clamp(10px, 1.5vw, 18px);
    border-radius: 999px;
    color: #07172e;
    background: linear-gradient(135deg, var(--demo-accent), var(--demo-accent-2));
    font-size: clamp(8px, 1.05vw, 12px);
    font-weight: 1000;
    white-space: nowrap;
    cursor: pointer;
    justify-self: end;
    box-shadow: 0 12px 26px color-mix(in srgb, var(--demo-accent-2) 24%, transparent);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.template-demo-action:hover,
.template-demo-action:focus-visible,
.template-demo-action.is-active {
    transform: translateY(-1px) scale(1.02);
    filter: saturate(1.15) brightness(1.05);
    outline: 0;
}

@media (max-width: 760px) {
    .template-demo-view {
        inset: 44px 10px 16px;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 10px;
        padding: 14px;
    }

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

    .template-demo-action-card {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .template-demo-action {
        justify-self: start;
    }

    .mock-browser-bar.has-demo-controls {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
    }

    .template-browser-controls {
        display: none;
    }

    .template-browser-tabstrip {
        min-height: 34px;
        padding-inline: 6px;
    }

    .template-browser-tabstrip button {
        min-width: 84px;
        min-height: 29px;
        font-size: 9px;
    }
}

/* Hospitality website previews */
.portfolio-layout-preview[class*="portfolio-layout-restaurant-"],
.portfolio-layout-preview[class*="portfolio-layout-bar-"],
.portfolio-layout-preview[class*="portfolio-layout-cafe-"] {
    --site-bg: #f3eee2;
    --site-text: #243026;
    --site-accent: #b56b3b;
    --site-accent-2: #70855b;
    --site-surface: #ddd0bb;
    background: linear-gradient(145deg, var(--site-accent), #071831);
}

.template-card-preview .portfolio-layout-preview {
    padding: 8px;
}

.template-card-preview .mock-browser {
    min-width: 0;
}

.template-card-preview .mock-browser-bar {
    height: 28px;
    flex-basis: 28px;
    grid-template-columns: 52px minmax(0, 1fr) 22px;
}

.template-card-preview .mock-browser-address {
    height: 17px;
    font-size: 6px;
    line-height: 12px;
}

.template-card-preview .mini-website {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hospitality-nav {
    flex: 0 0 38px;
    height: 38px;
    padding: 0 18px;
    color: var(--site-text);
    background: var(--site-bg);
    border-color: color-mix(in srgb, var(--site-text) 18%, transparent);
}

.hospitality-nav strong {
    font-size: 10px;
    letter-spacing: 0.5px;
}

.hospitality-nav button {
    padding: 5px 9px;
    border: 1px solid currentColor;
    border-radius: 20px;
}

.hospitality-hero {
    position: relative;
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 0;
    color: var(--site-text);
    background: var(--site-bg);
}

.hospitality-copy {
    position: relative;
    z-index: 2;
    padding: 20px 8px 10px 22px;
}

.hospitality-copy small {
    color: var(--site-accent);
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.55px;
}

.hospitality-copy h4 {
    max-width: 220px;
    margin: 8px 0;
    font: 700 26px/0.9 Georgia, serif;
    letter-spacing: -1px;
}

.hospitality-copy p {
    max-width: 210px;
    color: color-mix(in srgb, var(--site-text) 72%, transparent);
    font-size: 7px;
    line-height: 1.4;
}

.hospitality-copy > span {
    display: inline-block;
    margin-top: 11px;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--site-accent);
    font-size: 6px;
    font-weight: 900;
}

.hospitality-scene {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 24%, color-mix(in srgb, var(--site-accent) 55%, white) 0 6%, transparent 7%),
        linear-gradient(145deg, var(--site-surface), var(--site-accent-2));
}

.hospitality-scene::before,
.hospitality-scene::after {
    content: "";
    position: absolute;
}

.scene-restaurant .hospitality-scene::before {
    width: 104px;
    height: 104px;
    left: 48px;
    top: 28px;
    border: 13px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background:
        radial-gradient(circle at 42% 48%, var(--site-accent) 0 8%, transparent 9%),
        radial-gradient(circle at 60% 40%, var(--site-accent-2) 0 10%, transparent 11%),
        #eee5d5;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.scene-restaurant .hospitality-scene::after {
    width: 2px;
    height: 116px;
    right: 22px;
    top: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.66);
    border-right: 4px double rgba(255, 255, 255, 0.66);
}

.scene-bar .hospitality-scene::before {
    width: 72px;
    height: 86px;
    left: 62px;
    top: 27px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-top: 0;
    background: linear-gradient(165deg, transparent 0 36%, var(--site-accent) 37%);
    clip-path: polygon(0 0, 100% 0, 66% 64%, 58% 68%, 58% 93%, 79% 100%, 21% 100%, 42% 93%, 42% 68%, 34% 64%);
    filter: drop-shadow(0 9px 7px rgba(0, 0, 0, 0.28));
}

.scene-bar .hospitality-scene::after {
    width: 48px;
    height: 48px;
    right: 20px;
    top: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.06);
}

.scene-cafe .hospitality-scene::before {
    width: 90px;
    height: 65px;
    left: 44px;
    top: 48px;
    border-radius: 5px 5px 21px 21px;
    background: #f5eee1;
    box-shadow: inset 0 8px var(--site-accent), 0 10px 16px rgba(0, 0, 0, 0.2);
}

.scene-cafe .hospitality-scene::after {
    width: 30px;
    height: 34px;
    left: 124px;
    top: 61px;
    border: 8px solid #f5eee1;
    border-left: 0;
    border-radius: 0 50% 50% 0;
}

.hospitality-scene i,
.hospitality-scene b,
.hospitality-scene em,
.hospitality-scene span {
    position: absolute;
    display: block;
}

.hospitality-scene i {
    width: 48px;
    height: 9px;
    left: 16px;
    bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
}

.hospitality-scene b {
    width: 31px;
    height: 31px;
    right: 15px;
    bottom: 13px;
    border: 4px solid color-mix(in srgb, var(--site-accent) 72%, white);
    border-radius: 50%;
}

.hospitality-scene em {
    width: 21px;
    height: 29px;
    left: 14px;
    top: 13px;
    border-radius: 50% 50% 45% 45%;
    background: var(--site-accent-2);
    transform: rotate(-24deg);
}

.hospitality-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 0 0 31px;
    height: 31px;
    color: var(--site-bg);
    background: var(--site-text);
}

.hospitality-footer span {
    display: grid;
    place-items: center;
    border-right: 1px solid color-mix(in srgb, var(--site-bg) 22%, transparent);
    font-size: 5.5px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.portfolio-layout-restaurant-olive {
    --site-bg: #f0eadc;
    --site-text: #243428;
    --site-accent: #a65b35;
    --site-accent-2: #647753;
    --site-surface: #d5b78f;
}

.portfolio-layout-restaurant-fire {
    --site-bg: #1b1715;
    --site-text: #f7e8d2;
    --site-accent: #ef6a38;
    --site-accent-2: #5c1f17;
    --site-surface: #9b4125;
}

.portfolio-layout-restaurant-luna {
    --site-bg: #e9e6df;
    --site-text: #15181b;
    --site-accent: #8b6a39;
    --site-accent-2: #313a42;
    --site-surface: #a9b0b1;
}

.portfolio-layout-restaurant-family {
    --site-bg: #fff3c9;
    --site-text: #173f48;
    --site-accent: #e85b3f;
    --site-accent-2: #33a49a;
    --site-surface: #f3a44f;
}

.portfolio-layout-bar-noir {
    --site-bg: #14121c;
    --site-text: #f0e7ff;
    --site-accent: #c569ff;
    --site-accent-2: #3b2456;
    --site-surface: #7d254f;
}

.portfolio-layout-bar-sports {
    --site-bg: #082b20;
    --site-text: #f1ffd8;
    --site-accent: #dcff42;
    --site-accent-2: #156646;
    --site-surface: #269464;
}

.portfolio-layout-bar-rooftop {
    --site-bg: #f0d9c8;
    --site-text: #263253;
    --site-accent: #e75c4c;
    --site-accent-2: #5067a2;
    --site-surface: #e49272;
}

.portfolio-layout-bar-wine {
    --site-bg: #eadfd1;
    --site-text: #3a1722;
    --site-accent: #8c2945;
    --site-accent-2: #5f263a;
    --site-surface: #b99b79;
}

.portfolio-layout-cafe-grao {
    --site-bg: #ece7dc;
    --site-text: #2e332c;
    --site-accent: #7e563d;
    --site-accent-2: #8e9b79;
    --site-surface: #c9b28f;
}

.portfolio-layout-cafe-brunch {
    --site-bg: #fff4d8;
    --site-text: #34304f;
    --site-accent: #ff6c57;
    --site-accent-2: #669fd0;
    --site-surface: #f6b95e;
}

.portfolio-layout-cafe-forno {
    --site-bg: #f5e7d3;
    --site-text: #443225;
    --site-accent: #b74e2d;
    --site-accent-2: #7e6a51;
    --site-surface: #ca9666;
}

.portfolio-layout-cafe-amora {
    --site-bg: #e8f0e5;
    --site-text: #192d2a;
    --site-accent: #b63761;
    --site-accent-2: #3f7a74;
    --site-surface: #d8879e;
}

.portfolio-layout-restaurant-fire .hospitality-hero,
.portfolio-layout-bar-noir .hospitality-hero,
.portfolio-layout-bar-sports .hospitality-hero {
    grid-template-columns: 46% 54%;
}

.portfolio-layout-restaurant-fire .hospitality-hero,
.portfolio-layout-bar-rooftop .hospitality-hero,
.portfolio-layout-cafe-amora .hospitality-hero {
    direction: rtl;
}

.portfolio-layout-restaurant-fire .hospitality-copy,
.portfolio-layout-bar-rooftop .hospitality-copy,
.portfolio-layout-cafe-amora .hospitality-copy {
    direction: ltr;
}

.portfolio-layout-restaurant-luna .hospitality-hero,
.portfolio-layout-bar-noir .hospitality-hero {
    grid-template-columns: 1fr;
}

.portfolio-layout-restaurant-luna .hospitality-scene,
.portfolio-layout-bar-noir .hospitality-scene {
    position: absolute;
    inset: 0 0 0 42%;
}

.portfolio-layout-restaurant-luna .hospitality-copy,
.portfolio-layout-bar-noir .hospitality-copy {
    width: 54%;
    background: linear-gradient(90deg, var(--site-bg) 76%, transparent);
}

.portfolio-layout-restaurant-luna .hospitality-copy h4,
.portfolio-layout-bar-wine .hospitality-copy h4 {
    font-weight: 400;
    font-style: italic;
}

.portfolio-layout-restaurant-family .hospitality-copy h4,
.portfolio-layout-cafe-brunch .hospitality-copy h4,
.portfolio-layout-cafe-amora .hospitality-copy h4 {
    font-family: "Trebuchet MS", sans-serif;
    font-weight: 900;
}

.portfolio-layout-bar-rooftop .hospitality-scene,
.portfolio-layout-cafe-brunch .hospitality-scene {
    background:
        radial-gradient(circle at 72% 22%, #ffe9a7 0 11%, transparent 12%),
        linear-gradient(160deg, var(--site-surface) 0 52%, var(--site-accent-2) 53%);
}

.portfolio-layout-cafe-forno .hospitality-scene {
    background:
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.13) 19px),
        linear-gradient(145deg, var(--site-surface), var(--site-accent-2));
}

/* Distinct compositions for each hospitality template */
.portfolio-layout-restaurant-family .hospitality-hero {
    display: block;
    background: var(--site-accent-2);
}

.portfolio-layout-restaurant-family .hospitality-scene {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 243, 201, 0.14), rgba(255, 243, 201, 0.14)),
        repeating-linear-gradient(45deg, #ef7a54 0 14px, #f7c867 14px 28px);
}

.portfolio-layout-restaurant-family .hospitality-copy {
    position: absolute;
    z-index: 4;
    width: 48%;
    left: 7%;
    top: 12%;
    padding: 16px;
    border: 2px solid var(--site-text);
    background: var(--site-bg);
    box-shadow: 8px 8px 0 var(--site-text);
}

.portfolio-layout-restaurant-family .hospitality-scene::before {
    left: auto;
    right: 9%;
    top: 18%;
    width: 92px;
    height: 92px;
}

.portfolio-layout-bar-sports .hospitality-hero {
    direction: rtl;
}

.portfolio-layout-bar-sports .hospitality-copy {
    direction: ltr;
    background:
        repeating-linear-gradient(0deg, transparent 0 14px, rgba(220, 255, 66, 0.08) 15px),
        var(--site-bg);
}

.portfolio-layout-bar-sports .hospitality-scene {
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.55) 50%, transparent 51%),
        linear-gradient(0deg, transparent 48%, rgba(255, 255, 255, 0.45) 49%, transparent 51%),
        #168553;
}

.portfolio-layout-bar-sports .hospitality-scene::before {
    width: 96px;
    height: 54px;
    left: 50%;
    top: 50%;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 0;
    background: rgba(3, 29, 20, 0.82);
    clip-path: none;
    transform: translate(-50%, -50%);
}

.portfolio-layout-bar-sports .hospitality-scene::after {
    content: "2  :  1";
    display: grid;
    width: 68px;
    height: 30px;
    right: auto;
    left: 50%;
    top: 50%;
    place-items: center;
    border: 0;
    border-radius: 0;
    color: var(--site-accent);
    box-shadow: none;
    font: 900 15px/1 "Trebuchet MS", sans-serif;
    transform: translate(-50%, -50%);
}

.portfolio-layout-bar-rooftop .hospitality-hero {
    display: block;
}

.portfolio-layout-bar-rooftop .hospitality-scene {
    position: absolute;
    inset: 0;
}

.portfolio-layout-bar-rooftop .hospitality-copy {
    position: relative;
    z-index: 4;
    width: 54%;
    height: 100%;
    padding-top: 24px;
    color: #fff7e8;
    background: linear-gradient(90deg, rgba(25, 35, 66, 0.92), rgba(25, 35, 66, 0.08));
}

.portfolio-layout-bar-rooftop .hospitality-scene::before {
    width: 100%;
    height: 42%;
    left: 0;
    top: auto;
    bottom: 0;
    border: 0;
    background:
        linear-gradient(90deg, #273350 0 12%, transparent 12% 16%, #344260 16% 31%, transparent 31% 37%, #1d2947 37% 54%, transparent 54% 60%, #2a3655 60% 78%, transparent 78% 82%, #1b2540 82%);
    clip-path: polygon(0 100%, 0 45%, 12% 45%, 12% 70%, 28% 70%, 28% 30%, 43% 30%, 43% 66%, 61% 66%, 61% 20%, 76% 20%, 76% 58%, 100% 58%, 100% 100%);
}

.portfolio-layout-bar-wine .hospitality-hero {
    grid-template-columns: 38% 62%;
}

.portfolio-layout-bar-wine .hospitality-copy {
    border-right: 1px solid rgba(58, 23, 34, 0.25);
}

.portfolio-layout-bar-wine .hospitality-scene {
    background:
        radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.25), transparent 24%),
        linear-gradient(120deg, #5b1f35, #b48669);
}

.portfolio-layout-bar-wine .hospitality-scene::before {
    width: 28px;
    height: 112px;
    left: 34%;
    top: 14px;
    border: 0;
    border-radius: 7px 7px 13px 13px;
    background: linear-gradient(90deg, #35101b, #7e2946 55%, #2a0c14);
    clip-path: none;
}

.portfolio-layout-bar-wine .hospitality-scene::after {
    width: 54px;
    height: 78px;
    right: 22%;
    top: 36px;
    border: 3px solid rgba(255, 255, 255, 0.74);
    border-top: 0;
    border-radius: 8px 8px 45% 45%;
    background: linear-gradient(transparent 0 47%, rgba(114, 16, 52, 0.8) 48%);
    box-shadow: none;
}

.portfolio-layout-cafe-brunch .hospitality-hero {
    direction: rtl;
}

.portfolio-layout-cafe-brunch .hospitality-copy {
    direction: ltr;
}

.portfolio-layout-cafe-brunch .hospitality-scene::before {
    width: 104px;
    height: 104px;
    left: 50%;
    top: 50%;
    border: 12px solid #fff8e9;
    border-radius: 50%;
    background:
        radial-gradient(circle at 48% 48%, #ffd34d 0 14%, #fff 15% 25%, transparent 26%),
        radial-gradient(circle at 70% 66%, #e67b55 0 9%, transparent 10%),
        #82b49f;
    box-shadow: 0 12px 18px rgba(61, 48, 34, 0.2);
    transform: translate(-50%, -50%);
}

.portfolio-layout-cafe-brunch .hospitality-scene::after {
    display: none;
}

.portfolio-layout-cafe-forno .hospitality-hero {
    grid-template-columns: 44% 56%;
}

.portfolio-layout-cafe-forno .hospitality-scene::before {
    width: 78%;
    height: 74%;
    left: 11%;
    top: 13%;
    border: 7px solid #f4d8b6;
    border-radius: 5px;
    background:
        radial-gradient(ellipse at 20% 25%, #d7894c 0 10%, transparent 11%),
        radial-gradient(ellipse at 52% 25%, #edbb72 0 10%, transparent 11%),
        radial-gradient(ellipse at 82% 25%, #b96535 0 10%, transparent 11%),
        radial-gradient(ellipse at 28% 72%, #c97b42 0 11%, transparent 12%),
        radial-gradient(ellipse at 67% 72%, #efc27f 0 12%, transparent 13%),
        linear-gradient(#8f5738 48%, #f4d8b6 49% 53%, #8f5738 54%);
}

.portfolio-layout-cafe-forno .hospitality-scene::after {
    display: none;
}

.portfolio-layout-cafe-amora .hospitality-hero {
    display: block;
}

.portfolio-layout-cafe-amora .hospitality-scene {
    position: absolute;
    inset: 0 0 0 44%;
    background: #dfe8de;
}

.portfolio-layout-cafe-amora .hospitality-copy {
    width: 52%;
    height: 100%;
    background: var(--site-bg);
}

.portfolio-layout-cafe-amora .hospitality-scene::before {
    width: 52px;
    height: 76px;
    left: 14%;
    top: 18%;
    border: 5px solid #fff;
    border-radius: 0;
    background:
        linear-gradient(155deg, transparent 45%, #b63761 46% 66%, transparent 67%),
        #f5c35e;
    box-shadow: 64px 18px 0 -5px #fff, 64px 18px 0 0 #3f7a74;
}

.portfolio-layout-cafe-amora .hospitality-scene::after {
    width: 44px;
    height: 34px;
    right: 13%;
    top: 21%;
    border: 0;
    border-radius: 50% 50% 6px 6px;
    background: #ece8dc;
    box-shadow: inset 0 7px var(--site-accent);
}

/* Professional template previews */
.portfolio-layout-preview .mini-website {
    display: flex;
    min-width: 0;
    flex-direction: column;
    container-type: inline-size;
}

.real-nav,
.real-footer {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    min-width: 0;
}

.real-nav {
    flex: 0 0 clamp(26px, 9cqw, 78px);
    gap: clamp(6px, 2cqw, 22px);
    padding: 0 clamp(12px, 4cqw, 42px);
    border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent);
}

.real-nav strong {
    margin-right: auto;
    font-size: clamp(7px, 2.1cqw, 24px);
    font-weight: 950;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.real-nav nav {
    overflow: hidden;
    max-width: 42%;
    font-size: clamp(4px, 1.05cqw, 12px);
    font-weight: 850;
    letter-spacing: 0.02em;
    opacity: 0.78;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.real-nav button,
.real-home button {
    flex: 0 0 auto;
    padding: clamp(3px, 1.05cqw, 11px) clamp(6px, 2cqw, 20px);
    border: 1px solid currentColor;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    font-size: clamp(4px, 1.05cqw, 12px);
    font-weight: 900;
    white-space: nowrap;
}

.real-home {
    position: relative;
    flex: 1 1 auto;
    display: grid;
    min-height: 0;
    overflow: hidden;
}

.real-home small,
.real-home p,
.real-home span,
.real-home b,
.real-footer span {
    position: relative;
    z-index: 2;
}

.real-home small {
    display: inline-block;
    margin-bottom: clamp(3px, 1.2cqw, 12px);
    font-size: clamp(4px, 1.08cqw, 12px);
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.real-home h4 {
    position: relative;
    z-index: 2;
    max-width: 10em;
    margin: 0;
    font-size: clamp(15px, 5.1cqw, 56px);
    font-weight: 950;
    line-height: 0.93;
    letter-spacing: -0.08em;
}

.real-home p {
    max-width: 19em;
    margin: clamp(5px, 1.5cqw, 16px) 0 0;
    font-size: clamp(5px, 1.35cqw, 15px);
    font-weight: 650;
    line-height: 1.35;
}

.real-footer {
    flex: 0 0 clamp(20px, 6.4cqw, 64px);
    justify-content: space-between;
    gap: clamp(4px, 1.5cqw, 14px);
    padding: 0 clamp(12px, 4cqw, 42px);
    border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent);
}

.real-footer span {
    overflow: hidden;
    font-size: clamp(4px, 1.08cqw, 12px);
    font-weight: 900;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.real-home i {
    position: relative;
    display: block;
}

.portfolio-layout-ecommerce,
.portfolio-layout-ecommerce-velvet,
.portfolio-layout-ecommerce-volt,
.portfolio-layout-ecommerce-casa,
.portfolio-layout-ecommerce-vivo,
.portfolio-layout-institucional,
.portfolio-layout-landing,
.portfolio-layout-marketing {
    background: linear-gradient(145deg, #335a7f, #071831);
}

.mini-website-ecommerce,
.mini-website-ecommerce-velvet,
.mini-website-ecommerce-volt,
.mini-website-ecommerce-casa,
.mini-website-ecommerce-vivo,
.mini-website-institucional,
.mini-website-landing,
.mini-website-marketing {
    background: #f7f3ea;
}

/* Loja online */
.shop-nav,
.shop-footer {
    color: #101314;
    background: #f5efe3;
}

.shop-home {
    grid-template-columns: 58% 42%;
    color: #101314;
    background: #f5efe3;
}

.shop-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.76fr;
    gap: clamp(5px, 1.7cqw, 18px);
    padding: clamp(10px, 3.4cqw, 34px);
    background:
        linear-gradient(120deg, rgba(245, 239, 227, 0.24), transparent 44%),
        linear-gradient(145deg, #bde2f3, #3c7ea2);
}

.shop-visual::before {
    content: "NORTH";
    position: absolute;
    left: 4%;
    bottom: 5%;
    color: rgba(255, 255, 255, 0.28);
    font-size: clamp(24px, 11cqw, 118px);
    font-weight: 950;
    letter-spacing: -0.12em;
}

.product-card {
    position: relative;
    z-index: 2;
    align-self: end;
    min-height: 62%;
    padding: clamp(6px, 1.7cqw, 18px);
    border-radius: clamp(8px, 2.4cqw, 26px);
    color: #141414;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 clamp(10px, 3cqw, 34px) clamp(18px, 4.5cqw, 52px) rgba(17, 43, 66, 0.24);
}

.product-card i {
    width: 100%;
    height: clamp(42px, 17cqw, 180px);
    margin-bottom: clamp(6px, 1.7cqw, 16px);
    border-radius: 46% 32% 28% 38%;
    background:
        radial-gradient(circle at 72% 30%, #222 0 5%, transparent 6%),
        linear-gradient(145deg, #f9f3dc, #cfc0a6);
    transform: rotate(-8deg);
}

.small-product {
    align-self: center;
    min-height: 46%;
    background: rgba(10, 17, 25, 0.82);
    color: #fff;
}

.small-product i {
    height: clamp(28px, 10cqw, 108px);
    border-radius: 30%;
    background: linear-gradient(145deg, #ffca64, #c45a3e);
}

.product-card b,
.product-card span {
    display: block;
    font-size: clamp(5px, 1.25cqw, 14px);
    line-height: 1.15;
}

.product-card span {
    margin-top: clamp(2px, 0.8cqw, 7px);
    font-weight: 900;
}

.shop-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.4cqw, 38px);
}

.shop-actions {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.6cqw, 18px);
    margin-top: clamp(8px, 2.3cqw, 24px);
}

.shop-actions span {
    padding: clamp(4px, 1.2cqw, 12px) clamp(7px, 2.1cqw, 20px);
    border-radius: 999px;
    color: #fff;
    background: #111;
    font-size: clamp(5px, 1.15cqw, 13px);
    font-weight: 950;
}

.shop-actions b {
    color: #5a6d6b;
    font-size: clamp(5px, 1.1cqw, 12px);
}



/* E-commerce premium */
.velvet-nav,
.velvet-footer {
    color: #271717;
    background: #fff6ef;
}

.velvet-home {
    grid-template-columns: 45% 55%;
    color: #271717;
    background:
        radial-gradient(circle at 88% 18%, rgba(211, 111, 87, 0.28), transparent 24%),
        #fff6ef;
}

.velvet-copy,
.volt-copy,
.casa-shop-copy,
.vivo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.5cqw, 38px);
}

.ecom-actions {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.6cqw, 18px);
    margin-top: clamp(8px, 2.3cqw, 24px);
}

.ecom-actions span,
.volt-copy button {
    padding: clamp(4px, 1.1cqw, 12px) clamp(7px, 2cqw, 20px);
    border-radius: 999px;
    color: #fff;
    background: #171717;
    font-size: clamp(5px, 1.15cqw, 13px);
    font-weight: 950;
}

.ecom-actions b {
    color: color-mix(in srgb, currentColor 58%, transparent);
    font-size: clamp(5px, 1.1cqw, 12px);
}

.velvet-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    grid-template-rows: 1fr 0.72fr;
    gap: clamp(6px, 1.7cqw, 18px);
    padding: clamp(12px, 3.4cqw, 36px);
    background: linear-gradient(145deg, #f0b9a5, #d86961);
}

.velvet-gallery i {
    border-radius: clamp(12px, 3cqw, 34px);
    background:
        radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.72), transparent 16%),
        linear-gradient(145deg, #4f2b2f, #f4d1bd);
    box-shadow: 0 clamp(10px, 2.8cqw, 32px) clamp(16px, 4cqw, 48px) rgba(68, 25, 23, 0.24);
}

.velvet-gallery i:first-child {
    grid-row: span 2;
}

.velvet-gallery b {
    position: absolute;
    right: clamp(12px, 3.2cqw, 36px);
    bottom: clamp(10px, 2.7cqw, 28px);
    padding: clamp(4px, 1.1cqw, 10px) clamp(8px, 1.8cqw, 18px);
    border-radius: 999px;
    color: #fff6ef;
    background: #271717;
    font-size: clamp(5px, 1.1cqw, 12px);
    text-transform: uppercase;
}

.volt-nav,
.volt-footer {
    color: #dff9ff;
    background: #071425;
}

.volt-home {
    grid-template-columns: 56% 44%;
    color: #dff9ff;
    background:
        radial-gradient(circle at 20% 15%, rgba(49, 224, 255, 0.24), transparent 25%),
        linear-gradient(145deg, #071425, #102c4c);
}

.volt-dashboard {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: clamp(8px, 2cqw, 22px);
    padding: clamp(13px, 3.6cqw, 38px);
}

.ecom-card {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 42%;
    flex-direction: column;
    justify-content: end;
    padding: clamp(8px, 2cqw, 20px);
    border: 1px solid rgba(143, 225, 255, 0.22);
    border-radius: clamp(10px, 2.6cqw, 28px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.2);
}

.volt-dashboard i {
    grid-column: 1 / -1;
    height: clamp(40px, 13cqw, 140px);
    border-radius: clamp(14px, 3cqw, 32px);
    background:
        linear-gradient(90deg, transparent 0 14%, rgba(49, 224, 255, 0.65) 15% 17%, transparent 18% 30%, rgba(255, 211, 77, 0.76) 31% 33%, transparent 34%),
        linear-gradient(135deg, #152f55, #071425);
}

.volt-copy button {
    align-self: flex-start;
    margin-top: clamp(8px, 2.3cqw, 24px);
    border: 0;
    background: #31e0ff;
    color: #071425;
}

.casa-shop-nav,
.casa-shop-footer {
    color: #283022;
    background: #f1eadf;
}

.casa-shop-home {
    grid-template-columns: 54% 46%;
    color: #283022;
    background: #f1eadf;
}

.casa-shop-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 0.72fr;
    gap: clamp(7px, 1.8cqw, 18px);
    padding: clamp(12px, 3.5cqw, 38px);
    background: #d9cdb9;
}

.casa-shop-grid i {
    border-radius: clamp(8px, 2cqw, 22px);
    background:
        radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.38), transparent 18%),
        linear-gradient(145deg, #8f7d65, #f2e7d4);
}

.casa-shop-grid i:nth-child(1) {
    grid-row: span 2;
}

.casa-shop-grid i:nth-child(2) {
    background: linear-gradient(145deg, #273022, #b9a789);
}

.casa-shop-grid i:nth-child(3) {
    background: linear-gradient(145deg, #f8f1e5, #7b6d58);
}

.casa-shop-grid i:nth-child(4) {
    background: linear-gradient(145deg, #c4a782, #fff7e8);
}

.vivo-nav,
.vivo-footer {
    color: #173018;
    background: #f7ffe9;
}

.vivo-home {
    grid-template-columns: 47% 53%;
    color: #173018;
    background:
        radial-gradient(circle at 8% 10%, #ffd34d 0 10%, transparent 11%),
        linear-gradient(145deg, #f7ffe9, #d2ff97);
}

.vivo-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(6px, 1.6cqw, 16px);
    align-items: end;
    padding: clamp(14px, 3.6cqw, 38px);
}

.vivo-product {
    display: grid;
    min-height: 64%;
    align-content: end;
    gap: clamp(4px, 1cqw, 10px);
    padding: clamp(8px, 1.8cqw, 18px);
    border-radius: clamp(14px, 3cqw, 32px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 clamp(10px, 3cqw, 34px) clamp(18px, 4cqw, 48px) rgba(36, 83, 29, 0.18);
}

.vivo-product i {
    height: clamp(42px, 13cqw, 132px);
    border-radius: 44% 56% 50% 42%;
    background:
        radial-gradient(circle at 34% 32%, rgba(255, 255, 255, 0.54), transparent 14%),
        linear-gradient(145deg, #1ee178, #ffd34d);
}

.vivo-product:nth-child(2) i {
    background: linear-gradient(145deg, #f59f52, #fff0c4);
}

.vivo-product:nth-child(3) i {
    background: linear-gradient(145deg, #6b4a31, #f6d893);
}

/* Marca / catálogo */
.forma-nav,
.forma-footer {
    color: #23301f;
    background: #ede7dc;
}

.forma-home {
    grid-template-columns: 55% 45%;
    color: #23301f;
    background: #ede7dc;
}

.forma-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.8fr;
    grid-template-rows: 1fr 0.72fr;
    gap: clamp(6px, 1.7cqw, 18px);
    padding: clamp(12px, 3.6cqw, 38px);
    background: #d3c8b8;
}

.forma-showcase i {
    border-radius: clamp(7px, 1.9cqw, 22px);
    background:
        radial-gradient(circle at 65% 34%, rgba(255, 255, 255, 0.36), transparent 18%),
        linear-gradient(145deg, #6f765f, #cbb48f);
}

.forma-showcase i:nth-child(1) {
    grid-row: span 2;
}

.forma-showcase i:nth-child(2) {
    background: linear-gradient(145deg, #f4eee2, #9c876a);
}

.forma-showcase i:nth-child(3) {
    background: linear-gradient(145deg, #2e3329, #968d78);
}

.forma-showcase span {
    position: absolute;
    left: clamp(12px, 3.4cqw, 34px);
    bottom: clamp(10px, 2.7cqw, 28px);
    padding: clamp(4px, 1cqw, 10px) clamp(7px, 1.6cqw, 17px);
    color: #ede7dc;
    background: #23301f;
    font-size: clamp(5px, 1.1cqw, 13px);
    font-weight: 950;
}

.forma-copy {
    padding: clamp(12px, 3.4cqw, 38px);
}

.forma-copy > div {
    display: flex;
    align-items: end;
    gap: clamp(5px, 1.3cqw, 14px);
    margin-top: clamp(8px, 2.2cqw, 22px);
}

.forma-copy b {
    font-size: clamp(20px, 7cqw, 72px);
    line-height: 0.82;
}

.forma-copy div span {
    max-width: 7em;
    font-size: clamp(5px, 1.2cqw, 13px);
    font-weight: 800;
}

/* Landing de campanha */
.aurora-nav,
.aurora-footer {
    color: #3a1d16;
    background: #fff1db;
}

.aurora-home {
    grid-template-columns: 52% 48%;
    color: #3a1d16;
    background:
        radial-gradient(circle at 88% 8%, #ffd45e 0 13%, transparent 14%),
        linear-gradient(145deg, #fff1db, #f8bd74);
}

.aurora-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.5cqw, 38px);
}

.aurora-input {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 86%;
    margin-top: clamp(8px, 2.3cqw, 24px);
    overflow: hidden;
    border: 1px solid #3a1d16;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
}

.aurora-input span,
.aurora-input b {
    padding: clamp(4px, 1.1cqw, 11px) clamp(7px, 1.7cqw, 18px);
    font-size: clamp(5px, 1.13cqw, 13px);
}

.aurora-input b {
    color: #fff;
    background: #3a1d16;
}

.aurora-product {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.aurora-product::before {
    content: "";
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff734b, #fee891);
    box-shadow: inset 0 0 0 clamp(12px, 3.5cqw, 38px) rgba(255, 255, 255, 0.22);
}

.aurora-product i {
    z-index: 2;
    width: 47%;
    aspect-ratio: 0.7;
    border-radius: clamp(10px, 3cqw, 30px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.34), transparent),
        linear-gradient(160deg, #121826, #6c7fa3);
    box-shadow: 0 clamp(14px, 4cqw, 48px) clamp(22px, 6cqw, 70px) rgba(75, 29, 14, 0.34);
}

.aurora-product b,
.aurora-product span {
    position: absolute;
    z-index: 3;
    padding: clamp(4px, 1.1cqw, 12px) clamp(7px, 1.7cqw, 18px);
    border-radius: 999px;
    color: #fff;
    background: #3a1d16;
    font-size: clamp(5px, 1.15cqw, 13px);
    font-weight: 950;
}

.aurora-product b {
    left: 12%;
    top: 18%;
}

.aurora-product span {
    right: 16%;
    bottom: 19%;
}

/* Campanha / marketing */
.pulse-nav,
.pulse-footer {
    color: #f7fff4;
    background: #111421;
}

.pulse-home {
    grid-template-columns: 51% 49%;
    color: #f7fff4;
    background:
        linear-gradient(90deg, rgba(255, 217, 61, 0.09) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 217, 61, 0.09) 1px, transparent 1px),
        #111421;
    background-size: clamp(18px, 5cqw, 56px) clamp(18px, 5cqw, 56px);
}

.pulse-dashboard {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: clamp(6px, 1.7cqw, 18px);
    padding: clamp(12px, 3.4cqw, 38px);
}

.pulse-dashboard div {
    display: flex;
    min-height: clamp(46px, 16cqw, 170px);
    flex-direction: column;
    justify-content: end;
    padding: clamp(8px, 2.1cqw, 22px);
    border: 1px solid rgba(255, 217, 61, 0.34);
    border-radius: clamp(10px, 2.6cqw, 30px);
    background: rgba(255, 255, 255, 0.07);
}

.pulse-dashboard b {
    color: #ffd93d;
    font-size: clamp(17px, 5.8cqw, 62px);
    line-height: 0.84;
}

.pulse-dashboard span {
    font-size: clamp(5px, 1.1cqw, 13px);
    font-weight: 850;
}

.pulse-dashboard i {
    grid-column: span 2;
    height: clamp(30px, 9cqw, 96px);
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 50%, #1ee178 0 8%, transparent 9%),
        radial-gradient(circle at 52% 50%, #ffd93d 0 8%, transparent 9%),
        radial-gradient(circle at 82% 50%, #ff5a3d 0 8%, transparent 9%),
        rgba(255, 255, 255, 0.1);
}

.pulse-copy-new {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.4cqw, 38px);
}

.pulse-copy-new small,
.pulse-copy-new > span {
    color: #ffd93d;
}

.pulse-copy-new > span {
    margin-top: clamp(8px, 2.3cqw, 24px);
    font-size: clamp(6px, 1.3cqw, 15px);
    font-weight: 950;
    text-transform: uppercase;
}

/* Restaurante mediterrânico */
.olive-nav,
.olive-footer {
    color: #253428;
    background: #f2eadb;
}

.olive-home {
    grid-template-columns: 54% 46%;
    color: #253428;
    background: #f2eadb;
}

.olive-photo {
    position: relative;
    display: grid;
    align-items: end;
    padding: clamp(12px, 3.6cqw, 38px);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(39, 52, 40, 0.12), rgba(39, 52, 40, 0.42)),
        radial-gradient(circle at 70% 35%, #e5ba66 0 12%, transparent 13%),
        linear-gradient(135deg, #789061, #c79a67);
}

.olive-photo i {
    position: absolute;
    right: 12%;
    bottom: 12%;
    width: 42%;
    aspect-ratio: 1;
    border: clamp(8px, 2.4cqw, 26px) solid #f7f2e8;
    border-radius: 50%;
    background:
        radial-gradient(circle at 54% 50%, #ad5935 0 12%, transparent 13%),
        radial-gradient(circle at 42% 48%, #e8cf8d 0 18%, transparent 19%),
        #7f9c65;
    box-shadow: 0 clamp(14px, 4cqw, 48px) clamp(18px, 5cqw, 58px) rgba(47, 43, 31, 0.26);
}

.olive-photo b,
.olive-photo span {
    color: #fffaf0;
    text-transform: uppercase;
}

.olive-photo b {
    font-size: clamp(17px, 5.4cqw, 58px);
    line-height: 0.86;
    letter-spacing: -0.08em;
}

.olive-photo span {
    font-size: clamp(5px, 1.1cqw, 13px);
    font-weight: 900;
}

.olive-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.6cqw, 38px);
}

.olive-menu {
    display: grid;
    gap: clamp(4px, 1.1cqw, 12px);
    margin-top: clamp(9px, 2.4cqw, 25px);
}

.olive-menu span {
    padding-bottom: clamp(3px, 0.8cqw, 8px);
    border-bottom: 1px solid rgba(37, 52, 40, 0.2);
    font-size: clamp(5px, 1.2cqw, 13px);
    font-weight: 850;
}

/* Grelhados */
.fire-nav,
.fire-footer {
    color: #f9e6c9;
    background: #1a1210;
}

.fire-home {
    grid-template-columns: 48% 52%;
    color: #f9e6c9;
    background:
        radial-gradient(circle at 78% 32%, rgba(239, 106, 56, 0.34), transparent 28%),
        linear-gradient(145deg, #21120f, #3a1711);
}

.fire-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.6cqw, 38px);
}

.fire-copy small,
.fire-copy > span {
    color: #ff8a4b;
}

.fire-copy > span {
    margin-top: clamp(8px, 2.3cqw, 24px);
    font-size: clamp(5px, 1.2cqw, 14px);
    font-weight: 950;
    text-transform: uppercase;
}

.fire-grill {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: clamp(5px, 1.4cqw, 15px);
    padding: clamp(18px, 5cqw, 54px) clamp(12px, 3.3cqw, 36px);
}

.fire-grill::before {
    content: "";
    position: absolute;
    inset: 16% 8% 18%;
    border-radius: clamp(18px, 5cqw, 60px);
    background:
        repeating-linear-gradient(90deg, transparent 0 9%, rgba(255, 255, 255, 0.14) 10% 12%),
        linear-gradient(180deg, rgba(239, 106, 56, 0.08), rgba(239, 106, 56, 0.35));
}

.fire-grill i {
    z-index: 2;
    height: clamp(58px, 20cqw, 210px);
    border-radius: 42% 42% 10% 10%;
    background: linear-gradient(180deg, #ffae5e, #7a2117 70%, #20100d);
    box-shadow: 0 clamp(12px, 3.6cqw, 38px) clamp(14px, 4cqw, 45px) rgba(0, 0, 0, 0.34);
}

.fire-grill i:nth-child(2) {
    height: clamp(76px, 24cqw, 240px);
}

.fire-grill b {
    position: absolute;
    right: 10%;
    top: 12%;
    color: #1a1210;
    background: #ff8a4b;
    padding: clamp(4px, 1.1cqw, 12px) clamp(8px, 1.9cqw, 20px);
    border-radius: 999px;
    font-size: clamp(5px, 1.12cqw, 13px);
    text-transform: uppercase;
}

/* Fine dining */
.luna-nav,
.luna-footer {
    color: #f5efe6;
    background: #121417;
}

.luna-home {
    grid-template-columns: 46% 54%;
    color: #f5efe6;
    background:
        linear-gradient(90deg, #121417, #222833);
}

.luna-plate {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.luna-plate::before {
    content: "";
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border: 1px solid rgba(204, 168, 95, 0.48);
    border-radius: 50%;
}

.luna-plate i {
    width: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 56% 42%, #d4a55f 0 5%, transparent 6%),
        radial-gradient(circle at 44% 55%, #9aa2a8 0 12%, transparent 13%),
        #f5efe6;
    box-shadow: 0 clamp(12px, 3.8cqw, 44px) clamp(20px, 5cqw, 60px) rgba(0, 0, 0, 0.38);
}

.luna-plate span {
    position: absolute;
    bottom: 14%;
    color: #c9a15c;
    font-size: clamp(5px, 1.15cqw, 13px);
    font-weight: 950;
    text-transform: uppercase;
}

.luna-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.7cqw, 40px);
}

.luna-copy small {
    color: #c9a15c;
}

.luna-copy h4 {
    font-family: Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.07em;
}

.luna-copy > div {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.5cqw, 15px);
    margin-top: clamp(10px, 2.8cqw, 28px);
    color: #c9a15c;
}

.luna-copy b {
    font-size: clamp(22px, 7cqw, 74px);
    line-height: 0.78;
}

.luna-copy div span {
    max-width: 8em;
    font-size: clamp(5px, 1.1cqw, 13px);
    font-weight: 850;
}

/* Restaurante familiar */
.mesa-nav,
.mesa-footer {
    color: #163d49;
    background: #fff0bf;
}

.mesa-home {
    grid-template-columns: 49% 51%;
    color: #163d49;
    background:
        radial-gradient(circle at 86% 18%, #ffcf55 0 10%, transparent 11%),
        #fff0bf;
}

.mesa-board {
    position: relative;
    margin: clamp(12px, 3.6cqw, 38px);
    padding: clamp(12px, 3.2cqw, 34px);
    border: clamp(2px, 0.55cqw, 6px) solid #163d49;
    border-radius: clamp(10px, 2.6cqw, 30px);
    background: #1e9d8f;
    box-shadow: clamp(7px, 2.1cqw, 22px) clamp(7px, 2.1cqw, 22px) 0 #f16b4c;
}

.mesa-board b {
    display: block;
    color: #fff7d7;
    font-size: clamp(7px, 1.8cqw, 20px);
    text-transform: uppercase;
}

.mesa-board span {
    display: block;
    margin-top: clamp(5px, 1.3cqw, 14px);
    color: #fff;
    font-size: clamp(15px, 4.3cqw, 46px);
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.mesa-board i {
    position: absolute;
    right: 12%;
    bottom: 12%;
    width: clamp(30px, 9cqw, 94px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff7d7;
}

.mesa-board i:last-child {
    right: 29%;
    bottom: 22%;
    width: clamp(18px, 5.5cqw, 58px);
    background: #ffd45d;
}

.mesa-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.5cqw, 38px);
}

.mesa-copy small {
    color: #f16b4c;
}

.mesa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(4px, 1.1cqw, 12px);
    margin-top: clamp(8px, 2.2cqw, 23px);
}

.mesa-tags span {
    padding: clamp(3px, 0.9cqw, 9px) clamp(6px, 1.4cqw, 15px);
    border-radius: 999px;
    color: #fff7d7;
    background: #163d49;
    font-size: clamp(5px, 1.08cqw, 12px);
    font-weight: 900;
}

/* Café de especialidade */
.grao-nav,
.grao-footer {
    color: #2f342c;
    background: #ece6da;
}

.grao-home {
    grid-template-columns: 52% 48%;
    color: #2f342c;
    background: #ece6da;
}

.grao-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.7cqw, 40px);
}

.grao-copy small,
.grao-copy > span {
    color: #8c5c3e;
}

.grao-copy > span {
    margin-top: clamp(8px, 2.3cqw, 24px);
    font-size: clamp(5px, 1.15cqw, 13px);
    font-weight: 950;
    text-transform: uppercase;
}

.grao-cup {
    position: relative;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 74% 28%, #d0b58a 0 12%, transparent 13%),
        linear-gradient(145deg, #b9c3a3, #7e8b70);
}

.grao-cup i {
    width: 44%;
    aspect-ratio: 1.25;
    border-radius: 0 0 44% 44%;
    background:
        radial-gradient(ellipse at 50% 15%, #4a2d1c 0 28%, transparent 29%),
        #f5efe2;
    box-shadow: clamp(16px, 4.4cqw, 48px) clamp(3px, 0.9cqw, 10px) 0 -1px #f5efe2;
}

.grao-cup b,
.grao-cup span {
    position: absolute;
    left: 11%;
    padding: clamp(4px, 1.05cqw, 11px) clamp(7px, 1.6cqw, 17px);
    border-radius: 999px;
    background: rgba(236, 230, 218, 0.88);
    font-size: clamp(5px, 1.1cqw, 13px);
}

.grao-cup b {
    top: 16%;
}

.grao-cup span {
    bottom: 17%;
    font-weight: 850;
}

/* Brunch */
.brunch-nav,
.brunch-footer {
    color: #383052;
    background: #fff3cf;
}

.brunch-home {
    grid-template-columns: 53% 47%;
    color: #383052;
    background: #fff3cf;
}

.brunch-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(6px, 1.7cqw, 18px);
    padding: clamp(12px, 3.5cqw, 38px);
    background:
        radial-gradient(circle at 12% 12%, #ff6d5b 0 8%, transparent 9%),
        #7fb5ce;
}

.brunch-grid i {
    border-radius: clamp(10px, 2.6cqw, 30px);
    background:
        radial-gradient(circle at 48% 48%, #ffd45d 0 14%, #fff7e6 15% 26%, transparent 27%),
        #83b884;
}

.brunch-grid i:nth-child(1) {
    grid-row: span 2;
    background:
        radial-gradient(circle at 55% 42%, #ffd45d 0 12%, transparent 13%),
        radial-gradient(circle at 35% 65%, #f17c5c 0 14%, transparent 15%),
        #fff7e6;
}

.brunch-grid i:nth-child(3) {
    background: linear-gradient(145deg, #f17c5c, #ffd45d);
}

.brunch-grid i:nth-child(4) {
    background: linear-gradient(145deg, #383052, #ad8bd6);
}

.brunch-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.5cqw, 38px);
}

.brunch-copy small {
    color: #ff6d5b;
}

/* Pastelaria */
.forno-nav,
.forno-footer {
    color: #49311f;
    background: #f3dfc3;
}

.forno-home {
    grid-template-columns: 55% 45%;
    color: #49311f;
    background: #f3dfc3;
}

.forno-window {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: clamp(5px, 1.4cqw, 15px);
    margin: clamp(12px, 3.5cqw, 38px);
    padding: clamp(15px, 4.3cqw, 44px) clamp(9px, 2.6cqw, 28px) clamp(11px, 3cqw, 30px);
    border: clamp(5px, 1.5cqw, 16px) solid #fff4df;
    border-radius: clamp(8px, 2.2cqw, 24px);
    background:
        linear-gradient(#8e5633 49%, #fff4df 50% 54%, #8e5633 55%);
}

.forno-window i {
    height: clamp(32px, 11cqw, 112px);
    border-radius: 50% 50% 16% 16%;
    background: linear-gradient(145deg, #efc079, #ad5831);
}

.forno-window i:nth-child(2) {
    height: clamp(42px, 13cqw, 136px);
    background: linear-gradient(145deg, #f6d9a8, #c56a39);
}

.forno-window i:nth-child(3) {
    background: linear-gradient(145deg, #d9894d, #7d4329);
}

.forno-window b {
    position: absolute;
    left: 8%;
    top: 8%;
    padding: clamp(4px, 1.1cqw, 11px) clamp(7px, 1.7cqw, 18px);
    border-radius: 999px;
    color: #fff4df;
    background: #49311f;
    font-size: clamp(5px, 1.12cqw, 13px);
    text-transform: uppercase;
}

.forno-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.5cqw, 38px);
}

.forno-copy small {
    color: #b24f2b;
}

.forno-copy div {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(4px, 1cqw, 10px);
    margin-top: clamp(8px, 2.2cqw, 23px);
}

.forno-copy div span {
    padding: clamp(3px, 0.9cqw, 9px) clamp(6px, 1.4cqw, 15px);
    border-radius: 999px;
    background: #fff4df;
    font-size: clamp(5px, 1.08cqw, 12px);
    font-weight: 900;
}

/* Café urbano */
.amora-nav,
.amora-footer {
    color: #17302c;
    background: #e7f0e4;
}

.amora-home {
    grid-template-columns: 56% 44%;
    color: #17302c;
    background: #e7f0e4;
}

.amora-wall {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(7px, 2cqw, 22px);
    padding: clamp(14px, 4cqw, 42px);
    background:
        linear-gradient(90deg, rgba(23, 48, 44, 0.08) 1px, transparent 1px),
        #d4e3d2;
    background-size: clamp(15px, 4cqw, 44px) clamp(15px, 4cqw, 44px);
}

.amora-wall i {
    border: clamp(4px, 1.1cqw, 12px) solid #fff;
    background:
        linear-gradient(155deg, transparent 45%, #bd3863 46% 66%, transparent 67%),
        #f2c25b;
    box-shadow: 0 clamp(10px, 2.8cqw, 28px) clamp(18px, 4.8cqw, 48px) rgba(23, 48, 44, 0.14);
}

.amora-wall i:nth-child(2) {
    align-self: end;
    min-height: 66%;
    background:
        radial-gradient(circle at 40% 36%, #fff 0 8%, transparent 9%),
        linear-gradient(145deg, #3f8177, #bd3863);
}

.amora-wall b,
.amora-wall span {
    position: absolute;
    left: clamp(14px, 4cqw, 42px);
    bottom: clamp(13px, 3.6cqw, 38px);
    color: #fff;
    background: #17302c;
}

.amora-wall b {
    padding: clamp(4px, 1.1cqw, 11px) clamp(7px, 1.8cqw, 19px);
    border-radius: 999px 999px 999px 0;
    font-size: clamp(5px, 1.12cqw, 13px);
    text-transform: uppercase;
}

.amora-wall span {
    left: clamp(14px, 4cqw, 42px);
    bottom: clamp(36px, 9cqw, 94px);
    padding: clamp(5px, 1.2cqw, 13px) clamp(7px, 1.8cqw, 19px);
    border-radius: clamp(8px, 2.2cqw, 22px);
    font-size: clamp(7px, 1.8cqw, 20px);
    font-weight: 950;
}

.amora-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.6cqw, 38px);
}

.amora-copy small {
    color: #bd3863;
}

/* Legacy bar variants kept professional if they are still selected in admin data. */
.noir-nav,
.noir-footer {
    color: #f7eaff;
    background: #13111d;
}

.noir-home {
    grid-template-columns: 46% 54%;
    color: #f7eaff;
    background: radial-gradient(circle at 78% 18%, rgba(197, 105, 255, 0.2), transparent 24%), #13111d;
}

.noir-poster,
.sports-score,
.alto-sky,
.wine-shelf {
    margin: clamp(12px, 3.6cqw, 38px);
}

.noir-poster {
    position: relative;
    padding: clamp(12px, 3cqw, 32px);
    border: 1px solid rgba(247, 234, 255, 0.18);
    border-radius: clamp(12px, 3cqw, 32px);
    background: linear-gradient(145deg, #2a173b, #5c1743);
}

.noir-poster b {
    color: #c569ff;
    font-size: clamp(24px, 8cqw, 82px);
}

.noir-poster span {
    display: block;
    font-size: clamp(8px, 2cqw, 21px);
    font-weight: 950;
}

.noir-poster i {
    position: absolute;
    right: 16%;
    bottom: 16%;
    width: 32%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #c569ff;
}

.noir-copy,
.sports-copy,
.alto-copy,
.wine-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(12px, 3.5cqw, 38px);
}

.noir-copy small,
.noir-copy > span {
    color: #c569ff;
}

.noir-copy > span {
    margin-top: clamp(8px, 2.2cqw, 24px);
    font-size: clamp(5px, 1.15cqw, 13px);
    font-weight: 950;
}

.sports-nav,
.sports-footer {
    color: #efffd8;
    background: #082b20;
}

.sports-home {
    grid-template-columns: 50% 50%;
    color: #efffd8;
    background: #0b4c31;
}

.sports-score {
    position: relative;
    display: grid;
    place-items: center;
    border: 2px solid rgba(239, 255, 216, 0.74);
    border-radius: clamp(10px, 2.6cqw, 30px);
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, 0.45) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(255, 255, 255, 0.32) 50%, transparent 51%);
}

.sports-score b {
    color: #dcff42;
    font-size: clamp(22px, 8cqw, 82px);
}

.sports-score span {
    position: absolute;
    left: 10%;
    top: 10%;
    font-size: clamp(5px, 1.1cqw, 13px);
    font-weight: 950;
}

.sports-list {
    display: grid;
    gap: clamp(4px, 1cqw, 10px);
    margin-top: clamp(8px, 2cqw, 22px);
}

.sports-list span {
    padding: clamp(4px, 1cqw, 10px) 0;
    border-bottom: 1px solid rgba(239, 255, 216, 0.18);
    font-size: clamp(5px, 1.1cqw, 13px);
    font-weight: 850;
}

.alto-nav,
.alto-footer {
    color: #263253;
    background: #f0d9c8;
}

.alto-home {
    grid-template-columns: 58% 42%;
    color: #fff7e8;
    background: linear-gradient(145deg, #5067a2, #e75c4c);
}

.alto-sky {
    position: relative;
    overflow: hidden;
    border-radius: clamp(12px, 3cqw, 32px);
    background:
        radial-gradient(circle at 74% 24%, #ffe9a7 0 12%, transparent 13%),
        linear-gradient(180deg, #2e3f74, #f0a06c);
}

.alto-sky::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: #1d2947;
    clip-path: polygon(0 100%, 0 45%, 12% 45%, 12% 70%, 28% 70%, 28% 30%, 43% 30%, 43% 66%, 61% 66%, 61% 20%, 76% 20%, 76% 58%, 100% 58%, 100% 100%);
}

.alto-sky b {
    position: absolute;
    left: 10%;
    top: 12%;
    font-size: clamp(9px, 2.2cqw, 24px);
    text-transform: uppercase;
}

.alto-copy small {
    color: #ffe9a7;
}

.wine-nav,
.wine-footer {
    color: #3a1722;
    background: #eadfd1;
}

.wine-home {
    grid-template-columns: 57% 43%;
    color: #3a1722;
    background: #eadfd1;
}

.wine-shelf {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: clamp(5px, 1.2cqw, 12px);
    padding: clamp(10px, 2.7cqw, 29px);
    border-radius: clamp(10px, 2.8cqw, 30px);
    background: linear-gradient(145deg, #5b1f35, #b48669);
}

.wine-shelf i {
    height: clamp(54px, 18cqw, 190px);
    border-radius: 30% 30% 8px 8px;
    background: linear-gradient(90deg, #35101b, #8c2945 55%, #2a0c14);
}

.wine-shelf i:nth-child(2),
.wine-shelf i:nth-child(4) {
    height: clamp(42px, 14cqw, 152px);
    background: linear-gradient(90deg, #243d35, #6d8f70 55%, #1f312b);
}

.wine-copy small {
    color: #8c2945;
}

.wine-copy > div {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.4cqw, 14px);
    margin-top: clamp(8px, 2.2cqw, 23px);
}

.wine-copy b {
    color: #8c2945;
    font-size: clamp(18px, 5.8cqw, 62px);
    line-height: 0.8;
}

@container (max-width: 390px) {
    .real-nav {
        flex-basis: 26px;
        padding-inline: 10px;
    }

    .real-nav nav {
        display: none;
    }

    .real-nav button {
        padding-inline: 7px;
    }

    .real-home p,
    .real-footer span:nth-child(3) {
        display: none;
    }

    .real-home h4 {
        font-size: clamp(14px, 6.3cqw, 28px);
    }

    .shop-home,
    .forma-home,
    .aurora-home,
    .pulse-home,
    .olive-home,
    .fire-home,
    .luna-home,
    .mesa-home,
    .grao-home,
    .brunch-home,
    .forno-home,
    .amora-home,
    .noir-home,
    .sports-home,
    .alto-home,
    .wine-home {
        grid-template-columns: 1fr 0.94fr;
    }

    .real-footer {
        flex-basis: 19px;
        padding-inline: 10px;
    }
}

/* About FEITU */
.about-shell,
.about-values,
.about-team {
    width: min(1240px, calc(100% - 32px));
    margin: 18px auto 0;
}

.about-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.about-statement,
.about-story,
.about-team {
    border: 1px solid rgba(140, 181, 255, 0.26);
    border-radius: 24px;
    background: rgba(8, 20, 49, 0.82);
    box-shadow: var(--shadow-lg);
}

.about-statement,
.about-story {
    min-height: 310px;
    padding: 32px;
}

.about-statement {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 90% 15%, rgba(30, 225, 120, 0.2), transparent 28%),
        linear-gradient(145deg, rgba(18, 54, 126, 0.92), rgba(5, 17, 43, 0.92));
}

.about-statement h2 {
    max-width: 720px;
    font-size: clamp(2rem, 4vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -2px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    color: #aebfe4;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
}

.about-signature img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.about-story p {
    margin-bottom: 24px;
    color: #afc1e8;
    font-size: 1.02rem;
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.about-values article {
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(140, 181, 255, 0.24);
    border-radius: 20px;
    background: rgba(8, 20, 49, 0.78);
}

.about-values article > span {
    color: #ffd34d;
    font-size: 0.78rem;
    font-weight: 900;
}

.about-values h3 {
    margin: 28px 0 8px;
    font-size: 1.35rem;
}

.about-values p,
.team-card p {
    margin: 0;
    color: #aebfe4;
    line-height: 1.65;
}

.about-team {
    padding: 30px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.team-collective {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 18px;
    padding: 26px;
    border: 1px solid rgba(140, 181, 255, 0.2);
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 10%, rgba(30, 225, 120, 0.14), transparent 28%),
        rgba(19, 43, 91, 0.6);
}

.team-collective-mark {
    display: grid;
    min-height: 150px;
    place-items: center;
    border: 1px solid rgba(255, 211, 77, 0.3);
    border-radius: 28px 28px 12px 12px;
    background: linear-gradient(145deg, rgba(255, 211, 77, 0.16), rgba(30, 225, 120, 0.18));
}

.team-collective-mark img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.team-collective-copy > span {
    color: #ffd34d;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.team-collective-copy p {
    max-width: 820px;
    margin: 10px 0 18px;
    color: #b9c9e9;
    font-size: 1.02rem;
    line-height: 1.75;
}

.team-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-areas strong {
    padding: 8px 11px;
    border: 1px solid rgba(140, 181, 255, 0.25);
    border-radius: 999px;
    color: #dce7ff;
    background: rgba(7, 24, 58, 0.66);
    font-size: 0.76rem;
}

.team-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(140, 181, 255, 0.2);
    border-radius: 18px;
    background: rgba(19, 43, 91, 0.6);
}

.team-avatar {
    display: grid;
    width: 92px;
    height: 112px;
    place-items: center;
    border-radius: 42px 42px 16px 16px;
    color: #07172e;
    background: linear-gradient(145deg, #ffd34d, #1ee178);
    font-size: 1.5rem;
    font-weight: 900;
}

.team-card span {
    color: #ffd34d;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.team-card h3 {
    margin: 5px 0 8px;
    font-size: 1.35rem;
}

.contact-form select {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(140, 181, 255, 0.3);
    border-radius: 12px;
    color: #eef4ff;
    background: #0b204d;
}

.contact-form label small {
    color: #829ac8;
    font-weight: 600;
}

.page-hero-sobre {
    background:
        radial-gradient(circle at 75% 15%, rgba(30, 225, 120, 0.18), transparent 25%),
        linear-gradient(145deg, rgba(19, 55, 126, 0.93), rgba(6, 18, 45, 0.95));
}

@media (max-width: 980px) {
    .template-grid,
    .about-shell,
    .about-team-grid,
    .content-online-grid {
        grid-template-columns: 1fr;
    }

    .template-catalog-intro,
    .template-custom-cta,
    .services-overview-header {
        grid-template-columns: 1fr;
    }

    .template-custom-cta .btn-cta {
        justify-self: start;
    }

    .template-preview-hero {
        grid-template-columns: 1fr;
    }

    .template-preview-hero .btn-cta {
        justify-self: start;
    }

    .template-preview-browser-shell {
        grid-template-columns: 1fr;
    }

    .template-preview-browser-state {
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .template-catalog,
    .about-shell,
    .about-values,
    .about-team {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .template-catalog-intro,
    .template-category,
    .template-custom-cta,
    .content-online-showcase,
    .about-statement,
    .about-story,
    .about-team {
        padding: 20px;
        border-radius: 18px;
    }

    .template-catalog-intro,
    .template-category,
    .template-custom-cta,
    .template-category-nav,
    .content-online-grid,
    .template-grid,
    .template-category-nav a,
    .template-category-nav button {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .template-catalog-intro,
    .template-category,
    .template-custom-cta {
        overflow: hidden;
    }

    .template-category-nav,
    
    .services-overview {
        padding: 20px;
        border-radius: 18px;
    }

    .service-overview-card {
        min-height: 210px;
        padding: 20px;
    }

    .template-category-header {
        align-items: start;
        flex-direction: column;
        gap: 0;
    }

    .template-card-copy {
        padding: 15px;
    }

    .template-grid,
    .template-card,
    .template-card-preview,
    .portfolio-layout-preview,
    .mock-browser,
    .mini-website {
        min-width: 0;
        max-width: 100%;
    }

    .hospitality-nav nav {
        display: none;
    }

    .hospitality-nav {
        padding: 0 10px;
    }

    .hospitality-copy {
        padding-left: 13px;
    }

    .hospitality-copy h4 {
        font-size: 19px;
    }

    .hospitality-copy p {
        display: none;
    }

    .template-card-heading small {
        display: none;
    }

    .template-preview-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 18px;
    }

    .template-preview-stage .portfolio-layout-preview {
        aspect-ratio: 10 / 13;
    }

    .template-preview-modal {
        padding: 0;
    }

    .template-preview-dialog {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .template-preview-modal-header {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .template-preview-browser-shell {
        gap: 8px;
        padding: 8px;
    }

    .template-preview-browser-controls {
        width: 100%;
        justify-content: flex-start;
    }

    .template-preview-browser-address {
        width: 100%;
        font-size: 0.72rem;
    }

    .template-preview-modal-actions {
        justify-content: flex-start;
    }

    .template-preview-device-toggle {
        order: -1;
    }

    .template-preview-viewport {
        padding: 10px;
    }

    .template-preview-zoom-shell {
        min-width: 640px;
        min-height: 520px;
    }

    .template-preview-modal.is-mobile .template-preview-zoom-shell {
        min-width: min(100%, 360px);
        width: min(100%, 360px);
    }

    .template-preview-zoom-shell iframe {
        min-height: 520px;
    }

    .about-statement h2 {
        letter-spacing: -1px;
    }

    .team-card {
        grid-template-columns: 66px 1fr;
        padding: 14px;
    }

    .team-avatar {
        width: 66px;
        height: 82px;
    }

    .team-collective {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .team-collective-mark {
        min-height: 110px;
    }

    .team-collective-mark img {
        width: 78px;
        height: 78px;
    }

    .cookie-policy {
        width: 100%;
        max-width: 100%;
    }

    .cookie-policy-intro,
    .cookie-policy-summary,
    .cookie-policy-grid article {
        padding: 20px;
        border-radius: 18px;
    }

    .cookie-policy-grid {
        grid-template-columns: 1fr;
    }

    .cookie-policy-summary {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-policy-date {
        text-align: left;
    }

    .cookie-notice {
        right: 10px;
        bottom: 10px;
        grid-template-columns: 1fr;
        width: calc(100% - 20px);
        padding: 15px;
    }

    .cookie-notice-actions {
        justify-content: space-between;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feitu-loader-copy span,
    .loader-design-window,
    .loader-browser-window,
    .loader-design-body i,
    .loader-code-column i,
    .loader-site-card,
    .loader-device,    .entry-splash-card,
    .entry-splash-progress span,
    .construction-progress span {
        animation: none;
    }
}

@media (max-width: 640px) {
    .header-barra {
        padding: 10px 14px;
        gap: 10px;
        align-items: center;
    }

    .header-esquerda {
        min-width: 0;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .header-logo-mini {
        width: 34px;
    }

    .header-direita {
        width: auto;
        min-width: 0;
    }

    .header-direita .btn-menu {
        width: auto;
        padding: 9px 11px;
        font-size: 0.72rem;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .header-barra {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .header-esquerda {
        flex: 1 1 auto;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-esquerda span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-direita {
        flex: 0 0 auto;
        gap: 6px;
    }

    .header-direita .btn-menu {
        max-width: 118px;
    }
}

/* FEITU mobile selector fix */

@media (max-width: 680px) {
    .template-catalog-intro p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .template-category-filter {
        max-width: 100%;
        gap: 10px;
    }

    .template-filter-toggle {
        min-height: 54px;
        padding: 12px;
        border-radius: 16px;
    }

    .template-filter-toggle span {
        max-width: 58%;
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        line-height: 1.25;
    }

    .template-filter-toggle strong {
        font-size: 0.98rem;
    }

    .template-filter-menu {
        position: static;
        width: 100%;
        margin-top: -4px;
    }

    .template-category-empty {
        padding: 20px 16px;
    }

    .template-category-empty p {
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .template-code-chip {
        padding: 5px 8px;
        font-size: 0.66rem;
    }
}

/* =============================================
   DIPLOMA SHOWCASE
   ============================================= */
.about-diploma-showcase {
    padding: 10px 30px 60px;
}

.diploma-showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
}

.diploma-showcase-inner .section-eyebrow {
    align-self: flex-start;
}

.diploma-showcase-img {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(140, 181, 255, 0.18);
    box-shadow:
        0 0 0 6px rgba(12, 28, 65, 0.5),
        0 24px 64px rgba(2, 7, 23, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    cursor: zoom-in;
}

.diploma-showcase-img:hover {
    transform: translateY(-4px) scale(1.012);
    box-shadow:
        0 0 0 6px rgba(255, 211, 77, 0.15),
        0 32px 80px rgba(2, 7, 23, 0.65);
}

.diploma-showcase-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
}

.diploma-showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(6, 17, 38, 0.72);
    color: #eef4ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(6px);
}

.diploma-showcase-img:hover .diploma-showcase-overlay {
    opacity: 1;
}

.diploma-showcase-overlay svg {
    width: 28px;
    height: 28px;
    stroke: #ffd34d;
}

.diploma-showcase-caption {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #8eaad8;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
}

.diploma-showcase-caption svg {
    width: 13px;
    height: 13px;
    color: #ffd34d;
    flex-shrink: 0;
}

@media (max-width: 560px) {
    .about-diploma-showcase {
        padding: 10px 16px 48px;
    }

    .diploma-showcase-inner {
        max-width: 100%;
    }
}
