:root {
  --red: #d93222;
  --red-dark: #b32819;
  --red-soft: #f7eceb;
  --ink: #111111;
  --muted: #666666;
  --line: #eeeeee;
  --cream: #f7f2ec;
  --white: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.lightbox-open {
  overflow: hidden;
}

a {
  color: var(--red);
}

a:hover {
  color: var(--red-dark);
}

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

button {
  border: 0;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.site-shell {
  position: relative;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
}

.lp-section {
  padding: 56px 24px;
}

.lp-section-head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.lp-section-head h2 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.15;
}

.lp-section-head p {
  margin: 0;
  color: #555555;
  font-size: 1rem;
  line-height: 1.6;
}

.section-fade {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition:
    opacity 2.4s var(--ease),
    transform 2.4s var(--ease);
  will-change: opacity, transform;
}

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

.item-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition:
    opacity 1.8s var(--ease),
    transform 1.8s var(--ease),
    box-shadow 0.25s,
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  will-change: opacity, transform;
}

.section-fade.is-visible .item-reveal,
.item-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  color: var(--ink);
}

.header-inner {
  width: 100%;
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 56px;
}

.brand-name,
.footer-brand span {
  font-family: "Playfair Display", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  color: inherit;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.header-cta:hover,
.mobile-cta:hover {
  background: var(--red-dark);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  color: inherit;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.is-menu-open .mobile-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid #f0f0f0;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu .mobile-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 64px;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.55;
  animation: hero-kenburns 22s ease-out forwards;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-title {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.08;
  opacity: 0;
  animation: hero-rise 0.9s var(--ease) 0.15s forwards;
}

.hero-subtitle {
  max-width: 520px;
  margin: 0 0 36px;
  color: #f0ece9;
  font-size: 1.1875rem;
  line-height: 1.5;
  opacity: 0;
  animation: hero-rise 0.9s var(--ease) 0.32s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  opacity: 0;
  animation: hero-rise 0.9s var(--ease) 0.48s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #e6543c;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 640px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: hero-rise 0.9s var(--ease) 0.64s forwards;
}

.hero-stats strong {
  display: block;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 600;
}

.hero-stats span {
  display: block;
  color: #d8d2cf;
  font-size: 0.8125rem;
}

.ba-section,
.projects-section {
  background: var(--cream);
}

.filter-row {
  max-width: 1280px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 22px;
  border: 1px solid #dddddd;
  border-radius: 24px;
  background: var(--white);
  color: #333333;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}

.pill.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.ba-wrap {
  max-width: 540px;
  margin: 0 auto;
}

.ba-comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  touch-action: none;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.ba-before {
  max-width: none;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.handle-left,
.handle-right {
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.handle-left {
  border-right: 8px solid var(--red);
}

.handle-right {
  border-left: 8px solid var(--red);
}

.ba-label {
  position: absolute;
  top: 16px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 20px;
}

.ba-label-before {
  left: 16px;
  background: rgba(17, 17, 17, 0.6);
}

.ba-label-after {
  right: 16px;
  background: rgba(217, 50, 34, 0.85);
}

.center-cta {
  margin-top: 44px;
  text-align: center;
}

.catalog-head {
  max-width: 720px;
  margin-bottom: 14px;
}

.catalog-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.catalog-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.catalog-meta {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.catalog-meta span {
  font-size: 0.875rem;
  font-weight: 500;
}

.swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.services-section {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
}

.services-bg,
.services-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-bg {
  object-fit: cover;
}

.services-overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.8) 100%);
}

.services-content {
  position: relative;
}

.services-section h2 {
  color: var(--white);
}

.services-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  padding: 4px 20px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-4px) scale(1) !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.icon-circle {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 2px solid var(--red-soft);
  border-radius: 50%;
  background: var(--red-soft);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.service-image-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

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

.wa-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #fffdfb 0%, #fff8f4 52%, #fff1eb 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}

.wa-section::before,
.wa-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wa-section::before {
  background:
    linear-gradient(90deg, rgba(217, 50, 34, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(217, 50, 34, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.wa-section::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.08) 28%, rgba(217, 50, 34, 0.075) 72%, transparent);
  opacity: 0.86;
}

.wa-grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}

.phone-shell {
  position: relative;
  width: 100%;
  max-width: 286px;
  justify-self: center;
  padding: 12px;
  border-radius: 34px;
  background: var(--ink);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateZ(0);
}

.wa-section.is-visible .phone-shell {
  animation: phone-vibrate 3.30s ease-in-out 0.28s infinite;
}

.phone-shell::before,
.phone-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.phone-shell::before {
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background:
    radial-gradient(circle at 24% 18%, rgba(37, 211, 102, 0.16), transparent 34%),
    radial-gradient(circle at 84% 82%, rgba(217, 50, 34, 0.14), transparent 38%);
  filter: blur(12px);
  opacity: 0.95;
}

.phone-shell::after {
  inset: 9px 10px auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #efe7dd;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08));
  opacity: 0.42;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #075e54;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fbfbfb;
  color: #D93222;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.625rem;
  font-weight: 700;
}

.phone-title {
  color: var(--white);
  font-size: 0.78125rem;
  font-weight: 600;
}

.phone-status {
  color: #cfe6e1;
  font-size: 0.625rem;
}

.phone-body {
  min-height: 318px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px),
    radial-gradient(circle at 78% 60%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px),
    #efe7dd;
  background-size: 28px 28px, 34px 34px, auto;
}

.phone-body > .message-card {
  display: none;
}

.chat-date-pill {
  align-self: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #667781;
  font-size: 0.59375rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.chat-bubble {
  position: relative;
  max-width: 88%;
  padding: 8px 9px 5px;
  border-radius: 8px;
  color: #111b21;
  font-size: 0.6875rem;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  animation: chat-pop 0.7s var(--ease) both;
}

.chat-bubble:nth-of-type(2) {
  animation-delay: 0.12s;
}

.chat-bubble:nth-of-type(3) {
  animation-delay: 0.24s;
}

.chat-bubble:nth-of-type(4) {
  animation-delay: 0.36s;
}

.chat-bubble p {
  margin: 0;
}

.chat-bubble-in {
  align-self: flex-start;
  background: var(--white);
  border-top-left-radius: 2px;
}

.chat-bubble-out {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 2px;
}

.chat-bubble-media {
  width: 94%;
  max-width: 94%;
}

.chat-gallery {
  margin: 7px 0 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
  border-radius: 6px;
}

.chat-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.phone-shell:hover .chat-gallery img {
  transform: scale(1.04);
}

.message-meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: #667781;
  font-size: 0.5625rem;
  line-height: 1;
}

.message-checks {
  color: #53bdeb;
  letter-spacing: -0.18em;
}

.message-card {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message-title {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.71875rem;
  font-weight: 700;
}

.message-date {
  margin-bottom: 8px;
  color: #999999;
  font-size: 0.59375rem;
}

.message-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  color: #333333;
  font-size: 0.6875rem;
}

.message-list span,
.wa-points span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.message-list b {
  color: #25d366;
}

.message-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.message-media > div {
  aspect-ratio: 1;
  border-radius: 5px;
  background: repeating-linear-gradient(45deg, #ececec, #ececec 6px, #e2e2e2 6px, #e2e2e2 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-family: monospace;
  font-size: 0.4375rem;
  text-align: center;
  padding: 4px;
}

.video-placeholder {
  position: relative;
}

.video-placeholder span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--white);
}

.message-time {
  margin-top: 5px;
  text-align: right;
  color: #aaaaaa;
  font-size: 0.5625rem;
}

.phone-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: #f0f0f0;
}

