:root {
  --purple-950: #180F2B;
  --purple-900: #241A3D;
  --purple-800: #35244F;
  --purple-700: #4A3466;
  --purple-100: #EEEAF8;
  --orange: #F2793A;
  --orange-dark: #D9601F;
  --ink: #1E1626;
  --ink-soft: #6B6478;
  --bg: #FFFFFF;
  --bg-soft: #F8F7FC;
  --line: #E7E3F0;
  --shadow: 0 1px 2px rgba(27, 18, 48, 0.06), 0 10px 26px rgba(27, 18, 48, 0.10);
  --font-head: "Poppins", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

header.site {
  padding: 18px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 3px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.wordmark .dot { color: var(--orange); }

nav.site-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--orange-dark);
  border-color: var(--orange);
}

/* Hero band */

.hero-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 15% 0%, var(--purple-700) 0%, var(--purple-900) 46%, var(--purple-950) 100%);
  color: #fff;
  padding: 64px 0 60px;
}

.hero-band--sub { padding: 42px 0 40px; }

.hero-band::before,
.hero-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-band::before {
  width: 360px;
  height: 360px;
  background: var(--orange);
  opacity: 0.35;
  top: -160px;
  right: -80px;
}

.hero-band::after {
  width: 260px;
  height: 260px;
  background: #8B6BC7;
  opacity: 0.35;
  bottom: -140px;
  left: 8%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-band--sub .hero-content { max-width: 620px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #FFD9BE;
  background: rgba(242, 121, 58, 0.16);
  border: 1px solid rgba(242, 121, 58, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.hero-band h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-wrap: balance;
}

.hero-band h1 .hl { color: var(--orange); }

.hero-band p {
  color: #D6D0E6;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-cta .btn-primary {
  padding: 13px 22px;
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat span {
  font-size: 0.82rem;
  color: #B8B0CE;
}

/* Main layout */

main { background: var(--bg); padding: 44px 0 70px; }

section.content { display: block; margin-bottom: 8px; }

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}

.section-head .eyebrow {
  color: var(--orange-dark);
  background: #FFF1E7;
  border-color: #FBD9BE;
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin: 0 0 10px;
  color: var(--ink);
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

/* Tool cards on hub */

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.tool-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 30px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(27,18,48,0.08), 0 18px 34px rgba(27,18,48,0.14);
}

.tool-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.tool-card h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.tool-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

.tool-card .go {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-dark);
}

/* Panel (tool pages) */

.panel {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 36px;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 760px) {
  .panel-grid { grid-template-columns: 1fr; }
  .panel { padding: 26px 20px; }
  .hero-stats { gap: 24px; }
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.field input[type="text"],
.field input[type="number"],
.field input[type="url"],
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  background: #fff;
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.autofill-box {
  background: var(--purple-100);
  border: 1px solid #DCD4F0;
  border-radius: 14px;
  padding: 16px 18px 18px;
}

.autofill-box label { color: var(--purple-700); }

.autofill-row {
  display: flex;
  gap: 10px;
}

.autofill-row input {
  flex: 1;
}

.autofill-row .btn-secondary {
  white-space: nowrap;
  flex-shrink: 0;
}

.autofill-hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin: 8px 0 0;
  line-height: 1.5;
}

.autofill-hint.error { color: var(--orange-dark); font-weight: 600; }
.autofill-hint.success { color: var(--purple-700); font-weight: 600; }

.output-box {
  background: var(--purple-100);
  border: 1px solid #DCD4F0;
  border-radius: 14px;
  padding: 20px;
  font-size: 0.98rem;
  line-height: 1.6;
  min-height: 60px;
  word-break: break-word;
  color: var(--ink);
}

.output-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
  background: var(--orange);
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover { background: var(--orange-dark); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline-light {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-secondary {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--purple-700);
  background: transparent;
  border: 1.5px solid var(--purple-700);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
}

.btn-secondary:hover { background: var(--purple-100); }

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.copy-hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 14px;
}

.stat {
  background: var(--purple-100);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.stat .num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--purple-700);
}

.stat .label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* Ad slots */

