/* Agendo - shared by every marketing page.
   Page rules live in assets/css/<page>.css and load after this file. */

:root {
  --pink-primary: #E5648F;
  --pink-dark: #C94D75;
  --blue-secondary: #1A29C0;
  --lavender: #C4A5E1;
  --body-primary: #2E2623;
  --body-secondary: #50606D;
  --background: #FBFBFB;
  --card-bg: #FFFFFF;
  --border-color: rgba(46, 38, 35, 0.08);
  --section-brown: #F5F0EC;
  --section-warm: #F9DEDC;
  --section-purple: #f0eaf6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--body-primary);
  background: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
}
.font-arya {
  font-family: 'Arya', sans-serif;
}

/* ========================
   NAVIGATION
   ======================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-color);
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo img {
  width: 20px;
  height: 28px;
}
.logo span {
  font-family: 'Arya', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--body-primary);
  transition: color 0.3s;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-primary);
  text-decoration: none;
  padding: 0.4rem 0.2rem;
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover {
  color: var(--pink-primary);
}
.nav-link.active {
  color: var(--pink-primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0;
  height: 2px;
  background: var(--pink-primary);
  border-radius: 2px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--body-primary);
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}
.nav-toggle:hover { background: rgba(0,0,0,0.06); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 4px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    padding: 0.4rem 0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links .nav-link {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 0;
  }

  .nav-links .nav-link.active { background: rgba(229, 100, 143, 0.08); }
  .nav-links .nav-link.active::after { display: none; }
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2rem;
  padding: 0.2rem;
  transition: background 0.3s;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.7rem;
  border: none;
  background: transparent;
  border-radius: 1.5rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--body-secondary);
  transition: all 0.25s;
  letter-spacing: 0.05em;
}
a.lang-btn {
  text-decoration: none;
  justify-content: center;
}
.lang-btn:hover {
  color: var(--body-primary);
}
.lang-btn.active {
  background: var(--pink-primary);
  color: #fff;
}

/* ======================== LAYOUT ======================== */
.panel-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #FBF8F4;
  color: var(--body-secondary);
  padding: 5rem 2rem 2rem;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid var(--border-color);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--body-primary);
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img { width: 22px; height: 30px; }
.footer-brand .footer-logo span {
  font-family: 'Arya', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 22rem;
  margin-bottom: 1.75rem;
  color: var(--body-secondary);
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body-primary);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--body-secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.footer-col a:hover { color: var(--pink-primary); }
.footer-store-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-store-badges .store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--body-primary);
  border: 1px solid var(--body-primary);
  color: #fff;
  padding: 0.5rem 0.95rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-store-badges .store-badge:hover {
  background: #1a1410;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(46, 38, 35, 0.15);
}
.footer-store-badges .store-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-store-badges .store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
  white-space: nowrap;
}
.footer-store-badges .store-badge-label { font-size: 0.42rem; font-weight: 400; letter-spacing: 0.02em; }
.footer-store-badges .store-badge-name { font-size: 0.72rem; font-weight: 600; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}
.footer-company-name {
  font-family: 'Arya', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--body-primary);
  margin-bottom: 0.4rem;
}
.footer-company-legal {
  font-size: 0.72rem;
  color: var(--body-secondary);
  line-height: 1.6;
  margin-bottom: 0.3rem;
  max-width: 36rem;
}
.footer-company-meta {
  font-size: 0.72rem;
  color: rgba(46, 38, 35, 0.55);
  line-height: 1.6;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-legal-links { padding-top: 0.3rem; }
}
.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--body-secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-legal-links a:hover { color: var(--pink-primary); }

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