.phone-input span {
  display: none;
}

.phone-input div {
  flex: 1;
  height: 26px;
  padding: 0 12px;
  border-radius: 20px;
  background: var(--white);
  color: #9aa0a6;
  display: flex;
  align-items: center;
  font-size: 0.6875rem;
}

.phone-input div::before {
  content: "Mensaje";
}

.phone-input i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #25d366;
}

.wa-copy h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
}

.wa-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.wa-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.wa-points span {
  color: var(--ink);
  font-size: 0.9375rem;
}

.wa-points b {
  color: var(--red);
}

.process-grid {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  z-index: 0;
  border-top: 2px dashed #e2d3d1;
}

.process-items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.process-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.process-step .icon-circle {
  width: 68px;
  height: 68px;
  margin: 0;
}

.process-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
}

.process-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.process-text h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.process-text p {
  max-width: 200px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84375rem;
  line-height: 1.5;
}

.section-kicker {
  display: inline-flex;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.polizas-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background: var(--white);
}

.polizas-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.polizas-media {
  position: relative;
  padding: 0 14px 14px 0;
}

.polizas-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(17, 17, 17, 0.13);
}

.polizas-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 150px;
  padding: 18px 22px;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
  animation: badge-float 7.5s ease-in-out infinite;
  will-change: transform;
}

.polizas-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
}

.polizas-badge span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.84375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.polizas-content h2 {
  margin: 14px 0 28px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
}

.polizas-list {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ececec;
}

.poliza-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #ececec;
}

.polizas-section.is-visible .poliza-row:nth-child(2) {
  transition-delay: 0.12s;
}

.polizas-section.is-visible .poliza-row:nth-child(3) {
  transition-delay: 0.24s;
}

