/* ===== SEÇÃO SOBRE A EMPRESA ===== */
.essence-section {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 100%);
  position: relative;
  overflow: hidden;
}

.essence-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  opacity: 0.3;
}

/* ===== HEADER DA SEÇÃO ===== */
.essence-header {
  text-align: center;
  margin-bottom: 5rem;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 3.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 400;
  opacity: 0.8;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 100%);
  border-radius: 1px;
}

.decoration-icon {
  font-size: 1.2rem;
  color: var(--primary);
  animation: sparkle 2s ease-in-out infinite;
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.essence-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== SEÇÃO DA FUNDADORA ===== */
.founder-section {
  margin-bottom: 6rem;
}

.founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
  height: 450px;
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-container:hover .founder-image {
  transform: scale(1.05);
}

/* Overlay específico para a fundadora */
.founder-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(203, 151, 84, 0.95) 0%, rgba(201, 181, 89, 0.9) 100%);
  padding: 2rem;
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.founder-image-container:hover .founder-overlay {
  transform: translateY(0);
}

.founder-info {
  text-align: center;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.founder-title {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 1rem;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.founder-badge i {
  color: #fff;
  font-size: 0.8rem;
}

.founder-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-intro {
  margin-bottom: 2rem;
}

.founder-heading {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.founder-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.founder-description:last-child {
  margin-bottom: 0;
}


/* ===== SEÇÃO DE VALORES ===== */
.values-section {
  margin-bottom: 6rem;
  padding: 4rem 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.values-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.values-title {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.values-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(203, 151, 84, 0.1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
}

.value-icon-wrapper {
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(203, 151, 84, 0.3);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: #fff;
  color: var(--primary);
  transform: scale(1.1);
}

.value-content {
  flex: 1;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.value-card:hover .value-title {
  color: #fff;
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
  transition: color 0.3s ease;
}

.value-card:hover .value-description {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== SEÇÃO DE DIFERENCIAIS ===== */
.differentials-section {
  margin-bottom: 6rem;
}

.differentials-content {
  background: #fff;
  border-radius: 24px;
  padding: 4rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.differentials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.differentials-title {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.differentials-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

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

.differential-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(203, 151, 84, 0.1);
}

.differential-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
}

.differential-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(203, 151, 84, 0.3);
  transition: all 0.3s ease;
}

.differential-item:hover .differential-icon {
  background: #fff;
  color: var(--primary);
  transform: scale(1.1);
}

.differential-content {
  flex: 1;
}

.differential-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}

.differential-item:hover .differential-title {
  color: #fff;
}

.differential-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
  transition: color 0.3s ease;
}

.differential-item:hover .differential-description {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.8rem;
  }
  
  .founder-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .founder-image-container {
    height: 400px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .essence-section {
    padding: 4rem 0 3rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .essence-main {
    padding: 0 1rem;
  }
  
  .founder-section {
    margin-bottom: 4rem;
  }
  
  .founder-content {
    gap: 2rem;
  }
  
  .founder-image-container {
    height: 350px;
  }
  
  .founder-heading {
    font-size: 1.8rem;
  }
  
  .founder-description {
    font-size: 1rem;
  }
  
  .values-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
  }
  
  .values-header {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .values-title {
    font-size: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .value-card {
    padding: 1.5rem 1rem;
  }
  
  .differentials-section {
    margin-bottom: 4rem;
  }
  
  .differentials-content {
    padding: 3rem 1rem;
  }
  
  .differentials-title {
    font-size: 2rem;
  }
  
  .differential-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .essence-main {
    padding: 0 0.5rem;
  }
  
  .founder-image-container {
    height: 300px;
  }
  
  .founder-overlay {
    padding: 1.5rem;
  }
  
  .founder-name {
    font-size: 1.3rem;
  }
  
  .founder-title {
    font-size: 0.9rem;
  }
  
  .founder-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .founder-heading {
    font-size: 1.6rem;
  }
  
  .founder-description {
    font-size: 0.95rem;
  }
  
  .values-section {
    padding: 2rem 0;
  }
  
  .values-title {
    font-size: 1.8rem;
  }
  
  .values-subtitle {
    font-size: 1rem;
  }
  
  .value-card {
    padding: 1.25rem 0.75rem;
  }
  
  .value-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }
  
  .value-title {
    font-size: 1.1rem;
  }
  
  .value-description {
    font-size: 0.9rem;
  }
  
  .differentials-content {
    padding: 2rem 0.75rem;
  }
  
  .differentials-title {
    font-size: 1.8rem;
  }
  
  .differentials-subtitle {
    font-size: 1rem;
  }
  
  .differential-item {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .differential-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .differential-title {
    font-size: 1.1rem;
  }
  
  .differential-description {
    font-size: 0.9rem;
  }
}