.exit-modal-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: 9999;
		display: none;
		align-items: center;
		justify-content: center;
		font-family: 'Nunito Sans', sans-serif;
	}

	.exit-modal-overlay.show {
		display: flex;
	}

	.exit-modal {
		background: white;
		border-radius: 15px;
		width: 90%;
		max-width: 800px;
		height: 500px;
		display: flex;
		position: relative;
		overflow: hidden;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	}

	.exit-modal-left {
		width: 50%;
		background: linear-gradient(135deg, #8B5CF6 0%, #F59E0B 100%);
		color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}

	.exit-modal-right {
		width: 50%;
		padding: 40px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.exit-modal-content {
		text-align: center;
		width: 100%;
	}

	.exit-modal-header {
		margin-bottom: 30px;
	}

	.exit-modal-icon {
		width: 40px;
		height: 40px;
		margin-bottom: 15px;
		filter: brightness(0) invert(1);
	}

	.exit-modal-title {
		font-size: 28px;
		font-weight: 900;
		margin: 0;
		line-height: 1.1;
	}

	.exit-modal-subtitle {
		font-size: 24px;
		font-weight: 700;
	}

	.exit-modal-text {
		font-size: 16px;
		margin: 0 0 10px 0;
	}

	.exit-modal-mega {
		font-size: 40px;
		font-weight: 900;
		margin: 0 0 10px 0;
		line-height: 1.1;
	}

	.exit-modal-price-text {
		font-size: 14px;
		margin: 0 0 5px 0;
	}

	.exit-modal-price {
		font-size: 36px;
		font-weight: 900;
		margin: 0;
	}

	.exit-modal-price-month {
		font-size: 18px;
		font-weight: 400;
	}

	.exit-modal-timer {
		margin-top: 30px;
	}

	.exit-modal-timer-box {
		background: white;
		color: #8B5CF6;
		padding: 20px;
		border-radius: 10px;
		display: inline-block;
	}

	.exit-modal-timer-title {
		font-size: 18px;
		font-weight: 900;
		margin-bottom: 5px;
	}

	.exit-modal-timer-line {
		height: 2px;
		background: #8B5CF6;
		margin: 10px 0;
	}

	.exit-modal-timer-text {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.exit-modal-countdown {
		font-size: 32px;
		font-weight: 900;
		font-family: 'Courier New', monospace;
	}

	.exit-modal-description {
		font-size: 16px;
		color: #333;
		margin-bottom: 20px;
		line-height: 1.4;
	}

	.exit-modal-dots {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-bottom: 20px;
	}

	.exit-dot {
		width: 12px;
		height: 12px;
		border-radius: 50%;
	}

	.exit-dot-orange { background: #F59E0B; }
	.exit-dot-purple { background: #8B5CF6; }
	.exit-dot-pink { background: #EC4899; }

	.exit-modal-urgency {
		font-size: 14px;
		color: #333;
		margin-bottom: 25px;
		line-height: 1.4;
	}

	.exit-form {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.exit-form input {
		padding: 15px;
		border: 1px solid #ddd;
		border-radius: 8px;
		font-size: 16px;
		font-family: 'Nunito Sans', sans-serif;
	}

	.exit-form input:focus {
		outline: none;
		border-color: #8B5CF6;
		box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
	}

	.exit-btn-submit {
		background: #8B5CF6;
		color: white;
		border: none;
		padding: 18px;
		border-radius: 8px;
		font-size: 18px;
		font-weight: 700;
		font-family: 'Nunito Sans', sans-serif;
		cursor: pointer;
		transition: background 0.3s ease;
	}

	.exit-btn-submit:hover {
		background: #7C3AED;
	}

	.exit-modal-close {
		position: absolute;
		top: 15px;
		right: 20px;
		background: none;
		border: none;
		font-size: 30px;
		color: #666;
		cursor: pointer;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: background 0.3s ease;
	}

	.exit-modal-close:hover {
		background: #f0f0f0;
	}

	@media (max-width: 768px) {
		.exit-modal {
			flex-direction: column;
			height: auto;
			max-height: 90vh;
			overflow-y: auto;
		}

		.exit-modal-left,
		.exit-modal-right {
			width: 100%;
		}

		.exit-modal-left {
			height: 300px;
		}

		.exit-modal-right {
			padding: 30px 20px;
		}

		.exit-modal-mega {
			font-size: 36px;
		}

		.exit-modal-price {
			font-size: 28px;
		}
	}

	/* Estilos do Modal Checkout */
	.checkout-modal-overlay {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.8);
		z-index: 10000 !important;
		display: none !important;
		align-items: center;
		justify-content: center;
		font-family: 'Nunito Sans', sans-serif;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	/* Garantir que outros elementos não sejam afetados */
	.tabela-planos,
	.sec-planos,
	.item {
		position: relative;
		z-index: auto;
	}

	.sec-planos-alt {
		display: none;
	}

	.checkout-modal-overlay.show {
		display: flex !important;
		visibility: visible;
		opacity: 1;
	}

	.checkout-modal {
		background: white;
		border-radius: 15px;
		width: 95%;
		max-width: 1200px;
		height: 90vh;
		display: flex;
		position: relative;
		overflow: hidden;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
		z-index: 10001;
	}

	.checkout-modal-close {
		position: absolute;
		top: 20px;
		right: 20px;
		background: none;
		border: none;
		font-size: 30px;
		color: #666;
		cursor: pointer;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: background 0.3s ease;
		z-index: 10001;
	}

	.checkout-modal-close:hover {
		background: #f0f0f0;
	}

	/* Estilos do Modal de Sucesso */
	.success-modal-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.7);
		z-index: 10001;
		display: none;
		align-items: center;
		justify-content: center;
		font-family: 'Nunito Sans', sans-serif;
	}

	.success-modal-overlay.show {
		display: flex;
	}

	.success-modal {
		background: white;
		border-radius: 20px;
		width: 90%;
		max-width: 600px;
		padding: 40px;
		text-align: center;
		box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
		position: relative;
	}

	.success-icon {
		width: 80px;
		height: 80px;
		border-radius: 50%;
		background: #d4edda;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 20px;
	}

	.success-icon svg {
		width: 50px;
		height: 50px;
		color: #28a745;
	}

	.success-modal h2 {
		font-size: 28px;
		color: #333;
		margin-bottom: 20px;
		font-weight: 700;
	}

	.success-message {
		font-size: 16px;
		color: #666;
		line-height: 1.6;
		margin-bottom: 30px;
	}

	.success-phone {
		font-weight: 600;
		color: #8B5CF6;
	}

	.success-know-more {
		background: #f8f9fa;
		border-radius: 15px;
		padding: 25px;
		margin: 30px 0;
		text-align: left;
	}

	.success-know-more h3 {
		font-size: 20px;
		color: #333;
		margin-bottom: 15px;
		font-weight: 700;
	}

	.success-know-more p {
		font-size: 15px;
		color: #666;
		line-height: 1.6;
		margin: 0;
	}

	.success-modal-buttons {
		display: flex;
		gap: 15px;
		justify-content: center;
		margin-top: 30px;
	}

	.success-btn {
		padding: 15px 40px;
		border: none;
		border-radius: 10px;
		font-size: 16px;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
		font-family: 'Nunito Sans', sans-serif;
	}

	.success-btn-primary {
		background: linear-gradient(135deg, #8B5CF6 0%, #F59E0B 100%);
		color: white;
	}

	.success-btn-primary:hover {
		transform: translateY(-2px);
		box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
	}

	.success-btn-secondary {
		background: #e9ecef;
		color: #666;
	}

	.success-btn-secondary:hover {
		background: #dee2e6;
	}

	@media (max-width: 768px) {
		.success-modal {
			padding: 30px 20px;
		}

		.success-modal h2 {
			font-size: 24px;
		}

		.success-modal-buttons {
			flex-direction: column;
		}

		.success-btn {
			width: 100%;
		}
	}

	/* Progress Steps */
	.checkout-progress {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		min-height: 80px;
		height: auto;
		background: #f8f9fa;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 10px 40px 16px 40px;
		border-bottom: 1px solid #e9ecef;
            z-index: 99999;
	}

	.progress-steps {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 40px;
		width: 100%;
	}

	.checkout-step {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.step-number {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: #dee2e6;
		color: #6c757d;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		font-size: 16px;
		transition: all 0.3s ease;
	}

	.checkout-step.active .step-number,
	.checkout-step.completed .step-number {
		background: #FF6B35;
		color: white;
	}

	.checkout-step.completed .step-number {
		background: #28a745;
	}

	.checkout-step span {
		font-size: 12px;
		font-weight: 600;
		color: #6c757d;
		text-align: center;
	}

	.progress-plan-summary {
		display: flex;
		align-items: center;
		gap: 12px;
		font-size: 14px;
		color: #212529;
		font-weight: 600;
		width: 100%;
		justify-content: center;
	}

	.progress-plan-label {
		font-size: 12px;
		font-weight: 600;
		color: #6c757d;
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}

	.progress-plan-name {
		font-weight: 700;
		text-transform: uppercase;
	}

	.progress-plan-price {
		font-weight: 700;
		color: #FF6B35;
		font-size: 16px;
	}

	.checkout-step.active span,
	.checkout-step.completed span {
		color: #FF6B35;
	}

	.checkout-step.completed span {
		color: #28a745;
	}

	/* Content Area */
	.checkout-content {
		flex: 1;
		padding: 120px 40px 40px 40px;
		overflow-y: auto;
		background: white;
	}

	.checkout-step-content {
		display: none;
	}

	.checkout-step-content.active {
		display: block;
	}

	.checkout-step-content h2 {
		font-size: 24px;
		font-weight: 700;
		color: #333;
		margin-bottom: 30px;
	}

	/* Form Styles */
	.form-group {
		margin-bottom: 20px;
	}

	.form-row {
		display: flex;
		gap: 20px;
		margin-bottom: 20px;
	}

	.form-row .form-group {
		flex: 1;
		margin-bottom: 0;
	}

	.form-group input,
	.form-group select {
		width: 100%;
		padding: 15px;
		border: 1px solid #ddd;
		border-radius: 8px;
		font-size: 16px;
		font-family: 'Nunito Sans', sans-serif;
		transition: border-color 0.3s ease;
	}

	.form-group input:focus,
	.form-group select:focus {
		outline: none;
		border-color: #FF6B35;
		box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
	}

	.form-group label {
		display: block;
		margin-bottom: 8px;
		font-weight: 600;
		color: #333;
		font-size: 14px;
	}

	.required-asterisk {
		color: #dc3545;
		font-weight: 700;
	}

	.required-indicator {
		color: #dc3545;
		font-size: 12px;
		margin-left: 10px;
	}

	/* Toggle Switch */
	.toggle-switch {
		position: relative;
		display: inline-block;
		width: 50px;
		height: 24px;
	}

	.toggle-switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}

	.toggle-slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #ddd;
		transition: .3s ease;
		border-radius: 20px;
		border: 2px solid #ddd;
	}

	.toggle-slider:before {
		position: absolute;
		content: "";
		height: 16px;
		width: 16px;
		left: 2px;
		bottom: 2px;
		background-color: white;
		transition: .3s ease;
		border-radius: 50%;
		box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	}

	input:checked + .toggle-slider {
		background-color: #28a745;
		border-color: #28a745;
	}

	input:checked + .toggle-slider:before {
		transform: translateX(24px);
	}

	/* Melhorias para mobile */
	@media (max-width: 768px) {
		.toggle-switch {
			width: 44px;
			height: 20px;
		}
		
		.toggle-slider {
			border-radius: 16px;
		}
		
		.toggle-slider:before {
			height: 14px;
			width: 14px;
			left: 3px;
			bottom: 3px;
		}
		
		input:checked + .toggle-slider:before {
			transform: translateX(20px);
		}
		
		.consent-toggle {
			gap: 12px;
			margin: 20px 0;
		}
		
		.consent-text {
			font-size: 13px;
			line-height: 1.4;
		}
	}

	.consent-toggle {
		display: flex;
		align-items: flex-start;
		gap: 15px;
		margin: 30px 0;
	}

	.consent-text {
		font-size: 14px;
		color: #666;
		line-height: 1.4;
	}

	/* Radio Groups */
	.radio-group {
		margin: 20px 0;
	}

	.radio-option {
		display: flex;
		align-items: center;
		gap: 10px;
		margin-bottom: 15px;
		cursor: pointer;
	}

	.radio-option input[type="radio"] {
		display: none;
	}

	.radio-custom {
		width: 20px;
		height: 20px;
		border: 2px solid #ddd;
		border-radius: 50%;
		position: relative;
		transition: all 0.3s ease;
	}

	.radio-option input[type="radio"]:checked + .radio-custom {
		border-color: #FF6B35;
	}

	.radio-option input[type="radio"]:checked + .radio-custom::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 8px;
		height: 8px;
		background: #FF6B35;
		border-radius: 50%;
	}

	/* Vivo Play Sections */
	.vivo-play-section,
	.mais-vivo-play-section {
		margin: 30px 0;
		padding: 20px;
		border: 1px solid #e9ecef;
		border-radius: 10px;
	}

	.vivo-play-section h3,
	.mais-vivo-play-section h3 {
		font-size: 20px;
		font-weight: 700;
		color: #333;
		margin-bottom: 15px;
	}

	.section-subtitle {
		font-size: 16px;
		font-weight: 600;
		color: #FF6B35;
		margin-bottom: 10px;
	}

	.section-description {
		font-size: 14px;
		color: #666;
		margin-bottom: 20px;
	}

	.plano-info,
	.canais-info {
		margin: 5px 0;
		font-weight: 600;
		color: #333;
	}

	.link-canais {
		color: #FF6B35;
		text-decoration: none;
		font-size: 14px;
	}

	.link-canais:hover {
		text-decoration: underline;
	}

	/* Upgrade Options */
	.upgrade-options {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.upgrade-option {
		display: block;
		padding: 15px;
		border: 2px solid #e9ecef;
		border-radius: 10px;
		cursor: pointer;
		transition: all 0.3s ease;
		position: relative;
	}

	.upgrade-option:hover {
		border-color: #FF6B35;
	}

	.upgrade-option input[type="radio"] {
		position: absolute;
		opacity: 0;
		pointer-events: none;
	}

	.upgrade-option .radio-custom {
		display: inline-block;
		width: 20px;
		height: 20px;
		border: 2px solid #ddd;
		border-radius: 50%;
		background-color: white;
		position: relative;
		margin-right: 10px;
		vertical-align: top;
	}

	.upgrade-option input[type="radio"]:checked + .radio-custom {
		background-color: #FF6B35;
		border-color: #FF6B35;
	}

	.upgrade-option input[type="radio"]:checked + .radio-custom::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 8px;
		height: 8px;
		background-color: white;
		border-radius: 50%;
	}

	.upgrade-option:has(input:checked) {
		border-color: #FF6B35;
		background: rgba(255, 107, 53, 0.05);
	}

	.upgrade-label {
		font-weight: 600;
		color: #333;
		margin-bottom: 5px;
		display: block;
	}

	.upgrade-info {
		margin-left: 30px;
		display: block;
	}

	.upgrade-info .plano-info {
		font-size: 14px;
		color: #666;
		margin-bottom: 8px;
	}

	.link-canais {
		color: #FF6B35;
		text-decoration: underline;
		font-size: 14px;
	}

	/* Estilos para validação */
	.field-error {
		color: #dc3545;
		font-size: 12px;
		margin-top: 4px;
		display: block;
	}

	.checkout-form input.error {
		border-color: #dc3545 !important;
	}

	.checkout-form input.valid {
		border-color: #28a745 !important;
	}

	.checkout-form input.loading {
		border-color: #ffc107 !important;
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffc107" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 12a9 9 0 11-6.219-8.56"/></svg>');
		background-repeat: no-repeat;
		background-position: right 10px center;
		background-size: 16px 16px;
		animation: spin 1s linear infinite;
	}

	@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}


	.upgrade-price {
		font-size: 18px;
		font-weight: 700;
		color: #FF6B35;
	}

	.upgrade-title {
		font-size: 16px;
		font-weight: 600;
		color: #333;
	}

	.upgrade-channels {
		font-size: 14px;
		color: #666;
	}

	/* Buttons */
	.checkout-btn-next,
	.checkout-btn-contract {
		background: #FF6B35;
		color: white;
		border: none;
		padding: 15px 40px;
		border-radius: 8px;
		font-size: 18px;
		font-weight: 700;
		font-family: 'Nunito Sans', sans-serif;
		cursor: pointer;
		transition: background 0.3s ease;
		margin-top: 30px;
	}

	.checkout-btn-next:hover,
	.checkout-btn-contract:hover {
		background: #e55a2b;
	}

	.checkout-btn-contract {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.btn-icon {
		width: 20px;
		height: 20px;
		background: white;
		color: #FF6B35;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
	}

	/* Resumo Section */
	.resumo-section {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin: 30px 0;
	}

	.resumo-item {
		display: flex;
		gap: 20px;
		padding: 20px;
		border: 1px solid #e9ecef;
		border-radius: 10px;
	}

	.resumo-number {
		width: 40px;
		height: 40px;
		background: #FF6B35;
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-weight: 700;
		font-size: 18px;
	}

	.resumo-content h4 {
		font-size: 16px;
		font-weight: 700;
		color: #333;
		margin-bottom: 10px;
	}

	.resumo-content p {
		margin: 5px 0;
		color: #666;
	}

	/* Sidebar */
	.checkout-sidebar {
		width: 350px;
		background: #f8f9fa;
		padding: 120px 20px 20px 20px;
		overflow-y: visible;
		border-left: 1px solid #e9ecef;
		display: flex;
		flex-direction: column;
	}

	.checkout-sidebar h3 {
		font-size: 20px;
		font-weight: 700;
		color: #333;
		margin-bottom: 20px;
	}

	.brand-info {
		margin-bottom: 20px;
	}

	.brand-logo {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 14px;
		color: #666;
	}

	.brand-logo img {
		height: 30px;
	}

	.order-number {
		font-size: 14px;
		color: #666;
		margin-bottom: 15px;
	}

	.plan-summary {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 15px;
		padding-bottom: 15px;
		border-bottom: 1px solid #e9ecef;
	}

	.plan-name {
		font-size: 16px;
		font-weight: 700;
		color: #333;
	}

	.plan-price {
		font-size: 18px;
		font-weight: 700;
		color: #FF6B35;
            display: none;
	}

	.plan-details p {
		font-size: 14px;
		color: #666;
		margin-bottom: 15px;
	}

	.apps-icons {
		display: flex;
		gap: 5px;
		margin-bottom: 20px;
	}

	.apps-icons img {
		width: 30px;
		height: 30px;
		border-radius: 5px;
	}

	.bonus-info {
		background: white;
		padding: 15px;
		border-radius: 8px;
		margin-bottom: 20px;
	}

	.bonus-info p {
		font-size: 12px;
		color: #666;
		margin-bottom: 10px;
	}

	.bonus-visual {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 10px;
	}

	.bonus-item {
		background: #FF6B35;
		color: white;
		padding: 4px 8px;
		border-radius: 4px;
		font-weight: 600;
	}

	.bonus-visual span {
		color: #666;
		font-weight: 700;
	}

	.total-bar {
		background: #6c757d;
		color: white;
		padding: 15px;
		border-radius: 8px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 700;
	}

	/* Responsive */
	@media (max-width: 1024px) {
		.checkout-modal {
			flex-direction: column;
			height: 95vh;
		}

		.checkout-sidebar {
			width: 100%;
			height: auto;
			max-height: 300px;
			border-left: none;
			border-top: 1px solid #e9ecef;
			padding: 20px;
			overflow-y: visible;
		}

		.checkout-progress {
			gap: 20px;
			padding: 0 20px;
		}

		.progress-steps {
			gap: 20px;
			flex-wrap: wrap;
		}

		.progress-plan-summary {
			flex-direction: column;
			gap: 4px;
			text-align: center;
		}

		.checkout-step span {
			font-size: 10px;
		}
	}

	@media (max-width: 768px) {
		.checkout-modal {
			width: 100%;
			height: 100vh;
			border-radius: 0;
		}

		.checkout-content {
			padding: 100px 20px 20px 20px;
		}

		.checkout-progress {
			gap: 10px;
			padding: 0 10px;
			align-items: flex-start;
		}

		.checkout-step span {
			display: none;
		}

		.form-group label {
			font-size: 14px;
			margin-bottom: 6px;
		}

		.form-row {
			flex-direction: column;
			gap: 0;
		}

		.upgrade-options {
			gap: 10px;
		}

		.upgrade-option {
			padding: 10px;
		}

		.progress-plan-summary {
			align-items: flex-start;
			text-align: left;
			width: 100%;
			border-top: 1px solid #e9ecef;
			padding-top: 8px;
			margin-top: 4px;
		}

		.progress-plan-name {
			font-size: 13px;
		}

		.progress-plan-price {
			font-size: 16px;
		}

		.checkout-sidebar {
			position: sticky;
			bottom: 0;
			width: 100%;
			padding: 12px 16px;
			flex-direction: row;
			align-items: center;
			justify-content: space-between;
			background: rgba(248, 249, 250, 0.95);
			backdrop-filter: blur(6px);
			box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
			border-top: 1px solid #e9ecef;
			border-left: none;
			gap: 12px;
			z-index: 30;
		}

		.checkout-sidebar h3,
		.checkout-sidebar .brand-info,
		.checkout-sidebar .order-number,
		.checkout-sidebar .plan-details,
		.checkout-sidebar .total-bar {
			display: none;
		}

		.checkout-sidebar .plan-summary {
			margin: 0;
			padding: 0;
			border: none;
			flex: 1;
		}

		.checkout-sidebar .plan-summary:not(:first-of-type) {
			display: none;
		}

		.checkout-sidebar .plan-name {
			font-size: 14px;
			line-height: 1.2;
		}

		.checkout-sidebar .plan-price {
			font-size: 18px;
		}
	}
        .sec-planos .tabela-planos .slider .slides .item .content, .sec-planos .tabela-planos-voip .slider .slides .item .content {
    min-height: 208px;
}
.sec-planos .tabela-planos .slider .slides .item.telefone_fixo:before, .sec-planos .tabela-planos-voip .slider .slides .item.telefone_fixo:before {
    content: "+ Telefone Fixo";
}
.sec-planos .tabela-planos .slider .slides .item.telefone_fixo:before, .sec-planos .tabela-planos .slider .slides .item.vivo_play_app_basico:before, .sec-planos .tabela-planos .slider .slides .item.vivo_play_app_estendido:before, .sec-planos .tabela-planos-voip .slider .slides .item.telefone_fixo:before, .sec-planos .tabela-planos-voip .slider .slides .item.vivo_play_app_basico:before, .sec-planos .tabela-planos-voip .slider .slides .item.vivo_play_app_estendido:before {
    background: #6e009d;
    border-radius: 4px 4px 0 0;
    color: #fff;
    display: block;
    font-size: 10px;
    left: -1px;
    padding: 6px 8px;
    position: absolute;
    text-transform: uppercase;
    top: -24px;
}
.sec-planos .tabela-planos .slider .slides .item.vivo_play_app_estendido:before, .sec-planos .tabela-planos-voip .slider .slides .item.vivo_play_app_estendido:before {
    content: "+ Vivo TV App Estendido";
}
.sec-planos .tabela-planos .slider .slides .item.vivo_play_app_basico:before, .sec-planos .tabela-planos-voip .slider .slides .item.vivo_play_app_basico:before {
    content: "+ Vivo TV App Inicial";
}
.sec-home .item.item-banner-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}
.sec-home .item.item-banner-img .banner-full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.sec-home .thumb.thumb-banner-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#menu-fibra .container .main-menu-fibra{
	background-color: transparent;
}

.sec-planos .planos-voip .text-voip {
	text-align: center;
}

.sec-planos .planos-voip .sec-vantagens {
	padding: 25px 0 40px;
	text-align: center;
}

.sec-planos .planos-voip .sec-vantagens .title {
	text-align: center;
}

.sec-planos .planos-voip .sec-vantagens .wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 30px;
}

.sec-planos .planos-voip .sec-vantagens .wrapper .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 280px;
	margin: 0;
	text-align: center;
}

