:root {
  --bg: #f3f7f4;
  --bg-2: #e5f0f6;
  --dark: #0d2a34;
  --muted: #5a6d74;
  --primary: #1b6fae;
  --mint: #bfe58e;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(13, 42, 52, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.bg-orbit {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(191, 229, 142, 0.4), transparent 55%),
    radial-gradient(circle at 90% 20%, rgba(27, 111, 174, 0.18), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-bar {
  margin-top: 16px;
  padding: 12px 18px;
  background: #e3f1f6;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  height: 40px;
}

.nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: var(--dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(13, 42, 52, 0.08);
}

.btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp {
  background: #25d366;
  color: #111827;
}

.btn-whatsapp:hover {
  background: #20c65b;
}

.btn-call {
  background: var(--primary);
  color: #fff;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-flex;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(13, 42, 52, 0.18);
}

.btn.ghost {
  background: #ffffff;
  color: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(13, 42, 52, 0.1);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.eyebrow {
  display: none;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.hero h1 span {
  background: var(--mint);
  padding: 0 10px;
  border-radius: 10px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 26px 0;
}

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

.stats div {
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

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

.hero-media {
  display: grid;
  gap: 18px;
  margin-top: 10px;
}

.media-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
}

.media-rotator {
  position: relative;
  border-radius: 22px;
  height: 320px;
  width: 100%;
  overflow: hidden;
}

.media-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: rotateFade 40s infinite;
}

.media-rotator img:nth-child(1) { animation-delay: 0s; }
.media-rotator img:nth-child(2) { animation-delay: 4s; }
.media-rotator img:nth-child(3) { animation-delay: 8s; }
.media-rotator img:nth-child(4) { animation-delay: 12s; }
.media-rotator img:nth-child(5) { animation-delay: 16s; }
.media-rotator img:nth-child(6) { animation-delay: 20s; }
.media-rotator img:nth-child(7) { animation-delay: 24s; }
.media-rotator img:nth-child(8) { animation-delay: 28s; }
.media-rotator img:nth-child(9) { animation-delay: 32s; }
.media-rotator img:nth-child(10) { animation-delay: 36s; }

.media-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.media-mini {
  background: #ffffff;
  border-radius: 20px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow);
}

/* Hide mini card on desktop */
.media-mini {
  display: none;
}

.media-mini img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}

.section {
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 640px;
  margin-bottom: 32px;
}

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

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

.service-card h3 {
  margin: 0;
}

.service-grid.lively .service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(13, 42, 52, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-grid.lively .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(191, 229, 142, 0.25), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.service-badge {
  background: #0d2a34;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-badge.soft {
  background: #e6f2f6;
  color: #0d2a34;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0ea5e9;
  font-weight: 700;
}

.prices {
  background: var(--bg-2);
  border-radius: 36px;
}

.price-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
}

.price-note {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-group {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 42, 52, 0.08);
}

.price-group:first-of-type {
  margin-top: 12px;
  padding-top: 0;
  border-top: none;
}

.price-group h4 {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.95rem;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(13, 42, 52, 0.08);
  background: #ffffff;
}

.price-table thead th {
  text-align: left;
  padding: 12px 14px;
  background: #e8f2f7;
  font-weight: 700;
  color: var(--dark);
}

.price-table tbody td {
  padding: 10px 14px;
  border-top: 1px solid rgba(13, 42, 52, 0.06);
  background: #ffffff;
}

.price-table tbody tr:nth-child(even) td {
  background: #f7fbfd;
}

.price-table tbody td:last-child {
  text-align: right;
  font-weight: 700;
}

.price-table td:first-child {
  width: 72%;
  word-break: break-word;
}

.price-table td:last-child {
  width: 28%;
}


.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.steps span {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eef6fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1b6fae;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.campaign {
  background: #eef7e4;
  border-radius: 36px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  justify-content: center;
}

.campaign-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  min-height: 170px;
  position: relative;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  animation: floatIn 0.7s ease forwards;
}

.campaign-card:nth-child(2) { animation-delay: 0.08s; }
.campaign-card:nth-child(3) { animation-delay: 0.16s; }
.campaign-card:nth-child(4) { animation-delay: 0.24s; }

.campaign-card h3 {
  margin: 12px 0 6px;
  font-size: 1.02rem;
}

.campaign-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.campaign-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 12px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeLeft 26s linear infinite;
}

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

.gallery-card {
  width: 180px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  flex: 0 0 auto;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram .section-head p {
  color: var(--muted);
}

.ig-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

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

.ig-grid .instagram-media {
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow);
}

