@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	background-color: #000;
	color: #fff;
	letter-spacing: -0.015em;
}

/* Previene zoom en inputs en móvil */
input,
textarea,
select {
	font-size: 16px !important;
}

.top-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 32px;
	z-index: 1000;
	border-bottom: 1px solid #333;
}

.progress-container {
	position: fixed;
	top: 72px;
	/* Adjusted top position */
	left: 0;
	/* Align to left */
	width: 100%;
	/* Full width */
	height: 4px;
	background-color: transparent;
	z-index: 999;
	padding: 0 32px;
	/* Add padding to match top-bar */
	box-sizing: border-box;
	/* Include padding in width */
}

.progress-track {
	width: 100%;
	height: 4px;
	background-color: #222;
	position: relative;
}

.progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #0066ff, #00ccff);
	width: 0%;
	transition: width 0.3s ease;
	position: relative;
	box-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Removed .progress-step styles */

.container {
	max-width: 640px;
	margin: 100px auto 60px;
	/* Adjusted top margin */
	background-color: #000;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

h2 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 2rem;
	text-align: center;
	color: #fff;
	line-height: 1.3;
	width: 100%;
}

.option {
	background-color: #111;
	margin: 12px 0;
	padding: 20px;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	font-weight: 400;
	position: relative;
	width: 100%;
	max-width: 500px;
	border: 1px solid #333;
}

.option:hover {
	background-color: #222;
	border-color: #fff;
}

.popup {
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #000;
	padding: 20px;
	z-index: 1001;
	display: none;
	/* Initially hidden */
	color: white;
	max-width: 80%;
	max-height: 90vh;
	overflow-y: auto;
	border: 1px solid #fff;
	width: 80%;
	max-width: 500px;
}

.brand-container {
	display: flex;
	align-items: center;
	gap: 16px;
}

.score-display {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 0.9rem;
}

.btn-primary {
	display: block;
	background-color: #fff;
	color: #000;
	padding: 16px 32px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.2s;
	text-align: center;
	text-decoration: none;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 20px;
}

.btn-primary:hover {
	background-color: #eee;
}

.feature-list {
	padding-left: 0;
	list-style-type: none;
	width: 80%;
	max-width: 500px;
	margin-bottom: 25px;
}

.feature-list li {
	margin: 10px 0;
	padding-left: 32px;
	position: relative;
	font-size: 13px;
	line-height: 1;
	text-align: center;
}

.feature-list li:before {
	content: "→";
	color: #fff;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.final-price {
	font-size: 2rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
	width: 100%;
}

.original-price {
	text-decoration: line-through;
	color: #777;
	font-size: 18px;
}

.discount-badge {
	display: inline-block;
	background-color: #fff;
	color: #000;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 8px;
	vertical-align: middle;
}

.urgency-banner {
	background-color: #111;
	padding: 12px;
	text-align: center;
	margin: 10px 0;
	border: 1px solid #333;
	font-size: 0.85rem;
	width: 100%;
	max-width: 500px;
}

