:root {
  --text-primary: #111111;
  --text-secondary: #4b4b4b;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem; /* ~48px */
}

h2 {
  font-size: 2.25rem; /* ~36px */
}

h3 {
  font-size: 1.5rem; /* ~24px */
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.small,
.caption {
  font-size: 0.875rem;
  color: #6b6b6b;
}

button,
.btn {
  font-family: var(--font-base);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.tag,
.chip,
.badge {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

section{
  max-width: 98%;
  margin: 0px auto;
}
:root {
  --bg-hero: #fdf7f8;
  --dark: #0e0e0e;
  --text: #1a1a1a;
  --brown: #4a2e26;
}

* { box-sizing: border-box; }

.container {
  max-width: 90%;
  margin: auto;
  padding: 0 24px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: black;
  border-bottom: 1px solid #eaeaea;
}

.topbar-inner {
  margin: 0 auto;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
}

/* Logo */
.logo img {
  height: 46px;
  display: block;
  margin: 0 auto;
}

/* Menus */
.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}

.menu a:hover {
  color: #ccc;
}

/* Actions */
.actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.signin {
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}

.signin:hover {
  text-decoration: underline;
}

.btn-primary {
  background: #5b4df5; /* puedes ajustar a tu branding */
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #4a3fe0;
}


.actions {
  display: flex;
  gap: 12px;
}

.btn-outline {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}

.btn-primary {
  background: var(--brown);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
}

.hero {
  min-height: calc(100vh - 68px);
  background: url('./images/hero.png') right center no-repeat, var(--bg-hero);
  background-size: contain;
  display: flex;
  align-items: center;
}

.hero-content {
  width: 100%;
}

.copy {
  max-width: 520px;
}

.copy h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.copy p {
  font-size: 18px;
  color: #444;
  margin-bottom: 32px;
}

.cta {
  display: flex;
  gap: 12px;
}

.cta input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 14px;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111;
}

.guided-entry {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #f7f4ef, #efe9e0);
}


.intro h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  max-width: 520px;
}

.input-wrapper {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  width: 55%;
}

.input-wrapper input {
  flex: 1;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  width: 50%;
}

.input-wrapper button {
  padding: 1rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.examples {
  margin-top: 2.5rem;
  height: 400px;
}

.examples span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #666;
  width: 100%;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.chip {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.85rem;
}

@media (max-width: 700px) {
  .intro h1 {
    font-size: 2.2rem;
  }

  .input-wrapper {
    flex-direction: column;
  }

  .input-wrapper button {
    width: 100%;
  }
}

.examples {
  margin-top: 2.5rem;
}

.examples-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #666;
}

.rotator {
  position: relative;
  margin-top: 0.8rem;
  min-height: 48px;
}

.group {
  position: absolute;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.group.active {
  opacity: 1;
  pointer-events: auto;
}

.chip {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.85rem;
}

@media (max-width: 900px) {

  .topbar-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu.left,
  .actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .topbar.open .menu.left,
  .topbar.open .actions {
    display: flex;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 16px 24px;
    gap: 16px;
  }

  .topbar.open .actions {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .examples {
  display: none;
}
  .hero {
    background: var(--bg-hero);
    padding: 4rem 0;
  }

  .intro h1 {
    font-size: 2.2rem;
  }

  .intro p {
    font-size: 1rem;
  }

  .input-wrapper {
    width: 100%;
    flex-direction: column;
  }

  .input-wrapper input,
  .input-wrapper button {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .examples {
  display: none;
}
  .rotator {
    position: static;
  }

  .group {
    position: static;
    opacity: 1;
    pointer-events: auto;
    margin-bottom: 1.5rem;
  }
}
