/* ================================================
   04-chef.css
   Seção de apresentação da Chef Joselene
   Estilo editorial: foto grande à esquerda
   ================================================ */

#chef {
  padding: var(--section-padding);
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

/* Gradiente decorativo de fundo */
#chef::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,164,109,0.05) 0%, transparent 70%);
  pointer-events: none;
}

#chef::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(178,34,34,0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Grid editorial: foto esquerda | texto direita --- */
.chef-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}

/* --- Bloco da foto --- */
.chef-image-wrap {
  position: relative;
}

.chef-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--espresso-light);
}

.chef-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.chef-image-frame:hover img {
  transform: scale(1.04);
}

/* Placeholder enquanto não há foto */
.chef-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(150deg, #2a1a14 0%, #3d2520 50%, #4a2e28 100%);
}

.chef-photo-placeholder span {
  font-size: 5rem;
  opacity: 0.5;
}

.chef-photo-placeholder p {
  font-size: 0.8rem;
  font-family: var(--font-corpo);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(197,164,109,0.35);
}

/* Borda acento decorativa */
.chef-image-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(197,164,109,0.25);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
}

/* Badge de experiência */
.chef-badge {
  position: absolute;
  bottom: 28px;
  left: -22px;
  background: var(--vermelho);
  color: var(--creme);
  padding: 14px 22px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  z-index: 2;
}

.chef-badge strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--creme);
}

.chef-badge span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 2px;
  text-transform: uppercase;
}

/* --- Bloco de conteúdo (texto) --- */
.chef-content .section-label {
  color: var(--dourado);
  opacity: 0.8;
}

.chef-content .section-title {
  color: var(--creme);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.chef-content .section-title em {
  color: var(--dourado);
}

.chef-bio {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245,230,204,0.65);
  margin-bottom: 1.6rem;
  font-weight: 300;
}

.chef-bio em {
  color: var(--dourado);
  font-style: italic;
}

/* Stats numéricas */
.chef-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.chef-stat strong {
  display: block;
  font-family: var(--font-titulo);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dourado);
  line-height: 1;
}

.chef-stat span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,230,204,0.45);
  margin-top: 4px;
}

/* Tags de especialidade */
.chef-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chef-tag {
  background: rgba(197,164,109,0.08);
  border: 1px solid rgba(197,164,109,0.25);
  color: var(--dourado);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  transition: background var(--transition-base);
}

.chef-tag:hover {
  background: rgba(197,164,109,0.14);
}

/* ================================================
   RESPONSIVIDADE — Chef
   ================================================ */
@media (max-width: 960px) {
  .chef-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .chef-image-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .chef-badge {
    left: -10px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .chef-stats { gap: 1.5rem; }
  .chef-badge { display: none; }
}