:root {
    --primary-color: #1a1a2e;
    --secondary-color: #3498DB;
    --accent-color: #E74C3C;
    --whatsapp-color: #25D366;
    --telegram-color: #0088cc;
    --text-dark: #2C3E50;
    --text-light: #6c757d;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(--text-dark); background-color: var(--bg-white); overflow-x: hidden; }
main { display: block; min-height: 2000px; contain: layout; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.hero { background: linear-gradient(135deg, #2C5F8D 0%, #4A90E2 50%, #6BA8E5 100%); color: white; padding: 25px 20px 35px; text-align: center; position: relative; overflow: hidden; animation: gradientShift 15s ease infinite; background-size: 200% 200%; }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); opacity: 0.3; animation: fadeInOut 8s ease-in-out infinite; }
@keyframes fadeInOut { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.5; } }
.hero::after { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%); border-radius: 50%; animation: float 20s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
.hero-content { position: relative; z-index: 1; animation: fadeInUp 0.8s ease; }
.hero-logo { margin-bottom: 15px; display: flex; justify-content: center; animation: fadeInUp 0.8s ease 0.2s both; }
.logo-image { max-width: 280px; width: 100%; height: auto; filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.2)); transition: transform 0.3s ease; }
.logo-image:hover { transform: scale(1.05); }
.hero-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; line-height: 1.3; letter-spacing: -0.3px; }
.hero-title .highlight { background: linear-gradient(120deg, #FFD700 0%, #FFA500 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; background-size: 200% 200%; animation: shimmer 3s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)); }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-subtitle { font-size: 0.9rem; margin-bottom: 20px; opacity: 0.95; max-width: 500px; margin: 0 auto 20px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 0; }
.hero-button { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 0.95rem; font-weight: 700; text-decoration: none; border-radius: 50px; transition: var(--transition); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2), 0 0 25px rgba(37, 211, 102, 0.3); color: white; text-transform: uppercase; letter-spacing: 0.5px; position: relative; overflow: hidden; }
.hero-button::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; }
.hero-button:hover::before { width: 300px; height: 300px; }
.hero-button:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(37, 211, 102, 0.5); }
.hero-button span, .hero-button i { position: relative; z-index: 1; }
.hero-button-whatsapp { background: linear-gradient(135deg, var(--whatsapp-color) 0%, #20BA5A 100%); }
.hero-button-whatsapp:hover { background: linear-gradient(135deg, #20BA5A 0%, var(--whatsapp-color) 100%); }
.hero-button-telegram { background: linear-gradient(135deg, var(--telegram-color) 0%, #0077B5 100%); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 136, 204, 0.3); }
.hero-button-telegram:hover { background: linear-gradient(135deg, #0077B5 0%, var(--telegram-color) 100%); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(0, 136, 204, 0.5); }
.hero-button i { font-size: 1.4rem; }

.stats-section { padding: 60px 20px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); position: relative; min-height: 200px; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #4A90E2 0%, #25D366 50%, #0088cc 100%); background-size: 200% 100%; animation: gradientMove 3s ease infinite; }
.stats-grid { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.stat-item { text-align: center; padding: 20px 30px; background: rgba(255, 255, 255, 0.9); border-radius: 16px; box-shadow: var(--shadow); transition: var(--transition); border: 2px solid transparent; min-width: 150px; }
.stat-item:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(74, 144, 226, 0.2); border-color: rgba(74, 144, 226, 0.3); }
.stat-number { display: block; font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, #4A90E2 0%, #25D366 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.stat-label { display: block; font-size: 1rem; color: var(--text-light); margin-top: 8px; font-weight: 600; }

.section-title { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 15px; color: var(--text-dark); letter-spacing: -0.3px; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 30px; font-size: 1rem; max-width: 600px; margin: 0 auto 30px; line-height: 1.7; }

.cta-section, .cta-final { padding: 50px 20px; text-align: center; position: relative; min-height: 250px; }
.cta-section { background: linear-gradient(to bottom, var(--bg-light) 0%, #ffffff 100%); }
.cta-final { background: linear-gradient(135deg, #2C5F8D 0%, #4A90E2 50%, #6BA8E5 100%); color: white; position: relative; overflow: hidden; animation: gradientShift 15s ease infinite; background-size: 200% 200%; }
.cta-final::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid2)"/></svg>'); opacity: 0.3; }
.cta-final .section-title, .cta-final .section-subtitle { color: white; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 40px; position: relative; z-index: 1; }
.cta-button { display: inline-flex; align-items: center; gap: 14px; padding: 20px 45px; font-size: 1.15rem; font-weight: 700; text-decoration: none; border-radius: 50px; transition: var(--transition); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15); color: white; min-width: 250px; justify-content: center; text-transform: uppercase; letter-spacing: 0.5px; }
.cta-button:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25); }
.cta-whatsapp { background: linear-gradient(135deg, var(--whatsapp-color) 0%, #20BA5A 100%); }
.cta-whatsapp:hover { background: linear-gradient(135deg, #20BA5A 0%, var(--whatsapp-color) 100%); }
.cta-telegram { background: linear-gradient(135deg, var(--telegram-color) 0%, #0077B5 100%); }
.cta-telegram:hover { background: linear-gradient(135deg, #0077B5 0%, var(--telegram-color) 100%); }
.cta-button i { font-size: 1.6rem; }

.benefits { padding: 50px 20px; background-color: var(--bg-white); min-height: 400px; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 25px; max-width: 1000px; margin: 0 auto; }
.benefit-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); padding: 40px 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); text-align: center; transition: var(--transition); border: 2px solid rgba(74, 144, 226, 0.1); position: relative; overflow: hidden; }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #4A90E2 0%, #6BA8E5 50%, #4A90E2 100%); background-size: 200% 100%; transform: scaleX(0); transition: transform 0.5s ease; animation: gradientMove 3s ease infinite; }
@keyframes gradientMove { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.benefit-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 50px rgba(74, 144, 226, 0.2); border-color: rgba(74, 144, 226, 0.3); background: rgba(255, 255, 255, 1); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon { width: 80px; height: 80px; margin: 0 auto 25px; background: linear-gradient(135deg, #4A90E2 0%, #6BA8E5 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3), 0 0 30px rgba(74, 144, 226, 0.2); transition: var(--transition); position: relative; }
.benefit-icon::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; background: linear-gradient(135deg, #4A90E2, #6BA8E5); opacity: 0; transition: opacity 0.3s ease; z-index: -1; filter: blur(10px); }
.benefit-card:hover .benefit-icon { transform: scale(1.15) rotate(5deg); box-shadow: 0 12px 40px rgba(74, 144, 226, 0.4), 0 0 50px rgba(74, 144, 226, 0.3); }
.benefit-card:hover .benefit-icon::before { opacity: 0.6; }
.benefit-title { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; }
.benefit-text { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin: 0; }

.info-section { padding: 40px 20px; background-color: var(--bg-white); min-height: 250px; }
.info-card { max-width: 800px; margin: 0 auto; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border: 2px solid #4A90E2; border-radius: var(--border-radius); padding: 40px 30px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.info-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #4A90E2 0%, #6BA8E5 100%); }
.info-icon { width: 70px; height: 70px; margin: 0 auto 25px; background: linear-gradient(135deg, #4A90E2 0%, #6BA8E5 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3); }
.info-title { font-size: 1.6rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.info-text { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin: 0; }
.info-text strong { color: #4A90E2; font-weight: 700; }

.promotions { padding: 25px 20px 50px; background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%); position: relative; min-height: 800px; }
.promotions::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #4A90E2 0%, #25D366 50%, #0088cc 100%); background-size: 200% 100%; animation: gradientMove 3s ease infinite; }
.promotions .section-title { font-size: 1.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; text-align: center; background: linear-gradient(135deg, #4A90E2 0%, #25D366 50%, #0088cc 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradientMove 3s ease infinite; background-size: 200% 100%; }
.promotions .section-subtitle { font-size: 1rem; color: var(--text-light); text-align: center; margin-bottom: 25px; max-width: 600px; margin: 0 auto 25px; }

.postit-board { position: relative; max-width: 1200px; margin: 30px auto 0; padding: 50px 30px; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%); background-image: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.03) 0%, transparent 50%), repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(74, 144, 226, 0.02) 10px, rgba(74, 144, 226, 0.02) 11px); border-radius: var(--border-radius); box-shadow: 0 10px 40px rgba(74, 144, 226, 0.1), 0 0 0 1px rgba(74, 144, 226, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8); display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; min-height: 600px; position: relative; border: 1px solid rgba(74, 144, 226, 0.1); }
.postit-board::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, transparent 50%), linear-gradient(225deg, rgba(37, 211, 102, 0.02) 0%, transparent 50%); border-radius: var(--border-radius); pointer-events: none; }
.postit-board::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 136, 204, 0.05) 0%, transparent 50%); pointer-events: none; border-radius: var(--border-radius); }
.postit-item { position: relative; display: flex; align-items: center; justify-content: center; perspective: 1000px; z-index: 1; min-height: 400px; }
.postit-note { position: relative; background: #f0f7ff; padding: 12px; box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.05); transform: rotate(-2deg); transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease; width: 100%; max-width: 320px; min-height: 376px; border-radius: 2px; cursor: pointer; border: 1px solid rgba(74, 144, 226, 0.1); }
.postit-note::before { content: ''; position: absolute; top: -5px; right: 20px; width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-top: 12px solid #f0f7ff; filter: drop-shadow(0 -2px 2px rgba(74, 144, 226, 0.1)); z-index: 1; }
.postit-note::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%), repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(74, 144, 226, 0.02) 2px, rgba(74, 144, 226, 0.02) 4px); pointer-events: none; border-radius: 2px; z-index: 1; }

.postit-1 .postit-note { transform: rotate(-2deg); background: #f0f7ff; border-color: rgba(74, 144, 226, 0.15); }
.postit-2 .postit-note { transform: rotate(1.5deg); background: #e8f5e9; border-color: rgba(37, 211, 102, 0.15); }
.postit-3 .postit-note { transform: rotate(-1.8deg); background: #e3f2fd; border-color: rgba(74, 144, 226, 0.15); }
.postit-4 .postit-note { transform: rotate(2.2deg); background: #f1f8e9; border-color: rgba(37, 211, 102, 0.15); }
.postit-5 .postit-note { transform: rotate(-1.2deg); background: #e8eaf6; border-color: rgba(0, 136, 204, 0.15); }
.postit-6 .postit-note { transform: rotate(1.8deg); background: #fff3e0; border-color: rgba(74, 144, 226, 0.15); }
.postit-7 .postit-note { transform: rotate(-1.5deg); background: #e1f5fe; border-color: rgba(74, 144, 226, 0.15); }
.postit-8 .postit-note { transform: rotate(2.5deg); background: #f3e5f5; border-color: rgba(0, 136, 204, 0.15); }
.postit-9 .postit-note { transform: rotate(-2.3deg); background: #e0f2f1; border-color: rgba(37, 211, 102, 0.15); }
.postit-1 .postit-note::before { border-top-color: #f0f7ff; }
.postit-2 .postit-note::before { border-top-color: #e8f5e9; }
.postit-3 .postit-note::before { border-top-color: #e3f2fd; }
.postit-4 .postit-note::before { border-top-color: #f1f8e9; }
.postit-5 .postit-note::before { border-top-color: #e8eaf6; }
.postit-6 .postit-note::before { border-top-color: #fff3e0; }
.postit-7 .postit-note::before { border-top-color: #e1f5fe; }
.postit-8 .postit-note::before { border-top-color: #f3e5f5; }
.postit-9 .postit-note::before { border-top-color: #e0f2f1; }
.postit-note:hover { transform: rotate(0deg) scale(1.08) !important; box-shadow: 0 15px 40px rgba(74, 144, 226, 0.25), 0 2px 5px rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.05); z-index: 10; border-color: rgba(74, 144, 226, 0.3); }
.promotion-image { width: 100%; height: auto; display: block; max-height: 400px; min-height: 350px; aspect-ratio: 296 / 394; object-fit: contain; object-position: center; transition: transform 0.3s ease; border-radius: 2px; position: relative; z-index: 0; background-color: rgba(255, 255, 255, 0.5); }
.postit-note:hover .promotion-image { transform: scale(1.02); }

.testimonials { padding: 50px 20px; background-color: var(--bg-light); min-height: 600px; }
.testimonials .section-subtitle { color: #495057; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 40px; }
.testimonial-card { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 35px; border-radius: var(--border-radius); box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(74, 144, 226, 0.1); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 25px; font-size: 4rem; background: linear-gradient(135deg, #4A90E2, #6BA8E5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.2; font-family: Georgia, serif; line-height: 1; font-weight: bold; }
.testimonial-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 50px rgba(74, 144, 226, 0.15); border-color: rgba(74, 144, 226, 0.3); }
.testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--secondary-color); }
.testimonial-info { flex: 1; }
.testimonial-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); }
.testimonial-rating { color: #FFD700; font-size: 0.9rem; }
.testimonial-text { color: var(--text-light); font-style: italic; line-height: 1.7; font-size: 0.95rem; }

.floating-buttons { position: fixed; bottom: 20px; right: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 15px; }
.floating-button { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-radius: 50px; text-decoration: none; color: white; font-weight: 700; font-size: 1rem; box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3); transition: var(--transition); animation: pulse 2s infinite; backdrop-filter: blur(10px); }
.floating-button:hover { transform: translateX(-5px) scale(1.05); box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4); }
.floating-button i { font-size: 1.5rem; min-width: 24px; }
.floating-button-text { white-space: nowrap; }
.floating-whatsapp { background: linear-gradient(135deg, var(--whatsapp-color) 0%, #20BA5A 100%); }
.floating-telegram { background: linear-gradient(135deg, var(--telegram-color) 0%, #0077B5 100%); animation-delay: 0.5s; }
@keyframes pulse { 0%, 100% { box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3); } 50% { box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.1); } }

.footer { background: linear-gradient(135deg, var(--primary-color) 0%, #16213e 100%); color: white; padding: 40px 20px; text-align: center; position: relative; }
.footer p { margin-bottom: 20px; opacity: 0.9; }
.footer-social { display: flex; justify-content: center; gap: 25px; }
.footer-social a { color: white; font-size: 1.6rem; transition: var(--transition); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.footer-social a:hover { transform: translateY(-5px) scale(1.1); background: rgba(255, 255, 255, 0.2); }
.footer-social a:first-child:hover { background-color: var(--whatsapp-color); }
.footer-social a:last-child:hover { background-color: var(--telegram-color); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 480px) {
    .stats-section { padding: 40px 15px; }
    .stats-grid { gap: 20px; }
    .stat-item { padding: 15px 20px; min-width: 120px; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.9rem; }
    .promotions { padding: 20px 15px 40px; }
    .promotions .section-title { font-size: 1.5rem; }
    .promotions .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .postit-board { padding: 30px 15px; grid-template-columns: 1fr; gap: 25px; min-height: 600px; }
    .postit-item { min-height: 350px; }
    .postit-note { padding: 10px; max-width: 100%; min-height: 330px; }
    .postit-note::before { right: 15px; border-left-width: 10px; border-right-width: 10px; border-top-width: 10px; }
    .promotion-image { max-height: 350px; min-height: 300px; }
    .promotions { min-height: 700px; }
    .floating-button-text { display: none; }
    .floating-button { width: 60px; height: 60px; padding: 0; justify-content: center; border-radius: 50%; }
    .floating-button i { font-size: 1.8rem; }
    .floating-buttons { bottom: 15px; right: 15px; gap: 12px; }
}

@media (min-width: 768px) {
    .hero { padding: 30px 20px 40px; }
    .logo-image { max-width: 320px; }
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section-title { font-size: 2rem; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .info-card { padding: 45px 35px; }
    .info-title { font-size: 1.8rem; }
    .info-text { font-size: 1.15rem; }
    .postit-board { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 40px 25px; min-height: 650px; }
    .postit-item { min-height: 380px; }
    .postit-note { padding: 15px; min-height: 360px; }
    .promotion-image { max-height: 400px; min-height: 350px; }
    .promotions { min-height: 850px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .cta-button { min-width: 280px; padding: 22px 50px; font-size: 1.2rem; }
    .floating-button { padding: 18px 28px; font-size: 1.05rem; }
}

@media (min-width: 1024px) {
    .hero { padding: 35px 20px 45px; }
    .logo-image { max-width: 350px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 2.2rem; }
    .benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
    .benefit-card { padding: 45px 30px; }
    .info-card { padding: 50px 40px; }
    .info-title { font-size: 2rem; }
    .info-text { font-size: 1.2rem; }
    .postit-board { grid-template-columns: repeat(3, 1fr); gap: 35px; padding: 60px 40px; min-height: 750px; }
    .postit-item { min-height: 400px; }
    .postit-note { padding: 18px; max-width: 350px; min-height: 376px; }
    .promotion-image { max-height: 450px; min-height: 350px; object-fit: contain; object-position: center; }
    .promotions { min-height: 900px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .stat-number { font-size: 2.8rem; }
    .container { padding: 0 50px; }
    .floating-buttons { bottom: 30px; right: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .floating-button { animation: none !important; }
}

.promotion-image { image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
