/* ============================================= */
/*                  IMPORTS & VARIÁVEIS          */
/* ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

:root {
  /* Cores */
  --cor-fundo: #FFFBFB;
  --cor-gradiente: #5881f0;
  --cor-primaria: #f470b5;
  --cor-secundaria: #dd2d7c;
  --cor-terciaria: #FFD166;
  --cor-quarternaria: #FCFCFC;
  --cor-texto: #242424;
  --cor-texto-secundario: #88111B;
  --cor-texto-terciario: #4B5563;
  --cor-footer: #930DE4;
  --cor-header: #f7f7f7e0;
  
  /* Fontes */
  --fonte-principal: 'Poppins', sans-serif;
  --fonte-logo: "Galada", cursive;
}

/* ============================================= */
/*                  RESET & BASE                 */
/* ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  overflow-x: hidden;
  font-family: var(--fonte-principal);
  text-align: center;
  animation: fadeIn 1s;
  background-color: #FFFAFB;
}

/* ============================================= */
/*                  ANIMAÇÕES INSUMOS            */
/* ============================================= */
.hidden-row {
  opacity: 0;
  transition: all 1s;
}

.top-row .insumos-texto {
  transform: translateX(-350px);
  transition: transform 0.8s ease-out, opacity 0.8s ease;
}

.top-row .insumos-imagem {
  transform: translateX(350px);
  transition: transform 0.8s ease-out, opacity 0.8s ease;
}

.bottom-row .insumos-texto {
  transform: translateX(350px);
  transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease 0.2s;
}

.bottom-row .caipiras-imagem {
  transform: translateX(-350px);
  transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease 0.2s;
}

.row-visible {
  opacity: 1;
}

.row-visible .insumos-texto,
.row-visible .insumos-imagem,
.row-visible .caipiras-imagem {
  transform: translateX(0);
}

/* ============================================= */
/*                  HEADER                       */
/* ============================================= */
header {
  backdrop-filter: blur(9px);
  background-color: var(--cor-header);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

.logo {
  font-weight: 300;
  font-size: 2.4em;
  font-family: var(--fonte-logo);
  background: linear-gradient(92deg,#f470b5 0%, #dd2d7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2.6rem;
  text-decoration: none;
}

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

.logo a:hover {
  transform: scale(1.1);
}

/* Menu Hamburguer */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  padding: 15px;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.05);
}

.menu-icon__line {
  height: 3px;
  width: 30px;
  background-color: var(--cor-primaria);
  border-radius: 3px;
  transition: all 0.3s ease;
  margin: 5px 0;
  transform-origin: center;
}

nav {
  display: flex;
  gap: 15px;
  padding-left: 30px;
  align-items: center;
  animation: fadeIn 1s ease-in-out;
  transition: all 0.3s ease;
}

nav a {
  text-decoration: none;
  padding: 10px 10px;
  font-weight: 500;
  color: #000;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover {
  color: var(--cor-secundaria);
  transform: scale(1.1);
}

