﻿:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --surface: #141b23;
  --text: #edf3f7;
  --muted: #9aa7b4;
  --border: #2a3642;
  --accent: #3e8db5;
  --accent-dark: #2e6f90;
  --accent-soft: #102632;
  --shadow: 0 20px 50px rgba(4, 10, 16, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #0f1a24 0%, var(--bg) 55%), var(--bg);
  line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.main-nav {
  display: none;
  gap: 20px;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(62, 141, 181, 0.22);
}

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

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

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

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-aside {
  display: grid;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 16px;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
}

.subtitle {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.cta-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
}

.stat {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-title {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

.section {
  padding: 56px 0;
}

.section-muted {
  background: #0f141c;
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

.section-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.bullet-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-grid li {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}

.carousel-slide {
  scroll-snap-align: start;
}

.hero-carousel .carousel-track {
  border-radius: var(--radius);
}

.hero-carousel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(20, 27, 35, 0.95);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 8px;
}

.carousel-btn.next {
  right: 8px;
}

.brand-card {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  color: var(--muted);
  min-height: 80px;
  display: grid;
  place-items: center;
}

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

.logo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  color: var(--muted);
  display: grid;
  gap: 12px;
  place-items: center;
}

.logo-card img {
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
}

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

.collaborator-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.collaborator-link {
  display: inline-flex;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(4, 10, 16, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.collaborator-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 16px 28px rgba(6, 16, 24, 0.45);
}

.collaborator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaborator-body h3 {
  margin: 0 0 6px;
}

.collaborator-role {
  margin: 0 0 6px;
  color: var(--text);
  font-weight: 600;
}

.collaborator-note {
  margin: 0;
  color: var(--muted);
}

.coverage {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.coverage-note {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-details p {
  margin: 0 0 8px;
  color: var(--muted);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 80px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.whatsapp-sticky {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0f8f57;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(6, 30, 18, 0.7);
  z-index: 50;
}

.whatsapp-sticky:hover {
  background: #0b7346;
}

@media (min-width: 680px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 760px) {
  .main-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

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

  .section-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .carousel[data-carousel="brands"] .carousel-track {
    grid-auto-columns: calc(50% - 8px);
  }

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

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .carousel[data-carousel="brands"] .carousel-track {
    grid-auto-columns: calc(25% - 12px);
  }

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

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