/* CTA SECTION */
.cta-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem;
  overflow: hidden;
  font-family: 'Space Grotesk', sans-serif;
  z-index: 2;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* CTA Decoration Wrapper - fora do container da imagem */
.cta-decoration-wrapper {
  position: relative;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  margin-top: 0;
}

.cta-decoration {
  position: absolute;
  top: -80px;
  left: -2px;
  width: 250px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

.cta-decoration img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cta-content {
  position: relative;
  z-index: 4;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: left;
  flex: 1;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cta svg {
  transition: transform 0.3s ease;
}

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

.btn-cta-white {
  background: #ffffff;
  color: #0d0d0d;
}

.btn-cta-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary {
  background: #e85107;
  color: #ffffff;
}

.btn-cta-primary:hover {
  background: #e64a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 86, 0, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .cta-section {
    min-height: 450px;
    padding: 3rem 2rem;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .cta-title {
    text-align: left;
    max-width: 100%;
  }
  
  .cta-buttons {
    align-self: flex-end;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-decoration {
    width: 220px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .cta-section {
    min-height: 400px;
    padding: 2.5rem 1.5rem;
  }

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

  .cta-buttons {
    flex-wrap: nowrap;
    width: 100%;
    align-items: flex-end;
  }

  .btn-cta {
    width: auto;
    justify-content: center;
  }

  .cta-decoration {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .cta-section {
    min-height: 350px;
    padding: 2rem 1rem;
  }

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

  .cta-decoration {
    width: 150px;
    height: auto;
  }
}

