/* Base styles */
html {
	scroll-padding-top: 75px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	background-color: #000;
	color: #e0e0e0;
	line-height: 1.6;
	scroll-behavior: smooth;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("images/estudio2.webp") no-repeat center center/cover;
	z-index: -2;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.726);
	z-index: -1;
}

a {
	text-decoration: none;
	color: inherit;
}

/* Navigation */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	z-index: 1000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
	display: flex;
	align-items: center;
}

.logo-image {
	height: 40px;
	width: auto;
	max-width: none;
	object-fit: cover;
	object-position: center;
	transform: scale(2.3);
	transform-origin: left center;
}

.back-to-home-nav {
	display: flex;
	align-items: center;
	gap: 5px;
	background-color: rgba(236, 236, 236, 0.1);
	border-radius: 2rem;
	padding: 0.5rem 1rem;
	color: #ccc;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.back-to-home-nav:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.2);
}

/* Header */
header {
	padding: 6rem 2rem 3rem;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header h1 {
	font-size: 3rem;
	font-weight: 600;
	color: #f5f5f5;
	letter-spacing: -0.5px;
}

header p {
	font-size: 1.2rem;
	color: #bbb;
	max-width: 600px;
	margin: 1rem auto 0;
}

/* Sections */
section {
	padding: 2.5rem 1.5rem;
	max-width: 960px;
	margin: auto;
}

section h2 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: #fff;
	font-weight: 500;
}

/* Tabs styles */
.tabs-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 3rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 3rem;
	padding: 0.75rem;
	backdrop-filter: blur(10px);
	max-width: 775px;
	margin: 0 auto 3rem auto;
	gap: 0.5rem;
}

.tab-btn {
	background: none;
	border: none;
	color: #aaa;
	padding: 0.8rem 1.2rem;
	border-radius: 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.85rem;
	font-weight: 500;
	white-space: nowrap;
	font-family: "Poppins", sans-serif;
	flex-shrink: 0;
}

.tab-btn.active {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.tab-btn:hover:not(.active) {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.tab-btn i {
	margin-right: 0.5rem;
	font-size: 0.9rem;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Price sections */
.price-section {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(10px);
	border-radius: 1.5rem;
	padding: 2rem;
	margin-bottom: 2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.price-section:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.price-category-v2 {
	font-size: 1.5rem;
	color: #f5f5f5;
	margin-bottom: 1.5rem;
	padding: 1rem 0;
	position: relative;
	text-align: center;
}

.price-category-v2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #667eea, transparent);
	box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

.price-category-v2 i {
	color: #667eea;
	margin-right: 0.75rem;
	font-size: 1.2rem;
}

.subcategory {
	margin-top: 2rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 0.5rem;
	font-size: 1.2rem;
	color: #ddd;
	font-weight: 500;
}

.price-table-wrapper {
	margin-bottom: 2rem;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
}

.price-table th,
.price-table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-table th:last-child,
.price-table td:last-child {
	text-align: right;
	white-space: nowrap;
	min-width: 120px;
}

.price-table th:first-child,
.price-table td:first-child {
	width: 30%;
}

.price-table .service-name {
	font-weight: 500;
	color: #f5f5f5;
}

.price-table .service-description {
	font-size: 0.9rem;
	color: #aaa;
	width: 100%;
}

.price-table .service-price {
	font-weight: 500;
	color: #f5f5f5;
}

.service-icon {
	display: inline-block;
	width: 24px;
	text-align: center;
	margin-right: 8px;
	color: #999;
	font-size: 1.5rem;
}

.old-price {
	text-decoration: line-through;
	color: #888;
	font-size: 0.85em;
	margin-right: 8px;
	position: relative;
}

.new-price {
	font-weight: 700;
	color: #ff4757;
	position: relative;
}

.discount-badge {
	background-color: #ff4757;
	color: white;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.7em;
	font-weight: bold;
	margin-left: 8px;
	display: inline-block;
	position: relative;
	top: -1px;
}

.promo-highlight {
	background: linear-gradient(to right, rgba(255, 71, 87, 0.05), transparent);
	border-left: 3px solid #ff4757;
}

.regular-price {
	font-weight: 500;
	color: #f5f5f5;
}

.price-note {
	font-size: 0.9rem;
	color: #999;
	margin-top: 0.5rem;
	font-style: italic;
}

/* Bar section styles */
.bar-section {
	margin-bottom: 2.5rem;
}

.bar-section-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 1rem;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	margin-bottom: 1.5rem;
}

/* Específicamente para subcategorías dentro de bar-section-card */
#bar-confort .bar-section-card .subcategory {
	margin-top: 0;
}

.experience-pack-highlight {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.05));
	border: 1px solid rgba(102, 126, 234, 0.3);
	padding: 1.5rem;
	border-radius: 1rem;
	margin-bottom: 2rem;
}

