:root {
  --navy-950: #050b22;
  --navy-900: #07112f;
  --navy-800: #0b1d3a;
  --navy-700: #12325c;
  --blue-600: #1479d4;
  --cyan-400: #23c8f3;
  --sky-100: #eaf5ff;
  --sky-50: #f6fbff;
  --green-500: #08d94f;
  --green-600: #05b842;
  --white: #ffffff;
  --ink: #10213a;
  --muted: #66758a;
  --border: rgba(16, 33, 58, 0.12);
  --shadow-sm: 0 12px 32px rgba(8, 25, 55, 0.10);
  --shadow-lg: 0 32px 80px rgba(2, 15, 40, 0.24);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--sky-50);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-space {
  padding: 110px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(5, 11, 34, .92);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand img,
.footer-brand img {
  width: 86px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--white);
  font-size: .93rem;
  font-weight: 700;
}

.main-nav > a:not(.phone-button) {
  position: relative;
  padding: 12px 0;
}

.main-nav > a:not(.phone-button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan-400);
  transition: right .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
  right: 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  stroke: var(--white);
  stroke-width: 1.7;
}

.social-links svg rect,
.social-links svg circle:not(.fill-dot) {
  fill: none;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid rgba(255,255,255,.84);
  border-radius: 12px;
  background: var(--green-500);
  color: #03150a;
  box-shadow: 0 10px 30px rgba(8,217,79,.2);
  transition: transform .2s ease, background .2s ease;
}

.phone-button:hover {
  transform: translateY(-2px);
  background: #15ea5a;
}

.phone-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 14%, rgba(35,200,243,.14), transparent 26%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, #0c2242 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  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: 52px 52px;
  mask-image: linear-gradient(to bottom, black 0, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: center;
  padding: 98px 0 110px;
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}

.hero-glow-one {
  left: -220px;
  bottom: -260px;
  background: var(--blue-600);
}

.hero-glow-two {
  right: -200px;
  top: 10px;
  background: var(--cyan-400);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cyan-400);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.about h2 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3rem, 6.2vw, 5.25rem);
  font-weight: 800;
}

.hero-subtitle {
  margin: 24px 0 0;
  color: #bfddfa;
  font-size: clamp(1.02rem, 2vw, 1.42rem);
  font-weight: 700;
  letter-spacing: .055em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.button-primary {
  background: var(--green-500);
  color: #03150a;
  box-shadow: 0 14px 34px rgba(8,217,79,.22);
}

.button-primary:hover {
  background: #16ea5d;
  box-shadow: 0 18px 44px rgba(8,217,79,.30);
}

.button-secondary {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.10);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  color: #c8d7e9;
  font-size: .87rem;
}

.hero-proof > div {
  position: relative;
  padding-left: 24px;
}

.hero-proof > div::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-400);
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
}

.brand-panel {
  position: relative;
  width: min(100%, 580px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: var(--shadow-lg);
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  pointer-events: none;
}

.brand-panel img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(7,17,47,.83);
  color: #eaf5ff;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  font-size: .8rem;
  font-weight: 700;
}

.floating-card-top {
  top: 55px;
  right: -12px;
}

.floating-card-bottom {
  left: -26px;
  bottom: 60px;
}

.floating-card svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: var(--cyan-400);
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(8,217,79,.15);
}

