/*
 * JOERI CLOUD — Experience layer 2.1
 * Animações e componentes visuais sem dependências externas.
 */

:root {
    --electric-blue: #2e75ff;
    --electric-cyan: #59dcff;
    --motion-ease: cubic-bezier(.2, .75, .25, 1);
    --motion-spring: cubic-bezier(.16, 1, .3, 1);
}

/* Progresso, brilho e microinterações globais */
.scroll-progress {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-400), var(--electric-cyan), var(--electric-blue));
    box-shadow: 0 0 14px rgba(73, 212, 255, .5);
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.button::before {
    position: absolute;
    z-index: -1;
    top: -70%;
    left: -35%;
    width: 24%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    content: "";
    opacity: 0;
    transform: rotate(18deg) translateX(-250%);
}

.button:hover::before {
    animation: joeri-button-shine .95s var(--motion-ease);
}

.button svg {
    transition: transform .3s var(--motion-spring);
}

.button:hover svg {
    transform: translateX(4px);
}

[data-spotlight] {
    --spot-x: 50%;
    --spot-y: 50%;
    position: relative;
    isolation: isolate;
}

[data-spotlight]::after {
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(89, 220, 255, .11), transparent 55%);
    content: "";
    opacity: .55;
    pointer-events: none;
    transition: opacity .35s ease;
}

[data-spotlight]:hover::after { opacity: 1; }
[data-spotlight] > * { position: relative; z-index: 1; }

/* Entradas progressivas */
.reveal {
    --reveal-delay: 0ms;
    transform: translateY(22px);
    transition: opacity .72s var(--motion-ease) var(--reveal-delay), transform .72s var(--motion-spring) var(--reveal-delay);
}

.reveal-left { transform: translateX(-26px); }
.reveal-right { transform: translateX(26px); }
.reveal-scale { transform: translateY(18px) scale(.98); }
.reveal.is-visible { transform: none; }

.reveal .eyebrow::before {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .65s var(--motion-spring) calc(var(--reveal-delay) + 140ms);
}

.reveal.is-visible .eyebrow::before { transform: scaleX(1); }

[data-depth] {
    --motion-x: 0px;
    --motion-y: 0px;
    translate: var(--motion-x) var(--motion-y);
    transition: translate .28s ease-out;
    will-change: translate;
}

/* Heróis vivos e sofisticados */
.hero,
.inner-hero,
.status-hero {
    isolation: isolate;
}

.hero::before,
.inner-hero::before,
.status-hero::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: radial-gradient(circle at 72% 28%, rgba(46, 117, 255, .2), transparent 33%), radial-gradient(circle at 28% 82%, rgba(14, 203, 107, .08), transparent 28%);
    content: "";
    animation: joeri-ambient-glow 11s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-grid,
.inner-hero-grid {
    animation: joeri-grid-drift 26s linear infinite;
}

.hero-atmosphere {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-atmosphere span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: 0 0 14px rgba(63, 226, 138, .55);
    animation: joeri-particle-rise 12s ease-in-out infinite;
}

.hero-atmosphere span:nth-child(1) { bottom: 16%; left: 8%; }
.hero-atmosphere span:nth-child(2) { right: 38%; bottom: 8%; animation-delay: -3s; animation-duration: 12s; }
.hero-atmosphere span:nth-child(3) { top: 22%; right: 9%; animation-delay: -6s; animation-duration: 10s; }

.hero-copy h1,
.inner-hero-copy h1 {
    text-shadow: 0 16px 50px rgba(0, 0, 0, .24);
}

.hero-copy h1::selection,
.inner-hero-copy h1::selection {
    color: var(--navy-950);
    background: var(--green-400);
}

.hero-orb-one { animation: joeri-orbit-float 12s ease-in-out infinite; }
.hero-orb-two { animation: joeri-orbit-float 16s ease-in-out -4s infinite reverse; }

.server-rack {
    animation: joeri-server-hover 5s ease-in-out infinite;
}

.server-rack.rack-main { animation-delay: -1.6s; }
.server-rack.rack-right { animation-delay: -3.1s; }

.server-rack span::before {
    animation: joeri-server-light 1.8s steps(2, end) infinite;
}

.server-rack span:nth-child(2)::before { animation-delay: -.4s; }
.server-rack span:nth-child(3)::before { animation-delay: -.8s; }
.server-rack span:nth-child(4)::before { animation-delay: -1.2s; }

.data-line {
    filter: drop-shadow(0 0 7px rgba(73, 212, 255, .38));
    animation: joeri-data-pulse 3.4s ease-in-out infinite;
}

.line-two { animation-delay: -1.1s; }
.line-three { animation-delay: -2.2s; }

.cloud-shape {
    animation: joeri-cloud-breathe 5s ease-in-out infinite;
}

.uptime-chip,
.tech-chip,
.floating-check,
.floating-code,
.floating-wp {
    animation: joeri-card-float 7s ease-in-out infinite;
}

.tech-chip { animation-delay: -2.2s; }
.floating-code { animation-delay: -1.1s; }
.floating-wp { animation-delay: -2.8s; }
.floating-check { animation-delay: -4s; }

.trust-strip { overflow: hidden; }
.trust-strip > p { flex: 0 0 auto; }
.trust-strip > .trust-marquee { width: min(72%, 720px); overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.trust-marquee-track { display: flex; width: max-content; align-items: center; gap: 42px; animation: joeri-marquee 28s linear infinite; }
.trust-marquee-track span { flex: 0 0 auto; }

/* Página inicial: WordPress 360 graus */
.wordpress-platform-section {
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #f3f7fd);
}

.wordpress-platform-section::before {
    position: absolute;
    top: -220px;
    right: -150px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(31, 95, 224, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(31, 95, 224, .025), 0 0 0 160px rgba(14, 203, 107, .018);
    content: "";
}

.wordpress-platform-grid {
    position: relative;
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 86px;
}

.wordpress-platform-copy h2,
.wordpress-studio-copy h2,
.managed-wordpress-copy h2 {
    font-size: clamp(31px, 3.15vw, 45px);
    line-height: 1.17;
}

.wordpress-platform-copy > p:not(.eyebrow),
.wordpress-studio-copy > p:not(.eyebrow),
.managed-wordpress-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.82;
}

.expertise-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 31px 0 34px;
}

