@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@400;600&display=swap');

:root {
  --accent: #d5008f;
  --bg: #fff;
  --text: #222;
  --font-main: 'Poppins', 'Inter', Arial, sans-serif;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header, footer {
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(213,0,143,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav .logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}

nav ul li a.active, nav ul li a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(135deg, #fff 60%, #fce4f6 100%);
}

.hero img {
  width: 90px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--accent);
  margin: 0.5rem 0 0.2rem 0;
}

.hero p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(213,0,143,0.08);
  transition: background 0.2s;
}

.whatsapp-btn:hover {
  background: #b80077;
}

.section {
  padding: 2.5rem 1rem 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.projects-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(213,0,143,0.07);
  padding: 1.5rem 1.2rem;
  border-left: 5px solid var(--accent);
  transition: box-shadow 0.2s;
}

.project-card:hover {
  box-shadow: 0 4px 24px rgba(213,0,143,0.13);
}

.project-card h3 {
  margin-top: 0;
  color: var(--accent);
}

.project-card ul {
  margin: 0.5rem 0 0 1.2rem;
  color: #444;
}

footer {
  margin-top: 2rem;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.98rem;
  color: #666;
  border-top: 1px solid #eee;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #b80077;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.social-icons a {
  color: var(--accent);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #b80077;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(213,0,143,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 1rem;
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #b80077;
}

@media (min-width: 600px) {
  .projects-list {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    padding: 4rem 1rem 3rem 1rem;
  }
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 0.7rem;
    padding: 1rem 0.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
