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

:root {
  --primary: #8f2344;
  --primary-600: #a72d50;
  --primary-700: #6f1831;
  --primary-100: #fff1f5;
  --accent: #d4a017;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-300: #e2e8f0;
  --gray-600: #475569;
  --gray-800: #1f2937;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--primary-100), var(--white));
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(120%) blur(6px);
  border-bottom: 1px solid var(--gray-300);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-700);
  text-decoration: none;
}
.menu { display: flex; gap: 18px; }
.menu a {
  color: var(--gray-800);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all .2s ease;
}
.menu a:hover { color: var(--primary-700); background: var(--primary-100); }
.nav-toggle { display: none; border: none; background: transparent; font-size: 22px; }

.hero {
  padding-top: 100px;
  background: radial-gradient(circle at 20% 20%, rgba(143,35,68,.22), transparent 45%), radial-gradient(circle at 80% 10%, rgba(212,160,23,.2), transparent 38%);
}
.hero-content { padding: 80px 0; }
.hero h1 { font-size: 2.2rem; margin: 0 0 12px; color: var(--gray-800); }
.hero p { font-size: 1.1rem; color: var(--gray-600); }
.cta-group { display: flex; gap: 12px; margin-top: 20px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: linear-gradient(90deg, var(--primary-600), var(--primary)); color: var(--white); box-shadow: 0 8px 20px rgba(143,35,68,.26); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(143,35,68,.32); }
.btn-outline { border: 2px solid var(--primary-600); color: var(--primary-700); background: transparent; }
.btn-outline:hover { background: var(--primary-100); }

.section { padding: 60px 0; }
.section.alt { background: var(--gray-50); }
.section h2 { font-size: 1.8rem; margin: 0 0 20px; color: var(--gray-800); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--gray-300); border-radius: 16px; padding: 20px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(143,35,68,.14); border-color: var(--primary-600); }
.card h3 { margin: 0 0 8px; color: var(--primary-700); font-size: 1.2rem; }
.card p { margin: 0; color: var(--gray-600); }

.tips { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 0; margin: 0; list-style: none; }
.tips li { background: var(--white); border: 1px solid var(--gray-300); border-radius: 12px; padding: 12px 14px; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { background: var(--white); border: 1px solid var(--gray-300); border-radius: 16px; padding: 18px; transition: transform .15s ease, box-shadow .15s ease; }
.feature:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(143,35,68,.14); }
.feature h3 { margin: 0 0 6px; color: var(--primary-700); }
.feature p { margin: 0; color: var(--gray-600); }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.map-wrap { margin-top: 12px; }
.map { width: 100%; height: 300px; border: 0; border-radius: 12px; }
.contact-form h3 { margin: 0 0 12px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field input, .field textarea { padding: 12px; border: 1px solid var(--gray-300); border-radius: 10px; font-family: inherit; font-size: 1rem; }
.consent { display: flex; align-items: center; gap: 8px; margin: 12px 0 16px; }

.cookie-banner { position: fixed; left: 20px; right: 20px; bottom: 20px; background: var(--white); border: 1px solid var(--gray-300); border-radius: 16px; padding: 14px; display: none; box-shadow: 0 14px 30px rgba(31,41,55,.18); z-index: 1200; }
.cookie-banner p { margin: 0 0 10px; color: var(--gray-800); }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }

.whatsapp { position: fixed; right: 20px; bottom: 90px; background: linear-gradient(90deg, var(--primary-600), var(--primary)); color: var(--white); text-decoration: none; padding: 12px 14px; border-radius: 999px; box-shadow: 0 12px 28px rgba(143,35,68,.28); transition: transform .15s ease, box-shadow .15s ease; }
.whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(143,35,68,.34); }

.footer { background: var(--white); border-top: 1px solid var(--gray-300); padding: 28px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.footer h4 { margin: 0 0 8px; color: var(--primary-700); }
.footer p { margin: 6px 0; color: var(--gray-600); }
.copy { margin-top: 16px; text-align: center; color: var(--gray-600); }

@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .menu { display: none; position: absolute; top: 64px; right: 20px; background: var(--white); border: 1px solid var(--gray-300); border-radius: 12px; padding: 10px; flex-direction: column; }
  .nav-toggle { display: inline-block; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
}
