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

:root {
  --bg-primary: #050505; /* Padrão, pode ser sobrescrito pelo HTML */
  --bg-secondary: #0f0f0f;
  --text-primary: #ffffff;
  --text-secondary: #999999;
  --accent: #E2C792; /* Padrão Gold */
  --space-unit: 8px;
  --section-pad-desktop: 120px;
  --section-pad-mobile: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Container */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Button - Unbounce Contrast Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--accent);
  color: #000;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(226, 199, 146, 0.2);
}
.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  margin-bottom: 24px;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 48px;
}
.hero-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-primary) 0%, rgba(0,0,0,0) 100%);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* General Sections */
.section {
  padding: var(--section-pad-desktop) 0;
}
.section-header {
  margin-bottom: 80px;
}
.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

/* Glassmorphism Cards */
.glass-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}
.glass-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--accent);
}
.glass-card p {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  padding: var(--section-pad-desktop) 0 40px;
  text-align: center;
  background-color: var(--bg-secondary);
}
.footer h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hero-image-wrap {
    width: 100%;
    opacity: 0.3;
  }
  .hero-image-wrap::after {
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(0,0,0,0) 100%);
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
