/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS DE TEMA PADRÃO */
:root {
  --bg-color: #fff;
  --text-color: #000;
  --link-color: #007bff;
  --header-bg: #fff;
  --button-bg: #007bff;
  --button-text: #fff;
  --footer-bg: #eee;
  --footer-text: #111;
  --border-color: #ddd;
}

/* BASE */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background 0.3s, color 0.3s;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: var(--link-color);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* HEADER */
.topo {
  background-color: var(--header-bg);
  padding: 1.2rem 0;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(238, 227, 227, 0.05);
  border-bottom: 2px solid var(--border-color);
}

.topo::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #0077ff, #00cfff);
}

/* Flex Container */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo */
.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.5px;
  transition: color 0.3s;
  text-decoration: none;
}

.logo a:hover {
  color: var(--link-color);
}

/* Menu */
.menu {
  flex: 1;
  text-align: right;
}

.menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
  padding: 4px 0;
}

.menu ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background-color: var(--link-color);
  transition: width 0.3s ease;
}

.menu ul li a:hover::after {
  width: 100%;
}

.menu ul li a:hover {
  color: var(--link-color);
}

/* Botão opcional (ex: login/carrinho) */
.header-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-buttons a {
  padding: 6px 12px;
  border: 1px solid var(--link-color);
  border-radius: 4px;
  background-color: transparent;
  color: var(--link-color);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-buttons a:hover {
  background-color: var(--link-color);
  color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    text-align: center;
  }

  .menu ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .menu {
    text-align: center;
  }

  .header-buttons {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* BOTÕES DE TEMA */
.header-direita {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modos-icones {
  display: flex;
  gap: 0.5rem;
}

.modos-icones button {
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 0.6rem;
  width: 42px;
  height: 42px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modos-icones button:hover {
  background-color: var(--link-color);
  color: #fff;
  transform: scale(1.05);
}


/* BOTÃO CURRÍCULO */
.btn {
  display: inline-block;
  background-color: var(--button-bg);
  color: var(--button-text);
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

.btn-mini {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: var(--button-bg);
  color: var(--button-text);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.btn-mini:hover {
  opacity: 0.85;
}


/* ANIMAÇÕES GERAIS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .topo .container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .menu ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .modos-icones {
    justify-content: center;
  }

  /* Empilha os blocos laterais em tela pequena */
  .dupla-face {
    flex-direction: column;
    min-height: auto;
  }

  .dupla-face .lado {
    flex: none;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
  }

  .centro-imagem {
    position: relative;
    transform: none;
    margin: 20px auto;
  }

  .hero-grid {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .card {
    min-width: 100%;
  }

  .rodape {
    padding: 30px 10px;
    font-size: 0.85rem;
  }

  .rodape .icones-sociais a {
    font-size: 1rem;
  }
}
/* Fundo geral do main com imagem suave */
.dupla-face {
  background: url('https://images.unsplash.com/photo-1581090700227-1e8e6d97d5a0?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
  background-size: cover;
  padding: 4rem 2rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Lados (designer e coder) */
.lado {
  flex: 1 1 300px;
  padding: 1rem;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.lado h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lado p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Imagem central */
.centro-imagem {
  text-align: center;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.imagem-dividida img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--cor-destaque, #00bfa6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.conteudo-centro {
  margin-top: 0.5rem;
}

.frase {
  font-style: italic;
  font-size: 0.95rem;
  color: #0c0707;
}

.btn.destaque {
  background: var(--cor-destaque, #00bfa6);
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn.destaque:hover {
  background: #00a28a;
}

/* Responsivo */
@media (max-width: 768px) {
  .dupla-face {
    flex-direction: column;
    text-align: center;
  }
}
body[data-tema="claro"] {
  background-color: #ffffff;
  color: #000000;
}

body[data-tema="escuro"] {
  background-color: #121212;
  color: #eeeeee;
}

body[data-tema="coloradd"] {
  background-color: #f9f9f2;
  color: #2e2e2e;
}
.oportunidades h1, .oportunidades h2, .oportunidades h3 {
  color: var(--cor-principal);
  margin-top: 2rem;
}

.vagas .vaga {
  background: #f9f9f9;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--cor-secundaria);
  border-radius: 6px;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.formulario input, .formulario textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.formulario button {
  width: fit-content;
}
.post-vaga {
  border-left: 4px solid #0077cc;
  background: #f7faff;
}

.post-profissional {
  border-left: 4px solid #00bfa6;
  background: #f6fffb;
}

.post header h3 {
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: #fff1f1;
}

.post small.empresa, .post small.contato {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 0.6rem;
}

.btn-mini {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  background: #0077cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-mini:hover {
  background: #005fa3;
}
@media(max-width: 768px) {
  .dupla-face {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .designer {
    order: 1;
  }

  .centro-imagem {
    order: 2;
    margin: 2rem 0;
  }

  .coder {
    order: 3;
  }

  .conteudo-centro {
    margin-top: 1rem;
  }
}
/* Logo-friendly */
.img-container.logo img{
  object-fit: contain;           /* não corta a marca */
  height: 200px;                 /* mantém altura da grade */
  padding: 18px;                 /* respiro ao redor da logo */
  background: linear-gradient(180deg,#f6f7f9,#eef1f4); /* leve contraste */
}
