/* HEADER */
.header {
  /* border: 1px solid blue; */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem min(5vw, 4rem);
  height: 150px;
  display: flex;
  gap: 4%;
  align-items: center;
}

.header-left {
  /* border: 1px solid blue; */
  flex: 0 0 70%;
  display: flex;
  align-items: end;
  gap: 1rem;  
}

.header-left .flags {
  /* border: 1px solid blue; */
  display: flex;
  gap: 0.5rem;
  margin-bottom: 5px;
}

.header-left .flags img {
  transition: opacity 0.2s ease;
}

.header-left .flags img:hover {
  opacity: 0.7;
}

.header-left h2 {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}

.header-right {
  flex: 0 0 26%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.status-box {
  border: 2px solid #e73213;
  color: #e73213;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
  transition: all 0.2s ease;
}

.status-box:hover {
  background-color: #e73213;
  color: #f5f4ed;
}

/* LAYOUT PRINCIPAL */
.about {
  /* border: 1px solid blue; */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem min(5vw, 4rem);
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content {
  /* border: 1px solid blue; */
  display: flex;
  gap: 4%;
  min-height: 50vh;
  align-items: stretch;
}

/* COLUNA ESQUERDA */
.left {
  /* border: 1px solid blue; */
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
  flex: 0 0 70%;
}

.intro h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 100;
  color: #f0531c;
  line-height: 1.2;
  margin-top: -20px;
}

.logo {
  width: clamp(40px, 4vw, 60px);
  height: auto;
  transition: opacity 0.2s ease;
}

.logo:hover {
  transform: translateY(-2px);
  opacity: 0.7;
}

.links {
  display: flex;
  gap: clamp(2rem, 6vw, 6rem);
  font-size: 0.85rem;
  flex-wrap: wrap;
  align-items: end;
}

.links div {
  min-width: max-content;
}

.links a {
  text-decoration: none;
  color: #733635;
  transition: opacity 0.2s ease;
}

.links a:hover {
  opacity: 0.7;
}

.links i {
  margin-left: 0.3rem;
  font-size: 0.8rem;
}

/* COLUNA DIREITA */
.right {
  /* border: 1px solid blue; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  flex: 0 0 26%;
}

.right p {
  margin-bottom: 1rem;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  font-size: 0.70rem;
  line-height: 1.5;
}

.right h2 {
  font-family: "Roboto Mono", monospace;
  color: #f0531c;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.4;
}

.icones {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.icones a {
  color: #733635;
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.icones a:hover {
  color: #f0531c;
  transform: translateY(-2px);
}