:root {
  --bg: #0b1117;
  --bg-alt: #0d1a21;
  --surface: rgba(16, 29, 38, 0.92);
  --surface-strong: #0f1f28;
  --line: rgba(16, 75, 91, 0.25);
  --text: #e6f3f8;
  --muted: #a6c0cc;
  --accent: #318652;
  --accent-2: #0e82a2;
  --accent-3: #8bb7c2;
  --danger: #f16c6c;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-lg: 28px;
  --max-width: 1200px;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Heebo', 'Assistant', sans-serif;
  font-size: calc(16px * var(--font-scale));
  background: radial-gradient(1200px 600px at 85% -10%, rgba(14, 130, 162, 0.25), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(49, 134, 82, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--accent-2);
  color: #041017;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button {
  font-family: inherit;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.topbar {
  background: rgba(8, 16, 22, 0.9);
  border-bottom: 1px solid rgba(14, 130, 162, 0.25);
  overflow: hidden;
}

.ticker {
  position: relative;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  animation: ticker 20s linear infinite;
  transform: translateX(0);
  padding-inline-start: 0;
  min-width: 100%;
  will-change: transform;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 14, 19, 0.8);
  border-bottom: 1px solid rgba(49, 134, 82, 0.18);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo img {
  width: auto;
  height: 92px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
  color: var(--muted);
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--text);
  background: rgba(14, 130, 162, 0.12);
}

.site-nav a.nav-cta {
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(14, 130, 162, 0.35);
  background: rgba(14, 130, 162, 0.18);
}

.site-nav a.nav-cta-feed {
  background: linear-gradient(120deg, rgba(61, 220, 132, 0.2), rgba(26, 163, 74, 0.2));
  border-color: rgba(61, 220, 132, 0.6);
  box-shadow: 0 0 0 2px rgba(61, 220, 132, 0.2);
}

.site-nav a.nav-cta-sheep {
  background: linear-gradient(120deg, rgba(255, 182, 87, 0.25), rgba(255, 106, 61, 0.25));
  border-color: rgba(255, 140, 78, 0.7);
  animation: navSheepBlink 1.4s ease-in-out infinite;
}

.access-no-motion .site-nav a.nav-cta-sheep {
  animation: none !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  cursor: pointer;
}

.lang-toggle.is-active {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(49, 134, 82, 0.3);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #041017;
}

.btn-primary.btn-emphasis {
  background: linear-gradient(130deg, #3ddc84, #1aa34a);
  border: 2px solid rgba(61, 220, 132, 0.7);
  box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.35), 0 22px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.btn-primary.btn-emphasis:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 6px rgba(61, 220, 132, 0.45), 0 26px 38px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(14, 130, 162, 0.25);
}

.btn-sheep {
  background: linear-gradient(120deg, #ffb657, #ff6a3d);
  color: #1b0b00;
  border: 1px solid rgba(255, 140, 78, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 140, 78, 0.35), 0 18px 32px rgba(0, 0, 0, 0.35);
  animation: sheepBlink 1.2s ease-in-out infinite;
}

.btn-sheep:hover {
  filter: brightness(1.08);
}

.access-no-motion .btn-sheep {
  animation: none !important;
}

.btn-outline {
  border-color: rgba(14, 130, 162, 0.5);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-3);
  color: var(--accent-3);
}

.hero {
  position: relative;
  padding: 84px 0 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 20px 0 auto 0;
  height: 280px;
  background: radial-gradient(closest-side, rgba(14, 130, 162, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
}

.hero h1 {
  font-family: 'Secular One', 'Heebo', sans-serif;
  font-size: clamp(2.4rem, 2.2rem + 1.2vw, 3.4rem);
  margin: 12px 0;
}

.hero p {
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 130, 162, 0.2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 200px at 80% 0%, rgba(14, 130, 162, 0.18), transparent 60%);
  pointer-events: none;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  background: rgba(14, 130, 162, 0.12);
  color: var(--text);
  border: 1px solid rgba(14, 130, 162, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section {
  padding: 70px 0;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 1.5rem + 0.8vw, 2.4rem);
  font-family: 'Secular One', 'Heebo', sans-serif;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.long-copy {
  max-width: 860px;
  color: var(--muted);
  line-height: 1.85;
}

.long-copy p {
  margin: 0 0 16px;
}

.long-copy p:last-child {
  margin-bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(49, 134, 82, 0.14);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 134, 82, 0.4);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card .btn {
  width: fit-content;
}

.highlight {
  background: linear-gradient(120deg, rgba(49, 134, 82, 0.15), rgba(14, 130, 162, 0.15));
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(14, 130, 162, 0.25);
  display: grid;
  gap: 16px;
  align-items: center;
}

.highlight .btn {
  width: fit-content;
}

.app-logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  border: 1px solid rgba(14, 130, 162, 0.35);
  background: rgba(6, 12, 18, 0.4);
  box-shadow: var(--shadow);
  padding: 6px;
}

.app-screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.app-screen {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(14, 130, 162, 0.25);
  background: rgba(10, 17, 22, 0.6);
  box-shadow: var(--shadow);
}

.app-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.video-embed {
  display: flex;
  justify-content: center;
}

.video-embed .tiktok-embed {
  margin: 0;
  width: min(420px, 100%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.stat {
  padding: 16px;
  border-radius: 14px;
  background: rgba(14, 26, 34, 0.8);
  border: 1px solid rgba(14, 130, 162, 0.2);
}

.stat strong {
  font-size: 1.4rem;
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.gallery-item {
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 130, 162, 0.2), rgba(49, 134, 82, 0.15));
  border: 1px dashed rgba(14, 130, 162, 0.5);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(16, 29, 38, 0.8);
  border: 1px solid rgba(49, 134, 82, 0.16);
}

.models-table-wrapper {
  margin-top: 18px;
  overflow-x: auto;
}

.models-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(49, 134, 82, 0.14);
}

.models-table th,
.models-table td {
  padding: 14px 16px;
  text-align: right;
  border-bottom: 1px solid rgba(14, 130, 162, 0.2);
  font-size: 0.95rem;
}

.models-table thead th {
  background: rgba(14, 130, 162, 0.12);
  color: var(--text);
  font-weight: 600;
}

.models-table tbody tr:hover {
  background: rgba(14, 130, 162, 0.08);
}

.models-table tbody tr:last-child td {
  border-bottom: 0;
}

@keyframes sheepBlink {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(255, 140, 78, 0.35), 0 18px 32px rgba(0, 0, 0, 0.35);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 140, 78, 0.6), 0 18px 32px rgba(0, 0, 0, 0.35);
    filter: brightness(1.18);
  }
}

@keyframes navSheepBlink {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(255, 140, 78, 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 140, 78, 0.5);
  }
}