.brands {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.brands-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 34px;
  border: 1px solid rgba(16,33,58,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
}

.brand-word {
  display: grid;
  place-items: center;
  min-height: 40px;
  color: #30435e;
  font-weight: 800;
  text-align: center;
}

.brand-word.hp {
  color: #0aa8da;
  font-size: 1.5rem;
  font-style: italic;
}

.brand-word.brother {
  color: #295eaa;
  font-size: .8rem;
}

.brand-word.canon {
  color: #d31327;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.brand-word.samsung {
  color: #0b4299;
  font-size: .68rem;
  font-style: italic;
}

.brand-word.epson {
  color: #1e4d9a;
  font-size: .82rem;
}

.brand-word.elgin {
  color: #00a7dc;
  font-size: 1rem;
}

.brand-word.bematech {
  color: #455063;
  font-size: .7rem;
}

.media-section {
  background:
    radial-gradient(circle at 85% 18%, rgba(35,200,243,.11), transparent 28%),
    var(--sky-50);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 58px;
  align-items: center;
}

.section-heading h2,
.about h2 {
  color: var(--navy-900);
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 800;
}

.video-shell {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  aspect-ratio: 16 / 9;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.media-cta {
  margin-top: 26px;
}

.gallery-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 18px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery-card-large {
  grid-row: 1 / 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #dbe8f5;
}

.about::before {
  content: "";
  position: absolute;
  right: -240px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35,200,243,.18), transparent 65%);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 80px;
  align-items: center;
}

.about h2 {
  color: #bcd7ff;
  margin-bottom: 30px;
}

.about-copy p {
  margin: 0 0 24px;
  max-width: 700px;
  font-size: 1.03rem;
}

.highlight-copy {
  padding: 24px;
  border: 1px solid rgba(35,200,243,.18);
  border-left: 4px solid var(--cyan-400);
  border-radius: 0 16px 16px 0;
  background: rgba(255,255,255,.04);
}

.about-visual {
  position: relative;
}

.image-frame {
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.08);
  border-radius: 80px 22px 80px 22px;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  left: -34px;
  bottom: -30px;
  width: 155px;
  height: 155px;
  display: grid;
  place-content: center;
  border: 8px solid var(--navy-900);
  border-radius: 50%;
  background: var(--cyan-400);
  color: var(--navy-950);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.experience-badge strong {
  font-size: 2.8rem;
  line-height: 1;
}

.experience-badge span {
  max-width: 100px;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
}

