/* DMJCOMPANY - Marketing Digital */
:root {
  --navy: #0a1633;
  --navy-deep: #050d20;
  --blue: #1e3a8a;
  --electric: #3b82f6;
  --electric-2: #2563eb;
  --gold: #d4a84c;
  --gold-2: #b8862f;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --gradient-hero: linear-gradient(135deg, #050d20 0%, #0a1633 50%, #1e3a8a 100%);
  --gradient-accent: linear-gradient(135deg, #3b82f6, #2563eb);
  --gradient-gold: linear-gradient(135deg, #e8c46a, #b8862f);
  --shadow-elegant: 0 20px 60px -20px rgba(10, 22, 51, 0.35);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.4);
  --shadow-card: 0 8px 30px -10px rgba(10, 22, 51, 0.15);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--gray-900); background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; letter-spacing: -0.02em; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.accent { color: var(--electric); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.95rem 1.75rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-accent { background: var(--gradient-accent); color: #fff; box-shadow: var(--shadow-glow); }
.btn-gold { background: var(--gradient-gold); color: #fff; box-shadow: var(--shadow-elegant); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* NAVBAR */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all 0.3s ease; padding: 0.25rem 0; }
#navbar.scrolled { background: rgba(5, 13, 32, 0.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-elegant); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.6rem; color: #fff; }
.logo-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gradient-accent); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-glow); }
.logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.92rem; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: none; padding: 0.7rem 1.4rem; font-size: 0.88rem; }
#menu-toggle { background: none; border: none; color: #fff; padding: 0.5rem; cursor: pointer; font-size: 1.4rem; }
#mobile-menu { display: none; flex-direction: column; gap: 1rem; padding: 1.5rem 1.25rem; background: rgba(5,13,32,0.97); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,0.1); }
#mobile-menu.open { display: flex; }
#mobile-menu a { color: rgba(255,255,255,0.9); font-weight: 500; }

@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: inline-flex; }
  #menu-toggle { display: none; }
  #mobile-menu { display: none !important; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 5rem; overflow: hidden; background: var(--gradient-hero); }
