/* ========================= GLOBAL ========================= */ :root { --green: #0b8a3a; --dark: #0b3b1f; --light: #f5f7fa; --accent: #ffd447; --radius: 12px; --shadow: 0 10px 25px rgba(0,0,0,0.12); } body { margin: 0; font-family: system-ui, sans-serif; background: #ffffff; color: #111827; line-height: 1.6; } img { max-width: 100%; display: block; } /* ========================= HEADER ========================= */ .header { background: radial-gradient(circle at top left, #12b981, var(--green)); color: #fff; text-align: center; padding: 40px 20px 80px; } .header-anniversary { max-width: 260px; margin: 0 auto 20px; } .header-title { display: flex; justify-content: center; align-items: center; gap: 16px; } .header-title h1 { font-size: 2.4rem; font-weight: 700; } .header-crest { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); } .header-subtitle { max-width: 700px; margin: 0 auto; font-size: 1.05rem; } /* ========================= COUNTER ========================= */ .counter-card { margin: 40px auto 0; background: rgba(255,255,255,0.12); border-radius: 20px; padding: 20px; backdrop-filter: blur(10px); box-shadow: var(--shadow); max-width: 300px; } .counter-label { font-size: 0.9rem; opacity: 0.9; } .counter-value { font-size: 2.4rem; font-weight: 700; } .counter-bar { margin-top: 14px; height: 8px; background: rgba(255,255,255,0.18); border-radius: 999px; overflow: hidden; } .counter-bar-fill { height: 100%; background: linear-gradient(90deg, #f97316, #facc15); transition: width 1.2s ease-out; } /* ========================= SECTIONS ========================= */ .section { padding: 60px 0; } .section:nth-of-type(odd) { background: var(--light); } .section-title { font-size: 1.8rem; margin-bottom: 10px; } .section-subtitle { font-size: 0.98rem; color: #4b5563; margin-bottom: 26px; } /* ========================= GRID ========================= */ .container { max-width: 1100px; margin: 0 auto; padding: 0 16px; } .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; } /* ========================= CARDS ========================= */ .card { background: #ffffff; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); } .card-icon { width: 50px; height: 50px; background: rgba(11,138,58,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; } /* ========================= LEAFLET BLOCK ========================= */ .leaflet-block { background: #ffffff; border-radius: 16px; padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px; } /* ========================= BENEFITS ========================= */ .benefits-wrapper { display: flex; flex-direction: column; gap: 20px; } .benefit-tier { background: #ffffff; border-radius: 14px; padding: 20px; box-shadow: var(--shadow); display: flex; gap: 20px; } .benefit-icon-circle { width: 55px; height: 55px; border-radius: 50%; background: rgba(11,138,58,0.08); display: flex; align-items: center; justify-content: center; } .benefit-header-line { display: flex; justify-content: space-between; margin-bottom: 6px; } .benefit-title { font-size: 1.2rem; font-weight: 600; } .benefit-amount { background: rgba(255,212,71,0.2); padding: 4px 10px; border-radius: 999px; font-weight: 600; } /* ========================= FORM ========================= */ .form-wrapper { background: #ffffff; border-radius: 20px; padding: 24px; box-shadow: var(--shadow); } .form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; } label { font-size: 0.9rem; font-weight: 600; } input { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid #d1d5db; } .consent { margin-top: 14px; display: flex; gap: 10px; } .submit-btn { margin-top: 20px; background: var(--green); color: #fff; padding: 12px 22px; border-radius: 999px; border: none; font-size: 1rem; cursor: pointer; } /* ========================= FOOTER ========================= */ .footer { background: var(--dark); color: #e5e7eb; padding: 26px 20px; text-align: center; } .counter-anniversary { max-width: 120px; margin: 0 auto 10px; display: block; } .consent { max-width: 100%; overflow-wrap: break-word; } .consent label { display: block; line-height: 1.4; font-size: 0.95rem; } .rodo-link { margin-top: 10px; font-size: 0.95rem; } .rodo-link a { color: var(--green); font-weight: 600; text-decoration: underline; } .counter-button { display: inline-block; margin: 32px auto 0; padding: 16px 36px; background: linear-gradient(135deg, #ffcc00, #ffdb4d); color: #000; font-weight: 700; font-size: 1.2rem; border-radius: 12px; text-decoration: none; position: relative; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.25); transition: transform 0.25s ease; } .counter-button:hover { transform: translateY(-4px); } .counter-button::after { content: ""; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0)); transform: skewX(-20deg); transition: left 0.6s ease; } .counter-button:hover::after { left: 120%; }