:root { --green: #0b6b3a; --green-dark: #064b29; --yellow: #f5c400; --red: #ce1126; --dark: #102018; --text: #24332b; --muted: #68766f; --light: #f5f8f6; --white: #ffffff; --border: #dfe8e2; --shadow: 0 12px 35px rgba(16, 32, 24, 0.10); --radius: 18px; } * { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; } body { font-family: Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; } a { color: inherit; text-decoration: none; } button, input, textarea { font: inherit; } .container { width: min(1120px, 92%); margin: 0 auto; } /* HEADER */ header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.96); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); } .nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; } .brand { display: flex; align-items: center; gap: 12px; } .crest { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: var(--white); font-size: 25px; box-shadow: 0 5px 15px rgba(11, 107, 58, 0.25); } .brand b { display: block; color: var(--green-dark); font-size: 20px; } .brand small { display: block; color: var(--muted); font-size: 10px; line-height: 1.25; } nav { display: flex; align-items: center; gap: 20px; } nav a { font-size: 14px; font-weight: 700; color: var(--dark); transition: 0.2s; } nav a:hover { color: var(--green); } .menu { display: none; border: 0; background: var(--green); color: white; padding: 9px 12px; border-radius: 10px; font-size: 22px; cursor: pointer; } /* HERO */ .hero { background: linear-gradient(135deg, rgba(6, 75, 41, 0.97), rgba(11, 107, 58, 0.91)); color: white; padding: 95px 0; position: relative; overflow: hidden; } .hero::after { content: ""; position: absolute; width: 350px; height: 350px; border: 50px solid rgba(245, 196, 0, 0.12); border-radius: 50%; right: -120px; bottom: -170px; } .hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: center; gap: 60px; position: relative; z-index: 2; } .eyebrow { color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: 1.8px; margin-bottom: 12px; } .hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.05; margin-bottom: 24px; letter-spacing: -2px; } .hero h1 span { color: var(--yellow); } .lead { max-width: 700px; font-size: 19px; opacity: 0.92; margin-bottom: 30px; } .actions { display: flex; flex-wrap: wrap; gap: 12px; } .btn { display: inline-block; border: 0; border-radius: 999px; padding: 13px 22px; font-weight: 800; cursor: pointer; transition: 0.2s; } .btn:hover { transform: translateY(-2px); } .btn.primary { background: var(--yellow); color: #151515; } .btn.ghost { border: 1px solid rgba(255,255,255,0.45); color: white; background: transparent; } .hero-card { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); border-radius: 28px; padding: 35px; backdrop-filter: blur(10px); } .ball { font-size: 55px; margin-bottom: 15px; } .hero-card h3 { font-size: 25px; margin-bottom: 12px; } /* SECTIONS */ section { padding: 85px 0; } section.alt { background: var(--light); } .section-head { margin-bottom: 38px; } .section-head h2 { font-size: clamp(30px, 4vw, 45px); line-height: 1.15; color: var(--dark); margin-bottom: 12px; } .section-head > p:last-child { color: var(--muted); } .two { display: grid; grid-template-columns: 1fr 0.8fr; gap: 45px; align-items: center; margin-bottom: 35px; } .two > p { font-size: 18px; } .quote { background: var(--green); color: white; border-radius: var(--radius); padding: 28px; font-size: 19px; font-weight: 700; box-shadow: var(--shadow); } .cards { display: grid; gap: 20px; } .cards.three { grid-template-columns: repeat(3, 1fr); } .cards article { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: 0 5px 20px rgba(16, 32, 24, 0.04); transition: 0.25s; } .cards article:hover { transform: translateY(-5px); box-shadow: var(--shadow); } .cards h3 { color: var(--green-dark); margin-bottom: 10px; } .cards p { color: var(--muted); } /* SERVICES */ .service-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; } .service-list > div, .docs > div { border: 1px solid var(--border); border-radius: var(--radius); padding: 23px; background: white; } .service-list > div { font-size: 25px; } .service-list b { display: block; color: var(--dark); font-size: 16px; margin-top: 10px; } .service-list span, .docs span { display: block; color: var(--muted); font-size: 14px; margin-top: 5px; } /* TAGS */ .tag { display: inline-block; background: rgba(11, 107, 58, 0.10); color: var(--green); border-radius: 999px; padding: 5px 10px; font-size: 11px; font-weight: 800; margin-bottom: 12px; } /* NEWS */ .news { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .news article { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; } .date { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: 1px; margin-bottom: 10px; } /* DOCUMENTS */ .docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; } .docs > div { font-size: 24px; } /* JOIN */ .join { background: var(--green); color: white; text-align: center; } .join h2 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 10px; } .join p { max-width: 650px; margin: 0 auto 25px; opacity: 0.9; } /* CONTACT */ .contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 45px; } .contact-grid form { display: grid; gap: 13px; } .contact-grid input, .contact-grid textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; outline: none; } .contact-grid textarea { min-height: 140px; resize: vertical; } .contact-grid input:focus, .contact-grid textarea:focus { border-color: var(--green); } /* FOOTER */ footer { background: var(--dark); color: white; padding: 35px 0; } .footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; } .footer p { color: rgba(255,255,255,0.65); font-size: 13px; } /* MOBILE */ @media (max-width: 850px) { .menu { display: block; } nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: white; padding: 20px 5%; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; } nav.open { display: flex; } .hero { padding: 65px 0; } .hero-grid, .two, .contact-grid { grid-template-columns: 1fr; } .cards.three, .service-list, .docs { grid-template-columns: 1fr 1fr; } .news { grid-template-columns: 1fr; } } @media (max-width: 560px) { section { padding: 60px 0; } .hero h1 { font-size: 43px; letter-spacing: -1px; } .lead { font-size: 17px; } .cards.three, .service-list, .docs { grid-template-columns: 1fr; } .hero-card { padding: 25px; } .footer { flex-direction: column; align-items: flex-start; } }