:root {
    --azul-base: #00ffff;
    --violeta-base: #5e17eb;
    --rosa-base: #ff00ff;
    --branco-base: #ffffff;
    --preto-base: #000000;

}
@import url('https://fonts.cdnfonts.com/css/lemon-tuesday');   
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: var(--branco-base);
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--violeta-base);
  padding: 10px 20px;
  position: relative;
  
}

header img {
  width: 86px;
}

.menu-toggle {
  font-size: 28px;
  background: none;
  border: none;
  color: var(--branco-base);
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--branco-base);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  transition: background 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* Responsivo */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--violeta-base);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    text-align: right;
    color: var(--branco-base);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

main {
    background-color: #0d0d0d;
}
nav {
    display: flex;
    justify-content: space-between;
    background-color: var(--violeta-base);
    width: 100%;
    padding: 20px 4%;
    font-family: 'Lemon Tuesday', sans-serif;
    text-shadow: 1px 1px 1px var(--azul-base);
    text-transform: uppercase;
}

section {
    padding: 10px 4%;
}
.cta-button {
    background-color: #00ffff;
    color: var(--branco-base);
    padding: 15px;
    border-radius: 12px;
    text-shadow: 1px 2px 1px var(--violeta-base);
    box-shadow: 3px 5px 3px var(--rosa-base);
    font-family: 'Lemon Tuesday', sans-serif;
    display: flex;
    align-items: center;
    font-size: 32px;
    width: fit-content;
    justify-content: space-between;
    gap: 1rem;
}

