@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --midnight: #0f172a;
  --deep-sea: #12263f;
  --teal: #1dd3b0;
  --sunset: #ff7a59;
  --sand: #f2e9e4;
  --muted: #c7d0dd;
  --card: rgba(255, 255, 255, 0.04);
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 50px rgba(12, 18, 33, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at 15% 20%, rgba(29, 211, 176, 0.08), transparent 25%), radial-gradient(circle at 85% 10%, rgba(255, 122, 89, 0.12), transparent 30%), linear-gradient(160deg, #0d1525 0%, #0f172a 40%, #0b1324 100%);
  color: #eaf1ff;
  line-height: 1.6;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.2px;
  color: #f8fafc;
  margin: 0 0 12px;
}

p {
  color: var(--muted);
  margin: 0 0 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: 0.4px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--sunset));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #0f172a;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #2ce2c0);
  color: #0a0f1a;
  box-shadow: 0 15px 30px rgba(29, 211, 176, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--stroke);
  color: #f8fafc;
  background: transparent;
}

main {
  padding-top: 90px;
}

.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(255, 122, 89, 0.22), transparent 30%), radial-gradient(circle at 20% 0%, rgba(29, 211, 176, 0.24), transparent 28%), linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text .subtitle {
  max-width: 540px;
  font-size: 18px;
  color: #d8e2f2;
  margin-bottom: 24px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(29, 211, 176, 0.12);
  color: #9ef2dc;
  border: 1px solid rgba(29, 211, 176, 0.24);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
  background: linear-gradient(135deg, rgba(29, 211, 176, 0.08), rgba(255, 122, 89, 0.08));
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--stroke);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.22), transparent 70%);
  top: -60px;
  right: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.mini-card span {
  font-size: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  font-weight: 600;
  color: #d8e2f2;
}

section {
  padding: 72px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-header p {
  max-width: 520px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(29, 211, 176, 0.2), rgba(255, 122, 89, 0.2));
  margin-bottom: 10px;
  font-size: 22px;
}

.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.event-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(29, 211, 176, 0.05));
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.testemunhos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-block {
  padding: 42px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(29, 211, 176, 0.12), rgba(255, 122, 89, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-block p {
  color: #f0f4ff;
  font-size: 18px;
}

footer {
  padding: 36px 0 48px;
  background: #0b1324;
  border-top: 1px solid var(--stroke);
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  color: var(--muted);
}

.footer-grid h4 {
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: #f8fafc;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 600;
}

.floating {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.floating.visible {
  opacity: 1;
  transform: translateY(0);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: #f8fafc;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 840px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 16px;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    width: 220px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .mini-card {
    min-height: unset;
  }

  .cta-block {
    padding: 28px 22px;
  }
}
