* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
   background-color: #f5eee7;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgb(9, 7, 32) 60%, rgba(0, 0, 0, 0) 100%);
  }

  .menu-container {
    display: flex;
    flex-direction: column;
}

.icons {
    align-self: flex-end;
    display: flex;
    gap: 10px;
}




  .mobile-menu-icon {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul li a {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  
  nav ul li a:hover {
    background-color: transparent;
  }
  
  nav ul li a:hover::after {
    transform: scaleX(1);
  }
  
  .hero {
    display: flex;
    position: relative;
    overflow: hidden;
  }
  
  .section-hero{
    padding: 0;
  }

  .hero-video video {
    object-fit: cover;
    position: absolute;
    top: 50%; /* Move the video down by 50% of the container height */
    transform: translateY(-50%); /* Shift the video back up by 50% of its own height */
    width: 100%;
    height: auto;
  }
  
  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio for 16:9 */
    overflow: hidden;
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Optional: removes the border */
  }
  
  .video-transparent iframe {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    z-index: -1;
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
  }
  
  section {
    padding: 2rem 0;
  }


  
  .content-body {
    padding: 0px;
  }

  .content-section {
    padding: 40px;
  }

  .section-dark{
    background-color: #090720;
  }

  .section-light{
    background-color: #f5eee7;
  }
  
  /* Set a specific color for h2 tags within .content-section */
  .section-dark h2 {
    color: #f0f2f4; /* Replace with your desired color */
    font-size: 36px; /* Change the font size */
    font-family: 'Roboto', sans-serif; /* Change the font style to Roboto */
  }

  .section-dark h3 {
    color: #f0f2f4; /* Replace with your desired color */
    font-size: 16px; /* Change the font size */
    font-family: 'Roboto', sans-serif; /* Change the font style to Roboto */
  }
  
  .section-dark h2 {
    color: #f0f2f4; /* Replace with your desired color */
    font-size: 36px; /* Change the font size */
    font-family: 'Roboto', sans-serif; /* Change the font style to Roboto */
  }

  .section-dark p {
    color: #f0f2f4; /* Replace with your desired color */

  }
  
  .my-form-label {
    color: white;
}

    /* Set a specific color for h2 tags within .content-section */
    .section-light h2 {
        color: #1b0011; /* Replace with your desired color */
        font-size: 36px; /* Change the font size */
        font-family: 'Roboto', sans-serif; /* Change the font style to Roboto */
      }
      
      .section-light h3 {
        color: #1b0011; /* Replace with your desired color */
        font-size: 16px; /* Change the font size */
        font-family: 'Roboto', sans-serif; /* Change the font style to Roboto */
      }
      
      /* Set another style for p tags within .content-section */
      .section-light p {
        font-size: 16px; /* Example: set font size */
        line-height: 1.5; /* Example: set line height */
        color: #1b0011; /* Example: set text color */
        font-family: 'Roboto', sans-serif; /* Change the font style to Roboto */
      }

  h2 {
    margin-bottom: 1rem;
  }

  .section-dark h3, .section-light h3 {
    font-size: 24px; /* Altere o tamanho da fonte */
    font-family: 'Roboto', sans-serif; /* Altere o estilo da fonte para Roboto */
    margin-bottom: 1rem; /* Espaço abaixo do h3 */
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .photo-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    padding: 15px;
}

.photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s;
}

.photo:hover {
    transform: scale(1.05);
}


  form label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  form input,
  form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
  }
  
  button[type="submit"] {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #555;
  }
  
  footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: center;
  }
  
  #music {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  audio {
    width: 100%;
    max-width: 600px;
  }
  
  @media screen and (max-width: 768px) {
    body {
      padding-top: 5
      rem;
  }

  .mobile-menu-icon {
    display: inline-block;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin-bottom: 0.5rem;
  }

  nav ul li a {
    padding: 0.5rem 1rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  /* Show the mobile menu when the mobile-menu-icon has the class 'open' */
  .mobile-menu-icon.open + nav ul {
    display: flex;
  }
}


.logo {
  width: 150px; /* Adjust width to suit your needs */
  height: auto; /* This will maintain the aspect ratio of your logo */
}


.logo:hover {
  color: #ccc;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.video-gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .video-container-small {
    height: 30vh;
    position: relative;
    width: 100%; /* Set the width to 100% to fill the available space in the grid */
    padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 10px;
  }
  

  
  .video-container-small iframe {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Media query for larger screens */
  @media (min-width: 768px) {
    .video-container-small {
      max-width: 50%; /* Set the max-width to 50% on larger screens */
      padding-bottom: 28.125%; /* Maintain 16:9 aspect ratio on larger screens */
    }
  }
  
  
  
  

  .small-ico-spotify{
   
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 20px;
  }


  .small-ico-insta{
   
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
  }
  
  .small-ico-youtube{
   
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 20px;
  }
  
  /*Audio Table*/
  .audio-table {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .audio-cell {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
    box-sizing: border-box;
  }
  
  @media (max-width: 600px) {
    .audio-cell {
      flex: 1 1 calc(100% - 1rem);
      max-width: calc(100% - 1rem);
    }
  }
  
  
@media screen and (max-width: 767px) {
  header {
      flex-direction: column;
      padding:0;
  }
  .icons {
      align-self: center;
  }
  .hero-video video {
    top: 80%; /* for mobile */
}
  .logo {
    width: 90px;
  }
}