.form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(14, 130, 162, 0.3);
  background: rgba(6, 12, 18, 0.7);
  color: var(--text);
  padding: 12px 14px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  border-top: 1px solid rgba(14, 130, 162, 0.2);
  background: rgba(6, 12, 18, 0.85);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h4 {
  margin-top: 0;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--text);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  --social-color: var(--accent-2);
  --social-border: rgba(14, 130, 162, 0.2);
  --social-bg: rgba(14, 130, 162, 0.12);
  color: var(--text);
  border: 1px solid var(--social-border);
  padding: 6px 12px;
  border-radius: 999px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--social-color);
  color: #ffffff;
  box-shadow: 0 0 0 1px var(--social-border);
}

.social-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.social-links a:hover {
  color: var(--social-color);
  border-color: var(--social-color);
  background: var(--social-bg);
}

.social-whatsapp {
  --social-color: #25d366;
  --social-border: rgba(37, 211, 102, 0.4);
  --social-bg: rgba(37, 211, 102, 0.12);
}

.social-whatsapp .social-icon {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.55);
}

.social-tiktok {
  --social-color: #000000;
  --social-border: rgba(255, 255, 255, 0.18);
  --social-bg: rgba(255, 255, 255, 0.08);
}

.social-tiktok .social-icon {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.social-facebook {
  --social-color: #1877f2;
  --social-border: rgba(24, 119, 242, 0.35);
  --social-bg: rgba(24, 119, 242, 0.12);
}

.social-facebook .social-icon {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(24, 119, 242, 0.55);
}


.phone-link {
  color: var(--accent-2);
  font-weight: 600;
  margin-inline-start: 6px;
}

.phone-link:hover {
  color: var(--text);
}

.footer-copy {
  margin-top: 32px;
  color: var(--muted);
  text-align: center;
}

.access-restore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-2);
  font-weight: 600;
}

.access-restore:hover {
  color: var(--text);
}

.access-restore-note {
  margin-top: 16px;
}

.access-widget {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.access-widget.is-hidden {
  display: none;
}

.access-fab-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.access-fab {
  border-radius: 999px;
  border: 1px solid rgba(14, 130, 162, 0.75);
  background: #ffffff;
  color: var(--accent-2);
  width: 56px;
  height: 56px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.access-fab:hover {
  background: #f4f8fa;
}

.access-fab__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.access-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(14, 130, 162, 0.6);
  background: rgba(7, 14, 19, 0.9);
  color: var(--accent-2);
  font-size: 0.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.access-close:hover {
  color: var(--text);
  border-color: var(--accent-2);
}

.access-panel {
  margin-top: 12px;
  background: rgba(7, 14, 19, 0.95);
  border: 1px solid rgba(14, 130, 162, 0.3);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 10px;
  min-width: 220px;
}

.access-panel[data-open] {
  display: grid;
}

.access-panel button {
  background: rgba(14, 130, 162, 0.1);
  border: 1px solid rgba(14, 130, 162, 0.3);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.access-panel button:hover {
  border-color: var(--accent-2);
}

.access-contrast {
  --bg: #000000;
  --bg-alt: #040404;
  --surface: #111111;
  --surface-strong: #1b1b1b;
  --line: #ffffff;
  --text: #ffffff;
  --muted: #f5f5f5;
  --accent: #0e82a2;
  --accent-2: #ffffff;
  --accent-3: #318652;
}

.access-underline-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.access-no-motion * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

.page-header {
  padding: 60px 0 24px;
}

.page-header h1 {
  font-family: 'Secular One', 'Heebo', sans-serif;
  margin: 0 0 10px;
}

.page-header p {
  margin: 0;
  color: var(--muted);
}

.notice {
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(14, 130, 162, 0.3);
  background: rgba(14, 130, 162, 0.08);
  color: var(--text);
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(300px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 24px;
    background: rgba(7, 14, 19, 0.98);
    transform: translateX(110%);
    transition: 0.2s ease;
  }

  body.nav-open .site-nav {
    transform: translateX(0%);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 700px) {
  .logo img {
    height: 80px;
  }

  .header-content {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 60px;
  }
}
