: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(1300px, calc(100% - 30px));
  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: 92px;
  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: .98fr 1.2fr;
  align-items: start !important;
  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
========================================= */

.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) {
  .method-grid,
  .premium-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==============================
   FUNDO GLOBAL COM GLOW SUAVE
============================== */

body {
  position: relative;
  background:
    linear-gradient(rgba(248,251,255,.92), rgba(248,251,255,.96)),
    url("../assets/img/swiss-tech-bg.webp") center / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  left: 70%;
  top: 35%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,170,255,.20), transparent 70%);
  filter: blur(90px);
  opacity: .25;
  pointer-events: none;
  z-index: -1;
  animation: globalGlow 12s ease-in-out infinite;
}

@keyframes globalGlow {
  0%, 100% {
    opacity: .18;
    transform: translate(-50%, -50%) scale(.95);
  }

  50% {
    opacity: .38;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.hero,
.page-hero,
.services,
.services-preview,
.tarifs-section,
.contact-section {
  background: transparent !important;
}

/* ==============================
   TEXTO MAIS LEGÍVEL
============================== */

h1,
h2 {
  text-shadow:
    0 2px 8px rgba(7, 17, 31, .10),
    0 12px 32px rgba(15, 61, 145, .12);
}

p,
.lead,
.hero-text,
.section-head p,
.card p,
.service-body p,
.method-text p,
.contact-row,
.contact-card span {
  color: #2f3a4a;
}

.site-header .brand small {
  color: #1f2937 !important;
}

.footer .brand small {
  color: rgba(255,255,255,.75) !important;
}

.site-header .brand strong {
  color: #07111f !important;
}

.footer .brand strong {
  color: #ffffff !important;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.66) !important;
}

/* ==============================
   HERO FINAL — QUADRO FIXO POR IDIOMA
   Base visual igual ao index IT
============================== */

.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 700px !important;
  gap: 40px !important;
  align-items: start !important;
  min-height: 560px !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  min-height: 430px !important;
}

.hero-visual {
  width: 700px !important;
  min-width: 700px !important;
  max-width: 700px !important;
  height: 430px !important;
  min-height: 430px !important;
  max-height: 430px !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  position: relative !important;
  overflow: visible !important;
  padding-top: 0 !important;
}

.hero-animation {
  position: relative !important;
  width: 700px !important;
  min-width: 700px !important;
  max-width: 700px !important;
  height: 430px !important;
  min-height: 430px !important;
  max-height: 430px !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #020914 !important;
  box-shadow: var(--shadow) !important;
  transform: translateY(var(--hero-box-y, 38px));
}

.hero-photo,
.hero-photo-animated {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  transform-origin: center center !important;
  animation: imageFloat 10s ease-in-out infinite !important;
  will-change: transform, filter;
}

@keyframes imageFloat {
  0%, 100% {
    transform: scale(1.03);
    filter: brightness(1.05);
  }

  50% {
    transform: scale(1.26);
    filter: brightness(1.18);
  }
}

.hero-glow {
  position: absolute !important;
  width: 160px !important;
  height: 160px !important;
  border-radius: 50% !important;
  background: rgba(0, 170, 255, .30) !important;
  filter: blur(60px) !important;
  pointer-events: none !important;
  z-index: 2 !important;
  animation: heroGlowSoft 10s ease-in-out infinite !important;
}

.hero-glow-1 {
  top: 18%;
  left: 18%;
}

.hero-glow-2 {
  top: 48%;
  left: 55%;
  animation-delay: 2s !important;
}

.hero-glow-3 {
  bottom: 12%;
  right: 15%;
  animation-delay: 4s !important;
}

@keyframes heroGlowSoft {
  0%, 100% {
    opacity: .25;
    transform: scale(.9);
  }

  50% {
    opacity: .55;
    transform: scale(1.12);
  }
}

/* Ajuste vertical separado por idioma.
   Aumente o valor = quadro desce.
   Diminua o valor = quadro sobe. */
html[lang="fr"] { --hero-box-y: 38px; }
html[lang="it"] { --hero-box-y: 38px; }
html[lang="en"] { --hero-box-y: 38px; }
html[lang="de"],
html[lang="de-CH"] { --hero-box-y: 38px; }

/* ==============================
   ANIMAÇÕES PREMIUM — CARDS E BOTÕES
============================== */

.service-card,
.card,
.tarif-card,
.faq-item,
.legal-card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  will-change: transform;
}

.service-card:hover,
.card:hover,
.tarif-card:hover,
.faq-item:hover,
.legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 61, 145, 0.18);
  border-color: rgba(0, 180, 255, 0.28);
}

.service-card {
  overflow: hidden;
}

.service-card img,
.service-photo {
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.service-card:hover img,
.service-card:hover .service-photo {
  transform: scale(1.045);
  filter: brightness(1.08) contrast(1.05);
}

.btn,
.nav-cta,
.service-body a {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.btn:hover,
.nav-cta:hover,
.service-body a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 61, 145, 0.28);
}

