@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --text: #0f141a;
  --muted: #55606d;
  --line: #d7e0e6;
  --brand: #12773d;
  --brand-strong: #0d5e31;
  --ink: #0f1a24;
  --accent: #2ea8ff;
  --card: #f7fbff;
  --soft-green: #edf8f0;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-lg: 0 22px 46px rgba(14, 24, 36, 0.12);
  --shadow-md: 0 12px 24px rgba(14, 24, 36, 0.08);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

body {
  margin: 0 !important;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, #eaf5ff 0%, transparent 40%),
    radial-gradient(circle at 90% 0%, #eaf7ef 0%, transparent 36%),
    #ffffff;
  line-height: 1.65;
}

body.admin-bar {
  margin-top: 0 !important;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1160px, 92vw); margin: 0 auto; }

.top-strip {
  background: linear-gradient(90deg, #09131d 0%, #10283c 70%, #10331f 100%);
  color: #e7f0f8;
  font-size: .86rem;
}
.top-strip__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.topbar {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.brand img {
  width: 152px;
  height: 152px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0;
}
.brand__text {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .2s ease;
  display: inline-flex;
}
.nav a:hover,
.nav a.active {
  background: #f0f6fb;
  border-color: #d6e2eb;
  color: #0f3557;
}
.nav .current-menu-item > a,
.nav .current_page_item > a {
  background: #f0f6fb;
  border-color: #d6e2eb;
  color: #0f3557;
}

.hero { padding: 42px 0 20px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

.hero__copy {
  background: #fff;
  border: 1px solid #dbe5ec;
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__copy::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -65px;
  top: -65px;
  background: radial-gradient(circle, rgba(46, 168, 255, 0.2), rgba(18, 119, 61, 0.08));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eaf7ef, #eef7ff);
  color: var(--brand-strong);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

h1,h2,h3,h4 {
  font-family: 'Sora', sans-serif;
  margin-top: 0;
  color: #0d1217;
  line-height: 1.08;
}
.hero h1,
.page-intro h1 {
  margin: 14px 0 16px;
  font-size: clamp(2.05rem, 3.2vw, 3.4rem);
}
.hero p,
.page-intro p,
.lead,
.value-card p,
.service-card p,
.contact-card p,
.step p { color: var(--muted); }

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(90deg, var(--brand), #17a353);
  color: #fff;
  box-shadow: 0 10px 20px rgba(18, 119, 61, 0.25);
}
.btn--ghost {
  background: #fff;
  border-color: #d2dee8;
}
.btn--ghost:hover { border-color: #9db3c4; }

.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius-xl);
  border: 1px solid #d6e1e9;
  box-shadow: var(--shadow-md);
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 12, 20, 0.5) 100%);
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  font-weight: 600;
}

.section { padding: 52px 0; }
.section h2 {
  font-size: clamp(1.8rem,2.4vw,2.6rem);
  margin: 0 0 10px;
}
.section-title {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--brand), var(--accent)) 1;
  margin-bottom: 12px;
}