.testimonials {
  position: relative;
  background:
    linear-gradient(rgba(4,9,25,.92), rgba(4,9,25,.95)),
    repeating-linear-gradient(125deg, transparent 0 18px, rgba(255,255,255,.03) 18px 20px),
    var(--navy-950);
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 25px;
  top: 8px;
  color: rgba(35,200,243,.18);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.stars {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  color: #ffd86b;
  font-size: 1.15rem;
  letter-spacing: .12em;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  color: #d7e1ed;
  font-size: .96rem;
  font-style: italic;
}

.customer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.customer img {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(35,200,243,.35);
  border-radius: 50%;
  object-fit: cover;
}

.customer strong {
  color: var(--white);
  font-size: .92rem;
}

.contact {
  background: linear-gradient(180deg, #e8f4ff 0%, #f7fbff 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: .9fr 1.15fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(16,33,58,.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.contact-details,
.contact-action {
  padding: 42px;
}

.contact-details h2,
.contact-action h2 {
  margin: 0 0 20px;
  color: var(--navy-900);
  font-size: 1.22rem;
  line-height: 1.3;
}

.contact-details p,
.contact-action p {
  margin: 0 0 14px;
}

.contact-details address {
  margin-top: 22px;
  font-style: normal;
}

.location-note {
  margin-top: 30px !important;
  color: var(--muted);
  font-size: .86rem;
  font-style: italic;
}

.map-shell {
  min-height: 450px;
  background: #cfe5f7;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.contact-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(145deg, #f4f9ff, #e5f2ff);
  text-align: center;
}

.contact-action p {
  color: #3d536e;
  font-style: italic;
}

.contact-action .button {
  width: 100%;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--navy-950);
  color: #b7c6d9;
}

.footer-inner {
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin: 0;
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: #0abf62;
  box-shadow: 0 16px 36px rgba(3,45,25,.26);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: var(--white);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .social-links {
    display: none;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .gallery-column {
    max-width: 800px;
  }

  .contact-shell {
    grid-template-columns: 1fr 1fr;
  }

  .contact-action {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .contact-action .button {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 820px) {
  .section-space {
    padding: 82px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    max-height: calc(100vh - 84px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 24px 20px 34px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(5,11,34,.98);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav > a:not(.phone-button) {
    padding: 14px 2px;
  }

  .social-links {
    display: flex;
    margin: 10px 0;
  }

  .phone-button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 80px;
    padding-bottom: 110px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .brand-panel {
    max-width: 620px;
  }

  .floating-card-top {
    right: 10px;
  }

  .floating-card-bottom {
    left: 10px;
  }

  .brands-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-visual {
    max-width: 600px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-action {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .contact-action .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img,
  .footer-brand img {
    width: 76px;
    height: 56px;
  }

  .main-nav {
    inset: 76px 0 auto 0;
    max-height: calc(100vh - 76px);
  }

  .hero-grid {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .hero-visual {
    min-height: 290px;
  }

  .floating-card {
    display: none;
  }

  .brands {
    margin-top: -36px;
  }

  .brands-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
  }

  .gallery-column {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 260px 260px;
  }

  .gallery-card-large {
    grid-row: auto;
  }

  .experience-badge {
    left: 12px;
    bottom: -40px;
    width: 130px;
    height: 130px;
  }

  .image-frame img {
    min-height: 360px;
  }

  .testimonial-card,
  .contact-details,
  .contact-action {
    padding: 26px;
  }

  .map-shell,
  .map-shell iframe {
    min-height: 330px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* =========================================================
   Página Notebook/Desktop
   ========================================================= */
.computer-page {
  background: #f3f8fe;
}

.computer-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(4, 12, 40, .98) 0%, rgba(7, 17, 47, .96) 52%, rgba(10, 46, 86, .94) 100%),
    radial-gradient(circle at 78% 38%, rgba(35, 200, 243, .28), transparent 28%);
}

.computer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to right, black, transparent 86%);
}

.computer-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  z-index: -1;
  background: linear-gradient(to top, rgba(35, 200, 243, .08), transparent);
}

.computer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
  pointer-events: none;
}

.computer-orb-one {
  width: 400px;
  height: 400px;
  left: -160px;
  top: 80px;
  background: #1d4ed8;
}

.computer-orb-two {
  width: 480px;
  height: 480px;
  right: -150px;
  bottom: -100px;
  background: #22d3ee;
}

.computer-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
  padding: 90px 0 105px;
}

.computer-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(3rem, 5.7vw, 5.9rem);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.computer-hero-copy h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px #29c4f3;
  text-shadow: 0 0 42px rgba(35, 200, 243, .22);
}

.computer-hero-subtitle {
  max-width: 570px;
  margin: 25px 0 0;
  color: #b8d9f8;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: .07em;
}

.computer-hero-visual {
  position: relative;
  min-height: 505px;
  display: grid;
  place-items: center;
}

.computer-hero-visual > img {
  position: relative;
  z-index: 2;
  width: min(790px, 115%);
  max-width: none;
  transform: translateX(1.5%);
  filter: drop-shadow(0 35px 60px rgba(0, 0, 0, .22));
}

.device-halo {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 200, 243, .28), rgba(35, 200, 243, .04) 55%, transparent 72%);
  filter: blur(6px);
}

.repair-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(5, 11, 34, .76);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .24);
  color: #dff8ff;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.repair-chip span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-500);
  color: #06210f;
}

.repair-chip-one {
  top: 88px;
  right: 30px;
}

.repair-chip-two {
  left: 50px;
  bottom: 86px;
}

.device-solution {
  position: relative;
  overflow: hidden;
}

.device-solution::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -220px;
  bottom: -170px;
  border-radius: 50%;
  background: rgba(20, 121, 212, .08);
}

.device-solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 75px;
  align-items: center;
}

.device-showcase-panel {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 121, 212, .12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 54% 42%, rgba(35, 200, 243, .22), transparent 35%),
    linear-gradient(145deg, #e8f5ff 0%, #d7eafa 52%, #f8fbff 100%);
  box-shadow: var(--shadow-lg);
}

