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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #000000;
    --second-bg-color: #161616;
    --text-color: #fff;
    --main-color: #7b4bb7;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

.aviso-curriculo{
  font-size: 20px;
  text-align: center;
  margin: 200px;
  color: red;
}

body {
    background: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

html ::-webkit-scrollbar{
    width: 0.8rem;
}

html ::-webkit-scrollbar-track{
    background: var(--bg-color);
}

html ::-webkit-scrollbar-thumb{
    background: var(--main-color);
}

.ano-sem-cor{
    color: inherit; /* Herda a cor do elemento pai */
    /* Ou defina uma cor específica, como preto: */
    /* color: preta; */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.7);
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo{
    font-size: 3rem;
    color: var(--main-color);
    font-weight: 800;
    cursor: pointer;
    height: 105px;
    transition: 0.5s ease;
}

.logo2{
  height: 200px;
}

.logo-footer{
  margin: auto;
  justify-content: center;
  justify-items: center;
}

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

.navbar a{
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active{
    columns: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
}

@media (max-width:995px) {
    #menu-icon{
        display: block;
    }

    .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        width: 40%;
        border-left: 3px solid var(--main-color);
        border-bottom: 3px solid var(--main-color);
        border-bottom-right-radius: 2rem;
        padding: 1rem 3%;
        background-color: var(--second-bg-color);
        border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
        display: none;
    }
    .navbar.active{
        display: block;
    }
    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }
    .navbar a:hover,
    .navbar a.active{
        padding: 1rem;
        border-radius: 0.5rem;
        border-bottom: 0.5rem solid var(--main-color);
    }
}

section{
    min-height: 100vh;
    padding: 5rem 9% 5rem;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 10rem 9% 5rem;
  background: var(--bg-color);
}

span{
    color: var(--main-color);
}

.home-content h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.home-content-normas {
  font-size: 2rem;
  margin-top: 70px;
}

.home-img img{
    border-radius: 50%;
    position: relative;
    width: 25vw;
    height: 35vw;
    box-shadow: 0 0 25px var(--main-color);
    cursor: pointer;
}

.Me{
    animation: Me 2.5s infinite;
}

@keyframes Me {
    50% {
        transform: translateY(-6%);
    }
}

.Me2{
    animation: Me 2.5s infinite;
}

@keyframes Me2 {
    50% {
        transform: translateY(-6%);
    }
}

.home-img img:hover{
    transform: scale(1.01);
    filter: drop-shadow( 0 0 25px var(--main-color) );
}

.home-img2{
    transform: scale(1.01);
    filter: drop-shadow( 0 0 25px var(--main-color) );
}

.Me2{
    border-radius: 50px;
    margin-top: 20%;
}

.home-content p {
  font-size: 2.0rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: justify;
}

.home-content h1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.social-icon a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  font-size: 2rem;
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease;
}

.social-icon a:hover{
    color: white;
    transform: scale(1.3) translateY(-5px);
    background: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
}

.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--bg-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover{
    transform: scale(1.03);
    background-color: var(--main-color);
    color: var(--text-color);
    box-shadow: 0 0 25px var(--main-color);
}

