:root {
  --bg: #071224;
  --bg-soft: #0c1b33;
  --bg-card: rgba(255,255,255,0.06);
  --bg-card-strong: rgba(255,255,255,0.09);
  --text: #f5f7fb;
  --muted: #b7c3d8;
  --line: rgba(255,255,255,0.12);
  --primary: #22a6ff;
  --primary-strong: #146dff;
  --accent: #f4b942;
  --shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(34,166,255,0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(244,185,66,0.08), transparent 18%),
    linear-gradient(180deg, #06101f 0%, #081427 35%, #0a1630 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 16, 31, 0.76);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  /*width: 54px;*/
  height: 80px;
  object-fit: contain;
  /*border-radius: 12px;
  background: rgba(255,255,255,0.06);
  padding: 4px;*/
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a,
.lang-btn {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.site-nav a:hover,
.lang-btn:hover,
.lang-btn.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-btn {
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

.hero {
  padding: 82px 0 52px;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: #d6e5fa;
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.hero h1,
.section-heading h1,
.section-heading h2 {
  margin: 0 0 16px;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 12ch;
}

.hero p,
.section-heading p,
.info-card p,
.product-card p,
.contact-details p,
footer p,
small {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}





.hero{
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .container{
  position: relative;
  z-index: 2;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 720px;
}

.hero-copy{
  grid-column: 1 / 2;
  padding-right: 40px;
}

.hero-bg{
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;

  background: 
    linear-gradient(
      90deg,
      rgba(7,17,31,1) 0%,
      rgba(7,17,31,.72) 18%,
      rgba(7,17,31,.18) 42%,
      rgba(7,17,31,0) 62%
    ),
    url("../img/hero.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}






.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn-primary {
  color: #06101f;
  background: linear-gradient(135deg, var(--accent), #ffd36e);
  box-shadow: 0 12px 30px rgba(244,185,66,0.28);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.hero-highlights,
.about-grid,
.cards-grid,
.product-grid {
  display: grid;
  gap: 16px;
}

.hero-highlights {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.highlight-card,
.info-card,
.glass-card,
.mini-card,
.product-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-card,
.mini-card {
  padding: 18px;
}

.highlight-card strong,
.mini-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.hero-card,
.visual-block {
  padding: 22px;
}

.hero-card img,
.visual-block img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.alt-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-heading.center,
.center {
  text-align: center;
}

.section-heading.center.narrow,
.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.cards-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

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

.info-card {
  padding: 24px;
}

.info-card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(34,166,255,0.18), rgba(244,185,66,0.18));
  font-size: 1.2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.pricing-panel {
  padding: 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.price-row:last-of-type { border-bottom: 0; }
.price-row strong { color: var(--accent); }

.reverse-mobile { direction: ltr; }

.contact-section {
  padding-bottom: 96px;
}

.contact-form {
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

input::placeholder,
textarea::placeholder { color: #8da1bf; }
input:focus,
textarea:focus { border-color: rgba(34,166,255,0.5); }


.page-main .section { padding: 64px 0; }
.page-hero { padding-top: 86px !important; }
.compact-top { padding-top: 0 !important; }
.product-section h2 { margin-bottom: 22px; }

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid.one-column {
  grid-template-columns: 1fr;
}

.product-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 190px;
}

.product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.product-meta strong,
.price-tag {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
}

.price-tag small,
.product-meta span {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.desktop-only { display: flex; }

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .cards-grid,
  .product-grid,
  .hero-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 { max-width: none; }
}

@media (max-width: 780px) {
  .menu-toggle { display: inline-grid; place-items: center; }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(6, 16, 31, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open { display: flex; }
  .desktop-only { display: none; }

  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .lang-switch { margin-left: auto; }

  .hero-grid,
  .split-grid,
  .cards-grid,
  .product-grid,
  .hero-highlights,
  .about-grid,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .section {
    padding: 62px 0;
  }

  .footer-top,
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
  }
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 18%, transparent 82%, rgba(255,255,255,0.02));
}

.tone-1 { background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.015)); }
.tone-2 { background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.015)); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.tone-3 { background: linear-gradient(180deg, rgba(8,25,51,0.78), rgba(10,28,56,0.5)); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.tone-4 { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03)); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.tone-5 { background: linear-gradient(180deg, rgba(7,18,36,0.55), rgba(5,14,28,0.78)); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.tone-6 { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)); border-top: 1px solid rgba(255,255,255,0.05); }

.image-placeholder {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(34,166,255,0.16), transparent 22%),
    radial-gradient(circle at 80% 30%, rgba(244,185,66,0.14), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.12);
}
.placeholder-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}
.image-placeholder h3, .image-placeholder p { position: relative; z-index: 1; }
.image-placeholder h3 { margin: 0 0 10px; font-size: 1.6rem; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at top left, rgba(34,166,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(3,8,18,0.95), rgba(4,10,20,1));
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 26px;
  padding: 40px 0 26px;
}
.footer-branding p { max-width: 48ch; }
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.footer-logo {
 /* width: 54px;*/
  height: 100px;
  /*border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);*/
  padding: 4px;
}
.footer-logo-row strong {
  display: block;
  font-size: 1.05rem;
}
.footer-logo-row span,
.footer-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-column h4 {
  margin: 4px 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e5eefc;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a, .footer-top-link {
  color: var(--muted);
  transition: .2s ease;
}
.footer-links a:hover, .footer-top-link:hover { color: var(--text); }
.footer-meta {
  display: grid;
  gap: 10px;
}
.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,20,40,0.86);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 120;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: rgba(20,109,255,0.9); }


/* === Final visual adjustments requested === */

/* Larger image areas without rounded containers */
.hero-visual,
.split-grid > .image-placeholder,
.split-grid > .visual-block {
  align-self: stretch;
}

.hero-card,
.visual-block,
.image-placeholder {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.hero-card img,
.visual-block img {
  width: min(100%, 760px);
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.35));
}

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

.hero-card {
  width: min(54vw, 720px);
  margin-right: -4vw;
}

.split-grid > .image-placeholder,
.split-grid > .visual-block {
  width: min(54vw, 700px);
}

.split-grid > .image-placeholder {
  justify-self: end;
  margin-right: -4vw;
  min-height: 460px;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 18% 18%, rgba(34,166,255,0.22), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(244,185,66,0.16), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.split-grid > .image-placeholder::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(34,166,255,0.10), transparent 42%),
    linear-gradient(315deg, rgba(244,185,66,0.08), transparent 36%);
  opacity: 1;
}

.split-grid > .image-placeholder .placeholder-badge {
  top: 0;
  right: 0;
}

.split-grid > .visual-block {
  justify-self: start;
  margin-left: -4vw;
  display: flex;
  align-items: center;
}

.reverse-mobile .visual-block img,
.split-grid > .visual-block img {
  width: min(100%, 740px);
  max-height: 460px;
}

/* Hover effect on solution cards */
#solucoes .info-card {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

#solucoes .info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,166,255,0.28);
  background:
    linear-gradient(180deg, rgba(34,166,255,0.16), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.06);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.30);
}

