:root {
  --container: 1100px;
  --bg: #fff6f0;        
  --bar-bg: #fffaf6;   
  --ink: #4a2a21;       
  --accent: #f3b083;    


body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}


.header-wrap {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.header-bar {
  width: min(var(--container), calc(100% - 48px));
  background: var(--bar-bg);
  border-bottom: 2px solid var(--accent); 
  border-radius: 0;                     
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06); 
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}


.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;  
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.header-title {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.header-nav a:hover {
  background: #ffe7d6;
  transform: translateY(-1px);
}


.contenido {
  width: min(var(--container), calc(100% - 48px));
  margin: 60px auto;
}

.contenido h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;      
  margin-top: 80px;        
  margin-bottom: 20px;
}


.contenido p {
  font-size: 1rem;
}

.figma-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.figma-container iframe {
  width: min(var(--container), 100%);
  height: 600px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}


}