.typing-text{
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.typing-text span{
    position: relative;
}

.typing-text span::before{
    content: 'Software Developer';
    color: var(--main-color);
    animation: words 20s infinite;
}

.typing-text span::after{
    content: '';
    background: var(--bg-color);
    position: absolute;
    width: calc(1005 + 8px);
    height: 100%;
    border-left: 3px solid var(--bg-color);
    right: -8;
    animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor{
    to{
        border-left: 3px solid var(--main-color);
    }
}

@keyframes words{
    0%, 20%{
        content: 'Desenvolvedor Web 👨‍💻';
    }
    21%, 40%{
        content: 'Desenvolvedor Software 👨‍💻';
    }
    41%, 60%{
        content: 'Estudante Eng.Computação ⚙';
    }
    61%, 80%{
        content: 'Universitário 👨‍🎓';
    }
    81%, 100%{
        content: 'Estudante 👨‍🎓';
    }
}

@keyframes typing{
    10%, 15%,
    30%, 35%,
    50%, 55%,
    70%, 75%,
    90%, 95% {
        width: 0;
    }
    5%, 20%,
    25%, 40%,
    45%, 60%,
    65%, 80%, 85%{
        width: calc(100% + 8px);
    }
}

@media (max-width: 768px) {
  .home {
      flex-direction: column-reverse;
      gap: 3rem;
      padding: 10rem 5% 5rem;
      text-align: center;
  }
  
  .home-content h1 {
      font-size: 4rem;
  }
  
  .home-content h3 {
      font-size: 2.5rem;
  }
  
  .home-img img {
      width: 70vw;
      height: auto;
  }
  
  .home-content p {
      text-align: center;
  }
}

/* services section */
.services {
  background: var(--second-bg-color);
  padding: 8rem 9%;
}

.heading {
  text-align: center;
  padding-bottom: 4rem;
  font-size: 4.5rem;
  color: var(--text-color);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: stretch;
  text-align: justify;
}

.service-box {
  background-color: var(--main-color);
  border-radius: 2rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
  height: auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  border: none;
}

.service-info {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-info h4 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.service-info p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: white;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .services {
      padding: 6rem 3%;
  }
  
  .services-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-container {
      grid-template-columns: 1fr;
  }
  
  .service-box {
      min-height: 250px;
  }
}

/*Hobbys*/

.Hobbys{
    background: var(--second-bg-color);
}

.Hobbys .container{
    background-color: var(--main-color);
    color: var(--text-color);
    border-radius: 1rem;
    padding: 2rem;
    width: 90%;
    margin: auto;
    margin-top: 2rem;
}

.Hobbys .container .row{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 1.8rem;
}

.Hobbys .container .bar{
    margin-bottom: 15px;
    border-radius: 1rem;
    background: var(--bg-color);
    box-shadow: 0 4px 10px var(--main-color);
    transition: 0.3s ease;
    cursor: pointer;
}

.Hobbys .container .bar:hover {
    box-shadow: 0 4px 10px var(--main-color);
    transform: scale(1.03);
}

.Hobbys .container .bar .info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 20px;
}

.Hobbys .container .bar .info .span{
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.img-hobbys{
    width: 300px;
    height: 300px;
    border-radius: 30px;
}

@media screen and (max-width: 1500px) {
    .Hobbys .container {
        margin: 0;
        padding: 0;
    }

    .Hobbys .container .row {
        grid-template-columns: repeat(1, 1fr);
        margin: 1rem;
        padding: 2rem 0.2rem 2rem 0.2rem;
        gap: 1rem;
    }

    .Hobbys .container {
        margin-top: 5px;
        width: 100%;
    }
}

/*Habilidades*/

.Skills{
    background: var(--bg-color);
}

.Skills .container{
    background-color: var(--main-color);
    color: var(--text-color);
    border-radius: 1rem;
    padding: 2rem;
    width: 70%;
    margin: auto;
    margin-top: 2rem;
}

.Skills .container .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    gap: 1.8rem;
}

.Skills .container .bar{
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 1rem;
    background: var(--bg-color);
    box-shadow: 0 4px 10px var(--main-color);
    transition: 0.3s ease;
    cursor: pointer;
}

.Skills .container .bar:hover {
    box-shadow: 0 4px 10px var(--main-color);
    transform: scale(1.03);
}

.Skills .container .bar .info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 20px;
}

.Skills .container .bar .info .span{
    font-size: 1.5rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.img-Skills{
    width: 100px;
}

@media screen and (max-width: 600px) {
    .Skills .container {
        margin: 0;
        padding: 0;
    }

    .Skills .container .row {
        grid-template-columns: repeat(2, 1fr);
        margin: 1rem;
        padding: 2rem 0.2rem 2rem 0.2rem;
        gap: 1rem;
    }

    .Skills .container {
        margin-top: 5px;
        width: 100%;
    }
}

.education{
    background: var(--second-bg-color);
}

.education .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.education .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: rgb(90, 64, 64);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -2px;
}

.education .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.education .container::after {
    content: '\f501';
    position: absolute;
    width: 25px;
    height: 25px;
    line-height: 25px;
    right: -17px;
    background-color: rgb(252, 252, 252);
    border: 4px solid var(--main-color);
    top: 15px;
    border-radius: 50%;
    z-index: 100;
    font-size: 1.89rem;
    text-align: center;
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    color: rgb(90, 64, 64);
}

.education .left {
    left: 0;
}

.education .right {
    left: 50%;
}

.education .left::before {
    content: '';
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--main-color);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--main-color);
}

.education .right::before {
    content: '';
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--main-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--main-color) transparent transparent;
}

.education .right::after {
    left: -16px;
}

.education .content {
    background: var(--main-color);
    position: relative;
    border-radius: 6px;
}

.education .content .tag {
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
}

.education .content .tag {
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-left: 1.5rem;
}

.education .content .docs {
    margin-left: 1.5rem;
    padding-bottom: 1rem;
}

.education .content .docs h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.education .content .docs p {
    font-size: 1.3rem;
    font-weight: 500;
    font-size: 15px;
}

