:root {
  --navy: #081b33;
  --navy-2: #102b4f;
  --blue: #1859a8;
  --green: #14a86b;
  --green-dark: #0c7c4d;
  --red: #d7242f;
  --white: #ffffff;
  --ink: #182130;
  --muted: #667085;
  --line: #e7ebf0;
  --soft: #f4f7fb;
  --soft-blue: #eaf2fb;
  --shadow: 0 20px 60px rgba(8, 27, 51, 0.12);
  --shadow-sm: 0 12px 30px rgba(8, 27, 51, 0.09);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 40px 0;
}

.alt-section {
  background: var(--soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(231, 235, 240, 0.9);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100% - 32px, var(--container));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(215, 36, 47, 0.22);
}

.btn-primary:hover {
  background: #b91d26;
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 24px rgba(20, 168, 107, 0.22);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(215, 36, 47, 0.26), transparent 28%),
    linear-gradient(135deg, #07172b 0%, #0f315b 58%, #07172b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.about-panel h2,
.contact-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.area-tags span {
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.image-shell {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, var(--navy-2), #07172b);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-shell img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.camera-illustration {
  width: min(78%, 380px);
  aspect-ratio: 1.35;
  position: relative;
  border-radius: 8px 34px 34px 8px;
  background: linear-gradient(145deg, #ffffff, #dce8f2);
  box-shadow: inset -20px -20px 40px rgba(8, 27, 51, 0.14), var(--shadow);
}

.camera-illustration::before {
  content: "";
  position: absolute;
  width: 32%;
  height: 32%;
  right: 12%;
  top: 34%;
  border-radius: 50%;
  background: var(--navy);
}

.camera-illustration::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 44%;
  width: 28%;
  height: 12%;
  background: var(--red);
  border-radius: 999px;
}

.lens {
  position: absolute;
  right: 17%;
  top: 40%;
  width: 14%;
  aspect-ratio: 1;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, #6aa8ff, #0a1630 62%);
}

.signal {
  position: absolute;
  right: -28%;
  top: 50%;
  border: 2px solid rgba(20, 168, 107, 0.62);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
}

.signal-one {
  width: 74px;
  height: 74px;
  transform: translateY(-50%) rotate(45deg);
}

.signal-two {
  width: 118px;
  height: 118px;
  transform: translateY(-50%) rotate(45deg);
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.service-mini-grid article {
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.service-mini-grid span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.stat-card,
.info-card,
.product-card,
.package-card,
.about-panel,
.about-copy,
.contact-info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-card {
  padding: 24px;
}

.stat-card .icon,
.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
}

.stat-card strong,
.info-card h3,
.product-card h3,
.package-card h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.stat-card p,
.info-card p,
.product-card p,
.section-heading p,
.about-copy p,
.contact-info p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.about-panel h2,
.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover,
.product-card:hover,
.package-card:hover,
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 89, 168, 0.28);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card h3,
.product-card p,
.product-card a {
  margin-inline: 18px;
}

.product-card h3 {
  margin-top: 18px;
}

.product-card a {
  display: inline-flex;
  margin-top: 16px;
  margin-bottom: 20px;
  color: var(--red);
  font-weight: 800;
}

.product-image,
.gallery-item {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(24, 89, 168, 0.12), rgba(20, 168, 107, 0.12)),
    repeating-linear-gradient(45deg, #f6f8fb 0 12px, #eef3f8 12px 24px);
}

.product-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.package-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  border-color: rgba(255, 255, 255, 0.12);
}

.package-card.featured h3,
.package-card.featured .quote-label,
.package-card.featured li {
  color: var(--white);
}

.popular {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-label {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
}

.package-card ul {
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.package-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
}

.package-card li::before,
.benefit-list span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.split-grid {
  align-items: stretch;
}

.about-panel,
.about-copy,
.contact-info {
  padding: clamp(26px, 4vw, 42px);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.benefit-list span {
  display: flex;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

.owner-card {
  margin-top: 26px;
  padding: 20px;
  background: var(--soft-blue);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
}

.owner-card strong,
.owner-card span {
  display: block;
}

.owner-card span {
  color: var(--muted);
  margin-top: 4px;
}

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

.gallery-item {
  min-height: 230px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 27, 51, 0.03), rgba(24, 89, 168, 0.16)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.45) 49% 51%, transparent 52%);
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(8, 27, 51, 0.82);
  border-radius: var(--radius);
  font-weight: 800;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-grid {
  align-items: start;
}

.contact-section .contact-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 920px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 56px 0 36px;
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.footer-brand .brand-logo {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
}

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

.footer-bottom {
  padding: 18px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  width: 46px;
  height: 46px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-panel {
    gap: 14px;
  }

  .nav-links {
    gap: 14px;
  }

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

@media (max-width: 860px) {
  .section {
    padding: 72px 0;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .nav-panel {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    gap: 18px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .menu-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 4px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding-top: 68px;
  }

  .image-shell,
  .image-shell img {
    min-height: 340px;
  }

  .pricing-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container,
  .navbar {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .card-grid,
  .stat-grid,
  .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .image-shell,
  .image-shell img {
    min-height: 280px;
  }

  .product-image,
  .gallery-item {
    min-height: 210px;
  }
}
