
/* Base styles */
:root {
  --primary-color: #ec3146;
  --primary-dark: #d01f33;
  --primary-light: #ff9494;
  --text-color: #1A1F2C;
  --text-light: #6B7280;
  --background-color: #FFFFFF;
  --background-light: #F9FAFB;
  --border-color: #E5E7EB;
  --card-bg: rgba(255, 255, 255, 0.8);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.8rem;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.5;
  background-color: var(--background-color);
  overflow-x: hidden;
}

.error { border: 1px solid #ec3146 !important; }

.page-wrapper {
  position: relative;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Background elements */
.fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

.score-gradient-bg {
  background: linear-gradient(135deg, #fcfdff 0%, #fff5f5 100%);
}

.fixed-blob {
  position: fixed;
  border-radius: 50%;
  z-index: -5;
}

.top-blob {
  top: 0;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background-color: rgba(236, 49, 70, 0.1);
  filter: blur(100px);
}

.bottom-blob {
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  transform: translate(25%, 25%);
  background-color: rgba(236, 49, 70, 0.05);
  filter: blur(100px);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.25;
}

p {
  margin-bottom: 1em;
}

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

/* Utilities */
.glass-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

.glass-panel {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
}

.score-gradient-text {
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.fade-in {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-secondary:hover {
  color: var(--primary-dark);
}

.btn-outline {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background-color: #f9fafb;
  box-shadow: var(--shadow-md);
}

.btn-outline svg {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.btn-outline:hover svg {
  transform: translateX(4px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 2rem;
}

.desktop-nav {
  display: none;
}

.header-buttons {
  display: none;
}

.mobile-menu-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: white;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.3s ease;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--text-color);
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}

.mobile-nav-link:hover {
  background-color: #f9fafb;
}

.mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.mobile-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .header-content {
    height: 5rem;
  }

  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    color: var(--text-light);
  }

  .nav-link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-light);
  }

  .nav-link.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-dark);
  }

  .header-buttons {
    display: flex;
    gap: 1rem;
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.tag-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(236, 49, 70, 0.1);
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.blob-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-bottom-right {
  bottom: -2rem;
  right: -2rem;
  background-color: rgba(236, 49, 70, 0.2);
}

.blob-top-left {
  top: -2rem;
  left: -2rem;
  background-color: rgba(236, 49, 70, 0.1);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

/* Features Section */
.features-section {
  padding: 5rem 0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-md);
  background-color: var(--card-bg);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(236, 49, 70, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-light);
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Questions Section */
.questions-section {
  padding: 5rem 0;
  background-color: rgba(236, 49, 70, 0.05);
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.question-card {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
  background-color: var(--card-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.question-card:hover {
  transform: translateY(-5px);
}

.question-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  background-color: rgba(236, 49, 70, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 1rem;
}

.question-text {
  font-weight: 500;
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .questions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
}

.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-light);
  margin-bottom: 0;
}

.image-container {
  position: relative;
}

.how-it-works-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .how-it-works-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* CTA Section */
.cta-section {
  padding: 5rem 1rem;
  margin: 2.5rem 1rem;
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    align-items: center;
  }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  max-width: 600px;
}

.benefits {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(236, 49, 70, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.benefit-description {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form-container {
  max-width: 600px;
  border-radius: var(--radius);
  background-color: var(--card-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(236, 49, 70, 0.2);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn svg {
  margin-left: 0.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.footer {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 30px;
}

.footer-company {
      display: grid;
    grid-template-columns: 2fr 3fr; /* Primeira coluna 2/5, segunda 3/5 */
    align-items: center; /* Centraliza os itens verticalmente */
    gap: 20px; /* Espaço entre as colunas */
    max-width: 800px; /* Define uma largura máxima para o footer */
    width: 100%;}

.footer-logo {
    display: flex;
    justify-content: center; /* Centraliza o logo horizontalmente */
    align-items: center; /* Centraliza o logo verticalmente */
}

.footer-description {
  color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--primary-color);
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.copyright {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Fade In Animation */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.5s; }
.fade-in:nth-child(4) { animation-delay: 0.7s; }

/* Additional classes */
.text-gray-600 {
  color: var(--text-light);
}

.text-2xl {
  font-size: 1.5rem;
}

.font-semibold {
  font-weight: 600;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}