.btn::after,
.nav-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transition: left 0.65s ease;
}

.btn:hover::after,
.nav-cta:hover::after {
  left: 120%;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 600px !important;
  }

  .hero-visual,
  .hero-animation {
    width: 600px !important;
    min-width: 600px !important;
    max-width: 600px !important;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-content {
    min-height: auto !important;
  }

  .hero-visual {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 700px !important;
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    margin: 0 auto !important;
  }

  .hero-animation {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 700px !important;
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 560px) {
  .hero-visual,
  .hero-animation {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }

  .hero-animation {
    border-radius: 24px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
.info-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-left: 6px;
  border-radius: 50%;
  background: #0F3D91;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: help;
  vertical-align: middle;
}

.info-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: 140%;
  transform: translateX(-50%);
  width: min(320px, 80vw);
  padding: 12px 14px;
  border-radius: 14px;
  background: #0b1220;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 50;
}

.info-tip:hover::after,
.info-tip:focus::after {
  opacity: 1;
  visibility: visible;
}

.info-tip::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #0b1220;
  opacity: 0;
  visibility: hidden;
  z-index: 51;
}

.info-tip:hover::before,
.info-tip:focus::before {
  opacity: 1;
  visibility: visible;
}
/* ===== Tooltip VenturAlp ===== */

.info-tip{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:15px;
    height:15px;
    margin-left:5px;

    border-radius:50%;
    background:#0F3D91;
    color:#fff;

    font-size:10px;
    font-weight:800;
    font-family:Arial, sans-serif;
    font-style:normal;
    line-height:1;

    cursor:help;
    flex-shrink:0;
    transition:.25s;
}

.info-tip:hover{
    background:#1656c4;
    transform:scale(1.08);
}

.info-tip::after{

    content:attr(data-tip);

    position:absolute;

    bottom:135%;
    left:50%;

    transform:translateX(-50%);

    width:310px;
    max-width:75vw;

    padding:14px 16px;

    background:#111827;
    color:white;

    border-radius:14px;

    font-size:.82rem;
    font-weight:400;
    line-height:1.5;

    box-shadow:0 18px 40px rgba(0,0,0,.28);

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transition:.25s;

    z-index:9999;

    text-align:left;
}

.info-tip::before{

    content:"";

    position:absolute;

    bottom:120%;
    left:50%;

    transform:translateX(-50%);

    border:7px solid transparent;
    border-top-color:#111827;

    opacity:0;
    visibility:hidden;

    transition:.25s;
}

.info-tip:hover::after,
.info-tip:hover::before,
.info-tip:focus::after,
.info-tip:focus::before{

    opacity:1;
    visibility:visible;
}
.price-name{

    display:inline-flex;

    align-items:center;

    gap:5px;
}
.tarif-list p.tarif-separator{
    border-top:4px solid rgba(15,61,145,.30);

    border-bottom:none;

    margin-top:16px;
    padding-top:16px;
    padding-bottom:0;
}

.tarif-list p.tarif-separator + p{
    border-top:none;
}
.tarif-list p.tarif-separator{
    position:relative;

    border:none;

    margin-top:16px;
    padding-top:18px;
}

.tarif-list p.tarif-separator {
  position: relative;
  border-top: none !important;
  border-bottom: 1px solid rgba(15, 61, 145, 0.12);
  margin-top: 16px;
  padding-top: 18px;
}

.tarif-list p.before-separator {
  border-bottom: none !important;
  padding-bottom: 18px;
}

.tarif-list p.tarif-separator {
  position: relative;
  border-top: none !important;
  border-bottom: 1px solid rgba(15, 61, 145, 0.12);
  margin-top: 10px;
  padding-top: 28px;
  padding-bottom: 12px;
}

.tarif-list p.tarif-separator::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: rgba(15, 61, 145, 0.30);
  border-radius: 2px;
}
.price-name {
  display: inline;
  max-width: 70%;
  line-height: 1.45;
}

.price-name .info-tip {
  margin-left: 4px;
  vertical-align: baseline;
  transform: translateY(-1px);
}

/* =========================================================
   HERO INTERNO — SERVICES E TARIFS
   Layout inspirado na Home, em formato mais compacto.
   ========================================================= */

.page-hero.page-hero-split {
  padding: 86px 0 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(75, 136, 255, .12), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  align-items: center;
  gap: 64px;
}

.page-hero-copy {
  position: relative;
  z-index: 3;
}

.page-hero.page-hero-split h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: .98;
  margin-bottom: 22px;
}

.page-hero.page-hero-split .lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.65;
}