.device-showcase-panel::before,
.device-showcase-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20, 121, 212, .14);
}

.device-showcase-panel::before {
  width: 390px;
  height: 390px;
}

.device-showcase-panel::after {
  width: 500px;
  height: 500px;
}

.device-showcase-panel img {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: 760px;
}

.device-showcase-label {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(7, 17, 47, .1);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy-900);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.solution-card {
  position: relative;
  padding: 48px;
  border: 1px solid rgba(7, 17, 47, .08);
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(var(--cyan-400), var(--blue-600));
}

.solution-card h2,
.quote-copy h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.solution-card > p {
  margin: 24px 0 0;
  color: #33455f;
}

.solution-card h3 {
  margin: 28px 0 0;
  color: var(--blue-600);
  font-size: 1.28rem;
}

.problem-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 10px 14px 10px 42px;
  border-radius: 12px;
  background: #f4f8fc;
  color: #1b2d45;
  font-weight: 700;
}

.problem-list li::before {
  content: "✓";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 217, 79, .16);
  color: #07913a;
  font-size: .78rem;
  font-weight: 900;
}

.solution-button {
  margin-top: 30px;
}

.solution-card .phone-copy {
  margin-top: 16px;
  font-size: .92rem;
}

.phone-copy a {
  color: var(--blue-600);
  font-weight: 800;
}

.quote-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(35, 200, 243, .18), transparent 28%),
    linear-gradient(135deg, #050b22 0%, #07112f 56%, #0d2b4f 100%);
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.quote-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 128px;
}

.quote-copy h2 {
  color: var(--white);
}

.quote-contact-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 38px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.quote-contact-line span {
  color: #a8c9e9;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-contact-line strong {
  font-size: 1.55rem;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.field-group {
  display: grid;
  gap: 9px;
}

.field-group-full {
  grid-column: 1 / -1;
}

.field-group label {
  color: #e7f4ff;
  font-size: .88rem;
  font-weight: 800;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background: rgba(255, 255, 255, .095);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field-group input {
  height: 56px;
  padding: 0 17px;
}

.field-group textarea {
  min-height: 145px;
  padding: 15px 17px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--cyan-400);
  background: rgba(255, 255, 255, .13);
  box-shadow: 0 0 0 4px rgba(35, 200, 243, .13);
}

.quote-submit {
  min-width: 150px;
  border: 0;
  cursor: pointer;
}

.computer-footer {
  padding: 75px 0 0;
  color: #d7e8fa;
  background: #030817;
}

.computer-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 65px;
  padding-bottom: 55px;
}

.computer-footer-about p {
  max-width: 340px;
  margin: 20px 0 0;
  color: #9fb7cf;
}

.computer-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.computer-footer-contact p {
  margin: 7px 0;
  color: #a8bed4;
}

.computer-footer a:hover {
  color: var(--cyan-400);
}

.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.computer-footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7891aa;
  font-size: .84rem;
}

.computer-footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .computer-hero-grid,
  .device-solution-grid,
  .quote-layout {
    gap: 42px;
  }

  .computer-hero-visual > img {
    width: 120%;
  }

  .solution-card {
    padding: 38px;
  }
}