.ad-slot {
  margin: 34px 0;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Promo: agendas SyncRise */

.promo {
  position: relative;
  overflow: hidden;
  margin: 44px 0;
  background: radial-gradient(120% 160% at 85% 100%, var(--purple-700) 0%, var(--purple-900) 55%, var(--purple-950) 100%);
  border-radius: 22px;
  padding: 34px;
  color: #fff;
}

.promo::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.28;
  filter: blur(60px);
  top: -120px;
  right: -60px;
  pointer-events: none;
}

.promo-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.promo-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0;
  color: #fff;
}

.promo-head span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFD9BE;
  background: rgba(242, 121, 58, 0.18);
  border: 1px solid rgba(242, 121, 58, 0.45);
  border-radius: 999px;
  padding: 4px 12px;
}

.promo p.lead {
  position: relative;
  z-index: 1;
  color: #D6D0E6;
  margin: -6px 0 22px;
  max-width: 60ch;
  line-height: 1.6;
}

.promo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.promo-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.promo-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 10px;
}

.promo-card .promo-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.promo-card .promo-price {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--orange-dark);
  font-weight: 800;
}

/* Guide + FAQ */

.guide {
  margin: 48px 0;
  padding: 34px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.guide h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--ink);
}

.guide p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 14px;
}

.guide ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.guide ul li strong { color: var(--ink); }

.faq {
  margin: 48px 0;
}

.faq h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 0 20px;
  color: var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.faq-item[open] summary::after { content: "–"; }

.faq-item p {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 12px 0 0;
}

/* Blog */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 8px;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(27,18,48,0.08), 0 18px 34px rgba(27,18,48,0.14);
}

.blog-card .blog-date {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-dark);
  margin-bottom: 10px;
}

.blog-card h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.3;
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.55;
}

.blog-card .go {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange-dark);
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

.article .article-meta {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-dark);
  margin-bottom: 8px;
}

.article h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 36px 0 14px;
  color: var(--ink);
}

.article h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 26px 0 10px;
  color: var(--ink);
}

.article p, .article li {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.article ul, .article ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.article li { margin-bottom: 8px; }

.article strong { color: var(--ink); }

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--purple-700);
  text-decoration: none;
  margin-bottom: 26px;
}

.article-inline-promo {
  margin: 32px 0;
  padding: 22px 24px;
  background: var(--purple-100);
  border-radius: 16px;
  border: 1px solid #DCD4F0;
}

.article-inline-promo p {
  margin: 0 0 12px;
  color: var(--ink);
}

.article-inline-promo a.btn-primary { font-size: 0.88rem; padding: 11px 22px; }

/* Sobre mí */

.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--purple-100);
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.about-text {
  font-family: "Plus Jakarta Sans", var(--font-body);
}

.about-text h2 {
  font-family: "Plus Jakarta Sans", var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 30px 0 12px;
  color: var(--ink);
}

.about-text h2:first-child { margin-top: 0; }

.about-text p {
  font-family: "Plus Jakarta Sans", var(--font-body);
  color: var(--ink-soft);
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-text strong { color: var(--ink); font-weight: 600; }

.about-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Legal page */

.legal h1 {
  font-family: var(--font-head);
  font-weight: 800;
}

.legal h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  margin-top: 32px;
  color: var(--ink);
}

.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; }

/* Footer */

footer.site {
  background: var(--purple-950);
  color: #B8B0CE;
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}

footer.site a {
  text-decoration: none;
  color: #D6D0E6;
  font-weight: 600;
}

footer.site a:hover { color: var(--orange); }

/* Cookie banner */

#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--purple-950);
  color: #FBF6EC;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 100;
  display: none;
}

#cookie-banner.show { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

#cookie-banner p { margin: 0; font-size: 0.85rem; flex: 1 1 240px; line-height: 1.5; }

#cookie-banner .actions { display: flex; gap: 10px; }

#cookie-banner button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  border: none;
}

#cookie-banner .accept { background: var(--orange); color: #fff; }
#cookie-banner .decline { background: transparent; color: #FBF6EC; border: 1px solid rgba(251,246,236,0.4); }