@media screen and (max-width: 600px) {
    .education .timeline {
        margin-top: 2rem;
    }
    .education .timeline::after {
        left: 31px;
    }
    .education .container {
        width: 100%;
        padding-left: 8rem;
        padding-right: 2rem;
    }
    .education .container::after {
        font-size: 2.2rem;
    }
    .education .container::before {
        left: 61px;
        border: medium solid var(--main-color);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--main-color) transparent transparent;
    }
    
    .education .left::after {
        left: 15px;
    }
    
    .education .right::after {
        left: 15px;
    }
    
    .education .right {
        left: 0%;
    }
}

/* Estilos para o currículo responsivo */
.container-curriculo {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 50px auto;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.left_Side, .right_Side {
  padding: 30px;
  box-sizing: border-box;
}

.contactInfo{
  padding: 30px;
  font-size: 13px;
}

.left_Side {
  background: #003147;
  color: white;
}

.profileText {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profileText .imgBx {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.profileText .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profileText h2 {
  font-size: 1.8em;
  text-align: center;
  line-height: 1.4;
}

.contactInfo {
  padding-top: 30px;
}

.title {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

.contactInfo ul {
  list-style: none;
  padding: 0;
}

.contactInfo ul li {
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.contactInfo ul li .icon {
  font-size: 1.2em;
  margin-right: 15px;
  color: #03a9f4;
}

.contactInfo ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.contactInfo ul li a:hover {
  color: #03a9f4;
}

.contactInfo.education-curriculo li {
  margin-bottom: 20px;
}

.contactInfo.education-curriculo h5 {
  color: #03a9f4;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 14px;
}

.contactInfo.education-curriculo h4 {
  color: white;
  font-weight: 400;
  margin: 5px 0;
}

.right_Side {
  background: white;
  color: #333;
}

.about {
  margin-bottom: 40px;
}

.title2 {
  color: #003147;
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: 600;
}

.curriculo-text {
  color: #333;
  line-height: 1.6;
  font-size: 1.6em;
  text-align: justify;
}

.contactInfo.language .percent {
  position: relative;
  width: 100%;
  height: 6px;
  background: #f00;
  display: block; /*O elemento se estende por toda a largura do contêiner pai, independentemente do conteúdo interno.*/
  margin-top: 30px;
}

.contactInfo.language .percent div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #03a9f4;
}

.box {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.year_company {
  margin-bottom: 10px;
}

.year_company h5 {
  color: #848c90;
  font-weight: 600;
  margin: 5px 0;
  font-size: 15px;
}

.text h4 {
  color: #2a7da2;
  font-size: 2.0em;
  margin: 5px 0;
}

.skills .box {
  margin: 15px 0;
}

.skills .box h4 {
  margin-bottom: 10px;
}

.text{
  margin: 20px 0;
}

.text a{
  font-size: 13px;
}

.skills .percent {
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
}

.skills .percent div {
  height: 100%;
  background: #03a9f4;
  border-radius: 5px;
}

/* Responsividade */
@media (min-width: 992px) {
  .container-curriculo {
      flex-direction: row;
  }
  
  .left_Side {
      width: 35%;
  }
  
  .right_Side {
      width: 65%;
  }
}

@media (max-width: 768px) {
  .profileText .imgBx {
      width: 150px;
      height: 150px;
  }
  
  .profileText h2 {
      font-size: 1.5em;
  }
  
  .title, .title2 {
      font-size: 1.4em;
  }
  
  .contactInfo ul li {
      font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .left_Side, .right_Side {
      padding: 20px;
  }
  
  .profileText .imgBx {
      width: 120px;
      height: 120px;
  }
  
  .box {
      flex-direction: column;
  }
  
  .year_company {
      margin-bottom: 10px;
  }
  
  .skills .box {
      margin: 10px 0;
  }
}

/* Ajustes para o botão de download */
.baixar {
  text-align: center;
  margin: 30px auto;
  width: 90%;
}

.baixar a {
  display: inline-block;
  padding: 12px 25px;
  background: var(--main-color);
  color: white;
  width: 37%;
  border-radius: 99px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.baixar a:hover {
  background: #5a3d8a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

  /*Contato*/

.contact h2 {
    margin-bottom: 3rem;
    color: white;
}

.contact form {
    max-width: 70rem;
    margin: 1rem auto;
    margin-bottom: 3rem;
    font-size: 15px;
}

.contact form .input-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /*permite que os itens dentro de um container flexível (como .input-box) quebrem para a linha seguinte caso não caibam na mesma linha.*/
}

.contact form .input-box input,
.contact form textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: var(--second-bg-color);
    border-radius: 0.8rem;
    border: 2px solid var(--main-color);
    margin: 1rem 0;
    resize: none;
}

.contact form .btn {
    margin-top: 2rem;
}

form {
  width: 100%;
  max-width: 30rem;
}

label,
input,
textarea,
button {
  display: block;
}

input,
textarea,
button {
  width: 100%;
  font: inherit;
  padding: 1.25rem;
  font-weight: 700;
}

input,
textarea {
  margin-bottom: 1rem;
  color: white;
  border: 0.125rem solid transparent;
  border-radius: 1.125rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--second-bg-color);
  border: 2px solid var(--main-color);
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 0.3125rem #26344a;
}

label {
  margin-bottom: 0.5rem;
  color: #84868f;
}

textarea {
  min-height: 12.5rem;
  resize: vertical;
}

button {
  border: none;
  border-radius: 99px;
  color: white;
  margin-top: 20px;
  background: var(--main-color);
  cursor: pointer;
  transition: 0.3s;
}

button:hover,
button:focus {
  outline: none;
  background: var(--main-color);
}

button:disabled {
  cursor: not-allowed;
  background: #555b69;
}

.success,
.error {
  text-align: center;
}

.success {
  color: greenyellow;
}

.error {
  color: tomato;
}


/*Ondas*/
.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
  }
  
  .content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: rgb(249, 249, 249);
  }
  
  /* Animation */
  
  .parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  }
  
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  
  @keyframes move-forever {
    0% {
      transform: translate3d(-90px, 0, 0);
    }
  
    100% {
      transform: translate3d(85px, 0, 0);
    }
  }
  
  /* /* Shrinking for mobile */
  @media (max-width: 768px) {
    .waves {
      height: 40px;
      min-height: 40px;
    }
  
    .content {
      height: 30vh;
    }
  
    h1 {
      font-size: 24px;
    }
  }

/* RODAPÉ */
 .footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: var(--main-color);
 }

 .footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: black;
 }

 .footer .social a {
    font-size: 25px;
    color: black;
    border: 2px solid black;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px;
    transition: 0.3s ease;
    text-align: center;
 }

 .footer .social a:hover{
    transform: scale(1.2)translateY(-5px);
    background: black;
    color: var(--main-color);
 }

 .footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: center;
 }

 .footer ul li a{
    color: black;
    border-bottom: 3px solid transparent;
    transition: 0.3s ease;
 }

 .footer ul li a:hover{
    border-bottom: 3px solid black;
 }

 .footer ul li {
    display: inline-block;
    margin: 0 15px;
 }

 .footer .copyright{
    margin-top: 50px;
    text-align: center;
    font-size: 16px;
    color: black;
 }

 @media (min-width: 1285px) {
    html {
      font-size: 55%;
    }
  
    .services-container {
      margin-bottom: 7rem;
      grid-template-columns: repeat(3, 1fr);
      padding: 0 5rem;
    }
  }
  @media (max-width: 991px) {
    .header {
      padding: 2rem 3%;
    }
  
    section {
      padding: 10rem 3% 2rem;
    }
  
    .services {
      padding-bottom: 7rem;
    }
  
    .footer {
      padding: 2rem 3%;
    }
  }