.expertise-pills span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid #dce6f3;
    border-radius: 999px;
    color: var(--navy-800);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 7px 20px rgba(7, 31, 82, .05);
    font-size: 11px;
    font-weight: 780;
}

.expertise-pills svg { color: var(--green-600); }

.wordpress-console {
    position: relative;
    overflow: visible;
    border: 1px solid rgba(138, 164, 200, .38);
    border-radius: 24px;
    background: #f9fbfe;
    box-shadow: 0 34px 80px rgba(7, 31, 82, .2);
    transition: transform .25s ease-out, box-shadow .35s ease;
}

.wordpress-console:hover { box-shadow: 0 42px 95px rgba(7, 31, 82, .25); }

.console-toolbar,
.studio-topbar {
    display: flex;
    height: 48px;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-bottom: 1px solid #dfe7f2;
    border-radius: 24px 24px 0 0;
    background: #edf2f8;
}

.console-toolbar > span,
.studio-topbar > div span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6c6c;
}

.console-toolbar > span:nth-child(2),
.studio-topbar > div span:nth-child(2) { background: var(--yellow-400); }
.console-toolbar > span:nth-child(3),
.studio-topbar > div span:nth-child(3) { background: var(--green-500); }
.console-toolbar > strong { margin-left: 13px; color: #6d7e96; font-size: 9px; font-weight: 750; }

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    color: #087744;
    font-size: 8px;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-indicator::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 0 rgba(14, 203, 107, .45);
    content: "";
    animation: joeri-live-pulse 2s infinite;
}

