/* ============================================================
   ABO — holaabo.com
   Design: Clean, warm, professional. Inspired by MuleRun.
   Colors: Deep blue (from mascot's tie) + warm off-white
   ============================================================ */

:root {
  --blue-deep: #1B365D;
  --blue-mid: #2D5F9A;
  --blue-light: #FFF3E8;
  --blue-accent: #E08A3C;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE57;
  --bg: #FAF9F6;
  --bg-alt: #F0EFEB;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: #E5E3DE;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: var(--blue-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue-deep);
  text-decoration: none;
}

.nav-logo-img {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue-deep);
  text-decoration: none;
}

.btn-wa-nav {
  background: var(--blue-deep);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s;
}

.btn-wa-nav:hover {
  background: var(--blue-mid);
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: 140px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--blue-deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-accent {
  color: var(--blue-accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: white !important;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.btn-wa-large {
  padding: 16px 40px;
  font-size: 1.15rem;
}

.hero-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero-mascot {
  flex: 0 0 460px;
}

.hero-mascot img {
  width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================================
   EXAMPLES
   ============================================================ */

.examples {
  background: var(--blue-deep);
  padding: 48px 24px;
  overflow: hidden;
}

.examples-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.examples-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-align: center;
}

.examples-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.example-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.example-card:hover {
  background: rgba(255,255,255,0.14);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-inner h2 {
  font-size: 2.4rem;
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 32px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  color: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.step p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   FEATURES
   ============================================================ */

.features {
  padding: 80px 24px 100px;
  background: var(--bg-alt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 100px 24px;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

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

.faq-item summary {
  padding: 20px 0;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--blue-mid);
}

.faq-item summary::after {
  content: "›";
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s;
  color: var(--text-light);
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

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

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-final {
  padding: 80px 24px;
  background: var(--bg-alt);
}

.cta-final-inner {
  text-align: center;
}

.cta-mascot {
  width: 200px;
  height: auto;
  margin-bottom: 24px;
}

.cta-final h2 {
  font-size: 2.2rem;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.cta-final p {
  color: var(--text-mid);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.5;
}

.footer-col h4 {
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }

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

  .btn-wa-nav {
    display: none;
  }

  .nav-mobile-btn {
    display: block;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-content {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-mascot {
    flex: 0 0 auto;
  }

  .hero-mascot img {
    width: 280px;
  }

  .examples-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-final h2 {
    font-size: 1.8rem;
  }
}