.values {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.value-card {
  background: #fff;
  border: 1px solid #d7e2ea;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}
.value-card h3 { font-size: 1.35rem; margin: 0 0 7px; }

.process {
  margin-top: 24px;
  border: 1px solid #d8e4eb;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f5faff 0%, #f8fcf8 100%);
  padding: 24px;
}
.process h3 { font-size: 1.6rem; margin: 0 0 12px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.step {
  background: #fff;
  border: 1px solid #d6e1e8;
  border-radius: var(--radius-md);
  padding: 14px;
}
.step span {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0d5f9b;
}
.step h4 { margin: 6px 0; font-size: 1.1rem; }

.gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #d6e1e8;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255,255,255,.88);
  border: 1px solid #d6e2ea;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .8rem;
}

.page-intro { padding: 40px 0 8px; }

.page-content { max-width: 820px; margin-top: 16px; }
.page-content__card {
  background: #fff;
  border: 1px solid #d7e2ea;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.about-hero {
  padding: 46px 0 10px;
}
.about-hero__inner {
  max-width: 900px;
}
.about-hero__inner h1 {
  font-size: clamp(2.05rem, 3.1vw, 3.2rem);
  margin: 12px 0 14px;
}
.about-hero__inner p {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
  max-width: 65ch;
}
.about-highlight {
  padding-top: 24px;
}
.about-vertical {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.about-vertical__block {
  background: #fff;
  border: 1px solid #d8e3ea;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.about-vertical__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #0f4f82;
  background: #eaf4ff;
  border: 1px solid #d7e7f4;
}
.about-vertical__content h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.about-vertical__content p {
  margin: 0;
  color: var(--muted);
}
.about-timeline-section {
  padding-top: 10px;
}
.about-timeline {
  background: #fff;
  border: 1px solid #d7e2ea;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  max-width: 920px;
  margin: 0 auto;
}
.about-timeline h2 {
  margin: 0 0 14px;
  font-size: 1.72rem;
}
.about-timeline__items {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.about-timeline__item {
  border: 1px solid #dce6ee;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: #fbfdff;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.about-timeline__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0f1a24;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
}
.about-timeline__item h3 {
  margin: 2px 0 6px;
  font-size: 1.12rem;
  grid-column: 2;
}
.about-timeline__item p {
  margin: 0;
  color: var(--muted);
  grid-column: 2;
}
.about-cta-section {
  padding-top: 0;
}
.about-cta {
  border: 1px solid #17354a;
  border-radius: var(--radius-lg);
  background: linear-gradient(100deg, #0f1f2f 0%, #0d3551 100%);
  color: #f4f8fc;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.about-cta__kicker {
  margin: 0 0 10px;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9fc6e4;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.about-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #ffffff;
}
.about-cta p {
  margin: 0;
  max-width: 62ch;
  color: #d3e2ee;
}
.about-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.services-grid {
  padding: 18px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.services-grid > .service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
  justify-self: center;
}
.service-card {
  border: 1px solid #d7e3ea;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.service-card img { width: 100%; height: 238px; object-fit: cover; }
.service-card__body { padding: 18px; }
.service-card h2 { font-size: 1.45rem; margin: 0 0 8px; }
.service-card__meta {
  margin: 10px 0 0;
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #d4e0e9;
  background: #f5f9fc;
  color: #3d4d5d;
  font-size: .82rem;
  font-weight: 700;
}
.service-card__image-link {
  position: relative;
  display: block;
}
.service-card__image-link::after {
  content: 'Ampliar';
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: .76rem;
  font-weight: 700;
  color: #fff;
  background: rgba(12, 24, 38, 0.72);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 5px 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: .2s ease;
}
.service-card__image-link:hover::after,
.service-card__image-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-lightbox[hidden] { display: none; }
.service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.service-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.86);
  backdrop-filter: blur(4px);
}
.service-lightbox__content {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(92vw, 1080px);
  max-height: 88vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.36);
}
.service-lightbox__content img {
  width: 100%;
  height: auto;
  max-height: calc(88vh - 56px);
  object-fit: contain;
  background: #111;
}
.service-lightbox__content figcaption {
  padding: 10px 14px;
  font-size: .95rem;
  color: #384555;
  background: #fff;
}
.service-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  background: rgba(0,0,0,.62);
}
.service-lightbox__close:hover {
  background: rgba(0,0,0,.8);
}
.service-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  background: rgba(0,0,0,.56);
}
.service-lightbox__nav:hover {
  background: rgba(0,0,0,.78);
}
.service-lightbox__nav--prev {
  left: 10px;
}
.service-lightbox__nav--next {
  right: 10px;
}
.service-lightbox__count {
  float: right;
  color: #68788a;
  font-weight: 600;
}

.promise {
  margin-top: 8px;
  border: 1px solid #cfe0d7;
  border-radius: var(--radius-lg);
  background: var(--soft-green);
  padding: 22px;
}

.contact-layout {
  padding: 20px 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-card,
.form-card {
  border: 1px solid #d7e2ea;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 22px;
}
.contact-card h2,
.form-card h2 { font-size: 1.75rem; margin: 0 0 10px; }

.form-card .wpcf7 form {
  margin-top: 8px;
}
.form-card .wpcf7 p {
  margin: 0 0 14px;
}
.form-card .wpcf7 label {
  display: block;
  font-weight: 600;
  color: #1a2430;
  margin-bottom: 6px;
}
.form-card .wpcf7 input[type="text"],
.form-card .wpcf7 input[type="email"],
.form-card .wpcf7 input[type="tel"],
.form-card .wpcf7 textarea {
  width: 100%;
  border: 1px solid #cfdde7;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #1b2733;
  background: #fbfdff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card .wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}
.form-card .wpcf7 input:focus,
.form-card .wpcf7 textarea:focus {
  border-color: #88b2cf;
  box-shadow: 0 0 0 3px rgba(46, 168, 255, 0.14);
}
.form-card .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, var(--brand), #17a353);
  box-shadow: 0 10px 20px rgba(18, 119, 61, 0.22);
  transition: transform .2s ease, filter .2s ease;
}
.form-card .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
}
.form-card .wpcf7 .wpcf7-not-valid-tip {
  font-size: .86rem;
  margin-top: 6px;
}
.form-card .wpcf7 form .wpcf7-response-output {
  margin: 10px 0 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: .92rem;
}

.contact-list { list-style: none; margin: 14px 0; padding: 0; }
.contact-list li { margin-bottom: 13px; }
.contact-list--icons .label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.contact-list--icons .label i {
  color: #0f4f82;
  font-size: .92rem;
}
.label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #62707f;
  margin-bottom: 3px;
}
.contact-map {
  margin-top: 16px;
}
.contact-map h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.contact-map h3 i {
  color: #0f4f82;
}
.contact-map__embed {
  border: 1px solid #d5e0e8;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}
.contact-map__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-note {
  margin-top: 14px;
  color: var(--muted);
}
.reviews-fullwidth {
  padding: 0 0 56px;
}
.reviews-fullwidth__inner {
  width: min(1320px, 96vw);
}
.reviews-fullwidth .ti-widget,
.reviews-fullwidth .ti-widget-container,
.reviews-fullwidth [class*="trustindex"] {
  width: 100% !important;
  max-width: 100% !important;
}

.legal-hero {
  padding-bottom: 12px;
}
.legal-hero__inner {
  max-width: 900px;
}
.legal-page {
  padding-top: 16px;
}
.legal-page__inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.legal-card {
  background: #fff;
  border: 1px solid #d8e3ea;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px 22px;
}
.legal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
.legal-card p {
  margin: 0 0 10px;
  color: var(--muted);
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  margin: 0 0 10px;
  padding-left: 20px;
  color: var(--muted);
}
.legal-card ul:last-child {
  margin-bottom: 0;
}
.legal-card li + li {
  margin-top: 6px;
}

.field { margin-bottom: 11px; }
.field label { display: block; font-weight: 600; margin-bottom: 5px; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfdde7;
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
  background: #fbfdff;
}
.field textarea { min-height: 130px; resize: vertical; }

.footer {
  border-top: 1px solid #d7e1e8;
  background: #fff;
  margin-top: 20px;
}
.footer__inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  color: #4f5a66;
  font-size: .9rem;
}
.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
}
.footer__legal a {
  color: #1d4f74;
  font-weight: 600;
  white-space: nowrap;
}
.footer__legal a:hover {
  color: #0f3557;
  text-decoration: underline;
}
.footer__legal [aria-hidden] {
  color: #c0ccd6;
}

.reveal { animation: fadeUp .6s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero__grid,
  .contact-layout,
  .process-grid,
  .about-timeline__items { grid-template-columns: 1fr; }
  .values { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure { aspect-ratio: 4 / 3; }
  .hero__media { min-height: 280px; }
  .about-timeline__item { grid-template-columns: 1fr; }
  .about-timeline__item h3,
  .about-timeline__item p { grid-column: auto; }
}

@media (max-width: 640px) {
  .top-strip__inner,
  .topbar__inner { flex-direction: column; align-items: center; }
  .nav { width: 100%; justify-content: center; flex-wrap: nowrap; gap: 4px; }
  .nav a { font-size: .82rem; padding: 6px 9px; }
  .brand img { width: 122px; height: 122px; }
  .section { padding: 36px 0; }
  .hero { padding: 28px 0 16px; }
  .hero__copy { padding: 22px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure { aspect-ratio: 16 / 11; }
  .services-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .about-vertical__block { grid-template-columns: 1fr; gap: 12px; }
.service-lightbox__content { width: 95vw; border-radius: 10px; }
  .service-lightbox__nav { top: auto; bottom: 66px; transform: none; }
}