.console-layout { display: grid; min-height: 390px; grid-template-columns: 72px 1fr; overflow: hidden; border-radius: 0 0 24px 24px; }
.console-layout aside { display: flex; flex-direction: column; align-items: center; gap: 24px; padding-top: 25px; background: linear-gradient(180deg, var(--navy-950), #092d70); }
.console-layout aside b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: var(--navy-950); background: var(--green-400); font-family: Georgia, serif; font-size: 19px; }
.console-layout aside span { position: relative; width: 25px; height: 5px; border-radius: 4px; background: #34588f; }
.console-layout aside span.is-active { background: var(--green-400); box-shadow: 0 0 14px rgba(63, 226, 138, .4); }
.console-content { padding: 35px; background: linear-gradient(150deg, rgba(255,255,255,.98), rgba(242,247,253,.98)); }
.console-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.console-heading small,
.console-heading strong { display: block; }
.console-heading small { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.console-heading strong { margin-top: 3px; color: var(--ink); font-size: 19px; }
.console-heading > span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 999px; color: #087744; background: #e5faef; font-size: 9px; font-weight: 800; }
.console-score { display: grid; grid-template-columns: 122px 1fr; align-items: center; gap: 25px; margin-top: 38px; padding: 27px; border: 1px solid #dce6f2; border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.score-ring { position: relative; display: grid; width: 108px; height: 108px; place-content: center; border-radius: 50%; background: conic-gradient(var(--green-500) 0 38%, var(--electric-blue) 38% 83%, #dce6f3 83%); text-align: center; }
.score-ring::before { position: absolute; inset: 10px; border-radius: 50%; background: #fff; content: ""; }
.score-ring::after { position: absolute; inset: -4px; border: 1px dashed rgba(31,95,224,.35); border-radius: 50%; content: ""; animation: joeri-ring-spin 9s linear infinite; }
.score-ring b,
.score-ring small { position: relative; z-index: 1; display: block; }
.score-ring b { color: var(--navy-900); font-size: 23px; }
.score-ring small { color: var(--muted); font-size: 8px; text-transform: uppercase; }
.console-score > div:last-child strong { color: var(--ink); font-size: 15px; }
.console-score p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.console-modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 18px; }
.console-modules span { display: flex; align-items: center; gap: 7px; padding: 12px; border: 1px solid #e1e8f2; border-radius: 10px; color: #53657d; background: #fff; font-size: 9px; font-weight: 750; }
.console-modules i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(14,203,107,.12); }
.console-float { position: absolute; z-index: 3; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow-md); animation: joeri-card-float 5s ease-in-out infinite; }
.console-float-code { top: 75px; right: -25px; width: 64px; height: 64px; border-radius: 18px; color: var(--navy-950); background: var(--green-400); font-weight: 900; }
.console-float-speed { bottom: -21px; left: 56px; width: 55px; height: 55px; border-radius: 16px; color: #fff; background: var(--blue-600); animation-delay: -2.5s; }

/* Planos e cards com profundidade */
.price-card {
    --spot-x: 50%;
    --spot-y: 50%;
    transition: transform .28s ease-out, border-color .3s, background .3s, box-shadow .3s;
}

.price-card::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(240px circle at var(--spot-x) var(--spot-y), rgba(89, 220, 255, .12), transparent 62%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.price-card:hover::after { opacity: 1; }
.price-card.is-featured::after { background: radial-gradient(260px circle at var(--spot-x) var(--spot-y), rgba(46, 117, 255, .1), transparent 62%); }
.price-badge { background-size: 180% 100%; animation: joeri-gradient-slide 4s linear infinite; }
.price-card.reveal.is-visible:hover { transform: translateY(-8px); }

.service-card,
.solution-card,
.portfolio-card,
.dark-benefits article,
.included-list article,
.contact-steps article {
    transition: transform .38s var(--motion-spring), box-shadow .38s ease, border-color .38s ease, background .38s ease;
}

.service-card:hover,
.solution-card:hover,
.portfolio-card:hover,
.dark-benefits article:hover,
.included-list article:hover,
.contact-steps article:hover {
    border-color: rgba(46, 117, 255, .28);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.service-icon,
.process-icon,
.included-list article > span,
.dark-benefits article > span {
    transition: transform .4s var(--motion-spring), box-shadow .35s ease;
}

article:hover > .service-icon,
.process-grid article:hover .process-icon,
.included-list article:hover > span,
.dark-benefits article:hover > span {
    box-shadow: 0 12px 28px rgba(31, 95, 224, .18);
    transform: translateY(-3px) rotate(-2deg) scale(1.04);
}

.dash-chart b,
.architecture-bars span {
    transform-origin: bottom;
    animation: joeri-chart-grow 1.1s var(--motion-spring) both;
}

.dash-chart b:nth-child(2), .architecture-bars span:nth-child(2) { animation-delay: .08s; }
.dash-chart b:nth-child(3), .architecture-bars span:nth-child(3) { animation-delay: .16s; }
.dash-chart b:nth-child(4), .architecture-bars span:nth-child(4) { animation-delay: .24s; }
.dash-chart b:nth-child(5), .architecture-bars span:nth-child(5) { animation-delay: .32s; }
.dash-chart b:nth-child(6), .architecture-bars span:nth-child(6) { animation-delay: .4s; }
.dash-chart b:nth-child(7), .architecture-bars span:nth-child(7) { animation-delay: .48s; }

/* Hospedagem WordPress */
.hosting-hero-motion { position: relative; min-height: 430px; }
.hosting-hero-motion .server-visual { position: absolute; inset: 0; }
.hosting-wp-chip { top: 8px; left: -5px; }
.hosting-backup-chip { right: -10px; bottom: 34px; }
.hosting-backup-chip b { color: #fff; background: var(--green-600); }

.hosting-tech-strip {
    position: relative;
    overflow: hidden;
    min-height: 70px;
    background: #f8faff;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.tech-strip-track {
    display: flex;
    width: max-content;
    min-height: 70px;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    animation: joeri-tech-marquee 24s linear infinite;
}

.hosting-tech-strip span { min-width: 145px; color: #8292aa; text-align: center; }
.hosting-tech-strip i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(14,203,107,.1); }

.managed-wordpress-hosting-section {
    overflow: hidden;
    background: #fff;
}

.managed-wordpress-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    align-items: center;
    gap: 88px;
}

.managed-points { display: grid; gap: 3px; margin-top: 32px; }
.managed-points article { display: grid; grid-template-columns: 47px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.managed-points article > span { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 12px; color: var(--blue-700); background: #eaf1ff; }
.managed-points article:nth-child(2) > span { color: #087744; background: #e4f9ee; }
.managed-points h3 { margin: 1px 0 4px; font-size: 15px; }
.managed-points p { margin: 0; color: var(--muted); font-size: 12px; }

.hosting-architecture {
    position: relative;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(79, 113, 161, .35);
    border-radius: 25px;
    color: #aec0dc;
    background: radial-gradient(circle at 70% 15%, rgba(46,117,255,.28), transparent 34%), linear-gradient(145deg, #03132f, #082a68);
    box-shadow: var(--shadow-lg);
}

.hosting-architecture::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 34px 34px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.architecture-head,
.architecture-flow,
.architecture-backup,
.architecture-bars { position: relative; z-index: 1; }
.architecture-head { display: flex; align-items: center; justify-content: space-between; }
.architecture-head .live-indicator { margin-left: 0; color: var(--green-400); }
.architecture-head small { color: #718bb2; font-size: 9px; text-transform: uppercase; }
.architecture-flow { display: grid; grid-template-columns: 1fr 52px 1fr 52px 1fr; align-items: center; margin-top: 42px; }
.architecture-node { display: grid; min-height: 142px; place-content: center; justify-items: center; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.065); backdrop-filter: blur(10px); text-align: center; transition: transform .35s var(--motion-spring), border-color .35s, background .35s; }
.architecture-node:hover { border-color: rgba(89,220,255,.45); background: rgba(255,255,255,.1); transform: translateY(-6px); }
.architecture-node > span { display: grid; width: 45px; height: 45px; place-items: center; margin-bottom: 12px; border-radius: 13px; color: #fff; background: var(--blue-600); }
.architecture-node.is-edge > span { color: var(--navy-950); background: var(--green-400); }
.architecture-node.is-wordpress > span { color: #fff; background: #21759b; font-family: Georgia, serif; font-size: 22px; font-weight: 900; }
.architecture-node strong,
.architecture-node small { display: block; }
.architecture-node strong { color: #fff; font-size: 12px; }
.architecture-node small { margin-top: 3px; color: #8098bd; font-size: 8px; }
.architecture-link { position: relative; height: 1px; overflow: hidden; background: rgba(89,220,255,.24); }
.architecture-link b { position: absolute; top: -2px; left: -5px; width: 6px; height: 6px; border-radius: 50%; background: var(--electric-cyan); box-shadow: 0 0 11px var(--electric-cyan); animation: joeri-data-travel 2s ease-in-out infinite; }
.architecture-link:nth-of-type(2) b { animation-delay: -1s; }
.architecture-backup { display: grid; grid-template-columns: 42px 1fr 12px; align-items: center; gap: 13px; margin-top: 19px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.05); }
.architecture-backup > span { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 11px; color: var(--green-400); background: rgba(63,226,138,.1); }
.architecture-backup strong,
.architecture-backup small { display: block; }
.architecture-backup strong { color: #fff; font-size: 11px; }
.architecture-backup small { margin-top: 2px; color: #7891b7; font-size: 8px; }
.architecture-bars { display: flex; height: 72px; align-items: end; gap: 7px; margin-top: 20px; padding: 12px 14px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.architecture-bars span { width: 100%; height: var(--level); border-radius: 4px 4px 0 0; background: linear-gradient(to top, rgba(46,117,255,.34), var(--electric-cyan)); }
.architecture-bars span:nth-child(even) { background: linear-gradient(to top, rgba(14,203,107,.28), var(--green-400)); }

/* Estúdio WordPress */
.wordpress-studio-section {
    overflow: hidden;
    background: linear-gradient(180deg, #f4f8fd, #fff);
}

.wordpress-studio-grid {
    display: grid;
    grid-template-columns: 1.16fr .84fr;
    align-items: center;
    gap: 90px;
}

.wordpress-studio-visual {
    position: relative;
    min-width: 0;
    border: 1px solid #cfdbea;
    border-radius: 24px;
    background: #f8fafc;
    box-shadow: 0 34px 85px rgba(7,31,82,.2);
}

.studio-topbar > div { display: flex; gap: 6px; }
.studio-topbar > strong { margin-left: 13px; color: #64768f; font-size: 9px; }
.studio-workspace { display: grid; min-height: 410px; grid-template-columns: 60px 1fr 135px; overflow: hidden; border-radius: 0 0 24px 24px; }
.studio-workspace > aside { display: flex; flex-direction: column; align-items: center; gap: 19px; padding-top: 20px; background: var(--navy-950); }
.studio-workspace > aside b { display: grid; width: 32px; height: 32px; place-items: center; margin-bottom: 4px; border-radius: 9px; color: var(--navy-950); background: var(--green-400); font-family: Georgia, serif; }
.studio-workspace > aside span { width: 21px; height: 5px; border-radius: 3px; background: #315181; }
.studio-workspace > aside span.is-active { background: var(--green-400); }
.studio-canvas { padding: 23px; background: #fff; }
.studio-nav { display: flex; align-items: center; gap: 10px; }
.studio-nav i { width: 40px; height: 10px; margin-right: auto; border-radius: 5px; background: var(--navy-900); }
.studio-nav span { width: 24px; height: 5px; border-radius: 4px; background: #d7e0eb; }
.studio-hero-block { position: relative; min-height: 190px; margin-top: 21px; padding: 30px; overflow: hidden; border-radius: 15px; background: linear-gradient(135deg, var(--navy-950), var(--blue-700)); }
.studio-hero-block::after { position: absolute; top: -48px; right: -35px; width: 190px; height: 190px; border: 23px solid rgba(63,226,138,.16); border-radius: 50%; content: ""; animation: joeri-orbit-float 6s ease-in-out infinite; }
.studio-hero-block small { color: var(--green-400); font-size: 6px; font-weight: 900; letter-spacing: .12em; }
.studio-hero-block strong { display: block; max-width: 250px; margin-top: 11px; color: #fff; font-size: 22px; line-height: 1.17; }
.studio-hero-block p { width: 57%; height: 7px; margin: 14px 0 0; border-radius: 5px; background: rgba(255,255,255,.28); }
.studio-hero-block b { display: block; width: 74px; height: 22px; margin-top: 18px; border-radius: 20px; background: var(--green-400); }
.studio-card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 12px; }
.studio-card-row span { height: 74px; border: 1px solid #e0e7f0; border-radius: 9px; background: linear-gradient(#eaf1fb 35%, #fff 35%); }
.studio-settings { padding: 25px 15px; border-left: 1px solid #e2e8f0; background: #f5f8fc; }
.studio-settings strong { display: block; margin-bottom: 21px; color: var(--ink); font-size: 10px; }
.studio-settings span { display: flex; align-items: center; gap: 7px; margin: 13px 0; color: #65758b; font-size: 8px; font-weight: 700; }
.studio-settings i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px rgba(14,203,107,.11); }
.studio-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.75); border-radius: 13px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-md); animation: joeri-card-float 5.5s ease-in-out infinite; }
.studio-badge > svg { color: var(--blue-600); }
.studio-badge span,
.studio-badge strong,
.studio-badge small { display: block; }
.studio-badge strong { color: var(--ink); font-size: 10px; }
.studio-badge small { color: var(--muted); font-size: 8px; }
.studio-badge-theme { top: 84px; left: -32px; }
.studio-badge-cloud { right: -32px; bottom: 35px; animation-delay: -2.6s; }
.studio-badge-cloud > svg { color: var(--green-600); }

.studio-capabilities { margin: 31px 0 34px; }
.studio-capabilities article { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.studio-capabilities article > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: var(--blue-700); background: #eaf1ff; font-size: 9px; font-weight: 900; }
.studio-capabilities article:nth-child(2) > span { color: #087744; background: #e3f9ed; }
.studio-capabilities h3 { margin: 0 0 5px; font-size: 15px; }
.studio-capabilities p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.tech-panel { position: relative; isolation: isolate; overflow: hidden; }
.tech-panel::before { position: absolute; z-index: -1; top: -140px; right: -80px; width: 380px; height: 380px; border: 45px solid rgba(63,226,138,.08); border-radius: 50%; content: ""; animation: joeri-orbit-float 8s ease-in-out infinite; }
.tech-tags span { transition: transform .28s var(--motion-spring), border-color .28s, background .28s; }
.tech-tags span:hover { border-color: rgba(63,226,138,.5); background: rgba(63,226,138,.12); transform: translateY(-4px); }

/* Hospedagem como complemento na página de desenvolvimento */
.development-hosting-section {
    overflow: hidden;
    padding-top: 40px;
    background: var(--white);
}

.development-hosting-panel {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    padding: 62px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    color: #b9cbe6;
    background: radial-gradient(circle at 82% 22%, rgba(46,117,255,.3), transparent 31%), linear-gradient(128deg, var(--navy-950), #092e72);
    box-shadow: var(--shadow-lg);
}

.development-hosting-panel::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 42%, #000);
}

.development-hosting-copy h2 {
    max-width: 650px;
    color: var(--white);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.18;
}

.development-hosting-copy > p:not(.eyebrow) {
    max-width: 660px;
    color: #aabdd9;
    font-size: 15px;
    line-height: 1.8;
}

.development-hosting-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 30px 0 32px;
}

.development-hosting-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dce8fa;
    font-size: 11px;
    font-weight: 750;
}

.development-hosting-features svg { color: var(--green-400); }

.development-hosting-visual {
    position: relative;
    min-height: 360px;
    perspective: 900px;
}

.hosting-site-card {
    position: absolute;
    z-index: 2;
    top: 36px;
    left: 0;
    width: 225px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 16px;
    background: #f7faff;
    box-shadow: 0 25px 55px rgba(0,0,0,.28);
    transform: rotateY(7deg) rotateZ(-2deg);
    animation: joeri-bridge-float 7s ease-in-out infinite;
}

.hosting-site-bar {
    display: flex;
    height: 33px;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    border-bottom: 1px solid #dfe7f2;
    background: #edf2f8;
}

.hosting-site-bar i { width: 6px; height: 6px; border-radius: 50%; background: #ff7272; }
.hosting-site-bar i:nth-child(2) { background: var(--yellow-400); }
.hosting-site-bar i:nth-child(3) { background: var(--green-500); }
.hosting-site-body { padding: 18px; }
.hosting-site-body > span { display: block; width: 36%; height: 6px; border-radius: 4px; background: var(--green-500); }
.hosting-site-body > b { display: block; width: 78%; height: 16px; margin-top: 14px; border-radius: 5px; background: var(--navy-900); }
.hosting-site-body > p { width: 91%; height: 7px; margin: 11px 0 18px; border-radius: 5px; background: #dce5f1; }
.hosting-site-body > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.hosting-site-body > div i { height: 72px; border: 1px solid #e0e8f2; border-radius: 7px; background: linear-gradient(#e7effa 38%, #fff 38%); }

.hosting-mini-rack {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 40px;
    width: 145px;
    padding: 15px;
    border: 1px solid #3570bc;
    border-radius: 13px;
    background: linear-gradient(115deg, #061a3e, #10418a);
    box-shadow: 0 25px 55px rgba(0,0,0,.34);
    animation: joeri-bridge-float 8s ease-in-out -3s infinite;
}

.hosting-mini-rack > span {
    position: relative;
    display: block;
    height: 41px;
    margin: 7px 0;
    border: 1px solid #3768a7;
    border-radius: 6px;
    background: #0a2b61;
}

.hosting-mini-rack > span::after {
    position: absolute;
    top: 16px;
    right: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-400);
    box-shadow: -12px 0 0 var(--electric-cyan);
    content: "";
    animation: joeri-server-light 1.8s steps(2,end) infinite;
}

.hosting-mini-rack > b { display: block; margin-top: 10px; color: #85a8d7; font-size: 7px; letter-spacing: .12em; text-align: center; }

.hosting-transfer-line {
    position: absolute;
    z-index: 1;
    top: 48%;
    right: 120px;
    left: 185px;
    height: 2px;
    background: linear-gradient(90deg, rgba(89,220,255,.05), rgba(89,220,255,.6), rgba(63,226,138,.5));
}

.hosting-transfer-line i {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--electric-cyan);
    box-shadow: 0 0 13px var(--electric-cyan);
    animation: joeri-bridge-data 2.8s ease-in-out infinite;
}

.hosting-transfer-line i:nth-child(2) { animation-delay: -.9s; }
.hosting-transfer-line i:nth-child(3) { animation-delay: -1.8s; }

.hosting-online-badge {
    position: absolute;
    z-index: 5;
    right: 50px;
    bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 12px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-md);
}

.hosting-online-badge > i { width: 9px; height: 9px; border-radius: 50%; background: var(--green-500); animation: joeri-live-pulse 2s infinite; }
.hosting-online-badge span,
.hosting-online-badge strong,
.hosting-online-badge small { display: block; }
.hosting-online-badge strong { color: var(--ink); font-size: 10px; }
.hosting-online-badge small { color: var(--muted); font-size: 8px; }

/* Movimento nos elementos já existentes */
.migration-arrow { animation: joeri-arrow-transfer 1.7s ease-in-out infinite; }
.migration-server.new > i { animation: joeri-live-pulse 2.4s infinite; }
.process-grid::before { background-image: linear-gradient(90deg, transparent, var(--blue-500), var(--green-500), transparent); background-size: 220% 100%; border-top: 0; height: 1px; animation: joeri-gradient-slide 5s linear infinite; }
.process-icon { animation: joeri-soft-pulse 4s ease-in-out infinite; }
.process-grid article:nth-child(2) .process-icon { animation-delay: -1s; }
.process-grid article:nth-child(3) .process-icon { animation-delay: -2s; }
.process-grid article:nth-child(4) .process-icon { animation-delay: -3s; }
.status-dot { animation: joeri-status-pulse 2.3s infinite; }
.floating-whatsapp::after { position: absolute; inset: -7px; border: 1px solid rgba(14,203,107,.42); border-radius: 50%; content: ""; animation: joeri-whatsapp-ring 2.7s ease-out infinite; }
.footer-main { background-size: 140% 140%; animation: joeri-footer-glow 12s ease-in-out infinite alternate; }

/* Marcas oficiais */
.wordpress-logo-mark {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-chip .wp-brand-mark {
    padding: 5px;
    border: 1px solid #dce7f2;
    color: transparent;
    background: #fff;
}

.floating-wp.wp-brand-mark {
    padding: 11px;
    border-color: rgba(255,255,255,.8);
    background: #fff;
}

.architecture-node.is-wordpress > .wp-brand-mark {
    padding: 8px;
    background: #fff;
}

.studio-workspace > aside .wp-brand-mark {
    padding: 5px;
    background: #fff;
}

/* Home: compromisso e indicadores */
.testimonial-panel {
    grid-template-columns: 62px minmax(0, 1fr) minmax(430px, .98fr);
    gap: 36px;
    padding: 62px 64px;
}

.testimonial-panel blockquote > p {
    margin-top: 0;
    font-size: clamp(21px, 1.75vw, 28px);
    font-weight: 760;
    line-height: 1.52;
    letter-spacing: -.018em;
}

.testimonial-panel blockquote footer { margin-top: 28px; }
.testimonial-avatar { width: 48px; height: 48px; font-size: 12px; }
.testimonial-panel blockquote strong { font-size: 15px; }
.testimonial-panel blockquote small { margin-top: 3px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.testimonial-panel blockquote footer strong small { display: inline; margin: 0 0 0 6px; }

.testimonial-metrics {
    grid-template-rows: repeat(3, auto);
    gap: 25px;
    padding-left: 48px;
}

.testimonial-metric {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.testimonial-metric .metric-kicker {
    display: block;
    color: #d5e0f1;
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.025em;
    white-space: nowrap;
}

.testimonial-metric .metric-kicker b,
.testimonial-metric .metric-kicker b span {
    display: inline;
    color: var(--green-400);
    font-size: inherit;
}

.testimonial-metric > strong {
    display: block;
    margin-top: 8px;
    color: var(--green-400);
    font-size: clamp(54px, 4.15vw, 66px);
    font-weight: 900;
    line-height: .93;
    letter-spacing: -.058em;
}

.testimonial-metric.metric-uptime > strong {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 19px;
    margin-top: 0;
    letter-spacing: 0;
    white-space: nowrap;
}

.testimonial-metric.metric-uptime .metric-number,
.testimonial-metric.metric-uptime .metric-number span,
.testimonial-metric.metric-uptime > strong small {
    display: inline;
}

.testimonial-metric.metric-uptime .metric-number {
    color: var(--cyan-400);
    font-size: clamp(64px, 5vw, 80px);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.065em;
}

.testimonial-metric.metric-uptime .metric-number > span {
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
}

.testimonial-metric.metric-uptime > strong small {
    color: #f1f5fb;
    font-size: clamp(22px, 1.75vw, 28px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: -.035em;
}

.testimonial-metric.metric-brazil .metric-kicker {
    color: #b8c9e2;
    font-size: clamp(20px, 1.45vw, 23px);
    letter-spacing: .015em;
    text-transform: uppercase;
}

.testimonial-metric.metric-brazil > strong {
    margin-top: 11px;
    color: #fff;
    font-size: clamp(66px, 5.15vw, 82px);
    line-height: .88;
}

/* Sobre: mais largura de leitura e marcos em destaque */
.about-hero-grid {
    width: min(calc(100% - 40px), 1400px);
    grid-template-columns: minmax(0, 1.18fr) minmax(480px, .82fr);
    gap: 44px;
}

.about-hero .inner-hero-copy h1 { max-width: 840px; }
.about-hero .inner-hero-copy > p:not(.eyebrow) { max-width: 820px; }
.about-statement { padding: 54px 50px; }
.about-statement > span {
    display: block;
    font-size: clamp(24px, 2.35vw, 34px);
    letter-spacing: -.025em;
    line-height: 1.05;
    text-transform: none;
}

.about-statement > strong {
    margin-top: 22px;
    font-size: clamp(40px, 3.8vw, 57px);
    line-height: 1.08;
    letter-spacing: -.04em;
    white-space: nowrap;
}

.vision-orbit .vision-symbol {
    display: grid;
    z-index: 4;
    width: 276px;
    height: 223px;
    padding: 0;
    place-items: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    translate: 34px 0;
    animation: joeri-orbit-float 6s ease-in-out infinite;
}

.vision-symbol img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(0,0,0,.3));
}

.vision-orbit::before,
.vision-orbit::after {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(73,212,255,.11);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.vision-orbit::before { inset: -60px; }
.vision-orbit::after { inset: -120px; border-color: rgba(73,212,255,.065); }

.vision-orbit > i {
    z-index: 3;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    margin: -7px 0 0 -7px;
    animation: joeri-vision-orbit var(--orbit-duration) linear infinite;
    will-change: transform;
}

.vision-orbit > i:first-of-type {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 11px;
    height: 11px;
    margin: -5.5px 0 0 -5.5px;
    --orbit-radius: 120px;
    --orbit-start: -52deg;
    --orbit-duration: 7.5s;
}

.vision-orbit > i:nth-of-type(2) {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 15px;
    height: 15px;
    --orbit-radius: 180px;
    --orbit-start: 98deg;
    --orbit-duration: 12s;
    animation-direction: reverse;
}

.vision-orbit > i:last-of-type {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 19px;
    height: 19px;
    margin: -9.5px 0 0 -9.5px;
    --orbit-radius: 240px;
    --orbit-start: 198deg;
    --orbit-duration: 17s;
}

/* Keyframes */
@keyframes joeri-button-shine {
    0% { opacity: 0; transform: rotate(18deg) translateX(-250%); }
    25% { opacity: 1; }
    100% { opacity: 0; transform: rotate(18deg) translateX(650%); }
}

@keyframes joeri-ambient-glow { from { opacity: .55; transform: scale(1); } to { opacity: 1; transform: scale(1.06); } }
@keyframes joeri-grid-drift { to { background-position: 64px 64px; } }
@keyframes joeri-orbit-float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-9px) rotate(1.5deg); } }
@keyframes joeri-vision-orbit {
    from { transform: rotate(var(--orbit-start)) translateX(var(--orbit-radius)); }
    to { transform: rotate(calc(var(--orbit-start) + 1turn)) translateX(var(--orbit-radius)); }
}
@keyframes joeri-particle-rise { 0%, 100% { opacity: .08; transform: translateY(30px) scale(.7); } 45% { opacity: .55; } 70% { opacity: .12; transform: translateY(-105px) scale(1.05); } }
@keyframes joeri-server-hover { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes joeri-server-light { 0%, 48% { opacity: .4; } 50%, 100% { opacity: 1; } }
@keyframes joeri-data-pulse { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes joeri-cloud-breathe { 0%, 100% { filter: drop-shadow(0 0 20px rgba(73,212,255,.1)); opacity: .65; } 50% { filter: drop-shadow(0 0 38px rgba(73,212,255,.28)); opacity: 1; } }
@keyframes joeri-card-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes joeri-marquee { to { transform: translateX(calc(-50% - 21px)); } }
@keyframes joeri-tech-marquee { to { transform: translateX(-50%); } }
@keyframes joeri-live-pulse { 0% { box-shadow: 0 0 0 0 rgba(14,203,107,.4); } 70% { box-shadow: 0 0 0 8px rgba(14,203,107,0); } 100% { box-shadow: 0 0 0 0 rgba(14,203,107,0); } }
@keyframes joeri-ring-spin { to { rotate: 360deg; } }
@keyframes joeri-gradient-slide { to { background-position: -180% 0; } }
@keyframes joeri-chart-grow { from { transform: scaleY(.06); } to { transform: scaleY(1); } }
@keyframes joeri-data-travel { from { transform: translateX(0); } to { transform: translateX(56px); } }
@keyframes joeri-arrow-transfer { 0%, 100% { opacity: .5; transform: translateX(-5px); } 50% { opacity: 1; transform: translateX(6px); } }
@keyframes joeri-soft-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(31,95,224,.08), var(--shadow-sm); } 50% { box-shadow: 0 0 0 8px rgba(31,95,224,0), 0 16px 35px rgba(7,31,82,.14); } }
@keyframes joeri-status-pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(14,203,107,.12); } 50% { box-shadow: 0 0 0 8px rgba(14,203,107,0); } }
@keyframes joeri-whatsapp-ring { 0% { opacity: .8; transform: scale(.85); } 100% { opacity: 0; transform: scale(1.3); } }
@keyframes joeri-footer-glow { to { background-position: 80% 40%; } }
@keyframes joeri-bridge-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -7px; } }
@keyframes joeri-bridge-data { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 8px); opacity: 0; } }

/* Responsivo */
@media (max-width: 1120px) {
    .wordpress-platform-grid,
    .managed-wordpress-grid,
    .wordpress-studio-grid { gap: 58px; }
    .studio-badge-theme { left: -14px; }
    .studio-badge-cloud { right: -14px; }
    .development-hosting-panel { gap: 42px; padding: 52px; }
    .hosting-site-card { width: 205px; }
    .hosting-mini-rack { width: 132px; }
    .testimonial-panel { grid-template-columns: 55px minmax(0, 1fr) minmax(390px, .92fr); gap: 28px; padding: 52px 45px; }
    .testimonial-metrics { padding-left: 36px; }
    .about-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, .85fr); gap: 34px; }
    .about-statement { padding: 48px 44px; }
}

@media (max-width: 960px) {
    .wordpress-platform-grid,
    .managed-wordpress-grid,
    .wordpress-studio-grid { grid-template-columns: 1fr; gap: 62px; }
    .wordpress-console,
    .hosting-architecture,
    .wordpress-studio-visual { width: min(100%, 680px); margin-inline: auto; }
    .wordpress-studio-visual { order: 2; }
    .hosting-hero-motion { width: min(100%, 600px); margin-inline: auto; }
    .trust-strip > .trust-marquee { width: 70%; }
    .development-hosting-panel { grid-template-columns: 1fr; gap: 46px; }
    .development-hosting-visual { width: min(100%, 530px); margin-inline: auto; }
    .testimonial-panel { grid-template-columns: 55px minmax(0, 1fr); }
    .testimonial-metrics { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: 1fr; gap: 22px; padding: 32px 0 0; border-top: 1px solid rgba(255,255,255,.13); border-left: 0; }
    .testimonial-metric .metric-kicker,
    .testimonial-metric.metric-brazil .metric-kicker { font-size: clamp(15px, 2vw, 18px); }
    .testimonial-metric > strong { font-size: clamp(38px, 4.8vw, 46px); }
    .testimonial-metric.metric-uptime .metric-number { font-size: clamp(42px, 5.3vw, 50px); }
    .testimonial-metric.metric-uptime > strong { gap: 10px; }
    .testimonial-metric.metric-uptime > strong small { font-size: clamp(15px, 1.9vw, 18px); }
    .testimonial-metric.metric-brazil > strong { font-size: clamp(48px, 6vw, 58px); }
    .about-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 45px; padding-top: 80px; padding-bottom: 80px; }
    .about-statement { max-width: 670px; }
}

@media (max-width: 680px) {
    .reveal-left,
    .reveal-right,
    .reveal-scale { transform: translateY(24px) scale(.985); }
    .trust-strip > p { display: none; }
    .trust-strip > .trust-marquee { width: 100%; }
    .trust-marquee-track { gap: 26px; animation-duration: 18s; }
    .wordpress-platform-grid,
    .managed-wordpress-grid,
    .wordpress-studio-grid { gap: 45px; }
    .expertise-pills { display: grid; grid-template-columns: 1fr; }
    .expertise-pills span { justify-content: flex-start; }
    .wordpress-console { border-radius: 18px; }
    .console-toolbar { height: 43px; padding-inline: 12px; border-radius: 18px 18px 0 0; }
    .console-toolbar > strong { max-width: 135px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .console-layout { min-height: auto; grid-template-columns: 47px 1fr; border-radius: 0 0 18px 18px; }
    .console-layout aside { gap: 18px; padding-top: 18px; }
    .console-layout aside b { width: 29px; height: 29px; font-size: 15px; }
    .console-layout aside span { width: 18px; }
    .console-content { padding: 21px 16px; }
    .console-heading > span { display: none; }
    .console-score { grid-template-columns: 78px 1fr; gap: 15px; margin-top: 25px; padding: 17px 13px; }
    .score-ring { width: 72px; height: 72px; }
    .score-ring::before { inset: 7px; }
    .score-ring b { font-size: 17px; }
    .console-score > div:last-child strong { font-size: 12px; }
    .console-score p { font-size: 9px; }
    .console-modules { grid-template-columns: 1fr; }
    .console-modules span { padding: 9px; }
    .console-float-code { top: 56px; right: -7px; width: 48px; height: 48px; border-radius: 13px; font-size: 12px; }
    .console-float-speed { bottom: -15px; left: 42px; width: 45px; height: 45px; }
    .hosting-hero-motion { min-height: 350px; }
    .hosting-hero-motion .server-visual { transform: scale(.85); transform-origin: center; }
    .hosting-wp-chip { top: 0; left: -3px; }
    .hosting-backup-chip { right: -3px; bottom: 3px; }
    .architecture-flow { grid-template-columns: 1fr 22px 1fr 22px 1fr; }
    .architecture-node { min-height: 120px; padding: 10px 5px; }
    .architecture-node > span { width: 38px; height: 38px; }
    .architecture-node strong { font-size: 9px; }
    .architecture-node small { font-size: 7px; }
    .architecture-backup { grid-template-columns: 36px 1fr 10px; padding: 13px; }
    .hosting-architecture { padding: 20px 14px; }
    .wordpress-studio-visual { border-radius: 18px; }
    .studio-topbar { border-radius: 18px 18px 0 0; }
    .studio-topbar > strong { max-width: 135px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .studio-topbar .live-indicator { display: none; }
    .studio-workspace { min-height: 315px; grid-template-columns: 42px 1fr; border-radius: 0 0 18px 18px; }
    .studio-workspace > aside { gap: 14px; }
    .studio-workspace > aside b { width: 27px; height: 27px; }
    .studio-workspace > aside span { width: 16px; }
    .studio-canvas { padding: 14px; }
    .studio-hero-block { min-height: 160px; padding: 22px 18px; }
    .studio-hero-block strong { font-size: 17px; }
    .studio-card-row span { height: 52px; }
    .studio-settings { display: none; }
    .studio-badge { padding: 9px 10px; }
    .studio-badge-theme { top: 65px; left: -5px; }
    .studio-badge-cloud { right: -5px; bottom: 18px; }
    .studio-badge small { display: none; }
    .tech-strip-track { animation-duration: 18s; }
    .development-hosting-section { padding-top: 18px; }
    .development-hosting-panel { padding: 38px 24px 30px; border-radius: 22px; }
    .development-hosting-copy h2 { font-size: 29px; }
    .development-hosting-features { display: grid; gap: 9px; }
    .development-hosting-copy .button { width: 100%; }
    .development-hosting-visual { min-height: 300px; }
    .hosting-site-card { top: 25px; width: 178px; }
    .hosting-site-body { padding: 14px; }
    .hosting-site-body > div i { height: 54px; }
    .hosting-mini-rack { right: 0; bottom: 30px; width: 112px; padding: 10px; }
    .hosting-mini-rack > span { height: 34px; margin: 5px 0; }
    .hosting-mini-rack > span::after { top: 13px; right: 9px; }
    .hosting-transfer-line { right: 84px; left: 142px; }
    .hosting-online-badge { right: 16px; bottom: 0; }
    .tech-chip .wp-brand-mark { padding: 4px; }
    .testimonial-panel { grid-template-columns: 1fr; gap: 24px; padding: 38px 27px; }
    .testimonial-mark { margin-bottom: -8px; }
    .testimonial-metrics { grid-template-columns: 1fr; grid-template-rows: repeat(3, auto); gap: 28px; padding-top: 32px; }
    .testimonial-metric .metric-kicker,
    .testimonial-metric.metric-brazil .metric-kicker { font-size: clamp(18px, 5.5vw, 22px); }
    .testimonial-metric > strong { font-size: clamp(50px, 14vw, 58px); }
    .testimonial-metric.metric-uptime .metric-number { font-size: clamp(56px, 16vw, 66px); }
    .testimonial-metric.metric-uptime > strong { gap: 14px; }
    .testimonial-metric.metric-uptime > strong small { font-size: clamp(19px, 5.6vw, 23px); }
    .testimonial-metric.metric-brazil > strong { font-size: clamp(64px, 20vw, 78px); }
    .about-hero-grid { padding: 65px 0; }
    .about-hero .inner-hero-copy h1 { font-size: 38px; }
    .about-statement { padding: 36px 31px; }
    .about-statement > span { font-size: 25px; }
    .about-statement > strong { font-size: 38px; }
    .vision-orbit .vision-symbol { width: 276px; height: 223px; }
}

@media (max-width: 380px) {
    .about-statement { padding: 33px 27px; }
    .about-statement > strong { font-size: 32px; white-space: normal; }
    .testimonial-metric > strong { font-size: 48px; }
    .testimonial-metric.metric-uptime .metric-number { font-size: 54px; }
    .testimonial-metric.metric-uptime > strong { gap: 8px; }
    .testimonial-metric.metric-uptime > strong small { font-size: 18px; }
    .testimonial-metric.metric-brazil > strong { font-size: 66px; }
    .vision-visual { transform: scale(.62); }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .inner-hero::before,
    .status-hero::before,
    .hero-grid,
    .inner-hero-grid,
    .hero-atmosphere span,
    .hero-orb,
    .server-rack,
    .server-rack span::before,
    .data-line,
    .cloud-shape,
    .uptime-chip,
    .tech-chip,
    .floating-check,
    .floating-code,
    .floating-wp,
    .trust-marquee-track,
    .tech-strip-track,
    .live-indicator::before,
    .score-ring,
    .console-float,
    .price-badge,
    .dash-chart b,
    .architecture-link b,
    .architecture-bars span,
    .studio-hero-block::after,
    .studio-badge,
    .tech-panel::before,
    .migration-arrow,
    .migration-server.new > i,
    .process-grid::before,
    .process-icon,
    .status-dot,
    .hosting-site-card,
    .hosting-mini-rack,
    .hosting-mini-rack > span::after,
    .hosting-transfer-line i,
    .hosting-online-badge > i,
    .floating-whatsapp::after,
    .vision-symbol,
    .vision-orbit > i,
    .footer-main { animation: none !important; }
    .vision-orbit > i { transform: rotate(var(--orbit-start)) translateX(var(--orbit-radius)); }
    [data-depth] { translate: 0 0 !important; }
    .scroll-progress { display: none; }
}
