.container { display: block; position: fixed; top: 0; left: 0; z-index: 999; }
#subscribe iframe { width: 100%; height: 64vh; border: 0; padding: 0; margin: 0;  }

		.lightbox-trigger {
        }

        .lightbox-trigger:hover {
        }

        .lightbox-content {
            padding: 2rem;
        }

        /* Estilos do Lightbox */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(19, 23, 25, 0.85);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content-container {
            background: white;
            border-radius: 1rem;
            max-width: 800px;
            width: 90%;
			height: 65vh;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem;
            box-shadow: 0 2rem 6rem rgba(19, 23, 25,0.3);
        }

        .lightbox-overlay.active .lightbox-content-container {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: #948576;
            cursor: pointer;
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .lightbox-close:hover {
            color: #ff0000;
            background: rgba(19, 23, 25,0.05);
        }

        .lightbox-title {
            font-size: 2em;
            margin-bottom: 2rem;
            color: #2c3e50;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
        }

        .lightbox-body {
            font-size: 1.1em;
            line-height: 1.8;
            color: #555;
        }

        .lightbox-target {
            display: none;
        }

        @media (max-width: 768px) {
            .lightbox-content-container {
                padding: 2rem;
                width: 95%;
				height: 85vh;
            }
			#subscribe iframe { height: 84vh; }
        }