 
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --cor-dourado: #c5a059;
        --cor-texto: #333;
        --cor-fundo-claro: #fff;
        --cor-fundo-bege: #f4f1ea;
      }

      body {
        font-family: "Lato", sans-serif;
        color: var(--cor-texto);
        line-height: 1.6;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4 {
        font-family: "Playfair Display", serif;
        color: #1a1a1a;
        font-weight: 600;
      }

      .gold-text {
        color: var(--cor-dourado);
      }

      .prague-header {
        background-color: #111;
        padding: 10px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      .image_logo {
        height: 40px;
        width: auto;
      }

 

   

      .prague-social-nav a {
        color: #fff;
        font-size: 1rem;
      }

      .prague-nav-menu-icon {
        display: none;
      }

    /* Container do Hero */
.hero-section {
    position: relative;
    width: 100%;
    /* Define a proporção desejada (16/9 é o padrão widescreen) */
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    background-color: #000; /* Fundo preto caso o vídeo demore a carregar */
}

/* O Vídeo propriamente dito */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo preencha o espaço sem esticar */
    display: block;
}

/* Ajuste do Overlay para cobrir exatamente o vídeo */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4); /* Escurece um pouco para o texto aparecer */
    color: #fff;
    text-align: center;
}

      .hero-overlay h2 {
        color: #fff;
        font-size: 2.5rem;
      }

      .section-padding {
        padding: 50px 10%;
      }

      .section-bg {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }

      .split-content {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 30px;
      }

      .split-image,
      .split-text {
        flex: 1;
      }

      .split-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        border-radius: 4px;
      }

      .split-text {
        padding: 20px;
      }

      .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-title::after {
        content: "";
        display: block;
        width: 40px;
        height: 2px;
        background-color: var(--cor-dourado);
        margin: 10px auto 0;
      }

      .lancamento-slide-placeholder {
        width: 100%;
        height: 400px;
        background-size: cover;
        background-position: center;
      }

      .instagram-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        margin-top: 30px;
      }

      .insta-item {
        aspect-ratio: 1 / 1;
        overflow: hidden;
      }

      .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }

      .insta-item:hover img {
        transform: scale(1.1);
      }

      footer {
        background-color: #1a1a1a;
        color: #fff;
        padding: 40px 10%;
        text-align: center;
        border-top: 3px solid var(--cor-dourado);
      }

      @media (max-width: 768px) {
        .prague-navigation {
          display: none;
        }

        .prague-nav-menu-icon {
          display: block;
          color: #fff;
          font-size: 24px;
        }

        .split-content {
          flex-direction: column !important;
        }

        .instagram-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      .lancamento-slider {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
        border-radius: 4px;
      }

      .lancamento-slider .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.8s ease;
      }

      .lancamento-slider .slide.active {
        opacity: 1;
      }

      .slider-dots {
        position: absolute;
        bottom: 15px;
        width: 100%;
        text-align: center;
      }

      .slider-dots .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background: #ffffffaa;
        border-radius: 50%;
        cursor: pointer;
      }

      .slider-dots .dot.active {
        background: var(--cor-dourado);
      }

      .lancamento-slider .slide {
        display: block;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
      }
      .destaque-lateral {
        position: relative;
        padding-left: 35px !important;
      }

      .destaque-lateral::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 5px;

        background: linear-gradient(to bottom, #c5a059, #f9e7ba, #c5a059);

        border-radius: 3px;
      }

      .destaque-lateral2 {
        position: relative;
        padding-left: 35px !important;
      }

      .destaque-lateral2::before {
        content: "";
        position: absolute;
        right: 0;
        top: 5px;
        bottom: 5px;
        width: 5px;

        background: linear-gradient(to bottom, #c5a059, #f9e7ba, #c5a059);

        border-radius: 3px;
      }

      .destaque-lateral4 {
        position: relative;
        padding-left: 100px !important;
      }

      .destaque-lateral4::before {
        content: "";
        position: absolute;

        right: 50px;

        top: 55px;
        bottom: 55px;

        width: 5px;

        background: linear-gradient(to bottom, #c5a059, #f9e7ba, #c5a059);
        border-radius: 3px;
      }

      .destaque-lateral3 {
        position: relative;
        padding-left: 100px !important;
      }

      .destaque-lateral3::before {
        content: "";
        position: absolute;
        left: 50px;

        top: 55px;
        bottom: 55px;

        width: 5px;

        background: linear-gradient(to bottom, #c5a059, #f9e7ba, #c5a059);
        border-radius: 3px;
      }
  
      .desc-layout-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 750px;

        margin-left: auto;
        margin-right: 5%;

        gap: 40px;
      }

      .desc-coluna-img,
      .desc-coluna-txt {
        flex: 1;
      }

      .desc-coluna-txt {
        text-align: left;

        background-color: rgba(255, 255, 255, 0.4);

        padding: 30px;

        border-radius: 15px;
      }

      .desc-coluna-txt h2 {
        color: #2e2e2e;
        margin-top: 0;
        margin-bottom: 15px;
      }

      .desc-coluna-txt p {
        color: #5e5d5d;
        line-height: 1.6;
        margin-bottom: 0;
      }

      @media (max-width: 768px) {
        .desc-layout-wrapper {
          flex-direction: column;
          gap: 20px;
        }
        .desc-coluna-txt {
          padding: 25px;
        }
      }

      .layout-overlap-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 40px auto;
        position: relative;
      }

      .col-imagem-base {
        flex: 1.3;
        position: relative;
        z-index: 1;
        padding-right: 20px;
      }

      .img-overlap {
        width: 100%;
        height: 550px;
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
      }

      .col-texto-overlap {
        flex: 1;
        z-index: 2;
        margin-left: -200px;
      }

      .box-com-borda-gradiente {
        position: relative;

        padding: 4px;

        border-radius: 2px;
      }

      .conteudo-interno-branco {
        background-color: rgba(255, 255, 255, 0.7);

        padding: 50px 50px 50px 100px;

        height: 100%;
        width: 100%;
        border-radius: 15px;
      }

      .conteudo-interno-branco h2 {
        font-size: 2.2rem;
        margin-bottom: 25px;
        color: #1a1a1a;
        line-height: 1.2;
      }

      .conteudo-interno-branco p {
        color: #555;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 0;
      }

      @media (max-width: 991px) {
        .layout-overlap-wrapper {
          flex-direction: column;
          margin: 20px auto;
        }

        .col-imagem-base,
        .col-texto-overlap {
          flex: auto;
          width: 100%;
          padding-right: 0;
          margin-left: 0;
        }

        .img-overlap {
          height: 350px;
          margin-bottom: -50px;
          position: relative;
          z-index: 0;
        }

        .col-texto-overlap {
          padding: 0 20px;
          z-index: 2;
        }

        .conteudo-interno-branco {
          padding: 30px;
        }

        .conteudo-interno-branco h2 {
          font-size: 1.8rem;
        }
      }

      .layout-overlap-wrapper.invertido .col-texto-overlap {
        margin-left: 0 !important;
        margin-right: -100px;
        z-index: 10;
      }

      .layout-overlap-wrapper.invertido .col-imagem-base {
        padding-right: 0;
        padding-left: 20px;
      }

      @media (max-width: 991px) {
        .layout-overlap-wrapper.invertido {
          flex-direction: column-reverse;
        }

        .layout-overlap-wrapper.invertido .col-texto-overlap {
          margin-right: 0;
        }
      }

      .destaque-lateral-direita {
        position: relative;
        padding-right: 40px !important;
        text-align: right;
      }

      .destaque-lateral-direita::before {
        content: "";
        position: absolute;
        right: 0;

        top: 5px;
        bottom: 5px;

        width: 5px;

        background: linear-gradient(to bottom, #c5a059, #f9e7ba, #c5a059);
        border-radius: 3px;
      }

      .box-branco-direita {
        background-color: rgba(255, 255, 255, 0.7);

        padding: 50px 100px 50px 90px !important;

        position: relative;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        text-align: left;
      }

      .box-branco-direita::after {
        content: "";
        position: absolute;

        left: 40px;

        top: 55px;
        bottom: 55px;

        width: 5px;
        background: linear-gradient(to bottom, #c5a059, #f9e7ba, #c5a059);
        border-radius: 3px;
      }

      @media (max-width: 768px) {
        .box-branco-direita {
          padding: 30px 30px 30px 50px !important;
        }

        .box-branco-direita::after {
          left: 20px !important;

          right: auto !important;

          top: 35px;
          bottom: 35px;
        }
      }
  