.navbar {
      margin-bottom: 0;
      background-color: rgba(8,8,8,0.8);
      border: none;
    }
    
    .navbar-default .navbar-nav>li>a,
    .navbar-default .navbar-header .navbar-brand {
      font-family: "Cantarell", sans-serif;
      text-transform: uppercase;
      transition: color 0.3s ease-in-out;
      color: #FEFDEB;
    }
    
    .navbar-default .navbar-nav>li>a:hover,
    .navbar-default .navbar-nav>li>a:focus,
    .navbar-default .navbar-header .navbar-brand:hover {
      color: #48A09B;
    }

    section {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: fixed;
      overflow: hidden;
      width: 100%;
    }
    
    section .vcenter {
      height: 100%;
    }
    
    section .vcenter .row {
      height: 100%;
      display: table;
    }
    
    section .vcenter .row div[class^="col-"] {
      display: table-cell;
      vertical-align: middle;
      float: none;
    }
    
    section .content {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    section:not(.contact) {
      position: relative;
      z-index: 1;
    }

    section:not(.contact)::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.45); /* 0.45 = 45% de transparência */
      z-index: 1;
    }

    section:not(.contact) .content {
      position: relative;
      z-index: 2; /* garante que o texto fique acima do overlay */
    }

    
    .home-intro h1 {
      font-family: "Dancing Script", cursive;
      font-weight: 700;
      font-size: 60px;
      color: #1900ff;
      margin-top: 0;
      margin-bottom: 15px;
      text-shadow: 1px 1px 1px #aaaaaa;
    }
    
    @media (min-width: 768px) {
      .home-intro h1 {
        font-size: 90px;
      }
    }
    
    .home-intro h2 {
      font-family: "Cantarell", sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: #ffffff;
      padding-top: 10px;
      margin-top: 0;
      margin-bottom: 13px;
      border-top: 3px solid #363B3A;
      display: inline-block;
      text-shadow: 1px 1px 5px rgb(0, 0, 0);

    }

    .home-intro p {
      color: #ffffff;
      text-shadow: 2px 2px 5px rgb(117, 117, 117);

    }
    
    @media (min-width: 768px) {
      .home-intro h2 {
        font-size: 32px;
      }
    }
    
    .home-intro ul {
      padding: 0;
      list-style-type: none;
    }
    
    .home-intro ul li {
      display: inline;
    }
    
    .home-intro ul li a {
      color: #48A09B;
      transition: color 0.3s linear;
    }
    
    .home-intro ul li a:hover {
      color: #E33258;
    }
    
    .about {
      background-color: #A4B5BF;
      color: #FEFDEB;
      font-family: "Cantarell", sans-serif;
    }
    
    .about p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.4;
    }
    
    .about blockquote {
      font-family: "Cantarell", sans-serif;
      font-weight: 700;
    }
    
    .portfolio {
      background-color: #9DE0AD;
    }
    
    .portfolio h2 {
      margin-top: 40px;
      margin-bottom: 40px;
      font-family: "Cantarell", sans-serif;
      font-weight: 700;
      text-transform: uppercase;
    }
    
    .portfolio .project {
      width: 100%;
      height: 200px;
      position: relative;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      margin-bottom: 20px;
    }
    
    .portfolio .project .overlay {
      display: table;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      background-color: rgba(8,8,8,0.7);
      overflow: hidden;
      z-index: 10;
      transition: opacity 0.3s ease-in-out;
      opacity: 0.3;
    }
    
    .portfolio .project .overlay h4 {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
      text-transform: uppercase;
      font-family: "Cantarell", sans-serif;
      font-size: 24px;
      color: #CDD7B6;
      opacity: 0.8;
    }
    
    .portfolio .project:hover .overlay {
      opacity: 0.6;
    }
    
    .portfolio-title {
      width: 100%;
      background: white;
    }
    
    .contact {
      background-color: #ffffff00;
    }
    
    .contact h2 {
      font-family: "Cantarell", sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: #ffffff;
      text-transform: uppercase;
    }
    
    @media (min-width: 768px) {
      .contact h2 {
        font-size: 28px;
      }
    }
    
    .contact h3  {
      font-family: "Cantarell", sans-serif;
      font-weight: 700;
      font-size: 28px;
      text-transform: uppercase;
      text-decoration: none;
      color: #ffffff;
      transition: color 0.3s linear;
    }
    
    .contact h3 :hover {
      color: #00fdbe;
    }

    .contact p {
      color: #ffffff;
    }
    
    @media (min-width: 768px) {
      .contact h3 a {
        font-size: 42px;
      }
    }

    .formulario-contato{
      max-width: 600px;
      margin: 0 auto;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(5px);
      padding: 2rem;
      border: 1px solid var(--vidro);
      border-radius: 16px;
    }

    .campo-form{
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255,255, 0.05);
      border-radius: 8px;
      color: var(--claro);
      border: 1px solid var(--vidro);
      outline: none;
      color: #FEFDEB;
    }

    .campo-form:focus{
      border-color: var(--secundaria);
      box-shadow: 0 0 10px rgba(82, 250, 4, 0.3);
    }

    .grupo-form{
      margin-bottom:1.5rem ;
      
    }

    .botao-form{
      color: var(--claro);
      background: linear-gradient(45deg, var(--primaria), var(--secundaria));
      padding: 1rem 2rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      width: 100%;
      transition: all 0.5 ease;

    }

    .botao-form:hover{
      transform: translateY(-4px);
      box-shadow: 0 5px 15px rgba(82, 250, 4, 0.3);
    }