.experience-pack-highlight p {
	color: #7086ec;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

.experience-pack-highlight i {
	margin-right: 0.5rem;
}

/* Notice section */
.notice {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 1.5rem;
	border-radius: 0.5rem;
	margin: 1.5rem 0;
}

.notice p {
	margin-bottom: 0.5rem;
}

.notice strong {
	color: #fff;
}

.contact-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.wpp {
	display: inline-flex;
	align-items: center;
	background-color: #25d366;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 2rem;
	font-weight: 500;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

.ig {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 2rem;
	font-weight: 500;
	font-size: 1rem;
	transition: opacity 0.3s ease;
}

/* Back to home button */
.back-to-home {
	display: inline-flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 2rem;
	color: #f5f5f5;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
	margin-top: 1rem;
}

.back-to-home:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.back-to-home i {
	margin-right: 0.5rem;
}

/* Footer */
footer {
	background-color: #111;
	color: #888;
	text-align: center;
	padding: 2rem 1rem;
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-mobile-break {
	display: none;
}

/* Responsive */
@media (max-width: 768px) {
	nav {
		padding: 0.75rem 1rem;
		position: fixed;
		width: 100%;
		left: 0;
		right: 0;
	}

	.logo {
		flex-shrink: 0;
	}

	.logo-image {
		height: 35px;
		transform: scale(2);
		transform-origin: left center;
	}

	.back-to-home-nav span.full-text {
		display: none;
	}

	header {
		padding: 5rem 1rem 2rem;
		margin-top: 10px;
	}

	header h1 {
		font-size: 2.5rem;
	}

	header p {
		font-size: 1.1rem;
	}

	.tabs-nav {
		margin: 0 auto 2rem auto;
		padding: 0.5rem;
		border-radius: 2rem;
		gap: 0.3rem;
		justify-content: center;
		max-width: 100%;
		overflow-x: auto;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.tabs-nav::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		padding: 0.6rem 1rem;
		font-size: 0.8rem;
		border-radius: 1.5rem;
		min-width: fit-content;
	}

	.price-section {
		padding: 1.5rem;
	}

	.price-category-v2 {
		font-size: 1.3rem;
	}

	.subcategory {
		text-align: center;
		font-size: 1.1rem;
	}

	.price-table {
		display: block;
		width: 100%;
		border: none;
	}

	.price-table tbody {
		display: block;
	}

	.price-table tr {
		display: block;
		padding: 0.75rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		margin-bottom: 0;
	}

	.price-table tr:last-child {
		border-bottom: none;
	}

	.price-table td {
		display: block;
		padding: 0.25rem 0;
		font-size: 0.9rem;
		border: none;
		width: 100%;
	}

	.price-table td:first-child {
		width: 100%;
	}

	.price-table td:last-child {
		text-align: left;
		font-weight: bold;
		color: #f5f5f5;
		margin-top: 0.5rem;
		width: 100%;
		min-width: auto;
	}

	.price-table .service-price {
		font-weight: 600;
	}

	#bar-confort .price-table {
		display: block;
	}

	#bar-confort .price-table tbody {
		display: block;
	}

	#bar-confort .price-table tr {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 0.5rem 0;
		margin-bottom: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	#bar-confort .price-table tr:last-child {
		border-bottom: none;
	}

	#bar-confort .price-table td {
		display: inline-block;
		border: none;
		padding: 0;
		width: auto;
	}

	#bar-confort .price-table td:first-child {
		width: auto;
	}

	#bar-confort .price-table td.service-name {
		flex: 1;
		text-align: left;
	}

	#bar-confort .price-table td.service-price {
		flex: 0 0 auto;
		text-align: right;
		padding-left: 1rem;
		margin-top: 0;
		min-width: auto;
	}

	.contact-buttons {
		justify-content: center;
		gap: 0.5rem;
	}

	.old-price {
		margin-right: 10px;
	}

	.back-to-home {
		width: 100%;
		justify-content: center;
		font-size: 0.9rem;
	}

	.footer-mobile-break {
		display: block;
	}
}

/* Small screens */
@media (max-width: 480px) {
	.logo-image {
		height: 30px;
		transform: scale(2.5);
	}

	.back-to-home-nav span.full-text {
		display: none;
	}

	header {
		padding: 4.5rem 0.75rem 1.5rem;
	}

	header h1 {
		font-size: 2rem;
	}

	header p {
		font-size: 1rem;
	}

	.tabs-nav {
		padding: 0.4rem;
		gap: 0.2rem;
		margin-bottom: 1.5rem;
	}

	.tab-btn {
		padding: 0.5rem 0.8rem;
		font-size: 0.75rem;
		min-width: fit-content;
	}

	section {
		padding: 2rem 0.75rem;
	}

	.price-section {
		padding: 1.25rem;
	}

	.price-category-v2 {
		font-size: 1.2rem;
	}

	.price-table th,
	.price-table td {
		padding: 0.5rem;
		font-size: 0.85rem;
	}

	.back-to-home {
		font-size: 0.85rem;
		padding: 0.65rem 1.25rem;
	}

	.footer-mobile-break {
		display: block;
	}
}

/* Extra small screens */
@media (max-width: 360px) {
	.tabs-nav {
		padding: 0.3rem;
	}

	.tab-btn {
		padding: 0.45rem 0.7rem;
		font-size: 0.7rem;
	}

	header h1 {
		font-size: 1.8rem;
	}

	.price-section {
		padding: 1rem;
	}

	.footer-mobile-break {
		display: block;
	}
}
