:root {
  --color-primary: #de640b;
  --color-secondary: #287E4E;
  --color-accent: #de640b;
  --color-light: #F9F7F5;
  --color-white: #ffffff;
  --color-hover: #287E4E;
  --font-base: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px !important;
}

/* Corrigido o seletor inválido */
.bg-green-600 {
	background-color: #287E4E !important; 
}

body {
  font-family: var(--font-base);
  background-color: var(--color-light);
  color: var(--color-secondary);
  transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-hover);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
  background-color: #eee6e1;
}

.card {
  background: var(--color-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

.bg-brand-primary {
  background-color: #000000 !important;
}

.headerfundo {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  padding: 30px;
  margin: 0 auto;
  max-width: 1200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding-left: 10px !important;
  padding-right: 10px !important;
}


@media (max-width: 768px) {
  .headerfundo {
    background: rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .headerfundo.text-center.relative.z-10 {
    scale: 0.8;
  }
}

#simulador {
  background: url("img/fundo-morumbimadeiras.webp") no-repeat center center;
  background-size: cover;
}


html {
  scroll-padding-top: 100px; /* Ajustado para um valor mais comum */
  scroll-behavior: smooth;
}

/* --- NOVOS ESTILOS IMPLEMENTADOS --- */

/* Estilo para ícones na seção "Diferenciais" */
.diferencial-icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #de640b20; /* Cor de destaque com transparência */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

/* Padrão sutil para a seção do Simulador */
.bg-pattern-subtle {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 10px,
    transparent 10px,
    transparent 20px
  );
}

/* Card de Depoimento redesenhado */
.testimonial-card {
  background-color: var(--color-white);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: 'Poppins', serif;
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-quote {
  font-style: italic;
  color: #4A5568; /* brand-secondary */
  margin-bottom: 1.5rem;
  flex-grow: 1;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid var(--color-accent);
}

.testimonial-author-info .name {
  font-weight: 700;
  font-family: var(--font-heading);
  color: #2D3748; /* brand-primary */
}

.testimonial-author-info .company {
  font-size: 0.875rem;
  color: #718096;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #FBBF24; /* Amarelo para estrelas */
  margin-bottom: 0.5rem;
}


        .group:hover .group-hover\:block {
            display: block;
        }
        .dropdown-arrow::after {
            content: ' ▼';
            font-size: 0.7em;
            margin-left: 4px;
        }
        
   .linha img {
    width: 100px !important;
    height: auto;
}