  
         /* CSS Reset and Basic Setup */
         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
         }

         body,
         html {
            height: 100%;
            font-family: "Poppins", sans-serif;
            overflow: hidden; /* Evita scroll na página de fundo */
         }

         /* * -----------------------------------------------------------------
         * CONFIGURAÇÃO DAS IMAGENS DE FUNDO
         * -----------------------------------------------------------------
         * Instrução: Substitua as URLs abaixo pelas URLs das suas imagens.
         * Mantenha as aspas.
         */
         body {
            /* Imagem de fundo para DESKTOP */
            background-image: url("./images/laluna-bg-desktop.webp");
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
         }

         /* Media Query para dispositivos móveis */
         @media (max-width: 768px) {
            body {
               /* Imagem de fundo para MOBILE */
               background-image: url("./images/laluna-bg-mobile.webp");
            }
         }

         /* Popup Overlay */
         .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
         }

         /* Popup Container */
         .popup-container {
            background-color: #ffffff;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 90%;
            max-width: 450px;
            position: relative;
            animation: fadeIn 0.5s ease-out;
            border-top: 5px solid #1e3a8a; /* Adicionando borda azul */
         }

         @keyframes fadeIn {
            from {
               opacity: 0;
               transform: scale(0.9);
            }
            to {
               opacity: 1;
               transform: scale(1);
            }
         }

         /* Close Button ('X') */
         .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #888;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s ease;
         }
         .close-btn:hover {
            color: #333;
         }

         /* Popup Logo */
         .logo {
            margin-bottom: 20px;
         }

         .logo img {
            max-width: 200px;
            height: auto;
         }

         /* Popup Content */
         .popup-container h2 {
            color: #333;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
         }

         .popup-container p {
            color: #666;
            font-size: 16px;
            margin-bottom: 25px;
         }

         /* Form styling */
         .email-form {
            display: flex;
            flex-direction: column;
         }

         .email-input {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 16px;
            font-family: "Poppins", sans-serif;
            margin-bottom: 15px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
         }
         .email-input:focus {
            outline: none;
            border-color: #1e3a8a; /* Azul Marinho */
            box-shadow: 0 0 0 3px rgba(245, 185, 66, 0.4); /* Sombra Amarela */
         }

         .submit-btn {
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            border: none;
            background-color: #1e3a8a; /* Azul marinho do logo */
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            font-family: "Poppins", sans-serif;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
         }
         .submit-btn:hover {
            background-color: #2563eb; /* Azul um pouco mais claro */
         }

         /* Div invisível para SEO */
         .hidden-review {
            position: absolute;
            left: -9999px;
            top: -9999px;
            opacity: 0;
            width: 1px;
            height: 1px;
            overflow: hidden;
         }

         /* Rodapé de Políticas */
         footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px 10px;
            background-color: rgba(0, 0, 0, 0.2);
            text-align: center;
            z-index: 500;
         }

         footer a {
            color: #f0f0f0;
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
            transition: color 0.3s ease;
         }

         footer a:hover {
            color: #fff;
         }
   