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

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F4F0;
  color: #2A0C0C;
  line-height: 1;
}

h1, h2, h3, h4 {
  font-family: 'Inter', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  background-color: #f4efe9;
  padding: 20px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  max-width: 180px;
  height: auto;
}

/* HERO */
.hero {
  position: relative;
  background: url('img/section1.png') center/cover no-repeat;
  min-height: 100vh;
  color: #fff;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  text-align: left;
  padding: 80px 10%;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-text h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.hero-text h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.btn-topo {
  display: inline-block;
  background-color: #5A0A0A;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 25px;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 80px 8%;
  background: #58121C;
  color: #fff;
}

.intro h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.1;
}

.intro .mini-text {
  font-weight: 600;
  color: #beb8b1;
  font-size: 1.1rem;
}

.intro .descricao {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* AJUDA */
.ajuda {
  background: #F5EFE7;
  text-align: center;
  padding: 80px 8%;
}

.ajuda h2 {
  font-weight: 800;
  color: #350f15;
  font-size: 2.4rem;
  line-height: 1.3;
}

.ajuda h3 {
  line-height: 2;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.card {
  color: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 260px;
  min-height: 180px;
}

.card-even { background: #350F15; }
.card-odd { background: #58121C; }

/* CTA */
.cta {
  background: #350F15;
  color: #fff;
  padding: 60px 8%;
  text-align: center;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
}

.cta span {
  font-weight: 700;
}

.cta a {
  background-color: #fff;
  color: #350F15;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
}

.align-left { text-align: left; }
.align-right { text-align: right; }

.btn-primario {
  display: inline-block;
  background-color: #5A0A0A;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-secundario {
  display: inline-block;
  background-color: #fff;
  color: #5A0A0A;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
}

/* ANFITRIÃS */
.anfitrias {
  background: #f8f4f0;
  padding: 80px 8%;
  text-align: center;
}

.anfitrias h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.anfitrias-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.anfitrias-box img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
}

.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.coluna-esquerda, .coluna-direita {
  flex: 1;
  min-width: 280px;
}

.anfitrias h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.anfitrias p {
  font-size: 1rem;
  line-height: 1.6;
}

/* FOOTER */
footer {
  text-align: center;
  background: #2a0c0c;
  color: #fff;
  padding: 25px 0;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* ============================
   RESPONSIVIDADE
============================ */

/* Tablets e médios (até 1024px) */
@media (max-width: 1024px) {
  .hero {
    padding: 60px 8%;
  }
  .hero-text h2 { font-size: 2.6rem; }
  .hero-text h3 { font-size: 1.6rem; }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
  header img {
    max-width: 140px;
  }

  .hero {
    padding: 60px 6%;
    text-align: center;
    /* align-items: center; */
    justify-content: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text h3 {
    font-size: 1.3rem;
  }

  .hero-text h4 {
    font-size: 1.1rem;
  }

  .intro h2 {
    font-size: 1.8rem;
  }

  .ajuda h2 {
    font-size: 2rem;
  }

  .cta-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .flex-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .coluna-esquerda, .coluna-direita {
    margin: 0;
  }

  .anfitrias-box img {
    max-width: 100%;
  }
}

/* Smartphones pequenos (até 480px) */
@media (max-width: 480px) {
  .hero-text h2 { font-size: 2.0rem; }
  .hero-text p { font-size: 1rem; }
  .intro { padding: 60px 5%; }
  .ajuda { padding: 60px 5%; }
  .cta { padding: 50px 5%; }
}
