/* CLINENSFJ — landing (mobile-first) */
:root {
  --navy-950: #060d18;
  --navy-900: #0a1628;
  --navy-800: #122337;
  --navy-100: #e8eef7;
  --bg: #f3f6fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6b82;
  --accent: #0c8a7c;
  --accent-dark: #0a6d62;
  --accent-soft: rgba(12, 138, 124, 0.12);
  --border: rgba(15, 23, 42, 0.09);
  --shadow-sm: 0 4px 20px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 16px 48px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 28px 80px rgba(6, 13, 24, 0.18);
  --radius: 16px;
  --radius-sm: 12px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --header-h: 64px;
  --space-section: clamp(3rem, 8vw, 5.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  padding-bottom: env(safe-area-inset-bottom);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--surface);
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.75rem;
  outline: 2px solid var(--accent);
}

.wrap {
  width: min(1140px, calc(100% - 2 * clamp(1rem, 5vw, 1.75rem)));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 246, 251, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.5vw, 1.35rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.35rem);
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}

.nav-toggle::before {
  top: 18px;
}

.nav-toggle::after {
  bottom: 18px;
}

body.nav-open .nav-toggle::before {
  top: 23px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle::after {
  bottom: 23px;
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem clamp(1rem, 5vw, 1.75rem) calc(1.5rem + env(safe-area-inset-bottom));
    gap: 0;
    background: var(--surface);
    box-shadow: var(--shadow-md);
    z-index: 40;
    overflow-y: auto;
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 1rem 0;
    min-height: 52px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }

  .nav .btn {
    margin-top: 0.75rem;
    justify-content: center;
    min-height: 48px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s, box-shadow 0.2s;
  min-height: 48px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--small {
  padding: 0.5rem 1rem;
  min-height: 40px;
  font-size: 0.88rem;
}

/* WhatsApp (menu): verde oficial, texto branco */
.btn--whatsapp {
  background: linear-gradient(180deg, #25d366 0%, #1ebe5d 48%, #128c7e 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.38);
  text-decoration: none;
}

.btn--whatsapp:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.nav a.btn--whatsapp {
  color: #fff !important;
  padding: 0.45rem 1rem;
  min-height: 40px;
  text-decoration: none;
}

.nav a.btn--whatsapp:hover {
  color: #fff !important;
}

.btn--primary {
  background: linear-gradient(165deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(12, 138, 124, 0.28);
}

.btn--primary:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.btn--outline {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text) !important;
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark) !important;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy-900) !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn--ghost {
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark) !important;
  background: #fff;
}

.btn--light {
  background: #fff;
  color: var(--navy-900) !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.15);
}

.btn--light:hover {
  background: var(--navy-100);
  color: var(--navy-900) !important;
}

.btn--lg {
  padding: 1rem 1.85rem;
  font-size: 1.05rem;
  min-height: 52px;
}

.btn--block {
  width: 100%;
}

.btn--insta {
  margin-top: auto;
  background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
  color: #fff !important;
  border: none;
  text-decoration: none;
  min-height: 48px;
}

.btn--insta:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.insta-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  flex-shrink: 0;
}

.insta-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid #fff;
  border-radius: 5px;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2rem, 6vw, 3.5rem) 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 10%, rgba(12, 138, 124, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 0%, rgba(59, 130, 246, 0.1), transparent 45%),
    linear-gradient(180deg, #eef3fa 0%, var(--bg) 55%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.hero-lead {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

@media (min-width: 901px) {
  .hero-visual {
    margin-inline: 0 0;
    margin-left: auto;
    max-width: none;
  }
}

.hero-figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--navy-800);
}

.hero-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.hero-panel {
  margin-top: -2.5rem;
  margin-inline: clamp(0.5rem, 3vw, 1.25rem);
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.15rem;
}

@media (min-width: 901px) {
  .hero-panel {
    margin-top: -3rem;
    max-width: 92%;
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-panel-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.hero-panel-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel-k {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.hero-panel-v {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy-900);
}

/* Trust strip */
.trust-strip {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: 1.15rem 0 calc(1.5rem + env(safe-area-inset-bottom));
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(10, 22, 40, 0.04);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 560px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  text-align: center;
}

@media (min-width: 560px) {
  .trust-item {
    justify-content: flex-start;
    text-align: left;
  }
}

.trust-ico {
  display: flex;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

.section-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 0.5rem;
}

.section-kicker--dark {
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--navy-900);
  line-height: 1.15;
}

.section-intro {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  text-align: left;
  line-height: 1.7;
}

.section-intro strong {
  color: var(--text);
}

/* Results */
.section--results {
  background: linear-gradient(155deg, var(--navy-900) 0%, #152a45 48%, var(--navy-800) 100%);
  color: #e8edf5;
  position: relative;
}

.section--results::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 100% 50%, rgba(12, 138, 124, 0.12), transparent 55%);
  pointer-events: none;
}

.results-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: center;
}

@media (min-width: 901px) {
  .results-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.results-visual {
  order: 2;
}

.results-copy {
  order: 1;
}

@media (min-width: 901px) {
  .results-visual {
    order: 0;
  }

  .results-copy {
    order: 0;
  }
}

.results-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.results-copy .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.results-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: #fff;
}

.results-lead {
  margin: 0 0 1.5rem;
  color: rgba(232, 237, 245, 0.88);
  font-size: 1.05rem;
  max-width: 40ch;
  line-height: 1.65;
}

/* Grupo */
.section--grupo {
  background: linear-gradient(180deg, var(--bg) 0%, #e9f0f8 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 640px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1080px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.company-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.company-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy-800);
}

.company-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.company-card-top {
  margin-bottom: 0.65rem;
}

.company-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.company-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  line-height: 1.2;
  color: var(--navy-900);
}

.company-short {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

.company-desc {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  line-height: 1.6;
}

/* Contact */
.section--contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.contact-main {
  order: 1;
}

.contact-visual {
  order: 2;
}

@media (min-width: 901px) {
  .contact-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: center;
  }

  .contact-visual {
    order: 0;
  }

  .contact-main {
    order: 0;
  }
}

.contact-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 900px) {
  .contact-img-wrap img {
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }
}

.contact-main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  margin: 0 0 0.5rem;
  color: var(--navy-900);
}

.contact-lead {
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.contact-list li {
  margin-bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

a.contact-value:hover {
  color: var(--accent-dark);
}

.contact-cta-card {
  background: linear-gradient(145deg, #f0f5fb 0%, var(--surface) 100%);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-cta-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-family: var(--font-display);
  color: var(--navy-900);
}

.contact-cta-card p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  padding: 1.75rem 0 calc(2rem + env(safe-area-inset-bottom));
  background: var(--navy-950);
  color: rgba(232, 237, 245, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-inner p {
  margin: 0;
}

.footer-admin {
  font-size: 0.82rem;
  color: rgba(232, 237, 245, 0.45);
  text-decoration: none;
}

.footer-admin:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .company-card {
    transition: none;
  }
}