.sec-planos .planos-voip .sec-vantagens .wrapper .item img {
	display: block;
	margin: 0 auto;
}

.sec-planos .planos-voip .sec-vantagens .wrapper .item p {
	text-align: center;
}

#terra-fibra .modal-saiba-mais .content {
	background: #fff url(../../img/2025-bg-fibra-metade.png) no-repeat;
	background-attachment: local;
	height: 100vh;
	margin-left: auto;
	overflow-x: overlay;
	overflow-y: auto;
	padding: 20px;
	position: relative;
}

.sec-nmp__text {
	color: #444141;
	font-size: 16px;
	line-height: 1.4;
	text-align: justify;
}

.sec-outros .container .copyright__social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.sec-outros .container .copyright__social a {
	margin: 0;
}

.sec-outros .container .dest {
	background: url(../../img/bg-sec-outros-mob.jpg?v=2) no-repeat 50%;
	background-size: cover;
	margin: 0 -20px;
	max-width: 1400px;
	min-height: 460px;
	overflow: hidden;
	position: relative;
}

@media (min-width: 769px) {
	.sec-outros .container .dest {
		align-items: center;
		background: url(../../img/bg-sec-outros.jpg?v=2) no-repeat 50%;
		display: flex;
		margin: 0 auto;
		min-height: 346px;
	}

	.sec-outros .container .dest:after {
		display: none;
	}
}