:root {
  --blue: #0B5CAD;
  --blue-bright: #1479D4;
  --green: #48A116;
  --whatsapp: #25D366;
  --sofa-gray: #6B7280;
  --soft: #F4F7F9;
  --soft-blue: #EDF6FD;
  --soft-green: #EFF8F2;
  --white: #FFFFFF;
  --text: #0F172A;
  --border: #DDE7EE;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 12px 32px rgba(11, 92, 173, 0.09);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(20, 121, 212, 0.08), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(72, 161, 22, 0.08), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, #F6FAFC 44%, #FFFFFF 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
  scroll-margin-top: 92px;
  position: relative;
}

.soft {
  background:
    linear-gradient(135deg, rgba(237, 246, 253, 0.92), rgba(239, 248, 242, 0.74)),
    var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.header-inner {
  min-height: 72px;
  height: 72px;
  width: min(1320px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  min-width: 0;
  height: 72px;
  overflow: visible;
}

.site-logo {
  display: block;
  width: auto;
  max-width: none;
  height: 64px;
  min-height: 64px;
  object-fit: contain;
  object-position: left center;
  border: none;
  background: transparent;
  box-shadow: none;
}

.main-nav {
  flex: 1 1 auto;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.main-nav a {
  color: #344155;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: 0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--text);
  background: #EEF4F8;
  border-color: #D9E5EE;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11, 92, 173, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.icon-button svg,
.float-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.call {
  background: var(--blue-bright);
}

.whatsapp {
  background: var(--whatsapp);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--blue);
}

.hero {
  padding-top: 72px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(237, 246, 253, 0.94)),
    linear-gradient(90deg, rgba(11, 92, 173, 0.10), rgba(72, 161, 22, 0.10));
  border-bottom: 1px solid rgba(221, 231, 238, 0.72);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(72, 161, 22, 0.10);
  border: 1px solid rgba(72, 161, 22, 0.14);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.hero-copy p:not(.lead),
.section-heading p,
.contact p {
  color: var(--sofa-gray);
  font-size: 17px;
}

.hero-buttons,
.campaign-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.btn svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.btn:hover,
.icon-button:hover,
.float-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-bright);
  box-shadow: 0 12px 24px rgba(20, 121, 212, 0.22);
}

.btn-primary:hover {
  background: var(--blue);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.btn-outline {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--border);
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #F8FBFD, #EAF4EF);
  box-shadow: var(--shadow);
}

.hero-media {
  aspect-ratio: 4 / 3;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-card img.is-hidden {
  display: none;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  color: var(--blue);
  text-align: center;
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(20, 121, 212, 0.10), rgba(72, 161, 22, 0.14)),
    var(--soft);
}

.image-placeholder svg {
  width: 74px;
  height: 74px;
  fill: rgba(20, 121, 212, 0.34);
}

.image-card.has-placeholder .image-placeholder {
  display: flex;
}

.quick-info {
  padding: 0 0 34px;
  margin-top: -28px;
  position: relative;
  z-index: 4;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.quick-grid article,
.feature-grid article,
.service-card,
.timeline article,
.contact-cards article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quick-grid article {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.mini-icon,
.service-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.mini-icon {
  width: 38px;
  height: 38px;
}

.mini-icon svg,
.service-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.mini-icon .whatsapp-logo {
  width: 36px;
  height: 36px;
}

.blue {
  color: var(--blue-bright);
  background: #EAF4FF;
}

.green {
  color: var(--green);
  background: #ECF8E8;
}

.whatsapp-color {
  color: var(--whatsapp);
  background: #E9FBF0;
}

.section-heading {
  max-width: 670px;
  margin-bottom: 34px;
}

.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-bright), var(--green));
}

.card-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.feature-grid article:hover,
.timeline article:hover,
.contact-cards article:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 121, 212, 0.22);
  box-shadow: 0 18px 42px rgba(11, 92, 173, 0.12);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.service-card p,
