@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tektur:wght@400..900&family=Zalando+Sans:ital,wght@0,200..900;1,200..900&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    
}
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}

#hero {
  position: relative;
  padding: 6rem 8%;
  min-height: calc(100vh - 6em);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #dfdfdf, #edecec);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-texto h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "DM Serif Text", serif;
  font-weight: 400;
}

.hero-texto p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-texto .cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  background-color: #d87c8a;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.hero-imagem img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}


#hero > * {
  position: relative;
  z-index: 1;
}


header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 6em;
    background-color: #fff;
    z-index: 30;
}
.header-content {
  max-width: 1200px;
  width: 100%;
  height: 100%;             
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;    
  justify-content: space-between;
  overflow-x: hidden;
}
.hamburguer {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.5rem;         
  margin-right: 1rem;
}

.logo img{
  width: 250px;
  height: auto;

}
.topo{
   display: inline-block;
  text-decoration: none;
  color: black;
  font-weight: 800;
  margin: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.topo:hover{
  transform: translateY(-5px);
  color: #00cc66;
}
main{
    min-height: 100vh;
  
    display: flex;
    flex-direction: column;
    
}
.hero-texto h1, .hero-texto p{
    filter: blur(20px);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease both;
}
#hero > h1{
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);;
}
#hero > p{
  font-weight: 400;
  font-size: clamp(1rem, 5vw, 1.5rem);;
}
.cta {
  animation: fadeUp 1s ease both;
  background-color: #ff6666;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.cta:hover {
  background-color: #00cc66;
}


#Sobre_mim{
  background: linear-gradient(180deg, #edecec, #c9c9c9);
  padding: 80px 20px;
  text-align: center;
}
#Sobre_mim .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;       
  max-width: 70em;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
}
.titulo {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff; 
  text-align: center;
  margin-bottom: 30px;
}

#Sobre_mim .titulo::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  background: #00cc66;
  margin: 8px auto 0;
  border-radius: 2px;
}

#bloco_sobre{
  flex: 1;
  padding: 2em;
  margin-left: clamp(-3rem, -5vw, 0rem);;
  background-color: #f3f3f3;
  border-radius: 5%;
  opacity: 0;
  line-height: 1.5rem;
  transform: translateX(-100px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  text-align: left;
}
#bloco_sobre p{
  margin-top: 1.8rem;
}
#bloco_sobre.show {
  opacity: 1;
  transform: translateX(0);
}
#Sobre_mim .titulo{
  color: #000;
}
#Sobre_mim .imagem {
  flex: 1;               
  text-align: center;
  transform: translateY(200px);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#Sobre_mim .imagem.show {
  opacity: 1;
  transform: translateY(0);
}
#Sobre_mim .imagem img {
  flex: 1;         
  width: 30em;
  height: auto;          
  max-width: 100%;
  border-radius: 15%;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}
.mini-curriculo {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  font-size: 1.1rem;

  color: #333;
  text-align: left;
}

.mini-curriculo li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.mini-curriculo li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000804;
  font-size: 1.2em;
}

#Avaliações{
  background: linear-gradient(180deg, #c78590, #e5b0b9);
  padding: 80px 20px;
  text-align: center;
}

#Avaliações .titulo::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  background: #00cc66;
  margin: 8px auto 0;
  border-radius: 2px;
}
.cards-avaliacoes {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  max-width: 280px;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;

}
.cards-avaliacoes .card {
  max-width: 280px;
  flex: 0 0 calc((100% - 40px) / 3);
}
 

.card p {
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.card h4 {
  margin-top: 1.5rem;
  font-style: italic;
  color: #666;
}
.card::before {
  content: "“";
  font-size: 4rem;
  color: rgba(0,0,0,0.2);
  position: absolute;
  top: 10px;
  left: 15px;
}
#conteudo_av{
  margin-top: 5em;
}
.avaliacoes-wrapper {
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;       
  position: relative;

}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-controls button {
  background: #55bcab;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-controls button:hover {
  transform: scale(1.1);
  background: #3ea39a;
}
#Avaliações h3{
  margin-bottom: 2em;
  color: #fefefe;
}
#Avaliações h3::after {
  content: "";
  display: block;
  width: 20%;
  height: 4px;
  background: #40a974;
  margin: 8px auto 0;
  border-radius: 2px;
}

#contato {
  background: linear-gradient(180deg, #c9c9c9, #edecec);
  display: flex;
  justify-content: center;
  align-items: center;
}

#contato .titulo {
  
  text-align: center;
  width: 100%;
  margin: 0 auto 30px;


}
#contato .titulo::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  background: #00cc66;
  margin: 8px auto 0;
  border-radius: 2px;
}


.contato-container {
  max-width: 1100px;
  margin-top: 5em;
  min-height: 80vh;
}


.contato-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.contato-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}
.contato-card.show {
  transform: translateY(0);
  opacity: 1;
}
.contato-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


.contato-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.contato-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #222;
}

.contato-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}


.contato-card a {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
}


.contato-card.email {
  border-top: 4px solid #cfcfcf;
}
.contato-card.email.show {
  animation-delay: 0.5s;
}
.contato-card.email a {
  background: #dcdcdc;
  color: #3b3b3b;
  border: 1px solid #ccc;
}

.contato-card.email a:hover {
  background: #939393;
  color: #ffffff;
}


.contato-card.whatsapp {
  border-top: 4px solid #2bb673;
}
.contato-card.whatsapp.show {
  animation-delay: 1s;
}

.contato-card.whatsapp a {
  background: #2bb673;
  color: #ffffff;
}

.contato-card.whatsapp a:hover {
  background: #23985f;
}

.contato-card.instagram {
  border-top: 4px solid #f08ab8;
}
.contato-card.instagram.show {
  animation-delay: 2s;
}
.contato-card.instagram a {
  background: #f08ab8;
  color: #ffffff;
}

.contato-card.instagram a:hover {
  background: #e074a6;
}

@keyframes fadeUp {
  from {
    filter: blur(20px);
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  #Sobre_mim #bloco_sobre {
    margin-left: 0;
  }
   .avaliacoes-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .cards-avaliacoes .card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
    margin: 0; 
  }

}


@media (max-width: 768px){
   .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-texto p {
    margin: 0 auto 2rem;
  }

  .hero-imagem {
    margin-top: 3rem;
  }
  .nav-links {
    display: flex;
    opacity: 0;
    flex-direction: column;
    position: absolute;
    top: 6em;
    right: 0;
    background-color: #fff;
    width: 70%;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

  }
  .nav-links.active {

    transform: translateX(0);
    opacity: 1;                 
 
  }

  .hamburguer {
    display: block;
  }
  #hero {
    min-height: calc(100vh - 6em);
    padding-top: 7em;
  }
  #hero h1{
    font-size: clamp(2rem, 5vw, 3rem);
  }
  #hero p{
    font-size: clamp(1rem, 4vw, 2rem);
  }
  .logo {
    width: 140px;
  }
  #Sobre_mim .container {
    flex-direction: column;
    text-align: center;
  }
   #Sobre_mim #bloco_sobre {
    width: 80%;
    margin-left: 0;
  }
  #Sobre_mim .imagem {
    margin-top: 20px;
  }
  #conteudo_av{
  margin-top: 1em;
}
 .avaliacoes-wrapper {
    width: 100%;
    overflow: hidden;
  }

  

  .cards-avaliacoes .card {
    min-width: 85%;
    max-width: 85%;
    margin: 0 auto;
  }
 .contato-cards {
    grid-template-columns: 1fr;
  }

  #contato {
    padding: 5rem 6%;
  }
}