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

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

/* ===== HEADER ===== */
.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); /* línea durazno */
  border-radius: 0;                      /* sin bordes redondeados */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06); /* sombra suave */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
}

/* ===== LOGO Y TEXTO IZQUIERDA ===== */
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

/* ===== NAVEGACIÓN DERECHA ===== */
.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 ===== */
.contenido {
  width: min(var(--container), calc(100% - 48px));
  margin: 60px auto;
}

.contenido h1 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;         /* centra el título */
  margin-top: 80px;           /* separa del header */
  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);
}


}