* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Random Grotesque", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #0f172a;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #0f172a;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #803447;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  margin-right: 0.75rem;
}

.lang-btn {
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  padding: 0.25rem 0.6rem;
  background: #ffffff;
  font-size: 0.75rem;
  cursor: pointer;
}

.lang-btn:hover {
  border-color: #803447;
}

.lang-btn.is-active {
  border-color: #803447;
  background: #fff1ec;
  color: #803447;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0b1222 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 80% at 10% 10%, rgba(128, 52, 71, 0.22), transparent 60%),
    radial-gradient(70% 70% at 90% 80%, rgba(252, 93, 56, 0.2), transparent 55%);
  opacity: 0.9;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-family: "Cal Sans", "Random Grotesque", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #f8fafc;
}

.hero-text p {
  color: #e2e8f0;
}

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

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn:link,
.btn:visited {
  text-decoration: none;
}

.btn.primary {
  background: #803447;
  color: #ffffff;
}

.btn.ghost {
  background: #ffe7df;
  color: #fc5d38;
}

.btn-whatsapp {
  background: linear-gradient(90deg, #803447, #fc5d38);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(252, 93, 56, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #5c2333;
  text-decoration: none;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #f3e1e6;
}

.hero-mockup .app-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

.hero-banner-img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.18));
}

.app-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.app-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
}

.app-title {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.app-body p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.app-list {
  list-style: disc;
  padding-left: 1.25rem;
  color: #475569;
  font-size: 0.9rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #ffffff;
}

.section h2 {
  font-family: "Cal Sans", "Random Grotesque", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.section p {
  color: #64748b;
}

.section-timeline {
  background: linear-gradient(135deg, #0f172a 0%, #111b2c 50%, #0c101f 100%);
  color: #e2e8f0;
}

.section-timeline h2 {
  color: #f8fafc;
  font-size: 1.8rem;
}

.section-timeline p {
  color: #e2e8f0;
}

.timeline-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.timeline {
  position: relative;
}

.timeline-rail {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(128, 52, 71, 0.6), rgba(252, 93, 56, 0.6));
  filter: drop-shadow(0 0 8px rgba(252, 93, 56, 0.3));
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  position: relative;
}

.timeline-card {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.timeline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 20% 20%, rgba(252, 93, 56, 0.12), transparent 55%);
  pointer-events: none;
}

.timeline-dot {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fc5d38;
  box-shadow: 0 0 0 6px rgba(252, 93, 56, 0.2), 0 0 18px rgba(252, 93, 56, 0.45);
}

.timeline-year {
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #f8fafc;
  margin-top: 2.5rem;
  margin-bottom: 0.2rem;
}

.timeline-title {
  text-align: center;
  font-weight: 700;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.timeline-period {
  display: block;
  font-weight: 500;
  color: #cbd5f1;
  font-size: 0.85rem;
}

.timeline-text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5f1;
  text-align: center;
  min-height: 64px;
}

.timeline-card:hover {
  border-color: rgba(252, 93, 56, 0.6);
  box-shadow: 0 25px 45px rgba(252, 93, 56, 0.25);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

.timeline-card:hover .timeline-dot {
  box-shadow: 0 0 0 8px rgba(252, 93, 56, 0.25), 0 0 22px rgba(252, 93, 56, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
}

.section-plans .section-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 600px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.plan-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-card-featured {
  border: 2px solid #803447;
  box-shadow: 0 18px 45px rgba(128, 52, 71, 0.2);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: #803447;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.plan-price-old {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
}

.plan-price-new {
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 800;
}

.plan-price-badge {
  background: #fc5d38;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.plan-note {
  font-size: 0.8rem;
  color: #64748b;
}

.plan-features {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #475569;
  flex: 1;
}

.plans-footnote {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.app-demo-box {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 2px dashed #ffd0c2;
  background: #fff1ec;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #803447;
}

.download-section {
  padding-top: 1rem;
}

.launch-banner {
  padding-top: 0.5rem;
}

.launch-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(120deg, #ffe7df, #fff7f3);
  border: 1px solid #f2c7b7;
  box-shadow: 0 12px 30px rgba(252, 93, 56, 0.12);
}

.launch-label {
  color: #803447;
  font-weight: 600;
  font-size: 1rem;
}

.launch-date {
  color: #0f172a;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.download-subtitle {
  margin-top: 0.5rem;
  color: #475569;
}

.download-points {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: #475569;
  display: grid;
  gap: 0.4rem;
}

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

.store-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.store-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-os {
  background: #803447;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
}

.store-name {
  font-weight: 600;
  color: #0f172a;
}

.store-desc {
  color: #475569;
  font-size: 0.9rem;
}

.store-badge img {
  width: 180px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.store-hint {
  color: #94a3b8;
  font-size: 0.8rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 2rem));
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
  z-index: 2000;
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-link {
  color: #fc5d38;
  text-decoration: none;
}

.cookie-accept {
  white-space: nowrap;
}

.contact-form {
  margin-top: 1.5rem;
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

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

.form-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  color: #475569;
}

.form-group input,
.form-group textarea {
  border-radius: 0.75rem;
  border: 1px solid #e4cfd8;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #ffd0c2;
  border-color: #fc5d38;
}

.footer {
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0 1.25rem;
  background: #ffffff;
  margin-top: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
  color: #0f172a;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.footer-description {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.footer-title {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.footer-location {
  display: block;
  color: #475569;
  font-size: 0.9rem;
}

.footer-icon {
  display: inline-flex;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-link:hover {
  color: #803447;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-bottom {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.privacy-page {
  min-height: 70vh;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.privacy-container {
  display: grid;
  gap: 1rem;
}

.privacy-title {
  font-size: 2rem;
  color: #0f172a;
}

.privacy-updated {
  color: #64748b;
  font-size: 0.9rem;
}

.privacy-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.privacy-block h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.privacy-block p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-banner-img {
    max-width: 320px;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .launch-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-rail {
    top: 44px;
  }

  .timeline-dot {
    top: 38px;
  }

  .timeline-items {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 1.5rem);
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-center {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-links {
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}