.cta-button img {
  width: 32px;
  filter: brightness(0) invert(1) drop-shadow(2px 5px 10px #5e17eb); /* sombra roxa ao redor */
}
/* Inicio da Sessão Hero */
.hero {
    max-width: 100%;
    display: flex;
    padding: 10px 4%;
}
.hero-text {
    color: var(--branco-base);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}
.hero-text h1 {
    font-family: 'Lemon Tuesday', sans-serif;
    font-size: 62px;
    text-shadow: 0px 10px var(--violeta-base);
}
.hero-text p  {
    font-size: 32px;
    text-shadow: 3px 5px 3px var(--rosa-base);
    font-family: 'Poppins', sans-serif;
}
.hero-img {
    max-width: 400px;
    filter: drop-shadow(2px 5px 10px var(--violeta-base));
}

/* Fim da Sessão Hero - Inicio da Sessão Serviços */
.services {
    background-color: var(--branco-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services h2 {
    text-align: center;
    font-family: 'Lemon Tuesday', sans-serif;
    text-shadow: 1px 2px 1px var(--rosa-base);
    font-size: 42px;
}
.services p {
    font-family: 'Poppins', sans-serif;

}
.services .services-display {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 30px;
    align-items: stretch;
}
.services .services-display .service-item{
    background-color: var(--violeta-base);
    color: var(--branco-base);
    padding: 10px 2%;
    box-shadow: 3px 5px 3px var(--azul-base);
    max-width: 370px;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-item h3 {
    font-family: 'Lemon Tuesday', sans-serif;
    text-transform: uppercase;
}
.service-item p {
    font-family: 'Poppins', sans-serif;
}
.service-item .cta-button {
    font-size: 25px;
    line-height: 1;
}
.service-item .cta-button img {
    width: 50px;
}
/* Fim da Sessão Serviços - Inicio da Sessão Portifolio */
.portifolio {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--preto-base);
}
.portifolio-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portifolio h2 {
    color: var(--branco-base);
    font-family: 'Lemon Tuesday', sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 3px 1px var(--rosa-base);
    font-size: 35px;
    text-align: center;
}
.portifolio .flex {
    justify-content: space-around;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .img-port {
    width: 360px;
    height: 460px;
    background-color: var(--vermelho-2);
    background-size: cover;
    background-position: 100% 0%;
    transition: 10s;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    
  }
  .img-port:hover {
    background-position: 100% 100%;
  }
  .overlay {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    background-color: #00000028;
    color: var(--branco-base);
    text-shadow: 1px 3px 1px var(--azul-base);
    font-family: 'Lemon Tuesday', sans-serif;
    text-transform: uppercase;
    opacity: 0;
    transition: 0.5s;
  }
  .overlay:hover {
    opacity: 1;
  }
  .portifolio-text {
    color: var(--branco-base);
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }
  .portifolio-text p:nth-child(1) {
    font-size: 22px;
    line-height: 1.3;
  }
  .portifolio-text span {
    color: var(--azul-base);
    font-size: 28px;
  }
/* Fim da Sessão Portifolio - Inicio da Sessão Sobre */
.sobre {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--branco-base);
}
.sobre h2 {
    font-family: 'Lemon Tuesday', sans-serif;
    font-size: 42px;
    text-shadow: 1px 3px 1px var(--violeta-base);

}
.sobre-display {
    display: flex;
    align-items: center;
}
.sobre-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
}
.sobre-img {
    filter: drop-shadow(2px 5px 10px #5e17eb);
    max-width: 500px;
}
/* Fim da Sessão Sobre - Inicio da Sessão Avaliações */
.avaliacoes {
    display: flex;
    flex-direction: column;
    background-color: var(--violeta-base);
}
.avaliacoes h2 {
    font-family: 'Lemon Tuesday', sans-serif;
    color: var(--branco-base);
    text-shadow: 1px 3px 1px var(--preto-base);
    text-align: center;
}

/* Fim da Sessão Avaliações - Inicio da Sessão FAQ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--preto-base);
}
.faq h2 {
    color: var(--branco-base);
    font-family: 'poppins', sans-serif;
    text-align: center;
}
.faq-display {
    background-color: var(--rosa-base);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 3px 5px 3px var(--azul-base);
}
.faq-item {
  border-bottom: 1px solid var(--azul-base);
  padding: 1rem 0;
  font-family: 'Poppins' sans-serif;
}
.faq-item:last-child{
    border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  color: var(--preto-base);
  padding: 10px 4%;
}

.faq-question:hover {
  color: var(--branco-base);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  padding: 10px 4%;
  color: var(--branco-base);
  font-family: 'Poppins', sans-serif;
}

.faq-answer p {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* Fim da Sessão FAQ - Inicio da Sessão Cta-final */
.cta-final {
    background-color: var(--violeta-base);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

}
.cta-final h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--branco-base);
    text-shadow: 1px 3px 1px var(--preto-base);
    font-size: 32px;
    text-align: center;
}
.ctafinal-display {
    background-color: var(--rosa-base);
    padding: 10px 4%;
    font-family: 'Poppins', sans-serif;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 3px 5px 3px var(--violeta-base);
    margin: 0 auto;
    color: var(--branco-base);
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ctafinal-display .cta-button {
    box-shadow: 3px 5px 3px var(--violeta-base);
}
/* Fim da Sessão cta-final - Inicio da Sessão contatos */
.contato {
    background-color: var(--violeta-base);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contato h2 {
    font-family: 'Lemon Tuesday', sans-serif;
    font-size: 32px;
    color: var(--branco-base);
    text-shadow: 1px 3px 1px var(--rosa-base);
    text-align: center;
}
.contato-display {
    display: flex;
    justify-content: space-around;
}
.contato-display .cta-button:nth-child(1){
    background-color: rgb(41, 239, 41);
}
.contato-display .cta-button:nth-child(2) {
    background-color: #ff00ff;
    box-shadow: 1px 3px 1px var(--branco-base);
}
.contato-display .cta-button:nth-child(3){
    background-color: rgb(11, 77, 243);
}

footer {
    background-color: var(--violeta-base);
    text-align: center;
    color: var(--branco-base);
    text-shadow: 1px 2px 1px var(--preto-base);
    text-transform: uppercase;
    font-family: 'Lemon Tuesday', sans-serif;
}
footer img {
    max-width: 86px;
    margin: 0;
    padding: 0;
    filter:  drop-shadow(2px 5px 10px var(--rosa-base));
}
.btn-whatsapp {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 40px;
  transition: 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 220px;
  top: 8px;
  left: -224px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--violeta-base);
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4s;
  font-family: 'Poppins', sans-serif;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1020px){
    
    .hero {
        display: flex;
        flex-direction: column;
        border-bottom: 13px solid var(--violeta-base);
        padding-bottom: 0;
    }
    .hero-text {
        max-width: 100%;
        justify-content: center;
        gap: 1rem;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 1.55rem;
    
    }
    .hero-text p {
        font-size: 1.3rem;
    }
    .hero-img {
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-text .cta-button {
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .services {
        display: flex;
        flex-direction: column;
    }
    .services-text {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .service-item h3 {
        font-size: 2rem;
    }
    .service-item p {
        font-size: 1.3rem;
    }
    .services .cta-button {
        font-size: 1.4rem;
    }
    

    .sobre {
        display: flex;
        flex-direction: column;
    }
    .sobre h2 {
        text-align: center;
    }
    .sobre-display {
        flex-direction: column-reverse;
        max-width: 100%;
        gap: 2rem;
    }
    .sobre-text {
        max-width: 100%;
        padding: 10px;
    }
    .sobre-text p {
        font-size: 1.4rem;
        line-height: 1.1;
    }
    .sobre-img {
        max-width: 100%;
    }

    .portifolio {
        max-width: 100%;
    }
    .portifolio-display {
        gap: 1.5rem;
        padding-bottom: 20px;
    }
    .portifolio-text {
        gap: 1.3rem;
    }
    .portifolio .cta-button {
        font-size: 1.6rem;
    }

    .cta-final .cta-button {
        font-size: 1.6rem;
        line-height: 1.1;
    }

    
    .contato-display {
        max-width: 100%;
        flex-direction: column-reverse;
        gap: 1.5rem;
    }
    .contato-display .cta-button{
        font-size: 1.4rem;
        max-width: 400px;
        width: 90%;
        margin: 0 auto;
    }
    footer {
        max-width: 100%;
        flex-direction: column;
        padding: 15px;
    }
    footer img {
        max-width: 86px;
        margin: 0;
        padding: 0;
    }
}