.poliza-row span {
  width: 22px;
  flex-shrink: 0;
  color: var(--red);
  font-family: "Playfair Display", serif;
  font-size: 0.9375rem;
  font-weight: 600;
}

.poliza-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
}

.polizas-extra {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.polizas-extra article {
  position: relative;
  min-height: 100px;
  padding: 18px 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white) 0%, #fffaf7 100%);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.055);
  display: flex;
  align-items: center;
  gap: 14px;
}

.polizas-extra article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--red);
}

.polizas-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(217, 50, 34, 0.14);
  background: #fff1ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polizas-extra h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.polizas-extra p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84375rem;
  line-height: 1.45;
}

.polizas-cta {
  margin-top: 30px;
}

.projects-grid {
  max-width: 1280px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 20px;
}

.project-card {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  break-inside: avoid;
  text-align: left;
  appearance: none;
}

.project-card:hover {
  transform: translateY(0) scale(1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.project-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #f4ece5;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay,
.project-card:focus-visible .project-overlay {
  opacity: 1;
}

.project-overlay span {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.allies-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #151313 0%, #211c1b 58%, #121212 100%);
}

.allies-section::before {
  content: "";
  position: absolute;
  inset: -35% -16% auto;
  z-index: -1;
  height: 125%;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 246, 230, 0.26) 0%, rgba(217, 50, 34, 0.12) 24%, rgba(255, 255, 255, 0.04) 43%, transparent 68%);
  pointer-events: none;
}

.allies-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 34%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

.allies-head {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.allies-head h2 {
  color: var(--white);
}

.allies-head p {
  color: #ded6d2;
}

.allies-marquee {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.allies-track {
  width: max-content;
  display: flex;
  gap: 24px;
  animation: allies-scroll 30s linear infinite;
  will-change: transform;
}

.allies-marquee:hover .allies-track {
  animation-play-state: paused;
}

.allies-set {
  display: flex;
  align-items: center;
  gap: 24px;
}

.allies-set img {
  width: 188px;
  height: 104px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 50, 34, 0.08);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

.about-section {
  padding-top: 48px;
  padding-bottom: 48px;
  text-align: center;
  background: #f4ece5;
}

.about-copy {
  max-width: 640px;
  margin: 0 auto;
}

.about-copy p {
  margin: 0 0 24px;
  color: #333333;
  font-size: 1.1875rem;
  line-height: 1.6;
}

.about-copy strong {
  color: var(--red);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22120%22 height=%22120%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22 stitchTiles=%22stitch%22/></filter><rect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22 opacity=%220.35%22/></svg>");
  background-repeat: repeat;
}

.contact-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 56px;
  text-align: center;
}

.contact-hero h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
}

.contact-grid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
}

.map-wrap {
  position: relative;
  height: 280px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 8px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 58%, rgba(17, 17, 17, 0.34) 100%);
  color: var(--white);
  text-decoration: none;
}

.map-overlay-link span {
  padding: 9px 13px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: background 0.2s, transform 0.2s;
}

.map-overlay-link:hover span {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e5e5e5;
  font-size: 0.875rem;
}

.map-link,
.footer-map-link {
  color: inherit;
  text-decoration: none;
}

.map-link:hover,
.footer-map-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 8px;
  background: #1a1a1a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #333333;
  border-radius: 4px;
  background: #242424;
  color: var(--white);
  font-size: 0.875rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  padding: 14px;
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #e6543c;
}

.site-footer {
  padding: 56px 24px 28px;
  background: #0c0c0c;
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto 24px;
  padding-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid #262626;
}

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

.footer-brand img {
  width: auto;
  height: 64px;
}

.footer-brand span {
  font-size: 1.125rem;
  line-height: 1.2;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  color: #cccccc;
  font-size: 0.875rem;
  text-decoration: none;
}

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

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 50px;
  height: 50px;
  border: 1px solid #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.social-links img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.social-links a:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: #666666;
  font-size: 0.8125rem;
}

.qr-page {
  min-height: 100vh;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 12%, rgba(217, 50, 34, 0.08), transparent 30%),
    linear-gradient(135deg, #fffdfb 0%, #f7f2ec 100%);
}