.urgency-banner strong {
	color: #fff;
	font-weight: 600;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.close-btn {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	font-size: 1.2rem;
	color: #777;
}

.close-btn:hover {
	color: #fff;
}

.welcome-container {
	text-align: center;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.welcome-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #fff;
}

.welcome-title {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.welcome-subtitle {
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	color: #ccc;
	line-height: 1.5;
	max-width: 500px;
}

.welcome-features {
	text-align: left;
	width: 100%;
	max-width: 500px;
}

.welcome-feature {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.welcome-feature i {
	margin-right: 1rem;
	color: #fff;
	font-size: 1.2rem;
}

.btn-start {
	background-color: #fff;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-start:hover {
	background-color: #eee;
}

.welcome-note {
	font-size: 0.8rem;
	color: #777;
	margin-top: 1rem;
	max-width: 500px;
}

.popup-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
	color: #fff;
}

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

.popup-content p {
	margin-bottom: 1rem;
	font-size: 15px;
	line-height: 1.5;
}

.popup-btn {
	background-color: #fff;
	color: #000;
	border: none;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
	width: 100%;
	text-transform: uppercase;
}

.popup-btn:hover {
	background-color: #eee;
}

.option-selected {
	background-color: #222;
	border: 1px solid #fff;
}

.starlink-logo {
	display: block;
	margin: 0 auto;
}

.emoji-large {
	font-size: 2rem;
	display: block;
	text-align: center;
}

/* Updated city input styles (was country) */
.city-input {
	background-color: #111;
	border: 1px solid #333;
	color: #fff;
	padding: 16px;
	font-size: 16px !important;
	width: 100%;
	max-width: 300px;
	text-align: center;
	margin: 20px auto;
	/* Center horizontally */
	display: block;
	/* Make it a block element */
	-webkit-text-size-adjust: 100%;
	touch-action: manipulation;
}

.city-input:focus {
	outline: none;
	border-color: #00ccff;
	box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.3);
}

/* Updated city button styles (was country) */
.city-btn {
	background-color: #00ccff;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 5px auto 15px;
	/* Center horizontally */
	display: block;
	/* Make it a block element */
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
}

.city-btn:hover {
	background-color: #00b7e6;
}

/* Updated city error styles (was country) */
.city-error {
	color: #ff4444;
	font-size: 14px;
	display: none;
	text-align: center;
	/* Center error message */
	margin-top: -10px;
	/* Adjust spacing */
	margin-bottom: 10px;
}

.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, .3);
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
	margin-right: 10px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.popup.show {
	display: block;
	/* Make popup visible when .show class is added */
	animation: fadeIn 0.3s ease-out;
}

/* Nuevo diseño de embudo */
.funnel-container {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.funnel-step {
	position: relative;
	margin-bottom: 20px;
	border-left: 2px solid #333;
	padding-left: 20px;
}

.funnel-step.active {
	border-left-color: #00ccff;
}

.funnel-step-number {
	position: absolute;
	left: -10px;
	top: 0;
	width: 20px;
	height: 20px;
	background-color: #222;
	border: 1px solid #333;
	color: #777;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

.funnel-step.active .funnel-step-number {
	background-color: #00ccff;
	color: #000;
	border-color: #fff;
}

.funnel-step-content {
	padding: 15px 15px 5px 15px;
	background-color: #111;
	border: 1px solid #333;
	/* Add text-align center for input/button steps */
	text-align: center;
}

.funnel-step.active .funnel-step-content {
	border-color: #00ccff;
}

/* Estilos de verificación de portabilidad */
.portability-status {
	margin-top: 20px;
	padding: 15px;
	border-radius: 4px;
	display: none;
	text-align: center;
	font-size: 14px;
}

.portability-loading {
	background-color: #333;
	color: #fff;
	margin-bottom: 10px;
}

.portability-success {
	background-color: #00cc44;
	color: #fff;
	margin-bottom: 10px;
}

.portability-approved {
	background-color: #0066ff;
	color: #fff;
	font-weight: 600;
}

.phone-input {
	background-color: #111;
	border: 1px solid #333;
	color: #fff;
	padding: 16px;
	font-size: 16px !important;
	width: 100%;
	max-width: 300px;
	text-align: center;
	margin: 20px 0;
	-webkit-text-size-adjust: 100%;
	touch-action: manipulation;
}

.phone-input:focus {
	outline: none;
	border-color: #00ccff;
	box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.3);
}

.phone-error {
	color: #ff4444;
	font-size: 14px;
	display: none;
}

.portability-btn {
	background-color: #00ccff;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 5px;
	margin-bottom: 15px;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
}

.portability-btn:hover {
	background-color: #00b7e6;
}

.new-number-btn {
	background-color: #333;
	color: #fff;
	border: 1px solid #555;
	padding: 16px 20px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 5px;
	margin-bottom: 15px;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
}

.new-number-btn:hover {
	background-color: #444;
	border-color: #666;
}

.finalize-btn {
	background-color: #00cc44;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
	display: none;
	margin-bottom: 10px;
}

.finalize-btn:hover {
	background-color: #00bb44;
}

/* Estilos de carga de ciudad (antes país) */
.city-loading {
	display: none;
	text-align: center;
	margin: 20px 0;
}

.city-loading-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #00ccff;
	animation: pulse 1.5s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.city-success {
	display: none;
	text-align: center;
	background-color: #00cc44;
	padding: 15px;
	margin: 20px 0;
	border-radius: 4px;
}

.city-success-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fff;
}