@media (max-width: 820px) {
  .computer-hero {
    min-height: auto;
  }

  .computer-hero-grid,
  .device-solution-grid,
  .quote-layout,
  .computer-footer-grid {
    grid-template-columns: 1fr;
  }

  .computer-hero-grid {
    padding-top: 76px;
  }

  .computer-hero-copy {
    text-align: center;
  }

  .computer-hero-copy .eyebrow,
  .computer-hero-copy .hero-actions {
    justify-content: center;
  }

  .computer-hero-copy h1,
  .computer-hero-subtitle {
    margin-inline: auto;
  }

  .computer-hero-visual {
    min-height: 380px;
  }

  .computer-hero-visual > img {
    width: min(760px, 118%);
    transform: none;
  }

  .repair-chip-one {
    right: 8%;
  }

  .repair-chip-two {
    left: 8%;
  }

  .device-showcase {
    order: 2;
  }

  .device-showcase-panel {
    min-height: 440px;
  }

  .quote-copy {
    position: static;
  }

  .computer-footer-grid {
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .computer-hero-grid {
    padding-bottom: 70px;
  }

  .computer-hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .computer-hero-copy h1 span {
    -webkit-text-stroke-width: 1.5px;
  }

  .computer-hero-subtitle {
    font-size: 1rem;
    letter-spacing: .035em;
  }

  .computer-hero-visual {
    min-height: 270px;
  }

  .repair-chip {
    display: none;
  }

  .device-showcase-panel {
    min-height: 330px;
    border-radius: 25px;
  }

  .solution-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .solution-card::before {
    border-radius: 24px 0 0 24px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .field-group-full {
    grid-column: auto;
  }

  .quote-submit {
    width: 100%;
  }

  .computer-footer {
    padding-top: 55px;
  }
}


/* =========================================================
   Refinamentos visuais – atualização elegante da marca
   ========================================================= */
.site-header {
  box-shadow: 0 10px 30px rgba(3, 10, 28, 0.22);
}

.brand img,
.footer-brand img {
  width: 92px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.hero-copy {
  max-width: 640px;
}

.hero-subtitle {
  color: #d7e7f8;
}

.hero-proof {
  gap: 14px;
}

.hero-proof > div {
  padding: 12px 18px 12px 38px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
}

.hero-proof > div::before {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-visual {
  min-height: 500px;
}

.hero-visual-shell {
  position: relative;
  width: min(100%, 560px);
  padding: 28px;
}

.hero-visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(35, 200, 243, 0.16);
  pointer-events: none;
}

.hero-visual-ring-one {
  inset: 12px 22px auto auto;
  width: 130px;
  height: 130px;
}

.hero-visual-ring-two {
  inset: auto auto 6px 6px;
  width: 220px;
  height: 220px;
}

.brand-panel-clean {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: 0 30px 70px rgba(0,0,0,.22);
}

.brand-panel-clean::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(35,200,243,.10);
  pointer-events: none;
}

.brand-panel-clean img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: contain;
  background: transparent;
  transform: none;
}

.brands-row,
.gallery-card,
.testimonial-card,
.solution-card,
.quote-form,
.device-showcase-panel,
.image-frame {
  box-shadow: 0 18px 44px rgba(3, 17, 47, 0.12);
}

.media-section {
  background: linear-gradient(180deg, rgba(234,245,255,.9), rgba(246,251,255,1));
}

.section-heading h2,
.about h2,
.solution-card h2,
.quote-copy h2 {
  letter-spacing: -0.05em;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
}

.whatsapp-float {
  box-shadow: 0 16px 34px rgba(8,217,79,.24);
}

@media (max-width: 820px) {
  .hero-visual-shell {
    width: min(100%, 460px);
    margin-inline: auto;
    padding: 18px;
  }

  .brand-panel-clean {
    border-radius: 24px;
  }

  .brand-panel-clean::before {
    inset: 10px;
    border-radius: 16px;
  }

  .hero-proof {
    justify-content: center;
  }
}

/* =========================================================
   Atualização 2026-08 — mídia, galeria e avaliações
   ========================================================= */

/* Vídeos com apresentação limpa e consistente */
.video-shell {
  border-width: 6px;
  box-shadow: 0 26px 65px rgba(4, 18, 46, .18);
}

/* Avaliações em caixa horizontal rolável (ambas as páginas) */
.testimonials {
  padding-block: 88px;
}

.testimonial-scroll-shell {
  position: relative;
  padding: 74px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(35,200,243,.10), transparent 28%),
    rgba(255,255,255,.035);
  box-shadow: 0 28px 70px rgba(0,0,0,.20);
}

