/* Estilos para la capa superpuesta (overlay) */
.novoname-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Estilos para el contenedor del popup */
.novoname-popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    max-width: 850px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 100%);
}

/* Estilos para el contenido dentro del popup */
.novoname-popup-content {
    position: relative;
    padding: 50px 50px 10px;
	overflow-y: scroll;
	-ms-overflow-style: none;
    scrollbar-width: none;
}

/* Estilos para el botón de cierre */
.novoname-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #81638B;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
	padding: 7px;
}

.novoname-popup-close:hover {
    background-color: #25ABA0;
}

/* Clases para mostrar/ocultar el popup (manejadas por JS) */
.novoname-popup-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.novoname-popup-container.is-active {
    /* GSAP manejará la animación de la aparición, no se necesita CSS aquí */
}

/* Estilos básicos para el botón de disparo */
.novoname-popup-trigger {
    background-color: #81638B;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px 50px 50px 50px;
    padding: 20px 40px 20px 40px;
}
.novoname-popup-trigger:hover {
    background-color: #25ABA0;
}
.novoname-popup-trigger.lg {
    font-size: 18px;
}
.novoname-popup-trigger.center {
    margin: 0 auto;
}
.novoname-popup-trigger.green {
    background-color: #25ABA0;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color color 0.3s ease;
}
.novoname-popup-trigger.green:hover {
    background-color: #ffffff !important;
	color: #000 !important;
}
.popup-title {
	font-size: 50px;
	font-family: 'Poppins', Sans-Serif;
	font-weight: 600;
}
@media (max-width: 768px) {
	.novoname-popup-trigger.lg {
		font-size: 16px;
	}
	.novoname-popup-trigger {
		padding: 12px 24px 12px 24px;
	}
	.novoname-popup-container {
		height: 98vh;
		width: 98%;
	}
	.novoname-popup-content {
		height: 97vh;
		padding: 5px 15px 15px !important;
	}
	.popup-title {
		font-size: 38px;
		line-height: 1.3em;
		width: 85%;
	}
}