
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cinzel', serif;
    background-color: #000000;   
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bolder;
    
}

header span {
    color: #f39c12;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #000000;
    padding: 10px;
    font-weight: bold;    
}

nav a {
    margin-top: 20px;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.5s ease;
}

nav a:hover {
    color: #f39c12;    
}

main img {
    top: 0;
    width: 80%;
    height: auto;    
}   

.about-caos {
    margin-top: -80px;
    margin-bottom: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    align-items: center;
    justify-content: center;

    p{
        
        font-size: 1rem;        
        color: #ffffff;
    }
}

.criative-process video {
    max-width:300px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
    
}

.studio-presentation {
    max-width: 600px;
}

.studio-presentation h1 {
    font-size: 3rem;
    margin-bottom: 100px;
    color: #ffffff;

    span{
        color: #f39c12;
    }
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-top: 100px;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-me {
    display: flex;
    flex-direction: row;
    padding: 40px 20px;
    gap: 60px;
    align-items: center;
    justify-content: center;
    background-color: #000000;   
    margin-bottom: 50px;
}

.about-img img {
    max-width: 300px;
    border-radius: 100%;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
    border: 5px solid #f39c12;
    /* borda dourada */
}

.about-me p {
    max-width: 600px;
    color: #ffffff;
}

.carrossel-container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;

    p{
        font-size: 2rem;
        margin-bottom: 50px;
        margin-top: 30px;
        text-align: center;
        color: #ffffff;
    }
}

.carrossel {
    display: flex;
    gap: 50px
}

.carrossel img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 300px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-900px);
       
    }
}

.carrossel {
    animation: scroll 15s linear infinite;
}

.carrossel-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;

    a {
        color: #f39c12;
        text-decoration: none;
        font-weight: bold;
    }
}

.carrossel img:hover {
    transform: scale(1.1);
}

.contact-us div {
    width: 80%;
    max-width: 500px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.contact-us button {
    width: 400px;
    padding: 15px;
    font-size: 1.2rem;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;

}

.contact-us button:hover {
    background-color: #e67e22;
}

@media (max-width: 700px) {
    header p {
      font-size: 1.5rem;
      text-align: center;
    }
  
    nav {
     display: none;
    }
  
    nav a {
      font-size: 1rem;
    }
  
    main img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }
  
    .about-caos{
        flex-direction: column-reverse;
        align-items: center;    
        justify-content: center;

        h1{
            margin-top: 150px;
            text-align: center;
        }

        p{
            text-align: center;
            font-size: 1rem;
        }
    }

    .about-me {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 15px;
      
    }
  
    .about-img img {
      width: 100%;
      max-width: 300px;
      height: auto;
      margin: 0 auto;
      display: block;
    }
  
    .studio-presentation h1 {
      font-size: 1.5rem;
    }
  
    .studio-presentation p {
      font-size: 1rem;
    }
  
    .criative-process video {
      width: 100%;
      height: auto;
    }
  
    .carrossel-container p {
      text-align: center;
      font-size: 1rem;
      padding: 0 10px;
    }   
  
    .carrossel {
      display: flex;
      overflow-x: auto;
      gap: 10px;
      padding: 10px;
      scroll-snap-type: x mandatory;
    }
  
    .carrossel img {
      width: 100px;
      height: auto;
      flex-shrink: 0;
      scroll-snap-align: start;
      border-radius: 8px;
    }   
  
    .whatsapp-button {       
        width: 100%;
        max-width: 300px;
        margin-left: 15px;
       
    }
  }
  

