/* ============================================
   FELIPE EFOOD — Global Styles v2.0
   Design System: Dark Tech + Gastro Premium
   Fonts: Syne (display) + Space Grotesk (body) + Space Mono
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root {
  --yellow:      #F5C518;
  --yellow-dim:  #c99d0f;
  --yellow-glow: rgba(245,197,24,0.18);
  --yellow-soft: rgba(245,197,24,0.07);
  --black:       #070708;
  --surface-1:   #0d0d0f;
  --surface-2:   #141416;
  --surface-3:   #1a1a1e;
  --surface-4:   #212125;
  --border:      rgba(255,255,255,0.06);
  --border-y:    rgba(245,197,24,0.22);
  --border-w:    rgba(255,255,255,0.1);
  --text-1:      #f0f0eb;
  --text-2:      #9a9a94;
  --text-3:      #52524e;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-glow: 0 0 60px rgba(245,197,24,0.1), 0 0 120px rgba(245,197,24,0.05);
  --font-display:'Syne', sans-serif;
  --font-body:   'Space Grotesk', sans-serif;
  --font-mono:   'Space Mono', monospace;
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-smooth: cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text-1);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── NOISE TEXTURE OVERLAY ──────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* ── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 2px; }

/* ── TYPOGRAPHY ─────────────────────────── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}
.body-lg  { font-size: 1.1rem;  line-height: 1.75; color: var(--text-2); }
.body-md  { font-size: 1rem;    line-height: 1.7;  color: var(--text-2); }
.accent   { color: var(--yellow); }

/* ── LAYOUT ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 7rem 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── PAGE LOADER ────────────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  animation: loaderPulse 1s ease infinite alternate;
}
@keyframes loaderPulse { from { opacity: 0.4; } to { opacity: 1; } }

/* ── REVEAL ANIMATIONS ──────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.45s; }
[data-reveal].revealed  { opacity: 1; transform: none; }

/* ── NAV ────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s, border-bottom 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(7,7,8,0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}
.nav__logo span { color: var(--yellow); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-smooth);
}
.nav__links a:hover, .nav__links a.active { color: var(--text-1); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: all 0.3s; }

/* ── MOBILE MENU ────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--surface-1);
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 5rem 2rem 2rem; gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-smooth);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  padding: 0.6rem 0;
  color: var(--text-2);
  transition: color 0.2s;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.mobile-menu a:hover { color: var(--yellow); }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.22s var(--ease-smooth);
  white-space: nowrap; letter-spacing: -0.01em;
}
.btn--primary { background: var(--yellow); color: #000; border: 1.5px solid var(--yellow); }
.btn--primary:hover { background: #fff; border-color: #fff; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,197,24,0.3); }
.btn--secondary { background: transparent; color: var(--text-1); border: 1.5px solid var(--border-w); }
.btn--secondary:hover { border-color: var(--text-2); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border); font-size: 0.85rem; padding: 0.65rem 1.25rem;
}
.btn--ghost:hover { color: var(--yellow); border-color: var(--border-y); background: var(--yellow-soft); }
.arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── BADGES ─────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); background: var(--surface-2);
  border: 1px solid var(--border); padding: 0.35rem 0.8rem; border-radius: 100px;
}
.badge--yellow { color: var(--yellow); border-color: var(--border-y); background: var(--yellow-soft); }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px #22c55e;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── LOGOS STRIP ────────────────────────── */
.logos-strip {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.logos-track {
  display: flex; gap: 2rem;
  animation: scroll-logos 28s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }
.logo-item {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--text-3); white-space: nowrap;
  padding: 0.5rem 1.25rem; border: 1px solid var(--border); border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.logo-item:hover { color: var(--yellow); border-color: var(--border-y); }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ────────────────────── */
.section-header { max-width: 640px; margin-bottom: 0.5rem; }
.section-header--center { text-align: center; margin: 0 auto 0.5rem; }
.section-header .label { margin-bottom: 0.75rem; display: block; }
.section-header__sub { margin-top: 1rem; max-width: 560px; }
.section-header--center .section-header__sub { margin: 1rem auto 0; }

/* ── TESTIMONIALS ───────────────────────── */
.testimonial-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-w); }
.stars { color: var(--yellow); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--yellow); color: #000;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--text-1); }
.testimonial-role { font-size: 0.75rem; color: var(--text-3); }