.page-hero-visual {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-animation {
  position: relative;
  width: min(100%, 500px);
  isolation: isolate;
  animation: pageHeroFloat 7s ease-in-out infinite;
}

.page-hero-photo {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow:
    0 32px 70px rgba(13, 38, 78, .18),
    0 10px 28px rgba(15, 61, 145, .12);
  transform: perspective(1000px) rotateY(-4deg) rotateX(1.5deg);
}

.page-hero-glow {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
  animation: pageHeroGlow 9s ease-in-out infinite;
}

.page-hero-glow-1 {
  width: 190px;
  height: 190px;
  right: -38px;
  top: -35px;
  background: rgba(49, 114, 229, .22);
}

.page-hero-glow-2 {
  width: 135px;
  height: 135px;
  left: -34px;
  bottom: -30px;
  background: rgba(77, 160, 255, .18);
  animation-delay: -3s;
}

.page-hero-glow-3 {
  width: 86px;
  height: 86px;
  right: 15%;
  bottom: -38px;
  background: rgba(15, 61, 145, .15);
  animation-delay: -5s;
}

@keyframes pageHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes pageHeroGlow {
  0%, 100% { transform: scale(1); opacity: .78; }
  50% { transform: scale(1.13); opacity: 1; }
}

@media (max-width: 900px) {
  .page-hero.page-hero-split {
    padding: 64px 0 54px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .page-hero-visual {
    min-height: 0;
  }

  .page-hero-animation {
    width: min(100%, 590px);
  }

  .page-hero-photo {
    transform: none;
  }
}

@media (max-width: 560px) {
  .page-hero.page-hero-split {
    padding: 48px 0 44px;
  }

  .page-hero.page-hero-split h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .page-hero-grid {
    gap: 30px;
  }

  .page-hero-photo {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-animation,
  .page-hero-glow {
    animation: none !important;
  }
}


/* =========================================================
   CONTACT V1.0.2 — IMAGEM PREENCHIDA + CAPTCHA
   ========================================================= */

.contact-photo {
  width: 100% !important;
  height: 359px !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
}

.contact-captcha {
  margin: 10px 0 4px;
  padding: 16px;
  border: 1px solid rgba(15, 61, 145, .18);
  border-radius: 16px;
  background: #f5f8fd;
}

.contact-captcha strong {
  display: block;
  margin-bottom: 9px;
  color: var(--navy);
}

.contact-captcha label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
}

.contact-captcha .captcha-question {
  color: var(--blue);
  font-weight: 800;
}

.contact-captcha input[type="number"] {
  margin: 0;
  max-width: 180px;
}


/* =========================================================
   HOTFIX V1.0.3 — CAPTCHA AJAX E TOOLTIP TARIFS
   ========================================================= */

.contact-form-status {
  display: none;
  margin: 8px 0 14px;
  padding: 13px 15px;
  border-radius: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form-status.error {
  display: block;
  color: #8a1f2d;
  background: #fff0f2;
  border: 1px solid #f1b7c0;
}

.contact-form-status.reset {
  background: #fff5df;
  border-color: #e8c878;
  color: #74510a;
}

.contact-form [type="submit"]:disabled {
  opacity: .65;
  cursor: wait;
}

.tarifs-grid,
.tarif-card {
  overflow: visible !important;
}

.tarif-card {
  position: relative;
  z-index: 1;
}

.tarif-card:hover,
.tarif-card:focus-within {
  z-index: 200 !important;
}

.tarif-card .info-tip,
.tarif-card .info-tip::before,
.tarif-card .info-tip::after {
  z-index: 10000 !important;
}


/* =========================================================
   HOTFIX V1.0.5 — ALINHAMENTO SUPERIOR DA PÁGINA CONTACT
   ========================================================= */

.contact-two-columns {
  align-items: start !important;
}

.contact-left,
.contact-right {
  align-self: start !important;
  height: auto !important;
}

.contact-left > *,
.contact-right > * {
  align-self: start;
}

.contact-card,
.contact-form,
.contact-map,
.contact-photo {
  margin-top: 0 !important;
}


/* =========================================================
   AVIS CLIENTS — HOME
   ========================================================= */

.testimonials-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(48, 112, 223, .08), transparent 26%),
    #f7faff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 25px;
  border: 1px solid rgba(15, 61, 145, .11);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(13, 38, 78, .08);
}

.testimonial-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.testimonial-top strong,
.testimonial-top span {
  display: block;
}

.testimonial-top strong {
  color: var(--navy);
  font-size: 1rem;
}

.testimonial-top span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .88rem;
}

.testimonial-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 7px 18px rgba(15, 61, 145, .15);
}

.testimonial-initials {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f3d91, #4f8bf2);
  color: #fff;
  font-weight: 800;
}

.testimonial-stars {
  display: flex;
  gap: 1px;
  margin: 19px 0 14px;
  color: #f4b400;
  font-size: 1.18rem;
  letter-spacing: 1px;
}

.testimonial-stars-empty {
  color: #dfe4ec;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: #364154;
  font-size: 1rem;
  line-height: 1.72;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid #e8edf4;
}

.testimonial-source {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef3fa;
  color: #445064;
  font-size: .78rem;
  font-weight: 700;
}

.testimonial-source.google {
  background: #eef5ff;
  color: #1769aa;
}

.testimonial-footer a {
  font-size: .85rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .testimonials-section {
    padding: 66px 0;
  }

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