.contact {
  background: linear-gradient(180deg, #eef5f3 0%, #f7faf9 100%);
  color: var(--dark);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.contact .container {
  padding: 24px;
}

.contact::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(27, 111, 174, 0.12), transparent 70%);
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin: 6px 0 4px;
}

.contact a {
  color: var(--dark);
}

.contact-card,
.info-card,
.hours-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  align-self: stretch;
  text-align: center;
}

.contact-card h3,
.info-card h3,
.hours-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.contact-card p,
.info-card p {
  margin: 0 0 8px;
  font-size: 16px;
  color: #111827;
  line-height: 1.45;
}

.info-card p {
  font-weight: 600;
}

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

.info-card {
  min-height: 120px;
}

.hours-card h3 {
  margin-bottom: 10px;
}

.hours-list {
  display: grid;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.hours-row:first-child {
  border-top: none;
}

.hours-row span {
  color: #475569;
  font-weight: 500;
}

.hours-row strong {
  color: #0f172a;
  font-weight: 600;
}

.hours-row.disabled span,
.hours-row.disabled strong {
  color: #94a3b8;
}

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

.contact-actions .btn {
  flex: 1 1 0;
  justify-content: center;
  min-width: 160px;
}

.contact-card .btn {
  height: 44px;
  padding: 0 18px;
}

.contact-card .btn.ghost {
  background: transparent;
  color: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.contact-card .btn:not(.ghost) {
  background: #0ea5e9;
}

.contact-card .btn.btn-whatsapp {
  background: #25d366;
  color: #111827;
}

.contact-card .btn.btn-whatsapp:hover {
  background: #20c65b;
}

.map-box {
  margin-top: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.map-box span {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex: 1;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.footer {
  background: #0a2028;
  color: #c2d0d6;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  height: 36px;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 6px;
}

.footer-slogan {
  margin-top: 8px;
  color: #b8c6cc;
  font-size: 0.95rem;
}

.footer-badge {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-badge img {
  height: 34px;
  width: auto;
}

.footer-badge span {
  color: #cfe0e6;
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 14px;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .header-bar {
    flex-wrap: wrap;
    border-radius: 24px;
    gap: 12px;
  }

  .header-cta {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    padding: 64px 0 48px;
  }

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

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .media-card img {
    height: 260px;
  }

  .hero-grid,
  .price-panels,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-card {
    width: 160px;
  }

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

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

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

  .nav {
    position: fixed;
    top: 90px;
    right: 5vw;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .header.hide-cta .header-cta {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .header-cta {
    transition: opacity 0.2s ease, transform 0.2s ease, max-height 0.2s ease;
  }

  .mobile-only {
    display: inline-flex;
  }

  .desktop-only {
    display: none;
  }

  .header-bar {
    border-radius: 18px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 10px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    height: 34px;
  }

  .pill {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 10px;
    justify-items: center;
  }

  .header-cta .btn {
    padding: 9px 16px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .burger {
    display: none;
  }

  .nav {
    top: 76px;
  }

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

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

  .section {
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .lead {
    font-size: 0.98rem;
    text-align: center;
  }

  .eyebrow {
    display: none;
  }

  .media-rotator {
    height: 220px;
  }

  .media-mini {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .media-mini img {
    display: none;
  }

  .contact .container {
    padding: 16px;
  }

  .contact h2 {
    font-size: 28px;
  }

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

  .contact-left {
    order: 2;
  }

  .contact-card {
    order: 1;
    padding: 16px;
  }

  .info-card,
  .hours-card {
    padding: 16px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 10px;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .price-card {
    padding: 16px;
  }

  .price-table {
    font-size: 0.85rem;
    border-radius: 12px;
  }

  .price-table tbody td {
    padding: 8px 10px;
  }

  .price-table tbody td:last-child {
    white-space: nowrap;
  }

  .price-table td:first-child {
    width: 72%;
  }

  .price-table td:last-child {
    width: 28%;
  }

  .map-box iframe {
    height: 220px;
  }

  .gallery-card {
    width: 140px;
  }

  .ig-grid {
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    grid-template-columns: unset;
    overflow-x: auto;
    gap: 20px;
    padding: 0 10px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ig-grid .instagram-media {
    scroll-snap-align: start;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-logo {
    height: 32px;
  }

  .footer-slogan {
    font-size: 0.9rem;
  }

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

  .footer-badge img {
    height: 30px;
  }
}

@keyframes rotateFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  25% { opacity: 1; }
  31% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .media-rotator img {
    animation: none;
    opacity: 0;
  }
  .media-rotator img:first-child {
    opacity: 1;
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
