﻿@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular-App.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Semibold-App.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Bold-App.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --green: #02DE7F;
  --green-soft: rgba(0, 220, 138, 0.24);
  --white: #f7fff9;
  --muted: rgba(247, 255, 249, 0.72);
  --line: rgba(247, 255, 249, 0.28);
  --panel: rgba(7, 18, 13, 0.34);
  --deep: #07120d;
  --content-max: 1900px;
  --content-width: min(var(--content-max), calc(100% - 14vw));
  --content-offset: max(7vw, calc((100vw - var(--content-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--deep);
  font-family: "Graphik", Arial, sans-serif;
  letter-spacing: 0;
}

.fixed-hero {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(90deg, rgba(3, 10, 7, 0.56), rgba(3, 10, 7, 0.12) 48%, rgba(3, 10, 7, 0.42)),
    var(--hero-desktop, url("../images/hero-abre.jpg"));
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: filter 420ms ease, transform 420ms ease;
}

body.is-scrolled .fixed-hero {
  filter: blur(9px) saturate(0.85);
  transform: scale(1.07);
}

.page-shade {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(4, 13, 9, 0.08), rgb(4 13 9 / 0%) 44%, rgb(4 13 9 / 0%));
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 10;
  display: flex;
  width: var(--content-width);
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 34px 0 34px 0;
  background: rgba(5, 19, 12, 0.26);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: min-height 260ms ease, padding 260ms ease, background 260ms ease;
}

body.is-scrolled .site-header {
  min-height: 64px;
  padding: 14px 18px;
}

.brand img,
.brand .custom-logo {
  display: block;
  width: 267px;
  max-width: 42vw;
  transition: width 260ms ease;
}

body.is-scrolled .brand img,
body.is-scrolled .brand .custom-logo {
  width: 178px;
}

nav {
  display: flex;
  gap: 8px;
}

nav .primary-menu {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-toggle {
  display: none;
}

nav a,
.contact-actions a {
  color: var(--white);
  text-decoration: none;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 18px 0 18px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

nav a.nav-cta,
nav .primary-menu > li:last-child > a {
  border-color: rgba(2, 222, 127, 0.72);
  border-radius: 999px;
  background: #00a960;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 169, 96, 0.18);
}

nav a.nav-cta:hover,
nav .primary-menu > li:last-child > a:hover {
  border-color: rgba(2, 222, 127, 0.9);
  background: #02DE7F;
  color: var(--white);
}

.section-full {
  min-height: 100vh;
}

.hero {
  display: grid;
  align-items: end;
  padding: 132px var(--content-offset) 88px;
}

.hero-content {
  width: min(620px, 100%);
}

.hero-title {
  width: min(620px, 100%);
  margin: 0;
  font-size: clamp(1.2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.02;
}

.hero-copy {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(247, 255, 249, 0.78);
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.55;
}

.hero-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 26px;
  border: 1px solid rgba(2, 222, 127, 0.72);
  border-radius: 999px;
  background: #00a960;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(0, 169, 96, 0.2);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-cta:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.content-section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 112px 0;
}

.offer-section {
  padding-bottom: 112px;
}

.solutions-cta-section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 10px 0 64px;
}

.services-section {
  padding-top: 112px;
  padding-bottom: 52px;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.glass-panel,
.service-card {
  border: 1px solid var(--line);
  border-radius: 50px 0 50px 0;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
  padding: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.about-image {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 255, 249, 0.22);
  border-radius: 58px 0 58px 0;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-text {
  display: grid;
  align-content: center;
  gap: 34px;
}

.about-panel h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3.84vw, 3.36rem);
  line-height: 0.98;
}

.about-panel h2 {
  margin: -14px 0 0;
  width: min(760px, 100%);
  color: var(--green);
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 600;
  line-height: 1.16;
}

.about-copy {
  display: grid;
  gap: 20px;
  color: var(--white);
  font-size: clamp(0.95rem, 1.18vw, 1.05rem);
  line-height: 1.58;
}

.about-copy p {
  margin: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 50px 0 50px 0;
  background: #00aa61;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.offer-image {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
}

.offer-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.offer-content {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: clamp(32px, 3.2vw, 54px);
}

.offer-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 1.85vw, 2.15rem);
  line-height: 1.06;
}

.offer-content p {
  width: min(720px, 100%);
  margin: 0;
  color: var(--white);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.55;
}

.offer-card:hover .offer-image img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.solutions-cta {
  display: flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 28px;
  border: 1px solid rgba(2, 222, 127, 0.74);
  border-radius: 999px;
  background: #00a960;
  box-shadow: 0 18px 48px rgba(2, 222, 127, 0.2);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: filter 180ms ease, transform 180ms ease;
}

.solutions-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transform: translateY(0);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 0%), rgba(0, 220, 138, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -65%;
  width: 48%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  transition: left 620ms ease;
}