.qr-panel {
  width: min(100%, 520px);
  padding: 28px;
  border: 1px solid rgba(217, 50, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.qr-brand {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.qr-brand img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.qr-copy h1 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.12;
}

.qr-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.qr-image-wrap {
  max-width: 360px;
  margin: 0 auto 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.qr-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.qr-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.qr-actions .btn {
  width: 100%;
  padding-right: 14px;
  padding-left: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  animation: wa-pulse 2.4s infinite;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(17, 17, 17, 0.92);
  cursor: zoom-out;
}

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

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 50, 34, 0.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(114, 47, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(114, 47, 55, 0);
  }
}

@keyframes phone-vibrate {
  0% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  5% {
    transform: translate3d(-2px, 0, 0) rotate(-0.7deg);
  }

  10% {
    transform: translate3d(2px, 0, 0) rotate(0.7deg);
  }

  15% {
    transform: translate3d(-2px, 0, 0) rotate(-0.65deg);
  }

  20% {
    transform: translate3d(2px, 0, 0) rotate(0.65deg);
  }

  26% {
    transform: translate3d(-1.5px, 0, 0) rotate(-0.45deg);
  }

  32% {
    transform: translate3d(1.5px, 0, 0) rotate(0.45deg);
  }

  40% {
    transform: translate3d(0, 0, 0) rotate(0);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes chat-pop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-kenburns {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes hero-rise {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes allies-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-shell,
  .chat-bubble,
  .allies-track,
  .polizas-badge {
    animation: none;
  }

  .phone-shell:hover .chat-gallery img {
    transform: none;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero-title {
    font-size: 3.7rem;
  }

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

  .polizas-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .polizas-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .polizas-content {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .lp-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .lp-section-head {
    margin-bottom: 32px;
  }

  .lp-section-head h2 {
    font-size: 2rem;
  }

  .header-inner {
    padding: 0 18px;
  }

  .brand-name {
    font-size: 0.9375rem;
  }

  .hero {
    min-height: 100vh;
    padding: 116px 24px 56px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 24px;
  }

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

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

  .service-card {
    padding: 12px 10px 14px;
  }

  .service-image-circle {
    width: 78px;
    height: 78px;
    margin-bottom: 8px;
    border-width: 1px;
  }

  .service-card h3 {
    margin-bottom: 5px;
    font-size: 0.92rem;
    line-height: 1.15;
    overflow-wrap: break-word;
  }

  .service-card p {
    display: block;
    color: #666666;
    font-size: 0.78rem;
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .wa-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wa-copy {
    text-align: center;
  }

  .wa-points {
    align-items: center;
  }

  .wa-points span {
    justify-content: center;
  }

  .wa-copy h2,
  .contact-hero h2 {
    font-size: 2rem;
  }

  .process-line {
    display: none;
  }

  .process-items {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
  }

  .process-icon-wrap {
    margin-top: 2px;
  }

  .process-text {
    align-items: flex-start;
  }

  .process-text p {
    max-width: none;
  }

  .polizas-content h2 {
    font-size: 2.25rem;
  }

  .projects-grid {
    column-count: 2;
  }

  .allies-track,
  .allies-set {
    gap: 16px;
  }

  .allies-set img {
    width: 154px;
    height: 86px;
    padding: 9px 12px;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .about-copy strong {
    font-size: 1.6rem;
  }

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

  .footer-top {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .services-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .services-grid {
    gap: 10px;
  }

  .service-card {
    padding: 10px 8px 12px;
  }

  .service-image-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 6px;
  }

  .service-card h3 {
    margin-bottom: 4px;
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .service-card p {
    font-size: 0.7rem;
    line-height: 1.22;
  }

  .qr-panel {
    padding: 22px 16px;
  }

  .qr-copy h1 {
    font-size: 1.85rem;
  }

  .qr-actions {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 48px;
  }

  .brand-name {
    max-width: 180px;
    font-size: 0.8125rem;
  }

  .hero-title {
    font-size: 2.375rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

  .projects-grid {
    column-count: 2;
    column-gap: 12px;
  }

  .project-card {
    margin-bottom: 12px;
  }

  .polizas-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .polizas-wrap {
    gap: 34px;
  }

  .polizas-media {
    padding: 0 12px 14px 0;
  }

  .polizas-media img {
    border-radius: 8px;
  }

  .polizas-badge {
    right: 0;
    bottom: 0;
    min-width: 132px;
    padding: 15px 17px;
  }

  .polizas-badge strong {
    font-size: 1.625rem;
  }

  .polizas-badge span {
    font-size: 0.75rem;
  }

  .polizas-content h2 {
    font-size: 2rem;
  }

  .polizas-extra {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 8px;
    background: #fffaf7;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.055);
  }

  .polizas-extra article {
    min-height: auto;
    padding: 15px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 12px;
  }

  .polizas-extra article + article {
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  .polizas-extra article::before {
    display: none;
  }

  .polizas-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }

  .polizas-extra h3 {
    font-size: 0.9rem;
  }

  .polizas-cta {
    margin-top: 24px;
  }

  .polizas-cta .btn {
    width: 100%;
  }

  .allies-section {
    padding-right: 0;
    padding-left: 0;
  }

  .allies-head {
    padding: 0 24px;
  }

  .allies-marquee {
    max-width: none;
  }

  .contact-form {
    padding: 24px;
  }
}