/* ── AUDIENCE CARDS ─────────────────────── */
.audience-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}
.audience-card:hover { border-color: var(--border-y); }
.audience-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.audience-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.audience-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* ── HIGHLIGHT BOX ──────────────────────── */
.highlight-box {
  background: var(--surface-2); border: 1px solid var(--border-y);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  font-size: 0.9rem; color: var(--text-2); line-height: 1.65;
}

/* ── CTA SECTION ────────────────────────── */
.cta-section {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 4rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.08), transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.4), transparent);
}

/* ── BLOG CARDS ─────────────────────────── */
.blog-card {
  display: flex; flex-direction: column;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.blog-card:hover { border-color: var(--border-y); transform: translateY(-4px); }
.blog-card__img {
  height: 140px; background: var(--surface-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: 1.25rem; flex: 1; }
.blog-card__cat {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 0.5rem; display: block;
}
.blog-card__body h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card__body p { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; }
.blog-card__footer {
  display: flex; justify-content: space-between;
  padding: 0.75rem 1.25rem; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-3);
}

/* Blog featured */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 0.25s;
}
.blog-featured:hover { border-color: var(--border-y); }
.blog-featured__img {
  background: var(--surface-3); min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-featured__body { padding: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.blog-featured__body h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; }
.featured-tag {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--yellow); background: var(--yellow-soft);
  border: 1px solid var(--border-y); padding: 0.25rem 0.7rem; border-radius: 100px; display: inline-block;
}

/* ── PAGE HEADER ────────────────────────── */
.page-header {
  padding: 8rem 0 4rem; position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
}

/* ── NUM PILL ───────────────────────────── */
.num-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--yellow); color: #000;
  border-radius: 50%; font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}

/* ── ABOUT HERO ─────────────────────────── */
.about-hero-img {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 3/4; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}

/* ── CALENDLY WRAPPER ───────────────────── */
.calendly-wrapper {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}

/* ── PHOTO OVERLAY ──────────────────────── */
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex; align-items: flex-end; padding: 1.25rem;
  opacity: 0; transition: opacity 0.3s;
}
.photo-cell:hover .photo-overlay { opacity: 1; }

/* ── FLOAT BUTTONS ──────────────────────── */
.float-social {
  position: fixed; right: 1.25rem; bottom: 5rem;
  display: flex; flex-direction: column; gap: 0.6rem; z-index: 800;
}
.float-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: translateY(-3px) scale(1.08); }
.float-btn--wa { background: #25D366; color: #fff; }
.float-btn--wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.float-btn--ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.float-btn--ig:hover { box-shadow: 0 8px 24px rgba(220,39,67,0.4); }

/* ── STICKY MOBILE CTA ──────────────────── */
.sticky-cta-mobile {
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: rgba(13,13,15,0.95); border-top: 1px solid var(--border);
  backdrop-filter: blur(20px); z-index: 990; display: none;
}
.sticky-cta-mobile__inner { display: flex; gap: 0.75rem; }
.sticky-cta-mobile__inner .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 0.85rem; }

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--surface-1); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}
.footer__brand p { font-size: 0.85rem; color: var(--text-3); margin-top: 1rem; line-height: 1.6; max-width: 260px; }
.footer__links h5 {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem;
}
.footer__links a { display: block; font-size: 0.85rem; color: var(--text-2); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--yellow); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; font-size: 0.78rem; color: var(--text-3);
}
.social-links { display: flex; gap: 0.5rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); font-size: 0.72rem;
  color: var(--text-3); font-weight: 700; transition: all 0.2s;
}
.social-link:hover { border-color: var(--yellow); color: var(--yellow); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr !important; }
  .story-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__img { min-height: 200px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .sticky-cta-mobile { display: block; }
  .float-social { bottom: 6rem; }
}
@media (max-width: 600px) {
  .cta-section { padding: 2.5rem 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr !important; }
  .hero__stats { gap: 1.5rem; }
  .section { padding: 4rem 0; }
}
