﻿:root {
  --bg: #e9f1fc;
  --surface: #f8fbff;
  --surface-strong: #ffffff;
  --surface-alt: #dce9fa;
  --text: #132743;
  --muted: #4b6284;
  --primary: #1a72bb;
  --primary-strong: #114c82;
  --accent: #5ab6ff;
  --line: #c1d5ef;
  --shadow-soft: 0 16px 40px rgba(16, 59, 102, 0.12);
  --shadow-strong: 0 24px 60px rgba(16, 59, 102, 0.2);
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Sora", sans-serif;
  background: radial-gradient(1200px 560px at -8% -10%, #d2e6ff 0%, transparent 58%),
    radial-gradient(900px 520px at 108% 8%, #c7e4ff 0%, transparent 52%),
    linear-gradient(180deg, #eaf2fd 0%, #eef5ff 35%, #f4f8ff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.wa-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: rgba(17, 76, 130, 0.15);
}

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

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: linear-gradient(rgba(17, 76, 130, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 76, 130, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 75%);
}

.bg-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -2;
  pointer-events: none;
}

.bg-glow-one {
  top: 45px;
  left: -120px;
  background: rgba(44, 143, 224, 0.34);
}

.bg-glow-two {
  bottom: 12%;
  right: -120px;
  background: rgba(24, 94, 167, 0.25);
}

.section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  margin-bottom: 1rem;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(235, 243, 253, 0.82);
  border-bottom: 1px solid rgba(193, 213, 239, 0.78);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 95;
  background: rgba(17, 76, 130, 0.12);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #1a72bb, #5ab6ff);
  box-shadow: 0 0 14px rgba(26, 114, 187, 0.45);
  transition: width 0.1s linear;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(16, 59, 102, 0.12);
  border-color: rgba(193, 213, 239, 0.95);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 600;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 18px rgba(13, 67, 117, 0.18);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.62rem 0.9rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(26, 114, 187, 0.13);
  color: var(--primary-strong);
}

.main-nav a.is-active {
  background: rgba(26, 114, 187, 0.18);
  color: var(--primary-strong);
  box-shadow: inset 0 0 0 1px rgba(26, 114, 187, 0.22);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--text);
  border-radius: 12px;
  font: inherit;
  font-size: 0.9rem;
  padding: 0.45rem 0.72rem;
  min-height: 44px;
}

.hero {
  padding-top: 3.4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-copy p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
  margin-top: 1.4rem;
}

.hero-points {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.46rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #34547b;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(26, 114, 187, 0.14);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.74rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  min-height: 46px;
}

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

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(130deg, var(--primary), var(--primary-strong));
  box-shadow: 0 14px 30px rgba(17, 76, 130, 0.32);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.32) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-soft {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.hero-media-stack {
  position: relative;
}

.hero-media-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  transform-origin: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-media-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero-media-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 32%, rgba(255, 255, 255, 0.24) 50%, transparent 68%);
  transform: translateX(-130%);
  animation: heroShine 5.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-media-main:hover {
  box-shadow: 0 30px 65px rgba(16, 59, 102, 0.26);
}

.hero-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  background: rgba(14, 44, 78, 0.8);
  color: #fff;
  font-size: 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  margin-top: 1.1rem;
}

.hero-stats article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(235, 244, 254, 0.92));
  border: 1px solid rgba(193, 213, 239, 0.9);
  border-radius: 14px;
  padding: 0.72rem 0.64rem;
  box-shadow: var(--shadow-soft);
}

.hero-stats strong {
  display: block;
  font-size: 1rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head p {
  color: var(--muted);
  max-width: 62ch;
}

.section-head-center {
  text-align: center;
}

.section-head-center .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.section-head-center p {
  margin-left: auto;
  margin-right: auto;
}

.packs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pack-card {
  position: relative;
  --mx: 50%;
  --my: 50%;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(243, 249, 255, 0.88));
  border: 1px solid rgba(193, 213, 239, 0.86);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}

.pack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(90, 182, 255, 0.4), rgba(17, 76, 130, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(16, 59, 102, 0.2);
}

.pack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(230px circle at var(--mx) var(--my), rgba(90, 182, 255, 0.24), transparent 62%);
  opacity: 0;
  transition: opacity 0.26s ease;
}

.pack-card:hover::after {
  opacity: 1;
}

.pack-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.7rem;
  font-family: "Sora", sans-serif;
}

.pack-tag {
  display: inline-flex;
  margin-bottom: 0.62rem;
  padding: 0.24rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 114, 187, 0.3);
  background: rgba(90, 182, 255, 0.16);
  color: var(--primary-strong);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.pack-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 0.34rem;
  font-size: 0.9rem;
}

.pack-card li {
  position: relative;
  padding-left: 1rem;
}

.pack-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.pack-link {
  margin-top: 0.96rem;
}

.pack-card-special {
  padding: 0.82rem;
  max-width: 94%;
  justify-self: center;
  align-self: start;
  height: fit-content;
}

.pack-card-special h3 {
  font-size: 1.02rem;
}

