:root {
  --blue: #0f3d91;
  --blue-2: #1859c9;
  --ink: #07111f;
  --text: #1d2633;
  --muted: #667085;
  --line: rgba(15, 33, 61, .10);
  --soft: #f5f8fc;
  --card: rgba(255,255,255,.82);
  --radius: 30px;
  --shadow: 0 24px 70px rgba(7, 17, 31, .10);
  --shadow-soft: 0 14px 44px rgba(7, 17, 31, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.brand strong {
  display: block;
  color: var(--ink);
  letter-spacing: .03em;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(7,17,31,.16);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 75% 10%, rgba(15,61,145,.13), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 54px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue);
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 16px;
}

.eyebrow.light {
  color: #b8d3ff;
}

h1 {
  font-size: clamp(52px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -.065em;
  margin: 0 0 24px;
  color: var(--ink);
}

h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.055em;
  color: var(--ink);
  margin: 0 0 18px;
}

h3 {
  color: var(--ink);
  letter-spacing: -.03em;
}

.hero-text {
  font-size: 21px;
  color: #4b5565;
  max-width: 620px;
  margin: 0 0 34px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 36px rgba(15,61,145,.24);
}

.btn-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 22px 44px rgba(15,61,145,.28);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  min-height: 530px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HERO DEVICE */

.device-card {
  width: min(100%, 570px);
  aspect-ratio: 1.12 / 1;
  border-radius: 48px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,245,255,.88)),
    radial-gradient(circle at 80% 20%, rgba(15,61,145,.18), transparent 35%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.92);
  transform: perspective(900px) rotateY(-5deg) rotateX(2deg);
}

.screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(135deg, #07111f, #0e2344);
  overflow: hidden;
  padding: 34px;
}

.screen::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% 20%;
  height: 340px;
  background: radial-gradient(circle, rgba(79,142,255,.45), transparent 60%);
}

.screen-bar {
  position: relative;
  width: 62%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin-bottom: 34px;
}

.screen-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.screen-grid span {
  height: 110px;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}

.status-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  color: var(--ink);
}

.status-card strong,
.status-card small {
  display: block;
}

.status-card small {
  color: var(--muted);
  margin-top: 4px;
}

/* TRUST */

.trust-strip {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-strip div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(7,17,31,.05);
}

.trust-strip strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

/* GENERAL SECTIONS */

