* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif; color: #2D5016; background: #FFF9E6; line-height: 1.6; }
header { background: #FFC93C; padding: 1rem 2rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
nav { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 1.3rem; }
.logo img { width: 40px; height: 40px; }
nav ul { display: flex; gap: 2rem; list-style: none; }
nav a { color: #2D5016; text-decoration: none; font-weight: 600; }
nav a:hover { opacity: 0.7; }
.hero { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; background: linear-gradient(135deg, #FFC93C 0%, #FFB347 100%); }
.hero-content { max-width: 800px; }
.hero-logo { width: 200px; height: 200px; margin-bottom: 2rem; }
.hero h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 1rem; color: #2D5016; }
.tagline { font-size: 1.3rem; margin-bottom: 2rem; color: #2D5016; opacity: 0.9; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 1rem 2rem; border-radius: 30px; text-decoration: none; font-weight: 700; transition: transform 0.3s; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: #2D5016; color: #FFC93C; }
.btn.secondary { background: #FFF; color: #2D5016; border: 2px solid #2D5016; }
.section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; color: #2D5016; }
.section p { text-align: center; max-width: 800px; margin: 0 auto 1rem; font-size: 1.1rem; }
.section.dark { background: #2D5016; color: #FFC93C; max-width: none; }
.section.dark h2 { color: #FFC93C; }
.section.dark .card { background: #FFC93C; color: #2D5016; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.card { background: #FFF; padding: 2rem; border-radius: 20px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.card h3 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.step { text-align: center; }
.step .number { display: inline-block; width: 60px; height: 60px; line-height: 60px; background: #FFC93C; border-radius: 50%; font-size: 1.5rem; font-weight: 900; margin-bottom: 1rem; }
.contract-box { background: #FFC93C; padding: 1.5rem; border-radius: 15px; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; max-width: 800px; margin: 0 auto; }
.contract-box code { background: #FFF; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.9rem; word-break: break-all; }
.contract-box button { padding: 0.5rem 1rem; background: #2D5016; color: #FFC93C; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; }
footer { background: #2D5016; color: #FFC93C; text-align: center; padding: 2rem; }
footer .socials { margin-top: 1rem; }
footer a { color: #FFC93C; margin: 0 1rem; text-decoration: none; font-weight: 600; }
@media (max-width: 768px) { .hero h1 { font-size: 2rem; } nav ul { display: none; } .section h2 { font-size: 1.8rem; } }