.pack-card-special ul {
  font-size: 0.84rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(212, 228, 247, 0.54), rgba(212, 228, 247, 0.24));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-clients {
  padding-top: 3.6rem;
  padding-bottom: 3.2rem;
}

.clients-head h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  color: #2f4666;
}

.clients-head p {
  max-width: 68ch;
}

.clients-carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid rgba(163, 196, 229, 0.75);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(223, 238, 255, 0.65));
  box-shadow: 0 20px 42px rgba(16, 59, 102, 0.16);
  backdrop-filter: blur(5px);
  padding: 0.9rem;
}

.clients-carousel::before,
.clients-carousel::after {
  display: none;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  padding: 0.15rem;
}

.client-item {
  position: relative;
  width: 250px;
  height: 430px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(182, 207, 233, 0.9);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(234, 244, 255, 0.9));
  opacity: 1;
  filter: none;
  transition: opacity 0.24s ease, filter 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: 0 14px 26px rgba(17, 76, 130, 0.16);
  padding: 0.55rem 0.55rem 1.95rem;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.client-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(90, 182, 255, 0.46), rgba(17, 76, 130, 0.26));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.client-item::after {
  content: "Chat real";
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #274b72;
  background: rgba(232, 243, 255, 0.92);
  border: 1px solid rgba(166, 197, 228, 0.8);
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  white-space: nowrap;
}

.client-item:hover {
  opacity: 1;
  filter: none;
  border-color: rgba(26, 114, 187, 0.46);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 34px rgba(17, 76, 130, 0.24);
}

.client-item img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(193, 213, 239, 0.82);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  background: #dce8f8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item::after {
  content: "Ver";
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  background: rgba(19, 39, 67, 0.78);
  color: #fff;
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:nth-child(7n + 3),
.gallery-item:nth-child(7n + 6) {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-actions {
  margin-top: 1.2rem;
  text-align: center;
}

.premium-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193, 213, 239, 0.85);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(227, 240, 255, 0.55));
  box-shadow: var(--shadow-strong);
  padding: clamp(1rem, 2vw, 1.8rem);
}

.products-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: center;
}

.products-row p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.products-row img {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-panel .section-head {
  margin-bottom: 1rem;
}

.about-panel .section-head h2 {
  max-width: 22ch;
}

.about-panel .section-head p {
  max-width: 72ch;
}

.about-panel {
  position: relative;
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 182, 255, 0.35) 0%, rgba(90, 182, 255, 0) 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-card {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(193, 213, 239, 0.9);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(230, 242, 255, 0.72));
  box-shadow: var(--shadow-soft);
  padding: 1rem 1rem 0.95rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-card:nth-child(2) {
  transform: translateY(8px);
}

.about-card:hover {
  transform: translateY(-3px);
  border-color: rgba(26, 114, 187, 0.38);
  box-shadow: 0 20px 36px rgba(16, 59, 102, 0.22);
}

.about-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-strong));
  box-shadow: 0 8px 16px rgba(17, 76, 130, 0.3);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.about-card p {
  color: var(--muted);
}

.section-contact {
  background: linear-gradient(180deg, rgba(26, 114, 187, 0.13), rgba(26, 114, 187, 0.03));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.3rem;
  align-items: center;
}

.contact-list {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(232, 243, 255, 0.82));
  border: 1px solid rgba(193, 213, 239, 0.86);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.badge-round {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  margin: 0 auto 0.85rem;
}

.badge-ml {
  width: 150px;
  margin: 0 auto 0.7rem;
}

.contact-card p {
  color: var(--muted);
  max-width: 28ch;
  margin: 0 auto;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(16, 59, 102, 0.16);
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.social-links .social-ig {
  color: #7c2ea7;
  border-color: rgba(124, 46, 167, 0.28);
  background: linear-gradient(135deg, rgba(252, 175, 69, 0.22), rgba(131, 58, 180, 0.18));
}

.social-links .social-fb {
  color: #1b5dc8;
  border-color: rgba(27, 93, 200, 0.26);
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(67, 184, 255, 0.16));
}

.form-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(193, 213, 239, 0.88);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(223, 236, 252, 0.62));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 2rem);
}

.contact-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  padding: 0.72rem 0.78rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form button[disabled] {
  cursor: not-allowed;
  opacity: 0.85;
}

.contact-form button.is-loading {
  box-shadow: 0 10px 20px rgba(17, 76, 130, 0.22);
}

.form-toast {
  position: fixed;
  top: max(88px, calc(env(safe-area-inset-top) + 18px));
  right: 1rem;
  z-index: 120;
  max-width: min(92vw, 430px);
  padding: 0.88rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  box-shadow: 0 18px 38px rgba(16, 59, 102, 0.24);
  backdrop-filter: blur(7px);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.form-toast.is-success {
  color: #0b4f34;
  border-color: rgba(15, 126, 84, 0.25);
  background: linear-gradient(150deg, rgba(238, 255, 248, 0.97), rgba(219, 250, 238, 0.95));
}

.form-toast.is-error {
  color: #7f1d1d;
  border-color: rgba(185, 48, 48, 0.25);
  background: linear-gradient(150deg, rgba(255, 243, 243, 0.97), rgba(255, 228, 228, 0.95));
}

.form-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-footer {
  padding: 1.4rem 0;
  background: rgba(241, 248, 255, 0.88);
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
}

.footer-wrap a {
  text-decoration: none;
  font-weight: 600;
}

#back-to-top {
  margin-right: 8.5rem;
}