.service-card:hover {
  border-color: rgba(0, 220, 138, 0.68);
  background: rgba(3, 24, 15, 0.52);
  box-shadow: 0 34px 110px rgba(0, 220, 138, 0.16), 0 26px 80px rgba(0, 0, 0, 0.3);
  transform: translateY(-10px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  left: 118%;
}

.service-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid var(--green-soft);
  border-radius: 50%;
  background: rgba(0, 220, 138, 0.08);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.service-card:hover .service-icon {
  border-color: rgba(0, 220, 138, 0.72);
  background: rgba(0, 220, 138, 0.18);
  transform: rotate(-4deg) scale(1.08);
}

.service-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.service-icon i {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.service-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.service-card h2 {
  margin: clamp(78px, 6.5vw, 112px) 0 18px;
  font-size: clamp(1.45rem, 2.2vw, 1rem);
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

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

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

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

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(32px, 6vw, 120px);
  padding: clamp(28px, 4vw, 46px);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.96;
}

.contact-copy {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.55;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links i {
  font-size: 1.25rem;
  line-height: 1;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  border-color: rgba(0, 220, 138, 0.68);
  background: rgba(0, 220, 138, 0.12);
  color: var(--green);
  transform: translateY(-2px);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label,
.contact-form-cf7 p {
  display: grid;
  gap: 8px;
  margin: 0;
}

.contact-form span,
.contact-form-cf7 label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 24px 0 24px 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  padding: 0 16px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0, 220, 138, 0.72);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(0, 220, 138, 0.12);
}

.contact-form button,
.contact-form input[type="submit"] {
  min-height: 54px;
  margin-top: 6px;
  border: 1px solid rgba(0, 220, 138, 0.72);
  border-radius: 999px;
  background: var(--green);
  color: #03110a;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: filter 180ms ease, transform 180ms ease;
}

.contact-form button:hover,
.contact-form input[type="submit"]:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.contact-form .wpcf7-spinner {
  margin: 8px 0 0;
}

.site-footer {
  display: flex;
  width: var(--content-width);
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--green);
}

.default-page {
  padding: clamp(28px, 4vw, 54px);
}

.default-page h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
}

.default-page-content {
  color: var(--white);
  line-height: 1.6;
}

body.page:not(.home) {
  background: #ffffff;
  color: #102018;
}

body.page:not(.home) .site-header {
  border-color: rgba(12, 32, 22, 0.12);
  background: rgba(4, 18, 11, 0.92);
  box-shadow: 0 18px 54px rgba(2, 18, 10, 0.12);
}

.internal-page-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 178px 0 86px;
}

.internal-page {
  color: #102018;
}

.internal-page-header {
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 32, 24, 0.16);
}

.internal-page-header h1 {
  margin: 0;
  color: #07120d;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.internal-page-content {
  color: #263b31;
  font-size: 1.04rem;
  line-height: 1.72;
}

.internal-page-content h2 {
  margin: 34px 0 12px;
  color: #07120d;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.16;
}

.internal-page-content p {
  margin: 0 0 18px;
}

body.page:not(.home) .site-footer {
  border-top-color: rgba(16, 32, 24, 0.14);
  color: rgba(16, 32, 24, 0.68);
}

body.page:not(.home) .site-footer a {
  color: #0b5f3b;
}

body.page:not(.home) .site-footer a:hover {
  color: #00a960;
}

@media (max-width: 820px) {
  :root {
    --content-width: calc(100% - 24px);
    --content-offset: 20px;
  }

  .fixed-hero {
    background-image:
      linear-gradient(90deg, rgba(3, 10, 7, 0.56), rgba(3, 10, 7, 0.12) 48%, rgba(3, 10, 7, 0.42)),
      var(--hero-mobile, url("../images/hero-abre-mobile.jpg"));
  }

  .site-header {
    top: 14px;
    align-items: center;
    border-radius: 30px 0 30px 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  nav {
    display: grid;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    gap: 8px;
    transition: max-height 260ms ease, opacity 200ms ease, padding-top 260ms ease;
  }

  nav .primary-menu {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
  }

  body.menu-open nav {
    max-height: 260px;
    opacity: 1;
    padding-top: 8px;
  }

  nav a {
    width: 100%;
    justify-content: center;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 170px;
    padding-bottom: 58px;
  }

  .content-section {
    padding: 76px 0;
  }

  .offer-section {
    padding-bottom: 76px;
  }

  .solutions-cta-section {
    width: var(--content-width);
    padding: 0 0 44px;
  }

  .services-section {
    padding-top: 76px;
    padding-bottom: 34px;
  }

  .about-panel,
  .offer-grid,
  .services-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .about-panel {
    gap: 30px;
  }

  .about-image {
    min-height: 320px;
    border-radius: 48px 0 48px 0;
  }

  .services-grid {
    display: grid;
  }

  .service-card {
    min-height: 260px;
  }

  .service-card h2 {
    margin-top: 54px;
  }

  .contact-panel {
    display: grid;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .internal-page-shell {
    width: calc(100% - 28px);
    padding-top: 154px;
    padding-bottom: 62px;
  }
}

@media (max-width: 460px) {
  :root {
    --content-width: calc(100% - 24px);
    --content-offset: 12px;
  }

  .brand img {
    width: 225px;
  }

  body.is-scrolled .brand img,
  body.is-scrolled .brand .custom-logo {
    width: 150px;
  }

  nav a {
    min-height: 32px;
    font-size: 0.7rem;
  }

  .glass-panel,
  .offer-card,
  .service-card {
    border-radius: 50px 0 50px 0;
  }
}

