CAPSUNICUS
/* ===== RESET & BASE ===== */ .caps-wrap * { box-sizing: border-box; margin: 0; padding: 0; } .caps-wrap { font-family: 'Segoe UI', Arial, sans-serif; color: #2c1a1a; overflow: hi dden; } /* ===== CULORI CAPSUNICUS ===== */ /* Roșu: #c0392b / #e74c3c | Verde: #27ae60 | Auriu: #f0b400 | Crem: #fdf6ee */ /* ===== HERO ===== */ .caps-hero { background: linear-gradient(135deg, #4a1511 0%, #c0392b 50%, #e74c3c 100%); padding: 48px 24px 40px; text-align: center; position: relative; overflow: hidden; } .caps-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(240,180,0,0.15) 0%, transparent 60%), radial-gradient(ellipse at 70% 30%, rgba(39,174,96,0.15) 0%, transparent 60%); animation: caps-bg-pulse 6s ease-in-out infinite alternate; } @keyframes caps-bg-pulse { from { opacity: 0.6; } to { opacity: 1; } } .caps-hero-badge { display: inline-block; background: linear-gradient(90deg, #f0b400, #ffda44); color: #2c1a1a; font-weight: 900; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-bottom: 18px; animation: caps-badge-pop 0.8s cubic-bezier(.22,.68,0,1.4) both; position: relative; z-index: 1; } @keyframes caps-badge-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } } .caps-hero-title { font-size: clamp(28px, 5vw, 52px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 14px; position: relative; z-index: 1; animation: caps-title-in 1s cubic-bezier(.22,.68,0,1.2) 0.2s both; } @keyframes caps-title-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } } .caps-hero-title span { color: #f0b400; position: relative; } .caps-hero-sub { font-size: clamp(15px, 2.5vw, 20px); color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 24px; line-height: 1.6; position: relative; z-index: 1; animation: caps-title-in 1s cubic-bezier(.22,.68,0,1.2) 0.4s both; } .caps-hero-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; position: relative; z-index: 1; animation: caps-title-in 1s cubic-bezier(.22,.68,0,1.2) 0.6s both; } .caps-pill { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; backdrop-filter: blur(4px); transition: background 0.3s, transform 0.3s; } .caps-pill:hover { background: rgba(240,180,0,0.3); transform: translateY(-2px); } /* ===== DIVIDER ===== */ .caps-divider { height: 4px; background: linear-gradient(90deg, transparent, #c0392b, #f0b400, #27ae60, transparent); background-size: 200% 100%; animation: caps-divider-flow 3s linear infinite; margin: 0; } @keyframes caps-divider-flow { from { background-position: 200% 0; } to { background-position: -200% 0; } } /* ===== SECȚIUNI GENERALE ===== */ .caps-section { padding: 48px 20px; max-width: 1100px; margin: 0 auto; } .caps-section-title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; color: #c0392b; text-align: center; margin-bottom: 32px; line-height: 1.2; } .caps-section-title span { color: #27ae60; } /* ===== IMAGINE FULL WIDTH ===== */ .caps-img-full { width: 100%; border-radius: 16px; display: block; box-shadow: 0 8px 32px rgba(192,57,43,0.15); transition: transform 0.4s ease, box-shadow 0.4s ease; } .caps-img-full:hover { transform: scale(1.015); box-shadow: 0 16px 48px rgba(192,57,43,0.25); } /* ===== GIF WRAPPER ===== */ .caps-gif-wrap { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(192,57,43,0.2); margin: 0 auto; max-width: 900px; } .caps-gif-wrap img { width: 100%; display: block; transition: transform 0.5s ease; } .caps-gif-wrap:hover img { transform: scale(1.02); } .caps-gif-label { position: absolute; top: 16px; left: 16px; background: linear-gradient(90deg, #f0b400, #ffda44); color: #2c1a1a; font-weight: 900; font-size: 13px; letter-spacing: 1px; padding: 6px 14px; border-radius: 20px; animation: caps-pulse 2s ease-in-out infinite; z-index: 2; } @keyframes caps-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(240,180,0,0.5); } 50% { box-shadow: 0 0 0 8px rgba(240,180,0,0); } } /* ===== CARDURI PROBLEME ===== */ .caps-problems-bg { background: linear-gradient(135deg, #fdf6ee, #fff0f0); padding: 48px 20px; } .caps-problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; } .caps-problem-card { background: #fff; border: 1px solid rgba(192,57,43,0.1); border-radius: 16px; padding: 24px 20px; color: #2c1a1a; box-shadow: 0 4px 16px rgba(192,57,43,0.05); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; } .caps-problem-card:hover { border-color: rgba(192,57,43,0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(192,57,43,0.15); } .caps-problem-icon { font-size: 36px; margin-bottom: 12px; display: block; animation: caps-float 3s ease-in-out infinite; } @keyframes caps-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } } .caps-problem-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: #c0392b; } .caps-problem-card p { font-size: 14px; line-height: 1.6; color: #5c4a4a; } /* ===== BENEFICII SPLIT ===== */ .caps-benefit-section { padding: 48px 20px; max-width: 1100px; margin: 0 auto; } .caps-benefit-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 48px; } .caps-benefit-split.reverse { direction: rtl; } .caps-benefit-split.reverse > * { direction: ltr; } .caps-benefit-img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(192,57,43,0.15); } .caps-benefit-img img { width: 100%; display: block; transition: transform 0.5s ease; } .caps-benefit-img:hover img { transform: scale(1.04); } .caps-benefit-text { padding: 8px 0; } .caps-benefit-tag { display: inline-block; background: linear-gradient(90deg, #c0392b, #e74c3c); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; animation: caps-badge-pop 0.6s cubic-bezier(.22,.68,0,1.4) both; } .caps-benefit-text h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; color: #c0392b; line-height: 1.2; margin-bottom: 16px; } .caps-benefit-text h2 span { color: #27ae60; } .caps-benefit-text p { font-size: 15px; line-height: 1.75; color: #4c3a3a; margin-bottom: 16px; } .caps-benefit-list { list-style: none; padding: 0; } .caps-benefit-list li { font-size: 14px; color: #3c2a2a; padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid rgba(192,57,43,0.1); transition: color 0.2s, padding-left 0.2s; } .caps-benefit-list li:hover { color: #c0392b; padding-left: 34px; } .caps-benefit-list li::before { content: '🍓'; position: absolute; left: 0; font-size: 16px; } /* ===== CTA FINAL ===== */ .caps-cta { background: linear-gradient(135deg, #4a1511, #c0392b, #e74c3c); background-size: 300% 300%; animation: caps-cta-bg 8s ease-in-out infinite; padding: 60px 24px; text-align: center; position: relative; overflow: hidden; } @keyframes caps-cta-bg { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .caps-cta::before { content: '🍓'; position: absolute; font-size: 120px; opacity: 0.08; top: -20px; right: 20px; animation: caps-float 4s ease-in-out infinite; } .caps-cta h2 { font-size: clamp(24px, 4vw, 42px); font-weight: 900; color: #fff; margin-bottom: 16px; position: relative; z-index: 1; } .caps-cta h2 span { color: #f0b400; } .caps-cta p { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; line-height: 1.6; position: relative; z-index: 1; } .caps-cta-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 1; } .caps-cta-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 10px 20px; border-radius: 30px; font-size: 14px; font-weight: 700; backdrop-filter: blur(4px); transition: background 0.3s, transform 0.3s; } .caps-cta-badge:hover { background: rgba(240,180,0,0.3); transform: scale(1.05); } /* ===== RESPONSIVE ===== */ @media (max-width: 768px) { .caps-problems-grid { grid-template-columns: 1fr; } .caps-benefit-split { grid-template-columns: 1fr; gap: 24px; } .caps-benefit-split.reverse { direction: ltr; } .caps-section { padding: 32px 16px; } .caps-hero { padding: 36px 16px 32px; } .caps-problems-bg { padding: 32px 16px; } .caps-cta { padding: 48px 16px; } } 🍓 EXCLUSIV PENTRU CĂPȘUNI Fructe mari, dulci și aromate producție record tot sezonul Biostimulator 100% natural care crește producția cu până la +75% per plantă. Gustul copilăriei din prima aplicare. 🌱 100% Natural 🍓 +75% Mai multă recoltă ☀️ Rezistență la caniculă 🏠 Fabricat în România 🍓 Formula Avansată Probleme cu căpșunile tale? 📉 Producție scăzută Plantele fac puține flori și fructe, iar după primul val de rodire, producția se oprește complet. 🍓 Fructe mici și deformate Căpșunile rămân mici, nu se colorează uniform sau au forme neregulate și inestetice. 💧 Gust fad și apos Căpșunile arată bine dar nu au gustul dulce și aromat pe care îl aștepți — seamănă cu cele de supermarket. ☀️ Sensibilitate la caniculă La primele temperaturi extreme sau perioade de secetă, florile cad și plantele se ofilesc rapid. 📈 Producție Record Fructe Premium Căpșuni cu 30-40% mai mariși gust intens CAPSUNICUS oferă doza exactă de nutrienți organici de care plantele au nevoie pentru a produce fructe de calitate superioară. Fructe uniforme și aspectuoase din prima aplicare Gust dulce, intens și aromat — ca în copilărie Fără gust apos sau textură lemnoasă Producție Continuă Recoltă abundentăpe tot sezonul Spre deosebire de îngrășămintele clasice, CAPSUNICUS stimulează planta să producă flori și fructe noi în mod continuu. Producție constantă din mai până în octombrie Nu se oprește după primul val de rod Rezistență maximă la variații de temperatură Rezultate imediate în grădina ta Mod de utilizare Asigură-ți recolta de căpșuni! Comandă acum FLORAD CAPSUNICUS și bucură-te de fructe mari, dulci și aromate pe tot parcursul sezonului. 🍓 100% Natural 🏠 Fabricat în România 🚚 Livrare rapidă 📈 +75% Mai multă recoltă
More you might like
Related
CAPSUNICUS
Related
Căpșunică
Related
Cifra 1 capsunica
Related