/* ============================================= */
/*                  HERO SECTION                 */
/* ============================================= */
.hero {
  display: flex;
  flex-direction: row;
  background: linear-gradient(0deg,rgba(245, 245, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
  height: 100vh;
  max-width: 100%;
  justify-content: center;
  padding: 150px 20px;
}

.hero-content {
  text-align: start;
  margin: 100px auto;
}
.hero-span{
  background: linear-gradient(92deg,#f470b5 0%, #dd2d7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-image {
  position: relative;
  display: inline-block;
  animation: float-2 6s ease-in-out infinite;
}

.blur {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1400px;
}

.emoji-floating {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.emoji-floating .emoji {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0;
  transition: opacity 1s ease;
}

.float1 { animation: float1 6s ease-in-out infinite; }
.float2 { animation: float2 7s ease-in-out infinite; }
.float3 { animation: float3 5s ease-in-out infinite; }
.float4 { animation: float4 8s ease-in-out infinite; }

.pos1 {
  top: 15%;
  left: 5%;
}
.pos2 {
  top: 20%;
  right: 10%;
}
.pos3 {
  bottom: 15%;
  left: 10%;
}
.pos4 {
  bottom: 10%;
  right: 5%;
}

.sombra {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15em;
  height: 15em;
  background-color: rgba(143, 79, 7, 0.2);
  border-radius: 50%;
  z-index: 0;
  filter: blur(45px);
}

.hero-flamingo {
  top: 30%;
  left: 8%;
  font-size: 10em;
  position: relative;
  z-index: 1;
}

.hero-drink {
  position: relative;
  top: 80px;
  right: 50px;
  font-size: 3em;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5em;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--cor-texto);
  letter-spacing: -2px;
  z-index: 1;
}

.hero-content p {
  font-size: 1.9em;
  max-width: 80%;
  margin-bottom: 30px;
  color: var(--cor-texto);
}
/* ============================================= */
/*                  ANIMAÇÕES                    */
/* ============================================= */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    color: var(--cor-secundaria);
  }
  50% {
    transform: scale(1.05);
    color: var(--cor-primaria);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes float4 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-2deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(15px); }
}

/* ============================================= */
/*                  BOTÕES                       */
/* ============================================= */


.action-btn {
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  background-color: #fac0ca;
  color: #88111B;
  transition: all 0.3s ease;
  border-radius: 50px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.action-btn:hover {
  background-color: #FFCDD5;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.botao-menu-contato {
  margin-left: 20px;
  text-decoration: none;
  color: var(--cor-texto-secundario);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid #fac0ca;
  transition: all 0.3s ease;
  display: inline-block;
}

.botao-menu-contato:hover {
  background-color: #e0e0e069;
}

/* ============================================= */
/*                  SERVIÇOS                     */
/* ============================================= */
.servicos {
  display: flex;
  max-width: 100%;
  margin: 0;
  align-items: center;
  justify-content: center;
  padding: 70px;
  background-color: #eeeeee;
}

.servicos-img {
  align-items: center;
  justify-content: center;
}

.servicos-content {
  display: flex;
  gap: 60px;
  flex-direction: row;
  justify-content: space-around;
}

.servicos-content img {
  max-width: 100px;
}

.entrega, .experiencia, .agilidade {
  background-color: #fff;
  padding: 20px;
  max-width: 170px;
  border-radius: 20px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================= */
/*                  SOBRE                        */
/* ============================================= */

.sobre-wrapper{
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 50px auto;
}
.sobre-wrapper h1{
  font-size: 2.5em;
  margin: 60px auto;
  color: var(--cor-texto);
  font-weight: 500;
  letter-spacing: -1.2px;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
.sobre-wrapper h1:before{ 
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  border-bottom: 3px solid #f470b483;
}
.sobre-content{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sobre-text{
  text-align: start;
  font-size: 1.3em;
  margin: 40px;
}
.sobre-text-text{
  color: var(--cor-texto-terciario);
}
.sobre-text-span{
  background: linear-gradient(92deg,#f470b5 0%, #dd2d7c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.sobre-text-atributos{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; 
  justify-content: space-around;
  gap: 20px;
}
.sobre-image img{
  width: 100%;
  border-radius: 15px;
  margin: 10px;
  border: 2px solid rgb(0, 0, 0);
  box-shadow: 6px 6px 0 var(--cor-primaria);
}

.caipi-card{
  text-align: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.123);
  border-radius: 10px;
  padding: 10px;
  max-width: 200px;
  transition: all 0.4s;
}
.caipi-card:hover{
  transform: scale(1.1);
}
.card-icon{
  margin-top: 8px;
}

.caipi-card h3{
  font-size: .9em;
  letter-spacing: -0.8px;
  font-weight: 500;
}
.caipi-card p{
  font-size: 0.8em;
  color: var(--cor-texto-terciario);
  margin: 10px 0;
}
.folha svg{
  stroke: rgb(0, 165, 0);
}
.sol svg{
  stroke: rgb(255, 123, 0);
}

/* ============================================= */
/*                  CAIPIRINHAS                  */
/* ============================================= */
.caipas{
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg,rgba(255, 232, 245, 0.664) 0%, #FFFAFB 100%);
}
.caipas-text{ 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem; 
}
.caipas-text h1{
  font-size: 2.5em;
  margin: 60px auto;
  color: var(--cor-texto);
  font-weight: 500;
  letter-spacing: -1.2px;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
.caipas-text h1:before{ 
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  border-bottom: 3px solid #f470b483;
}
.caipas-text p{
  max-width: 40vw;
}
.caipas-cards{
  max-width: 1400px;
  margin: 5vh auto;
  padding: 0 5% 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.caipas-card{
  flex: 1 1 400px;
  max-width: 400px;
  background-color: #fafafaec;
  padding: 1.3rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.123);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adiciona transição suave */
}

.caipas-card:hover {
  transform: scale(1.05); /* Aumenta ligeiramente o card */
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4); /* Aumenta a sombra para dar efeito de elevação */
  z-index: 1; /* Garante que o card aumentado fique acima dos outros */
}
.caipas-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;  /* Mantém proporção 1:1 */
  overflow: hidden;     /* Esconde qualquer parte da imagem que sair */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.caipas-card-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease; /* Transição suave apenas para o transform */
}

.caipas-card:hover .caipas-card-image img {
  transform: scale(1.1); /* Aumenta mais a imagem dentro do card */
}

.caipas-card-text{
  margin-top: 20px;
  text-align: start;
}
.caipas-card-text h3{
  font-size: 1.2em;
  font-weight: 500;
}
.caipas-card-text p{
  font-size: 1em;
  font-weight: 400;
  color: var(--cor-texto-terciario);
}


/* ============================================= */
/*                  FUNCIONAMENTO                */
/* ============================================= */
.funcionamento{
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.funcionamento-text{
  text-align: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.funcionamento-text h1{
  font-size: 2.5em;
  margin: 50px auto;
  color: var(--cor-texto);
  font-weight: 500;
  letter-spacing: -1.2px;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
.funcionamento-text h1:before{ 
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  border-bottom: 3px solid #f470b483;
}
.funcionamento-text p{
  padding-bottom: 20px;
  color: var(--cor-texto-terciario);
}
.funcionamento-cards{
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  padding: 0 20px;  
}
.card-funcionamento {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
}

.emoji-container {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: rgba(255, 182, 193, 0.3); /* rosa claro com 30% de opacidade */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.emoji-container span {
  font-size: 40px;
}

.numero {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fac0ca; 
  color: #88111B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.card-funcionamento h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.card-funcionamento p {
  font-size: 16px;
  color: #666;
}

.promessa-qualidade{
  margin: 3vh auto;
  background: linear-gradient(90deg,rgba(255, 239, 242, 0.856) 0%, rgba(247, 250, 255, 1) 100%);
  text-align: start;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  display: flex; 
}

.promessa-qualidade-texto{
  flex: 0 0 70%;
}
.promessa-qualidade-texto h1{
  font-weight: 500;
}
.promessa-qualidade-imagem{
  flex: 0 0 30%;
  font-size: 6em;
  margin: auto;
  text-align: end;
  filter: drop-shadow(2px 2px 30px rgba(255, 174, 0, 0.555));
}

/* ============================================= */
/*                  CONTATO                      */
/* ============================================= */
/* Estilos gerais do contato */
.contato-wrapper {
  max-width: 1000px;
  padding: 20px 0 60px;
  margin: 0 auto;
}

.contato-container h1{
  font-size: 2.5em;
  margin: 50px auto;
  color: var(--cor-texto);
  font-weight: 500;
  letter-spacing: -1.2px;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
.contato-container h1:before{ 
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  bottom: 0;
  left: 25%;
  border-bottom: 3px solid #f470b483;
}
.info-container{
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 3px #00000033);
}
.contact-info{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  text-align: center;
}
.contato-intro{
  max-width: 30vw;
  margin: 0 auto;
  color: var(--cor-texto-terciario);
  margin-bottom: 30px;
}
/* Estilo para o container do ícone */
.icon-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  transition: all 0.3s;
  border-radius: 50%;
  box-shadow: 2px 2px 6px #00000063;
}

.icon-container svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: block;
  stroke: #B33791;
  transition: all 0.3s;
}

.icon-container::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FEC5F6; 
  color: #88111B;
  border-radius: 50%;
  z-index: 0;
}

.icon-container:hover{
  transform: scale(1.2);
  background-color: var(--cor-primaria); 
  box-shadow: 1px 1px 10px #0000004f;
}
.icon-container:hover svg{
  stroke: #88111B;
}
.contact-info h3{
  font-weight: 500;
}
.contact-info p{
 font-weight: 300;
}

/* ============================================= */
/*                  FOOTER                       */
/* ============================================= */
footer {
  padding: 20px;
  color: #00000088;
  background: rgba(255, 224, 228, 1);
}

footer i {
  font-weight: 300;
}

.made-by {
  text-decoration: none;
  color: inherit;
}

/* ============================================= */
/*                  RESPONSIVO                   */
/* ============================================= */
@media (max-width: 768px) {
  *{
  scroll-padding-top: 0;
  }

  html, body {
    width: 100%;
    overflow-x: hidden; /* Impede rolagem horizontal */
  }
  /* Header */
  .menu-icon {
    display: block;
  }

  header {
    backdrop-filter: blur(9px);
    background-color: var(--cor-header);
    transition: top 0.3s;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }

  .header-hidden {
    top: -100px;
  }
  
  nav {
    position: absolute;
    gap: 0;
    padding: 0;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    visibility: hidden;
    background-color: var(--cor-header);
    backdrop-filter: blur(9px);
  }

  #menu-toggle:checked ~ nav {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
  
  nav a {
    display: block;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    color: var(--cor-primaria);
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    bottom: 0;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: -1;
  }

  #menu-toggle:checked ~ nav a {
    opacity: 1;
    transform: translateY(0);
  }

  nav a:hover {
    transform: scale(1.1);
    transform-origin: left center;
    color: var(--cor-secundaria);
    background-color: #FFCDD5;
    margin-left: 10px;
  }

  nav a:hover::before {
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
  }

  nav a:last-child:hover {
    transform-origin: left bottom;
  }
  
  .logo {
    font-size: 1.8em;
  }
  .logo a {
    padding: 0;
  }
  .logo-icon {
    max-width: 45px;
  }

  /* Hero Section */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 60px;
    height: auto;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .blur {
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 1;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    max-width: 100%;
    margin: 0 auto 20px;
  }

  .hero-image {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-flamingo {
    font-size: 6em;
    left: 10px;
    position: relative;
    margin: 0 auto;
    top: 30px;
  }

  .hero-drink {
    top: -20px;
    right: 60px;
    font-size: 3em;
  }
  .sombra{
    width: 8em;
    height: 8em;
  }
  .sobre-content{
    flex-direction: column;
  }
  .sobre-image{
    padding: 10px;
  }
  .sobre-image img{
    margin: 0;
  }
  .sobre-text{
    max-width: 90vw;
    margin-top: 30px;
  }

  .caipas-text p{
    max-width: 90vw;
  }
  .caipi-card{
    margin-top: 20px;
    width: 95vw;
    max-width: 95vw;
  }

  .promessa-qualidade{
    margin: 0 5px;
  }

  .entrega, .experiencia, .agilidade {
    max-width: 140px;
    padding: 15px;
  }

  .servicos-content img {
    max-width: 60px;
  }

  /* Insumos Section */
  .insumos-wrapper, .insumos {
    max-width: 95%;
    margin: 30px auto;
  }

  .insumos-row {
    flex-direction: column;
    padding: 20px 0;
  }

  .insumos-texto {
    text-align: center;
    padding: 20px 0;
  }

  /* Produtos Section */
  .produtos {
    padding: 40px 20px;
  }

  .produtos-content {
    flex-direction: column;
  }

  .produtos h1 {
    padding-bottom: 30px;
  }

  .produtos-content img {
    margin: 0 0 20px 0;
  }

  /* Contato Section */
  .contato-texto {
    padding: 30px 20px;
    margin-top: 0;
  }

  .contato-texto h1 {
    font-size: 2rem;
  }

  .contato-email-row a {
    display: none;
  }
  .contato-intro{
    max-width: 90vw;
  }
  .info-container{
    margin: 0 5px;
  }

  /* Menu Hamburguer Animation */
  #menu-toggle:checked + .menu-icon .menu-icon__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #menu-toggle:checked + .menu-icon .menu-icon__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  #menu-toggle:checked + .menu-icon .menu-icon__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (min-width: 769px) {
  nav {
    display: flex !important;
  }
}