:root {
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --accent: #ff6b4a;
  --accent-soft: rgba(255, 107, 74, 0.06);
  --text: #151826;
  --muted: #6c7285;
  --border: #e1e4f0;
  --radius-lg: 18px;
  --shadow-soft: 0 14px 30px rgba(31, 41, 55, 0.08);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', sans-serif;
  background: #ffffff;
  color: var(--text);
}


/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b4a, #ffb347);
  transition: width 0.18s ease-out;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--muted);
}

.lang-pill--active {
  border-color: var(--border);
  background: var(--bg-alt);
  color: var(--text);
}


/* LAYOUT SECTIONS */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

/* HERO / HOME */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 74, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1.1;
}

.hero-highlight {
  background: linear-gradient(90deg, #ffb347, #ff6b4a);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


.hero-subtitle {
  color: var(--muted);
  max-width: 40rem;
  font-size: 0.98rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.35rem;
}

.metric {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  /* antes: background: rgba(10, 14, 35, 0.9); */
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--text);
}


.metric strong {
  font-size: 1.05rem;
  margin-right: 0.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b4a, #ffb347);
  color: #050816;
  font-weight: 600;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* RIGHT PANEL / CARD */

.hero-card {
  border-radius: 24px;
 background: var(--bg-alt);
   border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.hero-card-services {
  display: grid;
  gap: 0.7rem;
  font-size: 0.85rem;
}

.service-pill {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  /* antes: background: rgba(10, 14, 35, 0.9); */
  background: #ffffff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
}


/* SECTIONS */

.section {
  margin-top: 3.2rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.4rem;
  margin: 0;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 40rem;
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.1rem;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

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

/* CLIENTS */

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.client-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* LANGUAGES LIST */

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.language-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.language-heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flag {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.language-country {
  font-size: 0.8rem;
  color: var(--muted);
}

.languages-search {
  margin-bottom: 1.2rem;
}

.languages-search-input {
  width: 100%;
  max-width: 360px;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--text);
}


/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.contact-card,
.form-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.2rem;
}

.contact-item {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.contact-value {
  font-size: 1rem;
}

.contact-value a {
  color: var(--accent);
  text-decoration: none;
}

/* FORM */

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

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

.field input,
.field textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 0.55rem 0.7rem;
  color: var(--text);
  font: inherit;
}


.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
}

/* FOOTER */

.footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.4rem;
  background: #ffffff;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    margin-top: 1rem;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .nav-links {
    gap: 0.9rem;
  }
}

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

.logo-image {
  height: 54px;
  width: auto;
  display: block;
}

.clients-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}



.client-logo {
  height: 94px; /* antes 28px */
  width: auto;
  display: block;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 1rem;
  background: rgba(10, 10, 20, 0.96);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.9rem;
}

.cookie-banner[data-visible='true'] {
  display: block;
}

.cookie-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner-title {
  font-size: 0.95rem;
}

.cookie-banner-body {
  margin: 0.25rem 0 0;
  line-height: 1.4;
}

.cookie-banner-link {
  color: #9fd2ff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