.hero-bg { position: absolute; inset: 0; background: url('hero-bg.jpg') center/cover; opacity: 0.45; mix-blend-mode: screen; }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(59,130,246,0.35) 0%, transparent 50%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.25rem; align-items: center; }
.hero-text h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; color: #fff; }
.hero-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-top: 1.5rem; max-width: 540px; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 0.85rem; margin-bottom: 1.5rem; }
.badge i { color: var(--gold); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-mini { display: flex; align-items: center; gap: 2rem; margin-top: 3rem; color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.hero-mini strong { display: block; color: #fff; font-size: 1.5rem; font-weight: 800; font-family: 'Sora', sans-serif; }
.hero-mini .sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }
.hero-card-wrap { display: none; position: relative; }
.hero-card { position: relative; aspect-ratio: 1; max-width: 420px; margin: 0 auto; border-radius: 24px; background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); padding: 2rem; box-shadow: var(--shadow-elegant); display: flex; flex-direction: column; justify-content: space-between; }
.card-dots { display: flex; gap: 0.4rem; align-items: center; }
.card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.card-dots span:nth-child(1) { background: #f87171; }
.card-dots span:nth-child(2) { background: #fbbf24; }
.card-dots span:nth-child(3) { background: #4ade80; }
.card-dots em { margin-left: auto; color: rgba(255,255,255,0.6); font-size: 0.75rem; font-style: normal; }
.card-bars { display: flex; align-items: flex-end; gap: 0.5rem; height: 130px; margin-top: 1.5rem; }
.card-bars div { flex: 1; background: var(--gradient-accent); border-radius: 6px 6px 0 0; opacity: 0.85; }
.card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.card-stats > div { padding: 0.85rem; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.card-stats span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.card-stats strong { display: block; font-size: 1.3rem; font-weight: 800; color: #fff; font-family: 'Sora', sans-serif; margin-top: 0.2rem; }

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-card-wrap { display: block; }
}

/* SECTIONS */
.section { padding: 6rem 0; }
.section-muted { background: var(--gray-50); }
.section-head { max-width: 640px; margin: 0 auto 4rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-top: 1rem; }
.section-head p { color: var(--gray-500); margin-top: 1rem; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,0.7); }
.tag { display: inline-block; padding: 0.3rem 0.85rem; border-radius: 999px; background: rgba(59,130,246,0.1); color: var(--electric); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.tag.light { background: rgba(255,255,255,0.1); color: #fff; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; margin-top: 1rem; }
.two-col > div > p { color: var(--gray-500); margin-top: 1.5rem; }

.mvv { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
@media (min-width: 600px) { .mvv { grid-template-columns: repeat(3, 1fr); } }
.mvv > div { padding: 1.25rem; border-radius: var(--radius); border: 1px solid var(--gray-200); background: #fff; box-shadow: var(--shadow-card); transition: box-shadow 0.3s; }
.mvv > div:hover { box-shadow: var(--shadow-elegant); }
.mvv h4 { font-size: 0.9rem; color: var(--electric); font-weight: 700; }
.mvv p { font-size: 0.88rem; color: var(--gray-500); margin-top: 0.4rem; }

.about-card { position: relative; }
.about-img { aspect-ratio: 4/5; border-radius: 24px; background: var(--gradient-hero); position: relative; overflow: hidden; box-shadow: var(--shadow-elegant); }
..about-img::before { content: ''; position: absolute; inset: 0; background: url('hero-bg.jpg') center/cover; opacity: 0.3; }
.about-img-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; color: #fff; }
.about-img-content strong { font-size: 3.5rem; font-weight: 800; font-family: 'Sora', sans-serif; display: block; }
.about-img-content p { font-size: 1.05rem; margin-top: 0.5rem; }
.about-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: #fff; padding: 1.25rem; border-radius: 16px; box-shadow: var(--shadow-elegant); border: 1px solid var(--gray-200); max-width: 200px; }
.about-badge strong { display: block; font-size: 2rem; color: var(--electric); font-weight: 800; font-family: 'Sora', sans-serif; }
.about-badge span { display: block; font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; }

/* GRID 3 */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* SERVICE CARD */
.service-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow-card); transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elegant); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--gradient-accent); display: grid; place-items: center; color: #fff; font-size: 1.5rem; box-shadow: var(--shadow-glow); transition: transform 0.3s; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-size: 1.2rem; margin-top: 1.5rem; font-weight: 700; }
.service-card p { font-size: 0.9rem; color: var(--gray-500); margin-top: 0.75rem; }
.service-card .learn { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--electric); font-weight: 600; font-size: 0.88rem; margin-top: 1.25rem; transition: gap 0.2s; }
.service-card .learn:hover { gap: 0.55rem; }

/* RESULTADOS */
.hero-bg-section { position: relative; background: var(--gradient-hero); overflow: hidden; color: #fff; }
.hero-bg-section::before { content: ''; position: absolute; inset: 0; background: url('hero-bg.jpg') center/cover; opacity: 0.2; }
.hero-bg-section > * { position: relative; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats > div { text-align: center; }
.stats .counter { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; font-family: 'Sora', sans-serif; display: inline-block; }
.stats em { font-size: 2rem; color: var(--gold); font-style: normal; font-weight: 800; }
.stats p { margin-top: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* BENEFITS */
.benefits { display: flex; flex-direction: column; gap: 0.75rem; }
.benefits .item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; box-shadow: var(--shadow-card); transition: box-shadow 0.3s; }
.benefits .item:hover { box-shadow: var(--shadow-elegant); }
.benefits .check { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: var(--gradient-gold); color: #fff; display: grid; place-items: center; font-size: 1rem; }
.benefits .item span { font-weight: 500; }

/* PORTFOLIO */
.portfolio-card { position: relative; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; transition: box-shadow 0.3s; }
.portfolio-card:hover { box-shadow: var(--shadow-elegant); }
.portfolio-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card:hover img { transform: scale(1.1); }
.portfolio-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4) 50%, transparent); }
.portfolio-card .info { position: absolute; inset: 0; padding: 1.5rem; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.portfolio-card .info span.cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }
.portfolio-card .info h3 { font-size: 1.4rem; margin-top: 0.4rem; font-weight: 700; }
.portfolio-card .view { margin-top: 0.6rem; opacity: 0; transition: opacity 0.3s; display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.88rem; }
.portfolio-card:hover .view { opacity: 1; }

/* CTA */
.cta-band { padding: 5rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.8); margin: 1rem auto 2rem; max-width: 540px; }

/* FOOTER */
footer { background: var(--navy-deep); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.25rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
footer p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 1rem; }
footer h4 { font-weight: 700; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
footer ul a { transition: color 0.2s; }
footer ul a:hover { color: #fff; }
.contact-list li { display: flex; align-items: center; gap: 0.5rem; }
.contact-list i { color: var(--electric); }
.socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; transition: background 0.3s; }
.socials a:hover { background: var(--gradient-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom .container { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
@media (min-width: 700px) { .footer-bottom .container { flex-direction: row; justify-content: space-between; } }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.7rem; box-shadow: var(--shadow-elegant); transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.1); }
.wa-ping { position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0.4; animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* LUCIDE ICON MAP (using emoji fallback via class names) */
[class^="icon-"]:before { font-family: 'lucide', sans-serif; display: inline-block; }
.icon-rocket:before { content: "🚀"; }
.icon-phone:before { content: "📞"; }
.icon-menu:before { content: "☰"; }
.icon-trending-up:before { content: "📈"; }
.icon-sparkles:before { content: "✨"; }
.icon-message-circle:before { content: "💬"; }
.icon-mail:before { content: "✉"; }
.icon-map-pin:before { content: "📍"; }
.icon-instagram:before { content: "📷"; }
.icon-facebook:before { content: "f"; font-weight: 800; font-family: 'Sora', sans-serif; }
.icon-linkedin:before { content: "in"; font-weight: 800; font-family: 'Sora', sans-serif; font-size: 0.85em; }
.icon-check:before { content: "✓"; font-weight: 800; }
.icon-arrow-right:before { content: "→"; }
.icon-smartphone:before { content: "📱"; }
.icon-target:before { content: "🎯"; }
.icon-bar-chart:before { content: "📊"; }
.icon-palette:before { content: "🎨"; }
.icon-globe:before { content: "🌐"; }
.icon-shopping-bag:before { content: "🛒"; }
.icon-send:before { content: "📧"; }
.icon-lightbulb:before { content: "💡"; }