/* Sección de calificaciones */
.ratings-container {
	width: 100%;
	max-width: 500px;
	margin: 30px auto 0;
	padding: 20px;
	background-color: #111;
	border: 1px solid #333;
}

.ratings-header {
	text-align: center;
	margin-bottom: 20px;
}

.average-rating {
	font-size: 2rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 5px;
}

.stars {
	color: #00b2ff;
	font-size: 1.2rem;
	margin-bottom: 5px;
}

.total-reviews {
	color: #aaa;
	font-size: 0.9rem;
}

.review-card {
	background-color: #222;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 4px;
	border: 1px solid #444;
}

.review-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}

.review-name {
	font-weight: 600;
	font-size: 0.95rem;
}

.review-date {
	color: #777;
	font-size: 0.8rem;
	margin-top: 2px;
}

.review-stars {
	color: #ffcc00;
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.review-text {
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Sección de Garantía */
.guarantee-container {
	width: 100%;
	max-width: 500px;
	margin: 30px auto 0;
	padding: 20px;
	background-color: #111;
	border: 1px solid #333;
	text-align: center;
}

.guarantee-icon {
	font-size: 2.5rem;
	color: #00cc44;
	margin-bottom: 15px;
}

.guarantee-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: #fff;
}

.guarantee-text {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #ccc;
}

/* Sección de Preguntas Frecuentes */
.faq-container {
	width: 100%;
	max-width: 500px;
	margin: 30px auto 0;
	padding: 20px;
	background-color: #111;
	border: 1px solid #333;
}

.faq-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
	text-align: center;
}

.faq-item {
	margin-bottom: 15px;
	border-bottom: 1px solid #333;
	padding-bottom: 15px;
}

.faq-question {
	font-weight: 600;
	margin-bottom: 8px;
	color: #fff;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
}

.faq-question:after {
	content: "+";
	font-size: 1.2rem;
}

.faq-question.active:after {
	content: "-";
}

.faq-answer {
	font-size: 0.9rem;
	line-height: 1.5;
	color: #ccc;
	display: none;
}

.faq-answer.show {
	display: block;
}

/* Notificación estilo iPhone */
.notification {
	position: fixed;
	top: 20px;
	right: 20px;
	background-color: rgba(30, 30, 30, 0.9);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	padding: 12px 16px;
	width: 280px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: flex;
	align-items: center;
	gap: 12px;
	transform: translateX(120%);
	transition: transform 0.3s ease-out;
}

.notification.show {
	transform: translateX(0);
}

.notification-icon {
	width: 36px;
	height: 36px;
	background-color: #00ccff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 18px;
}

.notification-content {
	flex: 1;
}

.notification-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 2px;
}

.notification-text {
	font-size: 13px;
	color: #ccc;
	line-height: 1.3;
}

.notification-close {
	color: #777;
	font-size: 14px;
	cursor: pointer;
}

/* Nuevos estilos para el paso de disponibilidad del chip */
.chip-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
}

.chip-loading-circle {
	width: 60px;
	height: 60px;
	border: 5px solid #333;
	border-top-color: #00ccff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 20px;
}

.chip-availability-result {
	display: none;
	text-align: center;
	margin-top: 20px;
}

.chip-count {
	font-size: 1.5rem;
	font-weight: 600;
	color: #00ccff;
	margin: 10px 0;
}

.chip-warning {
	background-color: #222;
	border: 1px solid #ff4444;
	padding: 15px;
	margin: 20px 0;
	border-radius: 4px;
	font-size: 0.9rem;
	display: none;
}

.chip-warning-title {
	color: #ff4444;
	font-weight: 600;
	margin-bottom: 5px;
}