/* Estilo do Menu Mobile */
.menu-mobile {
  background-color: #000;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.menu-mobile.active {
  right: 0;
}

.menu-mobile .btn-fechar {
  padding: 20px;
  text-align: right;
  position: sticky;
  top: 0;
  background: #000;
  z-index: 1;
}

.menu-mobile .btn-fechar i {
  color: var(--main-color);
  font-size: 2.5rem;
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 25px;
}

/* Bloqueia scroll quando menu está aberto */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Animação */

/* Animação de fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animação de slide-up */
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Classes para ativar as animações */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.5s; /* Ajuste o delay conforme necessário */
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.5s; /* Ajuste o delay conforme necessário */
}

/* Esconde os elementos inicialmente */
.hidden {
  opacity: 0;
}

.custom-card {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  flex-wrap: wrap;
  padding: 20px;
  box-sizing: border-box;
  height: 100%;
  margin-top: 2%;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  font-size: 15px;
  /* Transição suave */
}

.custom-card:hover {
  transform: translateY(-10px);
  /* Efeito de elevação ao passar o mouse */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* Sombra mais intensa no hover */
  font-size: 15px;
}

.custom-card .card-body {
  color: white;
  /* Cor do texto */
  font-size: 15px;
}

.custom-card .card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 15px;
}

.custom-card .card-text {
  font-size: 1.1rem;
  line-height: 1.5;
  flex-grow: 1;
  font-size: 15px;
}

.msv {
  margin-top: 15%;
}

@media (max-width: 767px) {
  .msv {
      margin-top: 35%;
  }
}

