/* =============================================
   DOMAMARKETING — LANDING PAGE CSS
   Paleta: Negro, Amarillo #FFD200, Blanco
   Fuente: Outfit (Google Fonts)
   ============================================= */

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

:root {
    --black:    #0a0a0a;
    --white:    #ffffff;
    --yellow:   #FFD200;
    --yellow-dark: #E6BD00;
    --yellow-light: #FFF3A3;
    --gray-100: #f8f8f8;
    --gray-200: #e8e8e8;
    --gray-500: #888;
    --gray-700: #444;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(0,0,0,0.10);
    --shadow-strong: 0 20px 60px rgba(0,0,0,0.15);
    --font: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text { background: linear-gradient(135deg, #E6BD00 0%, #FFD200 50%, #FFA500 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-text-light { background: linear-gradient(135deg, #FFD200, #fffbe6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin: 12px 0; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }
.section-tag { display: inline-block; background: #FFD20022; border: 1px solid #FFD20066; color: #9A7A00; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 8px; }
.section-tag.light { background: rgba(255,210,0,0.15); border-color: rgba(255,210,0,0.4); color: var(--yellow); }

/* ---- NAVBAR ---- */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.3s ease; }
#navbar.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0,0,0,0.08); padding: 10px 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; transition: height 0.3s ease; }
#navbar.scrolled .nav-logo img { height: 52px; }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--gray-700); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: #9A7A00; }
.btn-nav-cta { background: var(--yellow); color: var(--black); padding: 10px 22px; border-radius: 100px; text-decoration: none; font-weight: 800; font-size: 0.88rem; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,210,0,0.4); }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ---- HERO ---- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--gray-100); padding: 120px 24px 80px; max-width: 100%; }
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.28; animation: blobFloat 8s ease-in-out infinite alternate; }
.blob-1 { width: 500px; height: 500px; background: #FFD200; top: -120px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: #FFA500; bottom: -100px; left: -100px; animation-delay: 2s; }
.blob-3 { width: 300px; height: 300px; background: #FFD200; top: 40%; right: 20%; opacity: 0.15; animation-delay: 4s; }
@keyframes blobFloat { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(30px, 30px) scale(1.05); } }

.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 2; }
.hero-tag { display: inline-block; background: var(--yellow); color: var(--black); padding: 8px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; box-shadow: 0 4px 20px rgba(255,210,0,0.3); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { color: var(--gray-500); font-size: 1.1rem; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { background: var(--black); color: var(--white); padding: 14px 28px; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.btn-ghost { border: 2px solid var(--black); color: var(--black); padding: 12px 28px; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { background: var(--black); color: var(--white); }
.hero-stats { display: flex; gap: 0; align-items: center; }
.stat { text-align: center; padding: 0 24px; }
.stat strong { display: block; font-size: 1.6rem; font-weight: 900; }
.stat span { font-size: 0.8rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }

/* HERO VISUAL */
.hero-visual { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; min-height: 500px; }
.floating-card { position: absolute; background: white; border-radius: 14px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-strong); z-index: 3; animation: cardFloat 4s ease-in-out infinite alternate; }
.floating-card .card-icon { font-size: 1.5rem; }
.floating-card strong { display: block; font-size: 0.9rem; font-weight: 700; }
.floating-card small { font-size: 0.7rem; color: var(--gray-500); }
.card-1 { top: 40px; left: 0; animation-delay: 0s; }
.card-2 { bottom: 80px; left: 10px; animation-delay: 1.5s; }
.card-3 { top: 80px; right: 10px; animation-delay: 0.8s; }
@keyframes cardFloat { 0% { transform: translateY(0); } 100% { transform: translateY(-12px); } }

.hero-mockup { width: 340px; height: 260px; background: white; border-radius: 16px; box-shadow: var(--shadow-strong); overflow: hidden; border: 1px solid var(--gray-200); }
.mockup-bar { background: #f3f3f3; padding: 8px 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--gray-200); }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot.r { background: #ff5f56; } .dot.y { background: #ffbd2e; } .dot.g { background: #27c93f; }
.mockup-url { background: white; border-radius: 4px; padding: 2px 10px; font-size: 0.65rem; color: var(--gray-500); margin-left: 6px; flex: 1; text-align: center; }
.mockup-body { padding: 14px; }
.m-header { height: 30px; background: linear-gradient(90deg, #FFD200, #FFA500); border-radius: 8px; margin-bottom: 10px; }
.m-row { height: 10px; background: var(--gray-200); border-radius: 4px; margin-bottom: 8px; }
.m-row.short { width: 60%; }
.m-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 12px; }
.m-card { height: 50px; border-radius: 8px; }
.m-card.c1 { background: #FFD20055; }
.m-card.c2 { background: #FFA50055; }
.m-card.c3 { background: #0a0a0a22; }

/* ---- SERVICES ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: var(--yellow); }
.service-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.service-list { list-style: none; margin-bottom: 20px; }
.service-list li { font-size: 0.85rem; color: var(--gray-700); padding: 3px 0; }
.service-cta { color: #9A7A00; font-weight: 700; text-decoration: none; font-size: 0.9rem; transition: letter-spacing 0.2s; }
.service-cta:hover { letter-spacing: 0.5px; }

/* Colores iconos de servicios — amarillos/negros */
.service-icon.si-1 { background: #FFD20022; }
.service-icon.si-2 { background: #FFD20033; }
.service-icon.si-3 { background: #0a0a0a0f; }
.service-icon.si-4 { background: #FFA50022; }
.service-icon.si-5 { background: #FFD20022; }
.service-icon.si-6 { background: #0a0a0a0f; }
.service-icon.si-7 { background: #FFA50022; }

/* ---- POS SECTION ---- */
.pos-section { background: var(--black); color: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
.pos-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,210,0,0.12), transparent 70%); }
.pos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pos-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; line-height: 1.2; margin: 12px 0 16px; }
.pos-content > p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.pos-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.pos-feature { display: flex; align-items: flex-start; gap: 12px; }
.pos-feature > span { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pos-feature strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--white); }
.pos-feature small { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.pos-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-yellow { background: var(--yellow); color: var(--black); padding: 14px 28px; border-radius: 100px; text-decoration: none; font-weight: 800; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,210,0,0.4); }
.btn-ghost-light { border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 12px 28px; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; display: inline-block; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* POS MOCKUP */
.pos-visual { display: flex; justify-content: center; }
.pos-mockup { position: relative; }
.pos-screen { width: 380px; height: 280px; background: #1a2b48; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.pos-topbar { background: #112240; padding: 10px 16px; display: flex; justify-content: space-between; align-items: center; }
.pos-body { display: flex; height: calc(100% - 38px); }
.pos-sidebar { width: 48px; background: #0d1a30; display: flex; flex-direction: column; align-items: center; padding: 8px 0; gap: 6px; }
.ps-item { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; cursor: pointer; transition: background 0.2s; }
.ps-item.active { background: var(--yellow); }
.ps-item:not(.active):hover { background: rgba(255,255,255,0.1); }
.pos-main-content { flex: 1; display: flex; gap: 8px; padding: 8px; }
.pos-product-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.pp { border-radius: 6px; height: 54px; }
.pp.c1 { background: rgba(255,210,0,0.4); }
.pp.c2 { background: rgba(255,165,0,0.4); }
.pp.c3 { background: rgba(255,210,0,0.25); }
.pp.c4 { background: rgba(255,165,0,0.25); }
.pos-cart { width: 90px; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.pc-item { height: 16px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.pc-total { font-size: 0.65rem; font-weight: 800; color: var(--yellow); text-align: center; margin-top: 4px; }
.pc-btn { background: var(--yellow); color: var(--black); font-size: 0.55rem; font-weight: 800; border-radius: 4px; padding: 5px; text-align: center; margin-top: auto; letter-spacing: 0.5px; }

/* ---- WHY US ---- */
.why-us { background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.why-card { background: white; border-radius: var(--radius); padding: 36px 28px; transition: transform 0.3s; border-bottom: 3px solid transparent; }
.why-card:hover { transform: translateY(-4px); border-bottom-color: var(--yellow); }
.why-num { font-size: 3rem; font-weight: 900; color: var(--yellow); margin-bottom: 12px; line-height: 1; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--gray-500); font-size: 0.9rem; line-height: 1.6; }

/* ---- TEAM / QUIENES SOMOS ---- */
.team-section { background: white; }
.team-intro { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.team-bio { font-size: 1.1rem; color: var(--gray-500); line-height: 1.8; font-style: italic; border-left: 4px solid var(--yellow); padding-left: 20px; text-align: left; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 56px; }
.team-card { display: flex; align-items: flex-start; gap: 24px; background: var(--gray-100); border-radius: 20px; padding: 32px; border-bottom: 4px solid var(--yellow); transition: transform 0.3s, box-shadow 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--yellow); color: var(--black); font-size: 2rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.team-role { display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9A7A00; background: #FFD20022; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }
.team-info p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.team-contact { display: inline-flex; align-items: center; gap: 6px; color: var(--black); text-decoration: none; font-size: 0.88rem; font-weight: 700; background: var(--yellow); padding: 8px 16px; border-radius: 100px; transition: transform 0.2s, box-shadow 0.2s; }
.team-contact:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,210,0,0.35); }
.services-summary { text-align: center; }
.services-summary h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.services-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.services-tags span { background: var(--black); color: var(--white); padding: 8px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s, transform 0.2s; }
.services-tags span:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

/* ---- CONTACT ---- */

.contact-section { background: white; }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; margin: 12px 0 14px; }
.contact-info > p { color: var(--gray-500); font-size: 1rem; line-height: 1.6; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 14px; text-decoration: none; border: 1px solid var(--gray-200); transition: transform 0.2s, box-shadow 0.2s; }
.contact-link:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.contact-link span { font-size: 1.6rem; }
.contact-link strong { display: block; color: var(--black); font-weight: 700; font-size: 0.95rem; }
.contact-link small { color: var(--gray-500); font-size: 0.82rem; }
.contact-link.whatsapp { border-color: #25D36633; background: #25D36608; }
.contact-link.facebook { border-color: #1877f255; background: #1877f208; }
.contact-link.instagram { border-color: #e1306c55; background: #e1306c08; }

/* CONTACT FORM */
.contact-form { background: var(--gray-100); border-radius: 20px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea { background: white; border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 12px 16px; font-family: var(--font); font-size: 0.95rem; color: var(--black); transition: border-color 0.2s; outline: none; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,210,0,0.15); }
.form-group textarea { resize: vertical; }
.btn-form-submit { width: 100%; background: var(--yellow); color: var(--black); border: none; border-radius: 100px; padding: 16px; font-family: var(--font); font-size: 1rem; font-weight: 800; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; margin-top: 4px; }
.btn-form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,210,0,0.35); }

/* ---- FOOTER ---- */
.footer { background: var(--black); color: var(--white); padding: 60px 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.footer-brand > p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 20px; max-width: 300px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 1.4rem; transition: transform 0.2s; text-decoration: none; }
.footer-social a:hover { transform: scale(1.2); }
.footer-links h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; text-decoration: none; box-shadow: 0 6px 30px rgba(37,211,102,0.45); z-index: 999; transition: transform 0.3s; animation: waPulse 2.5s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.15); animation: none; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 6px 30px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .pos-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 100px 24px 60px; }
    .hero-content { max-width: 100%; }
    .hero-sub { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .pos-features { grid-template-columns: 1fr; }
    .pos-screen { width: 100%; max-width: 340px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card { flex-direction: column; align-items: flex-start; }
    .nav-logo img { height: 44px; }
}
@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .pos-inner { text-align: center; }
    .pos-btns { justify-content: center; }
    .pos-features { text-align: left; }
}