.review-controls {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.review-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(35,200,243,.45);
  background: rgba(35,200,243,.12);
}

.testimonials-grid.review-track {
  display: grid;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, calc((100% - 24px) / 2));
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(35,200,243,.55) rgba(255,255,255,.07);
}

.testimonials-grid.review-track::-webkit-scrollbar {
  height: 8px;
}

.testimonials-grid.review-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}

.testimonials-grid.review-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.review-track .testimonial-card {
  min-height: 330px;
  scroll-snap-align: start;
}

.customer-initial {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 3px solid rgba(35,200,243,.35);
  border-radius: 50%;
  background: linear-gradient(145deg, #12325c, #1479d4);
  color: #fff;
  font-weight: 800;
}

/* Página Notebook/Desktop — vídeo + galeria organizada */
.computer-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(20,121,212,.12), transparent 30%),
    linear-gradient(180deg, #eef7ff 0%, #f9fcff 100%);
}

.computer-media::before {
  content: "";
  position: absolute;
  right: -170px;
  top: 90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(20,121,212,.10);
  border-radius: 50%;
}

.computer-media-inner {
  position: relative;
  z-index: 2;
}

.computer-media-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}

.computer-media-heading .eyebrow {
  justify-content: center;
}

.computer-media-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.computer-video-wrap {
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.computer-video-shell {
  margin-top: 0;
  border-radius: 26px;
}

.computer-video-wrap .media-cta {
  margin-top: 22px;
}

.computer-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.computer-gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 5px solid #fff;
  border-radius: 22px;
  background: #d9e9f7;
  box-shadow: 0 18px 44px rgba(3,17,47,.13);
}

.computer-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5,11,34,.12), transparent 42%);
  opacity: .45;
  transition: opacity .3s ease;
}

.computer-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.computer-gallery-card:hover img {
  transform: scale(1.045);
}

.computer-gallery-card:hover::after {
  opacity: .2;
}

.computer-about {
  border-top: 1px solid rgba(255,255,255,.06);
}

/* O formulário da página de computadores alterna para um bloco claro,
   separando visualmente Sobre / Avaliações sem sair da mesma paleta. */
.computer-page .quote-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(35,200,243,.13), transparent 28%),
    linear-gradient(145deg, #edf7ff 0%, #f8fbff 100%);
}

.computer-page .quote-section::before {
  opacity: .24;
  background-image:
    linear-gradient(rgba(20,121,212,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,121,212,.08) 1px, transparent 1px);
}

.computer-page .quote-copy h2 {
  color: var(--navy-900);
}

.computer-page .quote-contact-line {
  border-color: rgba(7,17,47,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
}

.computer-page .quote-contact-line span {
  color: var(--blue-600);
}

.computer-page .quote-form {
  border-color: rgba(7,17,47,.10);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-lg);
}

.computer-page .field-group label {
  color: var(--navy-900);
}

.computer-page .field-group input,
.computer-page .field-group textarea {
  border-color: rgba(7,17,47,.12);
  background: #f5f9fd;
  color: var(--ink);
}

.computer-page .field-group input:focus,
.computer-page .field-group textarea:focus {
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(20,121,212,.10);
}

@media (max-width: 820px) {
  .testimonial-scroll-shell {
    padding: 70px 18px 22px;
    border-radius: 24px;
  }

  .testimonials-grid.review-track {
    grid-auto-columns: minmax(285px, 86%);
  }

  .computer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .testimonials {
    padding-block: 68px;
  }

  .review-controls {
    right: 16px;
  }

  .testimonials-grid.review-track {
    grid-auto-columns: 92%;
    gap: 14px;
  }

  .review-track .testimonial-card {
    min-height: 360px;
  }

  .computer-gallery {
    grid-template-columns: 1fr;
  }

  .computer-gallery-card {
    aspect-ratio: 4 / 3;
  }
}
