/* STYLES.CSS - Final Version */
:root { --brand-blue: #232246; --accent-green: #A4CA6B; --accent-blue: #67C5C3; --text-dark: #0B0C0F; --bg-light: #F9FAFB; }
html, body { margin: 0; padding: 0; background: var(--bg-light); color: var(--text-dark); font-family: 'Inter', sans-serif; line-height: 1.6; }
*, *::before, *::after { box-sizing: border-box; }
h1, h2, h3, h4 { margin-top: 0; color: var(--brand-blue); font-family: 'Roboto Slab', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.2rem; margin-bottom: 0.5em; }
p { margin-bottom: 1rem; color: #374151; }
a { color: var(--brand-blue); text-decoration: none; transition: 0.2s; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media(min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.header { background: var(--brand-blue); color: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.header img { height: 50px; width: auto; }
.nav { display: flex; gap: 4px; }
.nav a { color: #fff; padding: 8px 16px; border-radius: 6px; font-weight: 500; font-size: 0.9rem; }
.nav a:hover, .nav a.active { background: rgba(255,255,255,0.15); color: var(--accent-blue); }
.hero { background: var(--brand-blue); color: #fff; padding: 60px 0; margin-bottom: 40px; border-bottom: 6px solid var(--accent-green); }
.hero h1 { color: #fff; }
.hero p { color: #E5E7EB; font-size: 1.1rem; max-width: 600px; }
.hero-content { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media(min-width: 900px) { .hero-content { grid-template-columns: 1.1fr 0.9fr; } }
.card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid #E5E7EB; transition: transform 0.2s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-3px); border-color: var(--accent-blue); }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: 8px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; cursor: pointer; }
.btn.primary { background: var(--accent-green); color: var(--brand-blue); border: 2px solid var(--accent-green); }
.btn.secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn.secondary.dark { color: var(--brand-blue); border-color: var(--brand-blue); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.badge { font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: 50px; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.badge.highlight { background: var(--accent-blue); color: var(--brand-blue); border-color: transparent; }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
/* Slider */
.slider { position: relative; overflow: hidden; border-radius: 12px; }
.slider-track { display: flex; transition: transform 0.4s ease; }
.slider-track img { flex: 0 0 100%; width: 100%; height: 300px; object-fit: cover; }
@media(min-width: 768px) { .slider-track img { height: 400px; } }
.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,0.5); cursor: pointer; padding: 0; }
.dot.active { background: #fff; }
img:not([src]), img[src=""] { visibility: hidden; } 
.img-placeholder { background: #E5E7EB; color: #6B7280; display: flex; align-items: center; justify-content: center; height: 300px; border-radius: 12px; font-weight: bold; padding: 20px; text-align: center; }
input, textarea { width: 100%; padding: 14px; border: 1px solid #D1D5DB; border-radius: 8px; margin-bottom: 16px; background: #F9FAFB; }
.footer { background: var(--brand-blue); color: #9CA3AF; padding: 60px 0 20px; margin-top: 60px; font-size: 0.9rem; }
.footer strong { color: #fff; display: block; margin-bottom: 12px; font-size: 1.1rem; }
.footer a { color: #D1D5DB; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
@media(min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-logo { text-align: right; }
.footer-logo img { max-width: 160px; height: auto; opacity: 0.9; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media(min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-logo { text-align: right; }
.footer-logo img { max-width: 160px; height: auto; }
