:root {
  --teal: #008b8f;
  --teal-dark: #006c72;
  --teal-soft: #e8f7f6;
  --orange: #f4a300;
  --orange-dark: #dd8f00;
  --navy: #14344f;
  --ink: #17202a;
  --muted: #65717d;
  --surface: #ffffff;
  --background: #f5f8fa;
  --line: #dce6e9;
  --shadow: 0 18px 50px rgba(20, 52, 79, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

svg {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 83% 22%, rgba(244, 163, 0, 0.24), transparent 26%),
    linear-gradient(135deg, #006f76 0%, #008f93 54%, #0c596c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: var(--background);
  clip-path: polygon(0 75%, 100% 0, 100% 100%, 0 100%);
}

.hero__shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hero__shape--one {
  width: 430px;
  height: 430px;
  right: -160px;
  top: -90px;
}

.hero__shape--two {
  width: 250px;
  height: 250px;
  left: -100px;
  bottom: 50px;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  padding-block: 86px 145px;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 390px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgba(0, 39, 53, 0.32);
  backdrop-filter: blur(12px);
}

.brand__logo {
  width: min(100%, 430px);
  max-height: 330px;
  object-fit: contain;
}

.eyebrow,
.section-heading__kicker,
.project-banner__kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffe1a3;
}

.hero h1 {
  max-width: 690px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero__text > p {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button:focus-visible,
.contact-card a:focus-visible,
.brand:focus-visible,
.footer a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.button--primary {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 35, 45, 0.2);
}

.button--primary:hover {
  box-shadow: 0 16px 42px rgba(0, 35, 45, 0.28);
}

.button--secondary {
  color: #fff;
  background: var(--navy);
}

.button--secondary:hover {
  background: #0b263d;
}

.contact-section {
  padding: 55px 0 110px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 42px;
}

.section-heading__line {
  width: 5px;
  height: 70px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: linear-gradient(var(--orange), var(--teal));
}

.section-heading__kicker {
  color: var(--teal-dark);
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.contact-card {
  grid-column: span 2;
  position: relative;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(20, 52, 79, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.contact-card:nth-child(4),
.contact-card:nth-child(5) {
  grid-column: span 3;
}

.contact-card::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--teal-soft);
  transition: transform 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 139, 143, 0.35);
  box-shadow: var(--shadow);
}

.contact-card:hover::before {
  transform: scale(1.15);
}

.contact-card__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  color: #fff;
  background: linear-gradient(145deg, var(--teal), var(--teal-dark));
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(0, 139, 143, 0.24);
}

.contact-card__icon svg {
  width: 29px;
  height: 29px;
}

.contact-card__label {
  margin: 0 0 6px;
  color: var(--orange-dark);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
}

.contact-card__email {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-card__action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
}

.contact-card__action span {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
}

.contact-card:hover .contact-card__action span {
  transform: translateX(5px);
}

.project-banner {
  padding: 0 0 110px;
}

.project-banner__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
  padding: clamp(32px, 6vw, 70px);
  color: #fff;
  background:
    radial-gradient(circle at 15% 30%, rgba(244, 163, 0, 0.18), transparent 35%),
    var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(20, 52, 79, 0.2);
}

.project-banner__visual {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 25px;
  background: #fff;
  border-radius: 22px;
}

.project-banner__visual img {
  width: min(100%, 400px);
  max-height: 300px;
  object-fit: contain;
}

.project-banner__kicker {
  color: #72dad7;
}

.project-banner h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.project-banner__text > p:not(.project-banner__kicker) {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
}

.footer {
  padding: 55px 0 22px;
  color: rgba(255, 255, 255, 0.75);
  background: #0c263b;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 36px;
}

.footer p {
  margin: 0;
}

.footer__name {
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__links a {
  color: #8fe2df;
  font-weight: 700;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}


.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button--phone {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.button--phone:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button--whatsapp {
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(10, 110, 52, 0.25);
}

.button--whatsapp:hover {
  background: #1dbb59;
  box-shadow: 0 16px 38px rgba(10, 110, 52, 0.32);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float svg {
  width: 33px;
  height: 33px;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  background: #1dbb59;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

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

  .hero__content,
  .project-banner__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding-top: 55px;
    text-align: center;
  }

  .brand {
    min-height: 280px;
  }

  .brand__logo {
    max-height: 235px;
  }

  .hero__text > p {
    margin-inline: auto;
  }

  .contact-card,
  .contact-card:nth-child(4),
  .contact-card:nth-child(5) {
    grid-column: span 3;
  }

  .project-banner__text {
    text-align: center;
  }

  .project-banner__text > p {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .hero::after {
    height: 55px;
  }

  .hero__content {
    gap: 34px;
    padding-bottom: 95px;
  }

  .brand {
    min-height: 220px;
    padding: 20px;
    border-radius: 22px;
  }

  .brand__logo {
    max-height: 190px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  .contact-section {
    padding-top: 35px;
    padding-bottom: 75px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading__line {
    height: 58px;
  }

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

  .contact-card,
  .contact-card:nth-child(4),
  .contact-card:nth-child(5) {
    grid-column: auto;
    min-height: 285px;
    padding: 25px;
  }

  .project-banner {
    padding-bottom: 75px;
  }

  .project-banner__inner {
    padding: 22px;
    border-radius: 22px;
  }

  .project-banner__visual {
    min-height: 250px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
