:root {
  --primary: #ff6f00;
  --primary-dark: #e65100;
  --primary-light: #fff3e0;

  --text-dark: #1e293b;
  --text-gray: #64748b;
  --text-light: #94a3b8;

  --bg-white: #ffffff;
  --bg-off-white: #f8fafc;

  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);

  --radius: 12px;
  --container-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Componentes gerais */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 111, 0, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--text-dark);
  background: var(--bg-off-white);
}

/* Hero Section geral */
.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-off-white) 100%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 2;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 800;
}

.highlight {
  color: var(--primary);
  position: relative;
  z-index: 1;
}

/* Efeito de marca-texto sutil */
.highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 111, 0, 0.075);
  z-index: -1;
  transform: skewX(-15deg);
}

.lead {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

.hero-benefits li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Imagem na apresentação */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.hero-img:hover {
  transform: scale(1.02);
}

/* Blob decorativo atrás da imagem */
.blob-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: linear-gradient(45deg, #ffecd2 0%, #fcb69f 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  opacity: 0.5;
  filter: blur(40px);
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Qualidades da empresa */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Formulário de Contato */
.contact-section {
  padding: 80px 0;
  background-color: var(--bg-off-white);
}

.form-container {
  max-width: 800px; /* Formulário mais estreito para leitura fácil */
  background: var(--bg-white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required {
  color: var(--primary);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: all 0.2s;
  color: var(--text-dark);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.form-feedback {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-privacy {
  margin-top: 20px;
  text-align: center;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .parceiro-page .hero {
    height: auto !important;
    padding: 48px 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
  }

  .parceiro-page .hero-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
    padding: 0 16px !important;
    text-align: left !important;
  }

  .parceiro-page .hero-content {
    position: relative !important;
    z-index: 6 !important;
    color: var(--preto-suave) !important;
  }

  .parceiro-page .hero-content h1 {
    font-size: 1.9rem !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }

  .parceiro-page .lead {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  .parceiro-page .hero-image-wrapper {
    max-width: 520px !important;
    margin: 0 auto !important;
    order: 0 !important;
  }

  .parceiro-page .hero-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    z-index: 4 !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .lead,
  .hero-benefits,
  .hero-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-benefits {
    display: inline-block;
    text-align: left;
  }

  .hero-image-wrapper {
    order: -1; /* Imagem acima no mobile */
    max-width: 500px;
    margin: 0 auto;
  }

  .blob-bg {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 600px) {
  .form-container {
    padding: 30px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-large {
    width: 100%;
  }

  .parceiro-page .hero-content h1 {
    font-size: 1.5rem !important;
  }

  .parceiro-page .badge {
    font-size: 0.72rem !important;
    padding: 4px 10px !important;
  }

  .parceiro-page .hero-actions {
    justify-content: center !important;
  }
}
