/* ========================================
   Bio Salgadeiro Profissional - Main Styles
   ======================================== */

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-secondary);
}

/* ----------------------------------------
   Header Fixo (barra CTA)
   ---------------------------------------- */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #240c04;
  z-index: 1000;
  padding: 5px 20px;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.header-text {
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  text-align: center;
}

.btn-header {
  display: inline-block;
  background-color: #f39b04;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 4px 7px 5px 7px;
  border: none;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.section-hero {
  background: radial-gradient(at top center, #F5C067 -20%, #F29800 80%);
  padding-top: 50px; /* compensar header fixo */
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 550px;
  margin: 0 auto;
  padding: 10px 20px 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ----------------------------------------
   Cards (coluna unica, estilo link-in-bio)
   ---------------------------------------- */
.section-grid {
  background-color: var(--color-secondary);
  padding: 30px 20px 20px;
}

.grid-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid-card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.3);
}

.grid-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------
   Bio / Sobre
   ---------------------------------------- */
.section-bio {
  background: var(--gradient-bio);
  padding: 80px 20px;
}

.bio-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.bio-photo-wrapper {
  flex-shrink: 0;
}

.bio-photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.bio-content {
  flex: 1;
}

.bio-text {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bio-logo {
  height: 60px;
  width: auto;
  margin-top: 15px;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.section-footer {
  background: var(--gradient-footer);
  padding: 40px 20px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin: 0 auto;
}