#solucoes .info-card:hover .icon {
  background: linear-gradient(135deg, rgba(34,166,255,0.28), rgba(244,185,66,0.24));
}

#solucoes .info-card:nth-child(2):hover {
  border-color: rgba(244,185,66,0.30);
  background:
    linear-gradient(180deg, rgba(244,185,66,0.14), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.06);
}

#solucoes .info-card:nth-child(3):hover {
  border-color: rgba(20,109,255,0.30);
  background:
    linear-gradient(180deg, rgba(20,109,255,0.16), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.06);
}

#solucoes .info-card:nth-child(4):hover {
  border-color: rgba(34,166,255,0.30);
}

@media (max-width: 1200px){
  .hero-bg{
    width: 46%;
    background-position: center right;
  }
}

/* Tablet: bring visuals back into the flow */
@media (max-width: 1024px) {
  .hero-card,
  .split-grid > .image-placeholder,
  .split-grid > .visual-block {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 900px){
  .hero{
    min-height: auto;
    padding: 80px 0;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy{
    max-width: 100%;
    padding-right: 0;
    padding-bottom: 0;
  }

  .hero-bg{
    display: none;
  }

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

  .hero-actions .btn{
    width: 100%;
  }
  
  .visual-block,
  .image-placeholder,
  .hero-visual {
    display: none;
  }
  
  .hero-highlights{
    display: none;
  }
  
  #infra .visual-block{
    display:none;
  }
}

@media (max-width: 780px) {
  .hero-card,
  .visual-block,
  .image-placeholder {
    padding: 0;
  }

  .hero-card img,
  .visual-block img {
    max-height: 420px;
  }

  .split-grid > .image-placeholder {
    min-height: 320px;
  }
}

