POMIFERUS.
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --orange: #e8620a; --orange-dark: #c4500a; --orange-light: #ff8c42; --green: #49a24e; --cream: #fd f6ee; --dark: #1a0f00; --gold: #f0b400; } /* Animații permanente (nu depind de scroll) */ @keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } } @keyframes slideBg { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes dividerFlow { from { background-position: 0% center; } to { background-position: 200% center; } } @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } } @keyframes glowPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,98,10,0.5); } 50% { box-shadow: 0 0 0 16px rgba(232,98,10,0); } } @keyframes spotlight { from { background-position: -200% 0; } to { background-position: 200% 0; } } @keyframes bounceIn { 0% { opacity:0; transform: scale(0.3); } 40% { opacity:1; transform: scale(1.15); } 60% { transform: scale(0.9); } 80% { transform: scale(1.05); } 100% { transform: scale(1); } } /* SHIMMER TEXT */ .shimmer { background: linear-gradient(90deg, var(--orange) 0%, #ffe0b0 35%, var(--orange-light) 55%, var(--orange-dark) 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 3s linear infinite; } .shimmer-gold { background: linear-gradient(90deg, var(--gold) 0%, #fff5b0 40%, var(--gold) 100%); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 2.5s linear infinite; } /* DIVIDER */ .fp-divider { height: 4px; background: linear-gradient(90deg, transparent, var(--orange), var(--gold), var(--orange-light), var(--orange), transparent); background-size: 200% auto; animation: dividerFlow 2.5s linear infinite; } /* HERO */ .fp-hero { background: linear-gradient(135deg, #1a0800 0%, #3d1500 30%, #6b2800 60%, #1a0800 100%); background-size: 400% 400%; animation: slideBg 8s ease infinite; padding: 56px 20px 48px; text-align: center; position: relative; overflow: hidden; } .fp-hero::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent); animation: spotlight 4s linear infinite; } .fp-hero-badge { display: inline-block; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 8px 24px; border-radius: 30px; margin-bottom: 24px; animation: bounceIn 0.8s cubic-bezier(0.22,0.68,0,1.4) both, glowPulse 2.5s 0.8s infinite; position: relative; } .fp-hero h1 { font-size: clamp(30px, 5.5vw, 56px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 4px 24px rgba(0,0,0,0.5); animation: srT 0.9s 0.2s cubic-bezier(0.22,0.68,0,1.2) both; } .fp-hero-sub { font-size: clamp(14px, 2.5vw, 19px); color: rgba(255,255,255,0.85); max-width: 680px; margin: 0 auto 30px; line-height: 1.7; animation: srB 0.9s 0.4s cubic-bezier(0.22,0.68,0,1.2) both; } .fp-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; animation: srB 0.9s 0.6s cubic-bezier(0.22,0.68,0,1.2) both; } .fp-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: white; padding: 9px 20px; border-radius: 30px; font-size: 13px; font-weight: 600; backdrop-filter: blur(4px); transition: all 0.35s cubic-bezier(0.22,0.68,0,1.4); cursor: default; } .fp-pill:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-4px) scale(1.06); box-shadow: 0 8px 20px rgba(232,98,10,0.4); } /* BEFORE/AFTER */ .fp-ba { position: relative; overflow: hidden; } .fp-ba img { width: 100%; display: block; } .fp-ba-label { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); background: rgba(0,0,0,0.75); color: white; padding: 10px 28px; border-radius: 30px; font-size: 14px; font-weight: 700; letter-spacing: 1px; backdrop-filter: blur(8px); white-space: nowrap; } /* SECTION TITLE */ .fp-title { text-align: center; font-size: clamp(22px, 4vw, 38px); font-weight: 900; margin-bottom: 38px; color: white; } .fp-title.dark { color: var(--dark); } .fp-title .acc { color: var(--orange); } .fp-title .grn { color: #a8e6ab; } /* PROBLEM */ .fp-problems { background: linear-gradient(160deg, #1a0800, #2d1000, #1a0800); padding: 56px 20px; } .fp-prob-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; } .fp-prob-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(232,98,10,0.25); border-radius: 18px; padding: 28px 20px; text-align: center; transition: all 0.45s cubic-bezier(0.22,0.68,0,1.4); } .fp-prob-card:hover { background: rgba(232,98,10,0.14); border-color: var(--orange); transform: translateY(-10px) scale(1.03); box-shadow: 0 24px 48px rgba(232,98,10,0.25); } .fp-prob-icon { font-size: 44px; margin-bottom: 14px; display: block; animation: float 4s ease-in-out infinite; } .fp-prob-card:nth-child(2) .fp-prob-icon { animation-delay: 0.6s; } .fp-prob-card:nth-child(3) .fp-prob-icon { animation-delay: 1.2s; } .fp-prob-card:nth-child(4) .fp-prob-icon { animation-delay: 1.8s; } .fp-prob-card h3 { font-size: 15px; font-weight: 800; color: var(--orange-light); margin-bottom: 8px; } .fp-prob-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.55; } /* GIF */ .fp-gif { position: relative; overflow: hidden; } .fp-gif img { width: 100%; display: block; transition: transform 0.7s ease; } .fp-gif:hover img { transform: scale(1.03); } .fp-gif-badge { position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; animation: glowPulse 2.5s infinite; } /* SPLIT */ .fp-split { padding: 56px 20px; background: white; } .fp-row { display: flex; align-items: center; gap: 44px; max-width: 1100px; margin: 0 auto 60px; } .fp-row:last-child { margin-bottom: 0; } .fp-row.rev { flex-direction: row-reverse; } .fp-img-wrap { flex: 1; min-width: 0; border-radius: 22px; overflow: hidden; box-shadow: 0 12px 44px rgba(0,0,0,0.13); transition: box-shadow 0.4s, transform 0.4s; } .fp-img-wrap:hover { box-shadow: 0 24px 60px rgba(232,98,10,0.22); transform: scale(1.02) rotate(-0.5deg); } .fp-img-wrap img { width: 100%; display: block; } .fp-text { flex: 1; min-width: 0; } .fp-tag { display: inline-block; background: #fff5e0; color: var(--orange); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; padding: 5px 16px; border-radius: 20px; margin-bottom: 14px; border: 1px solid rgba(232,98,10,0.2); } .fp-text h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; color: var(--dark); margin-bottom: 14px; line-height: 1.2; } .fp-text h2 em { color: var(--orange); font-style: normal; } .fp-text p { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 14px; } .fp-list { list-style: none; } .fp-list li { padding: 9px 0; font-size: 14px; color: #333; display: flex; align-items: flex-start; gap: 10px; border-bottom: 1px solid #f0f0f0; transition: background 0.25s, padding-left 0.25s; } .fp-list li:last-child { border-bottom: none; } .fp-list li:hover { background: #fff8f0; padding-left: 6px; border-radius: 6px; } .fp-list li::before { content: '✓'; color: var(--green); font-weight: 900; font-size: 15px; flex-shrink: 0; margin-top: 2px; } /* STATS */ .fp-stats { background: linear-gradient(135deg, var(--orange-dark), var(--orange), var(--orange-light)); background-size: 300% 300%; animation: slideBg 6s ease infinite; padding: 48px 20px; text-align: center; } .fp-stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 52px; max-width: 900px; margin: 0 auto; } .fp-stat { color: white; } .fp-stat-num { font-size: clamp(36px, 6vw, 56px); font-weight: 900; line-height: 1; display: block; text-shadow: 0 4px 12px rgba(0,0,0,0.2); } .fp-stat-lbl { font-size: 12px; font-weight: 600; opacity: 0.9; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; } /* GALLERY */ .fp-gallery { background: var(--cream); padding: 56px 20px; } .fp-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; } .fp-gallery-item { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1; box-shadow: 0 8px 28px rgba(0,0,0,0.1); transition: box-shadow 0.4s, transform 0.4s; } .fp-gallery-item:hover { box-shadow: 0 20px 50px rgba(232,98,10,0.25); transform: scale(1.03) rotate(0.5deg); } .fp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .fp-gallery-item:hover img { transform: scale(1.12); } .fp-gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity 0.35s; } .fp-gallery-item:hover .fp-gallery-overlay { opacity: 1; } .fp-gallery-overlay span { color: white; font-size: 15px; font-weight: 700; } /* WHERE */ .fp-where { background: linear-gradient(160deg, #0d2b0d, #1a4a1a, #0d2b0d); padding: 56px 20px; } .fp-where-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; } .fp-where-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(73,162,78,0.25); border-radius: 22px; padding: 32px 26px; transition: all 0.45s cubic-bezier(0.22,0.68,0,1.4); position: relative; overflow: hidden; } .fp-where-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease; } .fp-where-card:hover::before { transform: scaleX(1); } .fp-where-card:hover { background: rgba(73,162,78,0.1); border-color: var(--green); transform: translateY(-10px) scale(1.02); box-shadow: 0 24px 48px rgba(0,0,0,0.35); } .fp-where-icon { font-size: 46px; margin-bottom: 18px; display: block; animation: float 4s ease-in-out infinite; } .fp-where-card:nth-child(2) .fp-where-icon { animation-delay: 0.8s; } .fp-where-card:nth-child(3) .fp-where-icon { animation-delay: 1.6s; } .fp-where-card h3 { font-size: 18px; font-weight: 800; color: #a8e6ab; margin-bottom: 10px; } .fp-where-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.65; } /* USAGE */ .fp-usage { background: white; padding: 56px 20px; } .fp-usage-img { max-width: 700px; margin: 0 auto 44px; border-radius: 22px; overflow: hidden; box-shadow: 0 12px 44px rgba(0,0,0,0.12); transition: transform 0.4s, box-shadow 0.4s; } .fp-usage-img:hover { transform: scale(1.02); box-shadow: 0 24px 60px rgba(232,98,10,0.2); } .fp-usage-img img { width: 100%; display: block; } .fp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; } .fp-step { background: var(--cream); border-radius: 18px; padding: 26px 22px; border-left: 4px solid var(--orange); transition: all 0.4s cubic-bezier(0.22,0.68,0,1.4); } .fp-step:hover { transform: translateX(8px) scale(1.02); box-shadow: 0 12px 32px rgba(232,98,10,0.18); background: #fff8f0; } .fp-step-num { width: 44px; height: 44px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(232,98,10,0.45); transition: transform 0.3s; } .fp-step:hover .fp-step-num { transform: scale(1.2) rotate(10deg); } .fp-step h3 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; } .fp-step p { font-size: 13px; color: #555; line-height: 1.55; } /* CTA */ .fp-cta { background: linear-gradient(135deg, #1a0800, #3d1500, #6b2800, #3d1500); background-size: 400% 400%; animation: slideBg 7s ease infinite; padding: 68px 20px; text-align: center; position: relative; overflow: hidden; } .fp-cta::before { content: '🍎 🍑 🍊 🍋 🍇 🍒'; position: absolute; font-size: 70px; opacity: 0.04; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; letter-spacing: 18px; animation: float 6s ease-in-out infinite; } .fp-cta-title { font-size: clamp(26px, 4.5vw, 46px); font-weight: 900; color: white; margin-bottom: 18px; text-shadow: 0 4px 24px rgba(0,0,0,0.4); position: relative; } .fp-cta-sub { font-size: clamp(14px, 2vw, 18px); color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 32px; line-height: 1.65; position: relative; } .fp-cta-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; position: relative; } .fp-cta-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.28); color: white; padding: 11px 24px; border-radius: 30px; font-size: 14px; font-weight: 700; backdrop-filter: blur(4px); transition: all 0.35s cubic-bezier(0.22,0.68,0,1.4); } .fp-cta-badge:hover { background: var(--orange); border-color: var(--orange); transform: scale(1.08) translateY(-3px); box-shadow: 0 8px 20px rgba(232,98,10,0.45); } /* RESPONSIVE */ @media (max-width: 768px) { .fp-row, .fp-row.rev { flex-direction: column; } .fp-gallery-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .fp-hero, .fp-problems, .fp-split, .fp-gallery, .fp-where, .fp-usage, .fp-cta { padding: 40px 16px; } } 🌿 Biostimulator 100% Natural Susține vitalitateapomilor tăi fructiferi FLORAD POMIFERUS® susține înflorirea, legarea și creșterea fructelor — fără chimicale, fără reziduuri, sigur pentru familie și animale. 🌸 Înflorire abundentă 🍎 Calitate superioară 🌡️ Susținere în stres termic 🇷🇴 Fabricat în România ✨ Experiența comunității noastre Provocări frecvente în livadă 🌸 Căderea prematură a florilor Un fenomen comun când pomul se confruntă cu dezechilibre interne în perioada de înflorire. 🍑 Dezvoltare neuniformă Fructele pot stagna în creștere dacă planta nu beneficiază de nutriția adecvată. ☀️ Sensibilitate termică Vara, temperaturile ridicate reprezintă un factor major de stres pentru metabolismul plantei. 📉 Fluctuații de rod Fără susținere constantă, pomii pot intra în alternanță de rodire (un an bun, unul slab). 🌿 Acțiune naturală Beneficiu #1 Activare naturală a proceselor de fructificare Formula POMIFERUS® conține aminoacizi, acid boric și extracte naturale care susțin diferențierea florală și viabilitatea polenului — exact în momentele critice ale sezonului. Susține înflorirea abundentă și uniformă Ajută la legarea stabilă a fructelor Ideal pentru aplicarea la începutul sezonului Absorbție rapidă la nivel foliar Beneficiu #2 Susținere în perioadele de stres Vara, la temperaturi de peste 35°C, pomii fructiferi suferă dezechilibre care duc la căderea fructelor. POMIFERUS® ajută pomul să depășească mai ușor aceste perioade critice. Susține echilibrul hidric al plantei Contribuie la menținerea vitalității Menține vigoarea pomului în condiții dificile Aplicare foliară pentru efect rapid în stres Beneficiu #3 Nutriție echilibrată, producție mai constantă Aminoacizii din POMIFERUS® stimulează absorbția nutrienților la nivel radicular și foliar, asigurând un aport constant de energie pentru creșterea și maturarea fructelor. Nutriție echilibrată pe tot parcursul sezonului Susține dezvoltarea uniformă a fructelor Contribuie la un ritm constant de dezvoltare Compatibil cu tratamentele fitosanitare obișnuite 🍎 Experiența clienților 2569+ Recenzii pozitive 100% Natural 4 Sezoane de aplicare 🇷🇴 Fabricat în România 🌿 Formula specială 🍑 Fructe frumoase Rezultate reale din livezi Mere viguroase și mari Piersici bogate pe ramuri Notă importantă: FLORAD POMIFERUS® este un fertilizant organo-mineral, formulat pentru susținerea nutrițională a plantelor. Nu are acțiune fitosanitară și nu înlocuiește tratamentele de protecție a plantelor. Rezultatele pot varia în funcție de starea inițială a plantei, condițiile de mediu, tipul de sol și respectarea modului de utilizare. Fotografiile și recenziile reflectă experiența individuală a utilizatorilor. ✅ 100% Natural Unde este recomandat FLORAD POMIFERUS®? 🌸 Faze critice de înflorire și legare În perioada de diferențiere florală, înflorire și formare a fructelor, pomii au nevoie de susținere suplimentară. Aplicarea regulată ajută la stabilizarea legării fructelor și reducerea căderilor fiziologice. 🌡️ Livezi expuse la stres climatic În perioadele cu variații mari de temperatură, secetă sau umiditate excesivă, POMIFERUS® susține echilibrul natural al plantei și contribuie la menținerea vitalității chiar și în condiții dificile. 🏡 Livezi comerciale și grădini familiale Pomii cultivați în livezi intensive sau în grădini familiale sunt adesea expuși la consum nutritiv ridicat. POMIFERUS® contribuie la menținerea unui ritm constant de dezvoltare și producție stabilă. 🍊 Aplicare foliară Mod de utilizare 1 Pregătirea soluției Diluează 100ml POMIFERUS® în 10 litri de apă. Agită bine flaconul înainte de utilizare. 2 Stropire foliară Pulverizează uniform pe frunze, lăstari și fructe. Aplică dimineața sau seara, evitând temperaturile ridicate. 3 Udare la rădăcină Aplică soluția la baza pomului pentru absorbție radiculară. Ideal în perioadele de secetă sau stres. 4 Repetă în fazele cheie Înainte de înflorire → la înflorire → după căderea petalelor → în creșterea fructelor → în stres climatic. 🌿 Formulă pentru 10L soluție Livada ta merită cel mai bun start Fiecare sezon este o nouă șansă. Ajută-ți pomii să dea tot ce pot — natural, sigur și eficient. 🌿 100% Natural 🚚 Livrare rapidă 🇷🇴 Produs românesc ✅ Fără chimicale