
/* ================================
ÁREA SEJA ASSINANTE
================================ */

.newsletter-area {
	padding: 100px 0;
	position: relative;
}

/* ================================
LADO ESQUERDO
================================ */

.newsletter-content h4 {
	font-size: 46px;
	font-weight: 800;
	color: #111;
	margin-bottom: 18px;
}

.newsletter-content .subtitle {
	font-size: 18px;
	color: #555;
	margin-bottom: 40px;
}

/* Cards informativos */
.plan-info-card {
	display: flex;
	gap: 20px;
	padding: 26px;
	border-radius: 18px;
	background: #f8f8f8;
	box-shadow: 0 12px 35px rgba(0,0,0,0.05);
	margin-bottom: 22px;
	transition: all 0.3s ease;
	border-left: 6px solid #111;
}

.plan-info-card.custom {
	border-left: 6px solid #777;
}

.plan-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.newsletter-area .plan-info-card h5 {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #111 !important; /* força contra tema */
}

.plan-info-card p {
	font-size: 14.5px;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

.plan-icon {
	font-size: 30px;
	margin-top: 2px;
}

/* ================================
LADO DIREITO (FORMULÁRIO)
================================ */

.newsletter-form {
	background: #ffffff;
	padding: 45px;
	border-radius: 22px;
	box-shadow: 0 25px 70px rgba(0,0,0,0.08);

	/* Garante que o botão fique no final */
	display: flex;
	flex-direction: column;
}

/* Remove qualquer posicionamento absoluto herdado */
.newsletter-form .btn {
	position: relative !important;
	top: auto !important;
	right: auto !important;
}

/* Labels */
.newsletter-form label {
	font-size: 13px;
	font-weight: 600;
	color: #666;
	margin-bottom: 8px;
	display: block;
}

/* Inputs e Select */
.newsletter-form input,
.newsletter-form select {
	width: 100%;
	height: 58px;
	border-radius: 14px;
	border: 1px solid #e5e5e5;
	padding: 0 18px;
	font-size: 15px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
	background: #fafafa;
}

/* Focus elegante */
.newsletter-form input:focus,
.newsletter-form select:focus {
	border-color: #111;
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

/* ================================
RESPONSIVO
================================ */

@media (max-width: 991px) {
	.newsletter-content {
		margin-bottom: 50px;
		text-align: center;
	}

	.plan-info-card {
		text-align: left;
	}
}

/* ================================
BOTÃO FINAL - 
================================ */

.newsletter-form button.submit-btn {
	all: unset; /* remove TODAS heranças agressivas do tema */

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 62px;

	margin-top: 20px;

	border-radius: 18px;
	background: #000;
	color: #fff;

	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.5px;

	cursor: pointer;
	transition: 0.3s ease;
}

.newsletter-form button.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}
/* =========================
BOTÃO CENTRALIZADO NO MOBILE
========================= */

@media (max-width: 991px) {

	.newsletter-area .newsletter-form .btn {
		width: 100%;
		max-width: 280px;
	}

}

/* ================================
CTA PROFISSIONAL
================================ */

.cta-area {
	position: relative;
	padding: 90px 0;
	background-size: cover;
	background-position: center;
}

.cta-overlay {
	position: absolute;
	inset: 0;
	/* background: linear-gradient(98deg, rgba(0, 0, 0, -5.15), rgb(207 4 0 / 95%)); */
	/* background: linear-gradient(98deg, rgb(207 4 0 / 95%), rgb(207 4 0 / 2%)); */
	/* background: linear-gradient(98deg, #db43ba 0%, #3D54F3 100%);     */
	/* background: linear-gradient(120deg, rgba(219,67,186,0.85), rgba(61,84,243,0.75)); */
	/* background: linear-gradient(135deg, #db43ba, #6a49e6, #3D54F3); */
	background: linear-gradient(135deg, #3D54F3, #000000, #db43ba);
	z-index: 1;
}

.cta-inner {
	position: relative;
	z-index: 2;
}                

.cta-content {
	display: inline-block;
	padding: 20px 30px;
	border-radius: 16px;
	background: rgba(0,0,0,0.13);
	backdrop-filter: blur(4px);
}

.cta-content h3,
.cta-content p {
	text-shadow: 0 3px 10px rgba(0,0,0,0.5);
	color: #dcdada!important;
}

/* BOTÃO */

.cta-button-wrapper {
	display: flex;
	justify-content: flex-end;
}

.cta-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;

	padding: 18px 30px;
	border-radius: 50px;

	background: #25D366;
	color: #fff;
	font-weight: 700;
	font-size: 16px;

	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 15px 35px rgba(37,211,102,0.35);
}

.cta-whatsapp-btn i {
	font-size: 22px;
}

.cta-whatsapp-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 45px rgba(37,211,102,0.5);
	background: #1ebe5d;
}

/* ================================
MOBILE
================================ */

@media (max-width: 991px) {

	.cta-content {
		text-align: center;
		margin-bottom: 30px;
	}

	.cta-button-wrapper {
		justify-content: center;
	}

	.cta-whatsapp-btn {
		width: 100%;
		max-width: 320px;
		justify-content: center;
	}

}

/* =========================
MODAL PREMIUM TIPOGRAFIA
========================= */

.modal-content {
	border-radius: 18px;
	border: none;
	box-shadow: 0 30px 80px rgba(0,0,0,0.25);
	padding: 10px 5px;
}

.modal-header {
	border-bottom: none;
	padding: 25px 30px 10px 30px;
}

.modal-title {
	font-size: 22px;
	font-weight: 700;
	color: #111;
	letter-spacing: 0.3px;
}

.modal-body {
	padding: 20px 30px 35px 30px;
}

.modal-body p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 18px;
	font-weight: 400;
}

.modal-body h6 {
	font-size: 17px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
	color: #000;
}

.modal-body ul {
	padding-left: 20px;
}

.modal-body ul li {
	font-size: 15.5px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 6px;
}

/* Track Play */
.instrumento-item img{
	max-height:160px;
	cursor:pointer;
	transition:0.3s;
}

.instrumento-item img:hover{
	transform:scale(1.05);
}

.instrumento-title{
	color:#fff;
	margin-top:10px;
	font-weight:600;
}

.swiper-button-next,
.swiper-button-prev{
	color:#fff;
}

.instrumento-item{
    cursor:pointer;
    padding:10px;
    border-radius:12px;
    transition:all .25s ease;
}

.instrumento-item img{
    border-radius:12px;
    transition:all .25s ease;
}

/* estado selecionado */

.instrumento-item.selected img{
    border:3px solid #e4d804;
    box-shadow:0 0 15px rgba(228,216,4,0.6);
    transform:scale(1.05);
}

/* texto também muda */

.instrumento-item.selected .instrumento-title{
    color:#e4d804;
    font-weight:700;
}

#tabelaMusicas_filter{
    width:100%;
    text-align:center;
}

#tabelaMusicas_filter input{
    width:200%;
    max-width:600px;
    border-radius:8px;
    padding:10px 15px;
    border:1px solid #444;
    background:#111;
    color:#fff;
}

.dataTables_filter input{
    padding-left:35px;
    background-image:url('img/lupa.svg');
    background-repeat:no-repeat;
    background-position:10px center;
}

.playTrack{
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    text-align: center;
}

.playTrack i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    line-height: 1 !important;
    font-size: 13px;
    margin: 0 !important;
    padding: 0 !important;
}