.resgatar-btn {
	background-color: #00cc44;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 20px;
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

.resgatar-btn:hover {
	background-color: #00bb44;
}

.popup-warning {
	position: fixed;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #000;
	padding: 20px;
	z-index: 1001;
	display: none;
	color: white;
	max-width: 80%;
	max-height: 90vh;
	overflow-y: auto;
	border: 1px solid #ff4444;
	width: 80%;
	max-width: 500px;
}

.popup-warning-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-align: center;
	color: #ff4444;
}

.popup-warning-btn {
	background-color: #00cc44;
	color: #000;
	border: none;
	padding: 12px 24px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
	width: 100%;
	text-transform: uppercase;
}

.popup-warning-btn:hover {
	background-color: #00bb44;
}

/* Estilos de verificación de compatibilidad del teléfono */
.phone-check-input {
	background-color: #111;
	border: 1px solid #333;
	color: #fff;
	padding: 16px;
	font-size: 16px !important;
	width: 100%;
	max-width: 300px;
	text-align: center;
	margin: 10px auto;
	/* Center horizontally */
	display: block;
	/* Make it a block element */
	-webkit-text-size-adjust: 100%;
	touch-action: manipulation;
}

.phone-check-input:focus {
	outline: none;
	border-color: #00ccff;
	box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.3);
}

.phone-check-btn {
	background-color: #00ccff;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 5px auto 10px;
	/* Center horizontally */
	display: block;
	/* Make it a block element */
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
}

.phone-check-btn:hover {
	background-color: #00b7e6;
}

.phone-check-loading {
	display: none;
	text-align: center;
	margin: 20px 0;
}

.phone-check-loading-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #00ccff;
	animation: spin 1.5s linear infinite;
}

.phone-check-success {
	display: none;
	text-align: center;
	background-color: #00cc44;
	padding: 15px;
	margin: 20px auto;
	/* Center horizontally */
	border-radius: 4px;
	width: 100%;
	max-width: 300px;
	/* Match button width */
}

.phone-check-success-icon {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.phone-check-error {
	color: #ff4444;
	font-size: 14px;
	display: none;
	text-align: center;
	/* Center error message */
	margin-top: -5px;
	/* Adjust spacing */
	margin-bottom: 10px;
}

/* Added style for operator input */
.operator-input {
	background-color: #111;
	border: 1px solid #333;
	color: #fff;
	padding: 16px;
	font-size: 16px !important;
	width: 100%;
	max-width: 300px;
	text-align: center;
	margin: 20px auto;
	/* Center horizontally */
	display: block;
	/* Make it a block element */
	-webkit-text-size-adjust: 100%;
	touch-action: manipulation;
}

.operator-input:focus {
	outline: none;
	border-color: #00ccff;
	box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.3);
}

/* Added style for operator button */
.operator-btn {
	background-color: #00ccff;
	color: #000;
	border: none;
	padding: 16px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin: 5px auto 15px;
	/* Center horizontally */
	display: block;
	/* Make it a block element */
	width: 100%;
	max-width: 300px;
	text-transform: uppercase;
}

.operator-btn:hover {
	background-color: #00b7e6;
}

.operator-error {
	color: #ff4444;
	font-size: 14px;
	display: none;
	text-align: center;
	/* Center error message */
	margin-top: -10px;
	/* Adjust spacing */
	margin-bottom: 10px;
}

/* Styles for Plan Options */
.plan-options-wrapper {
	display: flex;
	flex-direction: column;
	/* Stack vertically by default */
	align-items: center;
	gap: 20px;
	/* Space between plans */
	margin-top: 30px;
	margin-bottom: 30px;
	width: 100%;
	max-width: 500px;
	/* Match other content width */
}

.plan-option img {
	display: block;
	/* Remove extra space below image */
	width: 100%;
	/* Make image responsive */
	max-width: 400px;
	/* Limit max width */
	border: 2px solid transparent;
	/* Add border for potential hover/active states */
	transition: border-color 0.2s;
	cursor: pointer;
}

.plan-option:hover img {
	border-color: #00ccff;
	/* Highlight on hover */
}