/* Base theme */
:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #4b5563;
  --accent: #ff8c42;
  --accent-dark: #e9762c;
  --line: #e5e7eb;
  --shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  --radius: 14px;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', Arial, sans-serif;
}

body {
  margin: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  z-index: 1000;
}

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

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

.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #1f2937);
  position: relative;
}

.logo__mark::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 8px;
  background: var(--accent);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__title {
  font-weight: 700;
  font-size: 1rem;
}

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

.nav {
  display: flex;
  align-items: center;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link {
  padding: 8px 10px;
  font-weight: 500;
  color: var(--muted);
}

.nav__link:hover {
  color: var(--text);
}

.nav__cta .btn--ghost {
  padding: 10px 14px;
}

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

.nav__toggle,
.nav__close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: #d1d5db;
  box-shadow: none;
}

.btn--ghost:hover {
  background: #e5e7eb;
}

.btn--sm {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 140px 0 80px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 140, 66, 0.12), transparent 40%), #0f172a;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 12px 0;
  font-family: 'Space Grotesk', 'Manrope', Arial, sans-serif;
}

.lead {
  color: #e5e7eb;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.hero__chips,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.hero__chips .chip {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.section {
  padding: 80px 0;
  background: var(--bg);
}

.section--light {
  background: #fff;
}

.section--cta {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__icon {
  font-size: 1.6rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

.section__footer {
  margin-top: 32px;
  text-align: center;
}

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

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.testimonial__text {
  color: var(--muted);
  line-height: 1.6;
}

.testimonial__meta {
  margin-top: 14px;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
  color: var(--muted);
}

.contact__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 40px 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.footer__title {
  font-weight: 700;
  margin-bottom: 6px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: #cbd5e1;
}

.footer__meta {
  color: #94a3b8;
}

.float-buttons {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.float-btn img {
  width: 26px;
  height: 26px;
}

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

.float-btn--instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.page__hero {
  padding-top: 120px;
  padding-bottom: 50px;
  background: #0f172a;
  color: #fff;
  text-align: center;
}

.hero--secondary {
  background: radial-gradient(circle at 80% 10%, rgba(255, 140, 66, 0.12), transparent 40%), #0f172a;
}

.page {
  padding-top: 80px;
}

.service-block {
  background: #fff;
  padding: 26px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-block p {
  color: var(--muted);
  line-height: 1.7;
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.keywords span {
  padding: 6px 10px;
  border-radius: 10px;
  background: #eef2ff;
  color: #312e81;
  font-weight: 600;
}
