/* 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 {
	overflow-y: auto;
    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;
    width: 850px;
	max-width: 90%;
	max-height: 80vh;
	height: 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;
}

/* 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.lg {
    font-size: 18px;
}
.novoname-popup-trigger.center {
    margin: 0 auto;
}
.popup-title {
	font-size: 50px;
	font-family: 'Poppins', Sans-Serif;
	font-weight: 600;
}
.novoname-popup-trigger:focus {
	/* Provide a fallback style for browsers
	 that don't support :focus-visible */
	outline: none;
}
.novoname-popup-trigger:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
}
.novoname-popup-trigger:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid #443ffc;
	outline-offset: 3px;
}
.novoname-popup-trigger {
	pointer-events: auto;
	cursor: pointer;
	background: #25ABA0;
	font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 500;
	border: none;
	padding: 20px 40px;
	margin: 0;
	position: relative;
	display: inline-block;
}
.novoname-popup-trigger.green {
	background: #ffffff;
	font-size: 14px;
	padding: 10px 20px;
}
.novoname-popup-trigger::before,
.novoname-popup-trigger::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.novoname-popup-trigger {
	border-radius: 50px;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
}
.novoname-popup-trigger.green {
	
}
.novoname-popup-trigger span {
	position: relative;
}
.novoname-popup-trigger.green:hover span {
	color: #000000;
}
.novoname-popup-trigger::before {
	content: '';
	background: #81638B;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.novoname-popup-trigger.green::before {
	content: '';
	background: #25ABA0;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.novoname-popup-trigger:hover::before {
	transform: translate3d(0,-100%,0);
}
@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%;
	}
}