.feature-grid p,
.timeline p {
  color: var(--sofa-gray);
  margin-bottom: 0;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid .mini-icon {
  margin-bottom: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.timeline article {
  position: relative;
  padding: 24px;
  min-height: 224px;
  overflow: hidden;
}

.timeline article::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: rgba(20, 121, 212, 0.07);
}

.timeline article > * {
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
}

.process-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.process-icon.teal {
  color: #0F9F95;
  background: #E8FAF7;
}

.campaign {
  padding: 64px 0;
  background:
    linear-gradient(110deg, rgba(11, 92, 173, 0.98), rgba(20, 121, 212, 0.96)),
    linear-gradient(90deg, rgba(72, 161, 22, 0.18), transparent);
  color: var(--white);
}

.campaign .eyebrow,
.campaign small {
  color: #DDF7E1;
}

.campaign-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.campaign p {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 800;
}

.campaign small {
  display: block;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  min-height: 230px;
  aspect-ratio: 1 / 1;
  margin: 0;
}

figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(11, 92, 173, 0.86);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.gallery-item {
  padding: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.contact {
  background:
    linear-gradient(135deg, rgba(237, 246, 253, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(90deg, rgba(72, 161, 22, 0.08), transparent);
}

.contact-cta {
  gap: 14px;
}

.contact-btn {
  min-width: 190px;
  min-height: 58px;
  justify-content: flex-start;
  padding: 15px 22px;
  gap: 12px;
  letter-spacing: 0;
}

.contact-btn svg {
  width: 30px;
  height: 30px;
  color: var(--white);
  fill: currentColor;
}

.contact-btn .whatsapp-logo {
  width: 36px;
  height: 36px;
}

.contact-btn span {
  color: var(--white);
  line-height: 1;
}

.contact-btn:hover {
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-cards article {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.contact-cards article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue-bright), var(--green));
}

.contact-cards strong {
  color: var(--blue);
}

.contact-cards a,
.contact-cards span {
  color: var(--text);
  font-weight: 800;
}

.site-footer {
  color: #D8E6EF;
  background: #0F2435;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 50px 0 34px;
}

.footer-logo-box {
  width: fit-content;
  max-width: 300px;
  padding: 14px 18px;
  object-fit: contain;
  margin-bottom: 18px;
  border: 1px solid rgba(221, 231, 238, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.footer-logo {
  width: 260px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  border: none;
  background: transparent;
  box-shadow: none;
  margin: 0;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li,
.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  color: #D8E6EF;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  flex-wrap: wrap;
  padding: 18px 16px;
  text-align: center;
  border-top: 1px solid rgba(221, 231, 238, 0.18);
}

.developer-credit {
  color: #B9CBD8;
  font-size: 14px;
}

.developer-credit a {
  display: inline;
  color: #FFFFFF;
  margin: 0;
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 18px;
  top: 62%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.float-btn .whatsapp-logo {
  width: 48px;
  height: 48px;
}

.top-button {
  background: var(--text);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(960px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--soft);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 32px, 1160px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .logo-link {
    flex-basis: auto;
    width: auto;
    max-width: none;
    min-width: 0;
    flex-shrink: 0;
    overflow: visible;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.08);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: var(--radius);
    font-size: 13px;
    padding: 12px 14px;
  }

  .hero-grid,
  .contact-grid,
  .campaign-inner {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .services-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaign-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .campaign-actions {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .section {
    padding: 62px 0;
  }

  .header-inner {
    min-height: 68px;
    height: 68px;
  }

  .main-nav {
    top: 68px;
  }

  .site-logo {
    width: auto;
    max-width: none;
    height: 46px;
    min-height: 46px;
    object-fit: contain;
  }

  .site-header {
    min-height: 68px;
    height: 68px;
  }

  .logo-link {
    width: auto;
    max-width: none;
    height: 68px;
  }

  .footer-logo-box {
    max-width: 260px;
  }

  .footer-logo {
    width: 220px;
    max-height: 84px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 18px;
  }

  .quick-info {
    margin-top: 0;
    padding-top: 16px;
  }

  .quick-grid,
  .services-grid,
  .feature-grid,
  .timeline,
  .gallery-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid article {
    min-height: 66px;
  }

  .timeline article {
    min-height: auto;
  }

  .hero-buttons .btn,
  .campaign-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .floating-actions {
    right: 12px;
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn .whatsapp-logo {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 29px;
  }

  .image-card {
    min-height: 220px;
  }

  .hero-media {
    aspect-ratio: 1 / 1;
  }
}