.whatsapp-float {
  position: fixed;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 26px rgba(7, 76, 59, 0.3);
  line-height: 1;
}

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

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(7, 76, 59, 0.34);
}

.mobile-cta {
  display: none;
}

.mobile-cta-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.76rem 0.9rem;
  border-radius: 14px;
  font-size: 0.87rem;
  font-weight: 600;
  border: 1px solid transparent;
  line-height: 1;
  min-height: 48px;
  white-space: nowrap;
}

.mobile-cta-btn.is-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 22px rgba(18, 140, 126, 0.3);
}

.lightbox {
  position: fixed;
  inset: 0;
  margin: auto;
  border: none;
  padding: 0;
  width: min(94vw, 980px);
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(7, 23, 42, 0.78);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
  background: linear-gradient(145deg, rgba(22, 92, 156, 0.95), rgba(15, 58, 101, 0.95));
  box-shadow: 0 14px 28px rgba(10, 35, 62, 0.45);
  font: inherit;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
  filter: brightness(1.06);
  box-shadow: 0 18px 32px rgba(10, 35, 62, 0.5);
}

.lightbox-nav:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.lightbox-nav-prev {
  left: -64px;
}

.lightbox-nav-next {
  right: -64px;
}

.lightbox-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  background: linear-gradient(145deg, #ff4d5c, #c82132);
  border-radius: 999px;
  padding: 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(147, 16, 34, 0.38);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lightbox-close:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.04);
  box-shadow: 0 18px 30px rgba(147, 16, 34, 0.45);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes heroShine {
  0%,
  46% {
    transform: translateX(-130%);
  }
  58%,
  100% {
    transform: translateX(130%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress span {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media-main,
  .hero-media-main::after {
    transition: none;
    animation: none;
    transform: none !important;
  }

  .pack-card::after {
    display: none;
  }

  * {
    scroll-behavior: auto !important;
  }

  .clients-track {
    animation: none;
  }
}

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

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

  .hero-grid,
  .products-row,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card:nth-child(2) {
    transform: none;
  }

}

@media (max-width: 760px) {
  .scroll-progress {
    top: 0;
    height: 2px;
  }

  body {
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom));
    overflow-x: hidden;
  }

  .bg-mesh,
  .bg-glow {
    display: none;
  }

  .section {
    padding: 3.3rem 0;
  }

  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.25rem;
  }

  .js .main-nav {
    display: none;
    position: absolute;
    right: 0.4rem;
    top: 72px;
    width: min(270px, 92vw);
    padding: 0.6rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(248, 251, 255, 0.98);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    z-index: 90;
  }

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

  .js .main-nav a {
    width: 100%;
    padding: 0.72rem 0.8rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.55rem, 6.4vw, 2rem);
  }

  .hero-chip {
    position: static;
    margin: 0.7rem 0;
    display: inline-flex;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .clients-carousel {
    padding: 0.7rem;
    box-shadow: 0 14px 30px rgba(16, 59, 102, 0.14);
  }

  .clients-carousel::-webkit-scrollbar {
    height: 5px;
  }

  .clients-carousel::-webkit-scrollbar-thumb {
    background: rgba(17, 76, 130, 0.28);
    border-radius: 999px;
  }

  .clients-carousel::before,
  .clients-carousel::after {
    display: none;
  }

  .clients-track {
    gap: 0.95rem;
    width: auto;
    min-width: max-content;
  }

  .client-item {
    width: min(78vw, 285px);
    height: min(138vw, 455px);
    padding: 0.5rem 0.5rem 1.8rem;
    opacity: 1;
    filter: grayscale(0.05);
    box-shadow: 0 10px 20px rgba(17, 76, 130, 0.16);
  }

  .client-item::after {
    font-size: 0.64rem;
    bottom: 0.48rem;
  }

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

  .form-toast {
    top: auto;
    right: 0.75rem;
    left: 0.75rem;
    bottom: calc(6rem + env(safe-area-inset-bottom));
    max-width: none;
  }

  .lightbox-close {
    right: 0.55rem;
    top: 0.55rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .lightbox-nav-prev {
    left: 0.55rem;
  }

  .lightbox-nav-next {
    right: 0.55rem;
  }

  .gallery-item:nth-child(7n + 3),
  .gallery-item:nth-child(7n + 6) {
    grid-row: span 1;
    aspect-ratio: 1 / 1;
  }

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

  #back-to-top {
    margin-right: 0;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(234, 242, 253, 0.2) 0%, rgba(234, 242, 253, 0.94) 24%, rgba(234, 242, 253, 0.99) 100%);
    border-top: 1px solid rgba(193, 213, 239, 0.9);
    backdrop-filter: blur(8px);
  }
}