section {
  padding: 92px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.method-text p,
.contact-copy p,
.lead {
  font-size: 19px;
  color: var(--muted);
  margin: 0;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 40px rgba(7,17,31,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover,
.service-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(15,61,145,.18);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 900;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* SERVICES */

.services,
.services-preview {
  background: var(--soft);
}

.service-grid,
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(7,17,31,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-image {
  height: 170px;
  background: #eef5ff;
  position: relative;
  overflow: hidden; 
}

.service-image::after {
  content: "";
  position: absolute;
  left: 105px;
  right: 105px;
  top: 70px;
  height: 10px;
  border-radius: 999px;
  background: #9dc2ff;
  box-shadow:
    0 28px 0 rgba(157,194,255,.78),
    0 56px 0 rgba(157,194,255,.45);
}

.service-image::after {
  content: "";
  position: absolute;
  left: 84px;
  right: 84px;
  top: 96px;
  height: 16px;
  border-radius: 999px;
  background: #9dc2ff;
  box-shadow:
    0 44px 0 rgba(157,194,255,.78),
    0 88px 0 rgba(157,194,255,.45);
}

.service-image.hardware {
  background: #eef5ff;
}

.service-image.network {
  background: #f6f9fc;
}

.service-image.network::after {
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blue);
  box-shadow:
    -120px 0 0 #fff,
    120px 0 0 #fff,
    0 -80px 0 rgba(157,194,255,.8),
    0 80px 0 rgba(157,194,255,.8);
}

.service-image.security::before {
  left: 50%;
  top: 38px;
  width: 170px;
  height: 190px;
  transform: translateX(-50%);
  border-radius: 90px 90px 34px 34px;
  background: var(--blue);
}

.service-image.security::after {
  left: 50%;
  top: 118px;
  width: 86px;
  height: 42px;
  transform: translateX(-50%) rotate(-45deg);
  background: transparent;
  border-left: 16px solid #fff;
  border-bottom: 16px solid #fff;
  border-radius: 0;
  box-shadow: none;
}

.service-image.data {
  background: #f6f9fc;
}

.service-image.data::before {
  content: "";
  position: absolute;
  inset: 54px 74px;
  border-radius: 32px;
  background: #07111f;
  box-shadow: 0 24px 60px rgba(7,17,31,.16);
}

.service-image.data::after {
  content: "";
  position: absolute;
  left: 115px;
  right: 115px;
  top: 92px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.95);
  box-shadow:
    0 64px 0 rgba(255,255,255,.82),
    0 128px 0 rgba(255,255,255,.62);
}

.service-body {
  padding: 28px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.service-body p {
  color: var(--muted);
  margin: 0;
}

.service-body a,
.link-more {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 850;
}

/* METHOD */

.method-grid,
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.steps,
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 0;
}

.step span,
.step-number {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 4px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* PREMIUM BAND */

.premium-band,
.cta {
  background:
    radial-gradient(circle at 80% 10%, rgba(143,183,255,.24), transparent 32%),
    linear-gradient(135deg, #07111f, #0f3d91);
  color: #fff;
}

.premium-grid,
.cta-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.premium-band h2,
.cta h2 {
  color: #fff;
}

.premium-list {
  display: grid;
  gap: 14px;
}

.premium-list p {
  margin: 0;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.contact-card {
  margin-top: 28px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-card strong,
.contact-card span {
  display: block;
}

.contact-card strong {
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-card span {
  color: var(--muted);
  margin-top: 6px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.contact-form textarea,
textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15,61,145,.45);
  box-shadow: 0 0 0 4px rgba(15,61,145,.08);
}

.form-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* PAGE HERO FOR INNER PAGES */

.page-hero {
  padding: 86px 0 56px;
  background: linear-gradient(180deg, #fff, #f7faff);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .lead {
  max-width: 760px;
}

.services-page {
  background: #fff;
}

/* PRICING */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.price-card.featured {
  border-color: rgba(15,61,145,.25);
  box-shadow: 0 22px 64px rgba(15,61,145,.14);
}

.price-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.price {
  font-size: 42px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.04em;
  margin-bottom: 14px;
}

.price-card p {
  color: var(--muted);
  margin: 0;
}

/* FAQ */

.faq-wrap {
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

/* LEGAL */

.legal-wrap {
  max-width: 920px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  font-size: 28px;
  margin: 34px 0 10px;
  letter-spacing: -.035em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
  margin: 0;
}

/* FOOTER */

.footer {
  background: #05070b;
  color: #fff;
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.footer .brand strong,
.footer h4 {
  color: #fff;
}

.footer .brand small,
.footer p,
.footer a {
  color: rgba(255,255,255,.66);
}

.footer p {
  max-width: 360px;
  margin-top: 18px;
}

.footer a {
  display: block;
  margin: 9px 0;
  transition: color .2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  font-size: 14px;
}

/* ANIMATIONS */

.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .method-grid,
  .premium-grid,
  .contact-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .device-card {
    transform: none;
  }

  .trust-strip,
  .cards-grid,
  .service-grid,
  .grid-3,
  .grid-4,
  .pricing,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 68px 0;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 74px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    padding-top: 58px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .device-card {
    border-radius: 34px;
    padding: 20px;
  }

  .screen {
    border-radius: 26px;
    padding: 24px;
  }

  .screen-grid span {
    height: 82px;
  }

  .status-card {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .contact-form,
  .steps,
  .panel,
  .legal-card {
    padding: 24px;
  }
}
.contact-card a {
  color: var(--blue);
  font-weight: 800;
}

.contact-card span {
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-row a {
  color: var(--blue);
  font-weight: 800;
}

.contact-icon {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.contact-icon svg {
  width: 10px;
  height: 10px;
  display: block;
}
/* FORÇAR TAMANHO PEQUENO DOS ÍCONES DE CONTATO */
.contact-card .contact-list .contact-row .contact-icon,
.contact-card .contact-list .contact-row .contact-icon svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  min-height: 14px !important;
  max-height: 14px !important;
  flex: 0 0 14px !important;
}

.contact-card .contact-list .contact-row {
  align-items: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}
.service-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

@media (max-width: 560px) {
  .service-photo {
    height: 190px;
  }
}
.hero-photo {
  width: 100%;
  max-width: 560px;
  height: 520px;
  object-fit: cover;
  border-radius: 46px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.9);
}

@media (max-width: 960px) {
  .hero-photo {
    height: 420px;
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-photo {
    height: 300px;
    border-radius: 30px;
  }
}
.contact-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 560px) {
  .contact-photo {
    height: 280px;
    border-radius: 28px;
  }
}
.contact-map {
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 33, 61, .10);
  background: #eef5ff;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: block;
  filter: grayscale(20%) contrast(105%) saturate(90%);
}

@media (max-width: 960px) {
  .contact-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .contact-map {
    border-radius: 28px;
  }

  .contact-map iframe {
    min-height: 320px;
  }
}
/* CONTACT PAGE — FINAL ORGANIZED LAYOUT */

.contact-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.contact-left,
.contact-right {
  display: grid;
  gap: 24px;
}

.contact-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 33, 61, .10);
}

.contact-card {
  margin-top: 0;
}

.contact-map {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 33, 61, .10);
  background: #eef5ff;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(20%) contrast(105%) saturate(90%);
}

.contact-right .contact-form {
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 15px;
}

.contact-row a {
  color: var(--blue);
  font-weight: 700;
}

.contact-icon {
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.contact-icon svg {
  width: 15px !important;
  height: 15px !important;
  display: block;
}

@media (max-width: 960px) {
  .contact-two-columns {
    grid-template-columns: 1fr;
  }

  .contact-photo,
  .contact-map {
    height: 360px;
  }
}

@media (max-width: 560px) {
  .contact-photo,
  .contact-map {
    height: 280px;
    border-radius: 28px;
  }
}
/* =====================================================
   CORREÇÃO FINAL VENTURALP
   Corrige páginas invisíveis + layout da página Contact
   ===================================================== */

/* Evita o site ficar vazio se o script.js não carregar */
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* Página Contact: esquerda imagem + contactos, direita mapa + formulário */
.contact-section-page {
  padding-top: 80px;
}

.contact-two-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 52px !important;
  align-items: start !important;
}

.contact-left,
.contact-right {
  display: grid !important;
  gap: 24px !important;
  min-width: 0;
}

.contact-photo {
  width: 100% !important;
  height: 420px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 38px !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid rgba(15, 33, 61, .10) !important;
}

.contact-card {
  margin-top: 0 !important;
}

.contact-map {
  width: 100% !important;
  height: 420px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  border-radius: 38px !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid rgba(15, 33, 61, .10) !important;
  background: #eef5ff !important;
}

.contact-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  display: block !important;
  filter: grayscale(20%) contrast(105%) saturate(90%);
}

.contact-right .contact-form {
  margin: 0 !important;
}

.contact-list {
  display: grid !important;
  gap: 10px !important;
  margin-top: 16px !important;
}

.contact-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  color: var(--muted) !important;
  line-height: 1.45 !important;
  font-size: 15px !important;
}

.contact-row a {
  color: var(--blue) !important;
  font-weight: 700 !important;
}

.contact-icon,
.contact-icon svg {
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  max-width: 15px !important;
  min-height: 15px !important;
  max-height: 15px !important;
  flex: 0 0 15px !important;
}

.contact-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: 3px !important;
}

.contact-icon svg {
  display: block !important;
}

/* Responsivo */
@media (max-width: 960px) {
  .contact-two-columns {
    grid-template-columns: 1fr !important;
  }

  .contact-photo,
  .contact-map {
    height: 360px !important;
    min-height: 360px !important;
  }

  .contact-map iframe {
    min-height: 360px !important;
  }
}

@media (max-width: 560px) {
  .contact-photo,
  .contact-map {
    height: 280px !important;
    min-height: 280px !important;
    border-radius: 28px !important;
  }

  .contact-map iframe {
    min-height: 280px !important;
  }
}
/* CORRIGIR LOGO */
.brand-logo {
  width: 74px !important;
  height: 74px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.16) !important;
}

/* CORRIGIR IMAGEM DO CONTACTO SEM CORTAR */
.contact-photo {
  width: 100% !important;
  height: 359px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #05070b !important;
  display: block !important;
  border-radius: 38px !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid rgba(15, 33, 61, .10) !important;
}
/* REDUZIR DISTÂNCIA ENTRE IMAGEM/CONTACTOS E MAPA/FORMULÁRIO */
.contact-two-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

.contact-left,
.contact-right {
  display: grid !important;
  gap: 24px !important;
}
/* IGUALAR DIMENSÕES DA IMAGEM CONTACT E DO MAPA */
.contact-photo,
.contact-map {
  height: 359px !important;
}

.contact-map iframe {
  height: 359px !important;
  min-height: 359px !important;
}

/* Mantém a imagem inteira sem cortar */
.contact-photo {
  object-fit: contain !important;
  object-position: center center !important;
  background: #05070b !important;
}

/* Mantém o mapa preenchendo o bloco */
.contact-map {
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 38px !important;
  box-shadow: var(--shadow-soft) !important;
  border: 1px solid rgba(15, 33, 61, .10) !important;
  background: #eef5ff !important;
}
.contact-two-columns {
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
}
/* MAPA COM A MESMA ALTURA DA IMAGEM CONTACT */
.contact-map {
  height: 359px !important;
  min-height: 359px !important;
  max-height: 359px !important;
}

.contact-map iframe {
  height: 359px !important;
  min-height: 359px !important;
  max-height: 359px !important;
}
/* HOME: contactos e formulário lado a lado */
.home-contact-two {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.home-contact-two .contact-card,
.home-contact-two .contact-form {
  height: 100% !important;
  margin-top: 0 !important;
}

.home-contact-two .contact-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: stretch !important;
}

@media (max-width: 960px) {
  .home-contact-two {
    grid-template-columns: 1fr !important;
  }
}
/* HOME CONTACT: contactos à esquerda, formulário à direita */
.home-contact-two {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.home-contact-left {
  display: grid !important;
  gap: 18px !important;
}

.home-contact-left .contact-card {
  margin-top: 0 !important;
  height: 100% !important;
}

.home-contact-two .contact-form {
  height: 100% !important;
  align-self: stretch !important;
}

@media (max-width: 960px) {
  .home-contact-two {
    grid-template-columns: 1fr !important;
  }
}
/* HOME CONTACT: contactos à esquerda, formulário à direita */
.home-contact-two {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.home-contact-left {
  display: grid !important;
  gap: 18px !important;
}

.home-contact-left .contact-card {
  margin-top: 0 !important;
  height: 100% !important;
}

.home-contact-two .contact-form {
  height: 100% !important;
  align-self: stretch !important;
}

@media (max-width: 960px) {
  .home-contact-two {
    grid-template-columns: 1fr !important;
  }
}
.home-contact-two {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.home-contact-left {
  display: grid !important;
  gap: 18px !important;
}

.home-contact-left .contact-card {
  margin-top: 0 !important;
  height: 100% !important;
}

.home-contact-two .contact-form {
  height: 100% !important;
  align-self: stretch !important;
}

@media (max-width: 960px) {
  .home-contact-two {
    grid-template-columns: 1fr !important;
  }
}
/* TARIFS 2026 */
.tarifs-section {
  background: #fff;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tarif-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.tarif-card.featured {
  border-color: rgba(15,61,145,.22);
  box-shadow: 0 22px 64px rgba(15,61,145,.12);
}

.tarif-card h3 {
  margin: 0 0 18px;
  font-size: 23px;
}

.tarif-list {
  display: grid;
  gap: 12px;
}

.tarif-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.tarif-list p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.tarif-list strong {
  color: var(--ink);
  font-weight: 850;
  text-align: right;
  white-space: nowrap;
}

.price-custom {
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  white-space: normal !important;
}

.tarif-card.maintenance {
  background: linear-gradient(135deg, #07111f, #0f3d91);
  color: #fff;
}

.tarif-card.maintenance h3,
.tarif-card.maintenance p {
  color: #fff;
}

.tarif-highlight {
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 12px 0;
}

@media (max-width: 1100px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .tarifs-grid {
    grid-template-columns: 1fr;
  }

  .tarif-list p {
    flex-direction: column;
    gap: 2px;
  }

  .tarif-list strong {
    text-align: left;
  }
}
/* AJUSTE FINAL LOGO + TEXTO DA MARCA */

/* Logo topo: sombra curta e discreta */
.site-header .brand-logo {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16) !important;
}

/* Logo rodapé: sombra branca suave */
.footer .brand-logo {
    width:58px;
    height:58px;
    box-shadow: 0 2px 4px rgb(245, 243, 243.22) !important;
}

.brand strong{
    font-size:25px;
    letter-spacing:.04em;
}

.brand small{
    font-size:12px;
    margin-top:3px;
}

/* Nome VenturAlp maior e alinhado com o subtítulo */
.brand span {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1 !important;
}

.brand strong {
  font-size: 28px !important;
  line-height: .95 !important;
  letter-spacing: .035em !important;
   gap:20px;
}

.brand small {
  font-size: 15px !important;
  line-height: 0.95 !important;
  margin-top: 6px !important;
  letter-spacing: .01em !important;
}

/* Ajuste específico no rodapé */
.footer .brand strong {
  font-size: 22px !important;
}

.footer .brand small {
  font-size: 12px !important;
}
/* Espaço entre a logo e o texto SOMENTE no rodapé */
.footer-brand {
    gap: 20px !important;
}
/* RODAPÉ: subir a logo em relação ao nome */
.footer .footer-brand .brand-logo {
  transform: translateY(-8px) !important;
}
/* SELETOR DE IDIOMA */
.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding: 5px;
  border: 1px solid rgba(15,61,145,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-decoration: none;
}

.language-switch a:hover {
  color: var(--blue);
  background: rgba(15,61,145,.08);
}

.language-switch .active-lang {
  color: #fff !important;
  background: var(--blue);
}

.footer .language-switch {
  display: none;
}

@media (max-width: 860px) {
  .language-switch {
    width: 100%;
    justify-content: center;
    margin: 10px 0 4px;
  }

  .language-switch a {
    flex: 1;
  }
}
/* =========================================
   RESPONSIVO GLOBAL — VENTURALP
   Desktop: 3 colunas
   Tablet: 2 colunas
   Mobile: 1 coluna
========================================= */

/* Grades principais com cartões */
.cards-grid,
.service-grid,
.tarifs-grid,
.pricing {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .cards-grid,
  .service-grid,
  .tarifs-grid,
  .pricing {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Celular */
@media (max-width: 680px) {
  .cards-grid,
  .service-grid,
  .tarifs-grid,
  .pricing {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================
   CONTACTO / FORMULÁRIOS
   Desktop: 2 colunas
   Mobile: 1 coluna
========================================= */

.contact-two-columns,
.home-contact-two,
.contact-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

/* Tablet pequeno e celular */
@media (max-width: 900px) {
  .contact-two-columns,
  .home-contact-two,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================
   HERO / SEÇÕES COM DUAS COLUNAS
   Desktop: 2 colunas
   Mobile: 1 coluna
========================================= */

.hero-grid,
.method-grid,
.premium-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 40px !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  .hero-grid,
  .method-grid,
  .premium-grid {
    grid-template-columns: 1fr !important;
  }
}