/* ==========================================================================
   ESTILOS ESPECÍFICOS DE LA PÁGINA DE INICIO (HOME)
   ========================================================================== */

.hero-section { background: var(--bg-dark-hero); color: white; padding: 120px 40px; position: relative; overflow: hidden; }
.hero-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.hero-content { max-width: 680px; }
.hero-badge { background: rgba(55, 138, 46, 0.15); color: #4ade80; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-block; margin-bottom: 20px; border: 1px solid rgba(55, 138, 46, 0.3); }
.hero-content h1 { font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 span { color: #4ade80; }
.hero-content p { color: #94a3b8; font-size: 16px; margin-bottom: 35px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-floating-elements { position: relative; width: 480px; height: 360px; }
.floating-card { position: absolute; background: #0b131f; border: 1px solid #152238; padding: 16px 26px; border-radius: 14px; display: flex; align-items: center; gap: 14px; box-shadow: 0 25px 50px rgba(0,0,0,0.4); animation: float 4.5s ease-in-out infinite; white-space: nowrap; }
.floating-card i { color: #22c55e; font-size: 22px; }
.floating-card span { font-size: 15px; font-weight: 600; color: #ffffff; letter-spacing: -0.2px; }
.f-1 { top: 10%; left: 5%; animation-delay: 0s; }
.f-2 { top: 45%; right: 2%; animation-delay: 1.5s; }
.f-3 { bottom: 5%; left: 15%; animation-delay: 3s; }

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

.section-container { max-width: 1400px; margin: 80px auto; padding: 0 40px; text-align: center; }
.section-badge { background: var(--green-light); color: var(--primary-green); padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; display: inline-block; margin-bottom: 15px; }
.section-title { font-size: 32px; font-weight: 700; color: var(--text-dark); margin-bottom: 50px; }
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: left; }
.solution-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 40px 35px; border-radius: 16px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; top: 0; }
.solution-card:hover { top: -12px; border-color: transparent; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); }
.solution-icon { width: 50px; height: 50px; background: #0f172a; color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 25px; transition: 0.3s; }
.solution-card:hover .solution-icon { background: var(--primary-green); }
.solution-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--text-dark); }
.solution-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.solution-link { color: var(--primary-green); text-decoration: none; font-size: 14px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.solution-link:hover { color: var(--primary-hover); }

.stats-bar { background: #0f172a; color: white; padding: 60px 40px; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 30px; }
.stat-item h2 { font-size: 40px; font-weight: 700; color: #4ade80; margin-bottom: 5px; }
.stat-item p { color: #94a3b8; font-size: 14px; }

.showcase-section { max-width: 1400px; margin: 80px auto; padding: 0 40px; }
.showcase-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.product-item-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px; padding: 30px; display: flex; gap: 30px; align-items: center; transition: all 0.3s ease; position: relative; top: 0; }
.product-item-card:hover { top: -6px; border-color: var(--primary-green); box-shadow: 0 10px 25px rgba(0,0,0,0.02); }
.product-img { width: 140px; height: 140px; border: 1px solid var(--border-color); border-radius: 12px; padding: 15px; display: flex; align-items: center; justify-content: center; background: white; flex-shrink: 0; }
.product-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-info { flex: 1; }
.stock-tag { font-size: 11px; font-weight: 700; color: var(--primary-green); background: var(--green-light); padding: 4px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; }
.product-info h3 { font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.product-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }

.brands-section { max-width: 1400px; margin: 80px auto; padding: 0 40px; text-align: center; }
.brands-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.brand-badge { background: white; border: 1px solid var(--border-color); padding: 15px 30px; border-radius: 10px; font-weight: 700; color: #94a3b8; font-size: 14px; min-width: 140px; }

.cta-section { max-width: 1400px; margin: 0 auto 60px auto; padding: 0 40px; }
.cta-box { background: linear-gradient(135deg, #1e3a1e 0%, #0b1c0b 100%); color: white; text-align: center; padding: 80px 40px; border-radius: 24px; position: relative; }
.cta-box h2 { font-size: 36px; font-weight: 700; margin-bottom: 15px; }
.cta-box p { color: #a7f3d0; font-size: 16px; max-width: 600px; margin: 0 auto 35px auto; line-height: 1.6; }