@charset "UTF-8";
@import url(theme.css);
@import url(menu.css);
@import url(carousel.css);
@import url(footer.css);

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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto-principal);
  line-height: 1.6;
}

header {
  background: var(--cor-branco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid var(--cor-borda);
  flex-wrap: wrap;
}

header h1 {
  font-size: 2.5rem;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  font-family: serif;
  font-style: italic;
}



/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: linear-gradient(to right, #fce4ec, #ffffff);
  flex-wrap: wrap;
  text-align: center;
}

.texto-hero {
  max-width: 900px;
  flex-basis: 50%; /* Para ocupar metade do espaço em telas maiores */
  padding-right: 20px; /* Espaçamento caso a imagem fique ao lado */
}

.texto-hero h1 {
  font-size: 80px;
  color: var(--cor-primaria-texto);
  font-family: 'Pacifico', cursive;
  transition: transform 0.4s;
  margin-left: 230px;
  text-align: left;
}

.texto-hero h1:hover {
  transform: scale(1.05);
}

.texto-hero p {
  font-size: 30px;
  color: var(--cor-primaria-texto);
  font-family: 'Pacifico', cursive;
  margin-top: 10px;
  margin-left: 170px;
}

.imagem-hero img {
  max-width: 480px;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.imagem-hero img:hover {
  transform: scale(1.03);
}

/* Media Queries para Responsividade */

/* Tablets e Telas Menores */
@media (max-width: 992px) {
  header {
    padding: 20px 30px;
    flex-direction: column;
    align-items: center;
  }

  .menu-navegacao {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .hero {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
  }

  .texto-hero {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .texto-hero h1 {
    font-size: 60px;
    margin-left: 0;
    text-align: center;
  }

  .texto-hero p {
    font-size: 24px;
    margin-left: 0;
    text-align: center;
  }

  .imagem-hero img {
    max-width: 100%;
  }
}

/* Dispositivos Móveis */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .menu-navegacao {
    width: 100%;
  }

  .menu-navegacao ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 5px;
  }

  .menu-navegacao .menu-item a {
    padding: 10px;
    display: block;
    width: 100%;
    text-align: center;
  }

  .redes-sociais {
    margin-top: 20px;
  }

  .texto-hero h1 {
    font-size: 48px;
  }

  .texto-hero p {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 15px 20px;
  }

  .logo {
    font-size: 20px;
  }

  .texto-hero h1 {
    font-size: 36px;
  }

  .texto-hero p {
    font-size: 18px;
  }
}
