:root {
  --primary: #003d9b;
  --on-primary: #ffffff;
  --background: #f8f9fb;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f3f4f6;
  --on-surface: #191c1e;
  --on-surface-variant: #434654;
  --outline-variant: #c3c6d6;
  --outline: #737685;

  --section-gap: 80px;
  --stack-sm: 8px;
  --stack-md: 16px;
  --stack-lg: 24px;
  --container-max: 1120px;
  --gutter: 24px;
  --card-padding: 48px;

  /* Typography */
  --font-family: 'Inter', sans-serif;
}

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

a{
  text-decoration: none;
}

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--on-surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Image Area */
.bg-image-container {
  width: 100%;
  height: 50vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

/* Main Content Area */
.main-content {
  flex-grow: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 10;
  padding-top: 35vh;
  padding-bottom: var(--section-gap);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Overlapping Card */
.card {
  width: 100%;
  background-color: var(--surface-container-lowest);
  border-radius: 2rem;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-shadow {
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Header Section */
.header-section {
  margin-bottom: var(--section-gap);
  width: 100%;
}

.title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--on-surface);
  margin-bottom: var(--stack-md);
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--on-surface-variant);
  max-width: 42rem;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  width: 100%;
  max-width: 56rem;
  margin-bottom: var(--section-gap);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stack-lg);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--stack-md);
  border-radius: 1rem;
  background-color: var(--surface-container-low);
  transition: transform 0.2s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: var(--stack-sm);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--on-surface);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-surface-variant);
}

/* Call to Action */
.cta-section {
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--stack-lg);
}

.cta-button {
  width: 100%;
  background-color: var(--primary);
  color: var(--on-primary);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  padding: 16px 32px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  font-family: var(--font-family);
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Trust Badge */
.trust-badge {
  margin-top: auto;
  padding-top: var(--stack-md);
  border-top: 1px solid rgba(195, 198, 214, 0.3); /* outline-variant */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.badge-icon {
  color: var(--outline);
  font-size: 14px;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
}

.uppercase {
  text-transform: uppercase;
}

/* Responsive Rules */
@media (min-width: 768px) {
  .bg-image-container {
    height: 60vh;
  }
  
  .main-content {
    padding-top: 45vh;
  }

  .card {
    border-radius: 3rem;
    padding: var(--card-padding);
  }

  .title {
    font-size: 64px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .subtitle {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
  }
}

/* Larguras maiores que 1280px (Tudo ajustado na altura da tela) */
@media (min-width: 1281px) {
  body {
    height: 100vh;
    overflow: hidden;
  }

  .bg-image-container {
    height: 50vh;
  }

  .main-content {
    padding-top: 12vh;
    padding-bottom: 12vh;
    height: 100vh;
    justify-content: center;
  }

  .card {
    height: 100%;
    justify-content: center;
    gap: 4vh;
  }

  .header-section {
    margin-bottom: 0;
  }
  
  .features-grid {
    margin-bottom: 0;
  }

  .cta-section {
    margin-bottom: 0;
  }

  .trust-badge {
    margin-top: 0;
    padding-top: 4vh;
  }
}
