/* Configurações */
:root {
    font-size: 62.5%;
}

body{
    margin: 0;
    background-color: #ffffff;
}

.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* header  */

.hamburguer {
  display: none;
}

.menu-mobile {
  display: none;
}

.overlay {
  display: none;
}

header{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #FC3F3E;
    padding-top: 1rem;
    padding-bottom: 6rem;
}

header h1{
    color: #ffffff;
    font-family: "Montserrat", serif;
    font-weight: 400;
}

header nav{
    display: flex;
    gap: 2rem;
}

header nav a{
    text-decoration: none;
    color: #ffffff;
    font-family: "Montserrat", serif;
    font-size: 1.2rem;
    position: relative;
}

.botao_header{
    background-color: #ffffff;
    color: #FC3F3E;
    padding: 1rem;
    border-radius: 2rem;
    font-family: "Montserrat", serif;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}

.botao_header:hover {
  transform: translateY(-3px);
}

.botao_header a{
    text-decoration: none;
    color: #FC3F3E;
    font-weight: 500;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.3rem;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.4s ease, left 0.3s ease;
}

header nav a:hover::after {
    left: 0;
    width: 100%;
}

/* Section principal */

.principal{
    background-color: #FC3F3E;
    display: grid;
    justify-content: center;
    align-items: center;
    padding-bottom: 6rem;
}

.caixaDeElementosPrincipal{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.imagemSectionPrincipal img{
    width: 25rem;
}

.textosDasectionPrincipal{
    color: #ffffff;
    font-family: "Montserrat", serif;
}

.textosDasectionPrincipal h1{
    font-size: 5rem;
    margin-bottom: 0.9rem;
    font-weight: 300;
}

.textosDasectionPrincipal h1 span{
    font-weight: 900;
}

.textosDasectionPrincipal p{
    font-size: 1.rem;
    width: 40rem;
    margin-top: 0;
}

.Botao_Accessar_da_section_principal{
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 2rem;
    text-align: center;
    margin-top: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}

.Botao_Accessar_da_section_principal a{
    font-family: "Montserrat", serif;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    
}

.Botao_Accessar_da_section_principal:hover {
  transform: translateY(-3px);
}

/* section destaques da semana */

#destaques_da_semana{
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.titulo_da_section_destaques{
    align-items: center;
    text-align: center;
    font-family: "Montserrat", serif;
}

.titulo_da_section_destaques h1{
    color: #FC3F3E;
    font-size: 4rem;
    margin-bottom: 0;
}

.titulo_da_section_destaques p{
  text-align: center;
  color: #000000;
  font-size: 1.2rem;
}

.carrosel_de_bolos {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 350px;
}

.bolo {
  position: absolute;
  transition: filter 0.3s ease;
  will-change: transform;
}

.seta {
  position: absolute;
  bottom: -40px;
  background: #ff4b5c;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

.seta-esquerda {
  left: 45%;
}

.seta-direita {
  right: 45%;
}

/* section para mostrar demais produtos */

#demaisProdutos{
  display: grid;
  justify-content: center;
  margin-top: 10rem;
}

.titulo_da_section_demais_produtos h1{
  color: #FC3F3E;
  font-family: "Montserrat", serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0;
}

.carrossel_produto_demais {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.card-produto {
  background: #ffffff;
  border-radius: 12px;
  width: 260px;
  padding: 2.5rem 2rem;
  padding-top: 0;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-produto h2 {
  color: #ff3d3d;
  font-family: "Montserrat", serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.card-produto p{
  color: rgb(0, 0, 0);
  font-family: "Montserrat", serif;
  font-weight: 500;
}

.card-produto img {
  width: 120px;
  margin: 0 auto 2rem;
  display: block;
}

.card-produto button {
  background: #ff3d3d;
  font-family: "Montserrat", serif;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  font-size: 1.4rem;
  cursor: pointer;
}

.viewport {
  width: 900px;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 3rem;
  transition: transform 0.4s ease;
}

.setaCardMaisProdutos {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ff3d3d;
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 10;
}

.setaCardMaisProdutos-esquerda {
  left: -10rem;
}

.setaCardMaisProdutos-direita {
  right: -10rem;
}

/* section de promoção */
#secao_promocao {
  margin-top: 5rem;
  width: 100%;
  height: 70vh;
  background-image: url("../assets/Group\ 132.png");
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #FB3E3A;
}

/* section forms pedido */
#pedido {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.pedido-container {
  width: 70%;
  max-width: 1200px;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.pedido-imagem {
  width: 40%;
  background: #ff3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pedido-imagem img {
  max-width: 80%;
}

.pedido-form {
  width: 60%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.pedido-form input,
.pedido-form select {
  padding: 18px;
  border: 2px solid #ff3b3b;
  font-family: "Montserrat", serif;
  font-weight: 300;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.pedido-form button {
  margin-top: 20px;
  padding: 18px;
  background: #ff3b3b;
  font-family: "Montserrat", serif;
  font-weight: 900;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.pedido-form button:hover {
  transform: scale(1.03);
}

details{
  color: #FC3F3E;
  font-family: "Montserrat", serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* section sobre a confeiteira */
#Sobre_a_confeiteira{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 5rem;
  margin-bottom: 10rem;
}

.imgDaConfeiteira img{
  width: 30rem;
}

.Descricao_da_confeiteira h1{
  color: #FC3F3E;
  font-family: "Montserrat", serif;
  font-size: 4rem;
  font-weight: 900;
}

.Descricao_da_confeiteira h1 span{
  font-weight: 500;
}

.Descricao_da_confeiteira p{
  font-family: "Montserrat", serif;
  font-size: 2rem;
  font-weight: 400;
  width: 40rem;
  color: #ff3b3b;
}