/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.logo-icon {
  width: 24px;
  height: 24px;
  background: #b45309;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

.nav a:hover {
  color: #000;
}

.btn-cta {
  background: #e91e63;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: #d81b60;
}

.phone-icon {
  font-size: 16px;
}

/* Hero Section */
.hero {
  background-color: #fff;
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  padding-right: 40px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #000;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: #b45309;
}

.hero-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #b45309;
  color: white;
}

.btn-primary:hover {
  background: #a04808;
}

.btn-secondary {
  background: transparent;
  color: #b45309;
  border: 1px solid #b45309;
}

.btn-secondary:hover {
  background: #b45309;
  color: white;
}

.calendar-icon,
.arrow-icon {
  font-size: 16px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  height: 400px;
  background: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.image-icon {
  font-size: 48px;
  color: #ccc;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #e91e63;
  color: white;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
  z-index: 10;
  min-width: 200px;
}

.floating-card__title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.floating-card__subtitle {
  font-size: 12px;
  opacity: 0.9;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #fafafa;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  color: #666;
  padding: 4px 0;
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b45309;
  font-weight: bold;
}

.services-cta {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
}

.services-cta p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #000;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.about-intro {
  font-size: 18px;
  color: #e91e63;
  font-weight: 600;
  margin-bottom: 20px;
}

.about p {
  color: #666;
  margin-bottom: 20px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.mission h3,
.vision h3 {
  color: #b45309;
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fafafa;
  border-radius: 8px;
}

.value-icon {
  font-size: 24px;
}

.differentials ul {
  list-style: none;
  padding: 0;
}

.differentials li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
}

.differentials li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b45309;
  font-weight: bold;
}

/* Solutions Section */
.solutions {
  padding: 80px 0;
  background: #fafafa;
}

.solutions h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.solutions-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.solution-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.solution-card.featured {
  border: 2px solid #b45309;
  position: relative;
}

.solution-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.solution-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.solution-card p {
  color: #666;
  margin-bottom: 24px;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.solution-card li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  color: #666;
}

.solution-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b45309;
  font-weight: bold;
}

.solutions-note {
  text-align: center;
  padding: 20px;
  background: #e91e63;
  color: white;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

/* Process Section */
.process {
  padding: 80px 0;
  background: white;
}

.process h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
}

.step:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  background: #b45309;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.step-content p {
  color: #666;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background: white;
}

.how-it-works h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.how-it-works h2 .highlight {
  color: #b45309;
}

.how-it-works-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e5e5e5;
  z-index: 1;
}

.step-item {
  flex: 1;
  text-align: center;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  max-width: 220px;
}

.step-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.step-number-circle {
  width: 60px;
  height: 60px;
  background: #b45309;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

.step-icon {
  font-size: 32px;
  color: #e91e63;
  margin-bottom: 20px;
  display: block;
}

.step-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.timeline-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e91e63;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 auto;
  max-width: fit-content;
}

.timeline-badge .play-icon {
  font-size: 16px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #000;
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  font-size: 24px;
}

.contact-method h4 {
  margin-bottom: 4px;
  font-size: 16px;
}

.contact-method p {
  opacity: 0.8;
  margin: 0;
}

.contact-form {
  background: white;
  color: #000;
  padding: 32px;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b45309;
}

/* Footer */
.footer {
  background-color: oklch(0.145 0 0);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  color: #b45309;
  margin-bottom: 12px;
}

.footer-brand p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 16px;
  color: #b45309;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-grid,
  .about-content,
  .contact-content,
  .steps-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .floating-card {
    position: static;
    margin-top: 20px;
    align-self: flex-start;
  }

  .steps-container::before {
    display: none;
  }

  .step-item {
    max-width: 280px;
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-stats {
    gap: 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .how-it-works-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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





.contact-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #f8f1eb 0%, #faf6f2 50%, #ffffff 100%);
}

/* Header da seção */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .highlight {
  color: #b45309;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards de contato */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: #fef3e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #b45309;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.card-info {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.card-button {
  background: transparent;
  border: 2px solid #b45309;
  color: #b45309;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.card-button:hover {
  background: #b45309;
  color: white;
}

/* Seção de reunião */
.meeting-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.meeting-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.meeting-title .highlight {
  color: #b45309;
}

.meeting-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

.meeting-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-placeholder {
  width: 100%;
  height: 200px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d1d5db;
}

.placeholder-icon {
  color: #9ca3af;
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .meeting-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .meeting-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .meeting-section {
    padding: 24px 16px;
  }
}

.meeting-benefits {
  margin-top: 1rem;
}

.meeting-benefits > li {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meeting-benefits > li > span {
  display: block;
  width: 8px;
  height: 8px;
  background: #dc3dd5;
  border-radius: 50%;
}

.meeting-benefits__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  margin-top: 1rem;
}
