html, body {
  height: 100%;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS (baseadas no seu design original) */
:root {
  --primary: #3aa838;
  --bg1: #f3a33b;
  --bg2: #fdc76f;
  --text: #2b2b2b;
  --card-bg: rgba(255, 255, 255, 0.85);
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  text-align: center;

  min-height: 100vh;

  /* GRADIENTE CONTÍNUO (sem quebra) */
  background: linear-gradient(160deg,  #f3a33b 0%, #fdc76f 40%, #f3c589 100%);
  background-attachment: fixed;

  position: relative;
}

/* TEXTURA (efeito sutil tipo grain) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.08;
  pointer-events: none;
}

.lang-switch {
  position: absolute;
  top: 60px;
  right: 70px; /* mais afastado da borda */
  display: flex;
  gap: 15px;
}

/* BOTÕES */
.lang-switch button {
  background: rgba(255,255,255,0.85);
  border: none;
  padding: 10px 16px; /* maior área clicável */
  border-radius: 12px;
  cursor: pointer;

  font-size: 17px;
  font-weight: 600;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);

  transition: all 0.25s ease;
}

/* HOVER */
.lang-switch button:hover {
  transform: translateY(-10px) scale(1.10);
  background: white;
}

/* BOTÃO ATIVO (idioma atual) */
.lang-switch button.active {
  background: var(--primary);
  color: rgb(255, 255, 255);
}
/* HERO */
.hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: clamp(400px, 55vw, 900px);
}

/* CONTAINER */
.container {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 20px 100px;
  flex-wrap: wrap;

  /* remove sensação de bloco isolado */
  margin-top: -60px;
}

/* CARD */
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  max-width: 300px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
}

/* HOVER MAIS SOFISTICADO */
.card:hover {
  transform: translateY(-20px) scale(1.10);
  box-shadow: 0 25px 50px rgba(0,0,0,0.38);
}

/* IMAGEM */
.card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;

  border: 3px solid rgba(202, 136, 3, 0.5);
}

/* TITULO */
.card h3 {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary);

  font-size: clamp(18px, 2vw, 24px);
}
 
/* TEXTO */
.card p {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  
white-space: pre-line;
}



/* LINKS */
.links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* LINKS BASE */
.links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  transition: 0.3s;
}

/* ÍCONES */
.links i {
  font-size: 18px;
  transition: 0.3s;
}

/* HOVER GERAL */
.links a:hover {
  transform: translateY(-2px);
}

/* INSTAGRAM */
.links a:hover i.fa-instagram,
.links a:hover i.fa-instagram + span {
  color: #E1306C;
}

/* PINTEREST */
.links a:hover i.fa-pinterest,
.links a:hover i.fa-pinterest + span {
  color: #E60023;
}

/* SITE */
.links a:hover i.fa-globe,
.links a:hover i.fa-globe + span {
  color: #f2a120;
}




/* RESPONSIVO */
@media (max-width: 600px) {
  .container {
    gap: 20px;
  }

  .card {
    width: 90%;
  }
