@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800;900&display=swap');

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
@media (min-width: 640px) {
	.container {
		padding: 0 24px;
	}
}
@media (min-width: 1024px) {
	.container {
		padding: 0 32px;
	}
}

body {
	margin: 0;
    font-family: 'Rubik', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}
/* NEW HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(102, 126, 234, 0.5) 0%, rgba(118, 75, 162, 0.5) 100%),
        url('/img/937679-61065.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
	                  radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	margin-bottom: 60px;
}

.nav-brand {
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-brand .logo {
	width: 40px;
	height: 40px;
}

.brand-name {
	color: white;
	font-size: 24px;
	font-weight: 700;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s;
}

.nav-links a:hover {
	opacity: 0.8;
}

.hero-main {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.2);
	padding: 8px 16px;
	border-radius: 20px;
	margin-bottom: 20px;
}

.badge-icon {
	font-size: 16px;
}

.badge-text {
	color: white;
	font-weight: 600;
	font-size: 14px;
}

.hero-title {
	color: white;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
}

.title-line {
	display: block;
}

.title-highlight {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	color: rgba(255,255,255,0.9);
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 40px;
}

.hero-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.feature {
	display: flex;
	align-items: flex-start;
	padding: 16px;
	background: rgba(255,255,255,0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	transition: all 0.3s;
}

.feature:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-2px);
}

.feature-text h4 {
	color: white;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 4px;
}

.feature-text p {
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	margin: 0;
}

.hero-actions {
	display: flex;
	gap: 20px;
}

.btn-primary, .btn-secondary {
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-primary {
	background: #ffd700;
	color: #333;
}

.btn-primary:hover {
	background: #ffed4e;
	transform: translateY(-2px);
}

.btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.btn-secondary:hover {
	background: white;
	color: #333;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.operator-card {
	background: white;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	width: 100%;
}

.card-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.operator-logo {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	object-fit: contain;
}

.operator-info h3 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 8px;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.operator-badge {
	background: linear-gradient(45deg, #10b981, #34d399);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.rating {
	text-align: right;
}

.rating-score {
	font-size: 24px;
	font-weight: 700;
	color: #ffd700;
}

.rating-stars {
	color: #ffd700;
	font-size: 16px;
}

.card-content {
	margin-bottom: 20px;
}

.bonus-display {
	text-align: center;
	margin-bottom: 15px;
}

.bonus-amount {
	font-size: 36px;
	font-weight: 800;
	color: #10b981;
	display: block;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bonus-text {
	font-size: 14px;
	color: #a0aec0;
}

.bonus-extra {
	text-align: center;
	color: #a0aec0;
	font-size: 14px;
}

.card-action {
	display: block;
	width: 100%;
	background: #667eea;
	color: white;
	padding: 12px;
	border-radius: 8px;
	border: none;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	text-decoration: none;
	text-align: center;
}

.card-action:hover {
	background: #5a67d8;
}

/* OPERATORS SECTION */
.operators {
	padding: 80px 0;
	background: #f8fafc;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	color: #1a202c;
	margin-bottom: 16px;
}

.section-description {
	font-size: 18px;
	color: #4a5568;
	max-width: 600px;
	margin: 0 auto;
}

.operators-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.operator-card {
	position: relative;
	background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	border-radius: 24px;
	padding: 0;
	box-shadow: 
		0 20px 40px rgba(0,0,0,0.4),
		0 0 0 1px rgba(255,255,255,0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	width: 100%;
	color: white;
}

.operator-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 
		0 32px 64px rgba(0,0,0,0.6),
		0 0 0 1px rgba(255,255,255,0.2);
}

.card-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.card-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
		linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.05) 50%, transparent 70%);
}

.card-header {
	position: relative;
	z-index: 2;
	padding: 32px 32px 24px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.operator-brand {
	display: flex;
	align-items: center;
	gap: 20px;
}

.operator-logo {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	object-fit: contain;
	background: rgba(255,255,255,0.1);
	padding: 8px;
	backdrop-filter: blur(10px);
}

.brand-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.operator-name {
	font-size: 32px;
	font-weight: 900;
	background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
	margin: 0;
	letter-spacing: -0.5px;
}

.operator-badge {
	background: linear-gradient(135deg, #10b981, #34d399);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
	align-self: flex-start;
}

.rating-section {
	text-align: right;
}

.rating-score {
	font-size: 28px;
	font-weight: 800;
	color: #ffd700;
	margin-bottom: 4px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.rating-stars {
	color: #ffd700;
	font-size: 18px;
	letter-spacing: 2px;
}

.card-body {
	position: relative;
	z-index: 2;
	padding: 0 32px 24px;
}

.bonus-section {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
	margin-bottom: 24px;
	border: 1px solid rgba(255,255,255,0.1);
}

.bonus-amount {
	font-size: 48px;
	font-weight: 900;
	color: #10b981;
	margin-bottom: 8px;
	text-shadow: 0 4px 8px rgba(0,0,0,0.3);
	letter-spacing: -2px;
}

.bonus-text {
	font-size: 16px;
	color: #e2e8f0;
	margin-bottom: 8px;
	font-weight: 500;
}

.bonus-extras {
	font-size: 14px;
	color: #94a3b8;
	font-weight: 500;
}

.features-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.feature {
	font-size: 14px;
	color: #cbd5e1;
	padding: 8px 12px;
	background: rgba(255,255,255,0.05);
	border-radius: 8px;
	text-align: center;
	font-weight: 500;
	border: 1px solid rgba(255,255,255,0.1);
}

.card-footer {
	position: relative;
	z-index: 2;
	padding: 0 32px 32px;
}

.play-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 18px 32px;
	border-radius: 16px;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
	border: none;
	cursor: pointer;
}

.play-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
	background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.button-text {
	flex: 1;
	text-align: center;
}

.button-arrow {
	font-size: 20px;
	transition: transform 0.3s;
}

.play-button:hover .button-arrow {
	transform: translateX(4px);
}

/* FAQ SECTION */
.faq {
	padding: 80px 0;
	background: white;
}

.faq-content {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #f8fafc;
	border-radius: 12px;
	margin-bottom: 16px;
	overflow: hidden;
	transition: all 0.3s;
}

.faq-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px;
	cursor: pointer;
	background: white;
	border-bottom: 1px solid #e2e8f0;
	transition: all 0.3s;
}

.faq-question:hover {
	background: #f7fafc;
}

.faq-question h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1a202c;
	margin: 0;
	flex: 1;
	padding-right: 20px;
}

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	color: #667eea;
	transition: transform 0.3s;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 24px;
	max-height: 200px;
}

.faq-answer p {
	color: #4a5568;
	line-height: 1.6;
	margin: 0;
	font-size: 16px;
}

/* CONTACT SECTION */
.contact {
	padding: 80px 0;
	background: #f8fafc;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.info-card {
	background: white;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	text-align: center;
	transition: all 0.3s;
}

.info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.info-card h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #1a202c;
}

.info-card p {
	font-size: 16px;
	font-weight: 600;
	color: #667eea;
	margin-bottom: 8px;
}

.info-card span {
	font-size: 14px;
	color: #666;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-weight: 600;
	color: #1a202c;
	font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s;
	background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-group {
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #667eea;
}

.checkbox-label a {
	color: #667eea;
	text-decoration: none;
}

.checkbox-label a:hover {
	text-decoration: underline;
}

.submit-btn {
	background: #667eea;
	color: white;
	padding: 16px 32px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	align-self: flex-start;
}

.submit-btn:hover {
	background: #5a67d8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* FOOTER */
.footer {
	background: #1a202c;
	color: white;
	padding: 60px 0 20px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 60px;
	margin-bottom: 40px;
}

.footer-brand {
	margin-bottom: 30px;
}

.brand-logo {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-logo {
	width: 40px;
	height: 40px;
}

.brand-text h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 4px;
}

.brand-tagline {
	color: #a0aec0;
	font-size: 14px;
}

.brand-description {
	color: #a0aec0;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.footer-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	color: white;
}

.footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-list li {
	margin-bottom: 12px;
}

.footer-link {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-link:hover {
	color: white;
}

.footer-regulatory {
	margin-bottom: 40px;
	padding-top: 40px;
	border-top: 1px solid #2d3748;
}

.regulatory-header {
	text-align: center;
	margin-bottom: 30px;
}

.regulatory-header h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

.regulatory-header p {
	color: #a0aec0;
}

.regulatory-logos {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.reg-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	background: #2d3748;
	border-radius: 8px;
	text-decoration: none;
	color: white;
	transition: all 0.3s;
}

.reg-logo:hover {
	background: #4a5568;
	transform: translateY(-2px);
}

.reg-logo img {
	width: 30px;
	height: 30px;
}

.reg-info {
	display: flex;
	flex-direction: column;
}

.reg-name {
	font-weight: 600;
	font-size: 14px;
}

.reg-desc {
	font-size: 12px;
	color: #a0aec0;
}

.footer-disclaimer {
	background: #2d3748;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 30px;
}

.disclaimer-content {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.disclaimer-icon {
	font-size: 24px;
}

.disclaimer-text h5 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.disclaimer-text p {
	color: #a0aec0;
	line-height: 1.6;
	font-size: 14px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #2d3748;
}

.footer-copyright {
	color: #a0aec0;
	font-size: 14px;
}

.footer-legal {
	display: flex;
	gap: 20px;
}

.legal-link {
	color: #a0aec0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.legal-link:hover {
	color: white;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
	.hero-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.hero-title {
		font-size: 36px;
	}
	
	.nav-links {
		display: none;
	}
	
	.operators-grid {
		grid-template-columns: 1fr;
	}
	
	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-links {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.regulatory-logos {
		flex-direction: column;
		align-items: center;
	}
	
	.footer-bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/* BAR 18+ NOTICE */
.notice-18 {
	background: #1a202c;
	color: white;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	z-index: 1000;
}

.notice-18 .container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

@media (min-width: 768px) {
	.notice-18 .container {
		flex-direction: row;
		justify-content: space-between;
	}
}

.notice-18 .d-flex {
	display: flex;
	align-items: center;
	gap: 8px;
}

.badge-18 {
	background: #ef4444;
	color: white;
	padding: 4px 8px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 12px;
}

.btn {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	font-size: 12px;
	transition: all 0.3s;
	border: none;
	cursor: pointer;
}

.btn-dark {
	background: #374151;
	color: white;
}

.btn-dark:hover {
	background: #4b5563;
}

.btn-sm {
	padding: 4px 8px;
	font-size: 11px;
}

.me-1 {
	margin-right: 4px;
}

.gap-2 {
	gap: 8px;
}

/* hero */
.pt-hero {
    font-family:
		'Rubik',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Arial,
		sans-serif;
	color: #0f172a;
}
.hero-wrap {
	background:
		linear-gradient(180deg, #08203a, #0b2a47),
		url('') center/cover no-repeat;
	color: #fff;
	padding: 60px 0 100px;
	position: relative;
}
.hero-wrap h1 {
	margin: 0 0 10px;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0.2px;
}
.hero-wrap .lead {
	max-width: 62ch;
	margin: 0 0 16px;
	color: #dbeafe;
}
@media (min-width: 768px) {
	.hero-wrap h1 {
		font-size: 40px;
	}
}

/* feature badges */
.badges {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.badges li {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 8px 12px;
	border-radius: 999px;
}
.badges .ico {
	filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.2));
}

/* headings */
.list-head {
	display: none;
	margin: 16px 0 6px;
	color: #0b3b5a;
	font-weight: 800;
}
@media (min-width: 900px) {
	.list-head {
		display: grid;
		grid-template-columns: 2fr 1.4fr 1fr 1.4fr;
		gap: 10px;
	}
}

/* row */
.list-row {
	display: grid;
	gap: 10px;
	border: 1px solid #e6edf5;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
	padding: 14px;
}
@media (min-width: 900px) {
	.list-row {
		grid-template-columns: 2fr 1.4fr 1fr 1.4fr;
		align-items: center;
	}
}
.list-row > div {
	padding: 6px;
}

/* cell labels for mobile */
.list-row > div::before {
	content: attr(data-label);
	display: block;
	font-size: 12px;
	color: #64748b;
	margin-bottom: 4px;
	font-weight: 700;
}
@media (min-width: 900px) {
	.list-row > div::before {
		content: none;
	}
}

/* casa */
/* .casa {
	display: grid;
	grid-template-columns: auto 72px 1fr;
	gap: 10px;
	align-items: center;
} */
.casa .rank {
	background: #2563eb;
	color: #fff;
	font-weight: 900;
	border-radius: 8px;
	padding: 6px 8px;
}
.casa .logo {
	width: auto;
	height: 100px;
	background: #0f3224;
	border: 1px solid #1e4b36;
	border-radius: 12px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.18s ease;
}

/* bonus */
.bonus .b-main {
	font-size: 20px;
	color: #0b4a86;
	font-weight: 800;
}
.bonus .b-sub {
	color: #0f172a;
}

/* rating */
.rate .score {
	font-size: 30px;
	font-weight: 900;
	color: #374151;
	line-height: 1;
}
.rate .stars {
	color: #f59e0b;
	font-size: 18px;
	letter-spacing: 2px;
}
.rate .votes {
	font-size: 12px;
	color: #64748b;
}

/* cta */
.cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}
@media (min-width: 900px) {
	.cta {
		align-items: flex-end;
	}
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #16a34a;
	color: #fff;
	text-decoration: none;
	font-weight: 800;
	border-radius: 12px;
	padding: 12px 16px;
	border: 1px solid #12893f;
	transition: 0.18s ease;
}
.btn:hover {
	filter: brightness(0.98);
	transform: translateY(-1px);
}
.tnc {
	color: #64748b;
	font-size: 12px;
}

* {
	box-sizing: border-box;
}
.pt-wrap {
    font-family:
		'Rubik',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Arial,
		sans-serif;
	color: #0f172a;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
@media (min-width: 640px) {
	.container {
		padding: 0 24px;
	}
}
@media (min-width: 1024px) {
	.container {
		padding: 0 32px;
	}
}

/* Responsável: layout invertido – texto à esquerda, ações à direita */
.resp {
	background: linear-gradient(180deg, #f0f9ff, #ffffff);
	padding: 36px 0 22px;
}
.grid {
	display: grid;
	gap: 18px;
}
@media (min-width: 960px) {
	.grid {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: start;
	}
}

.kicker {
	display: inline-block;
	background: #0ea5e9;
	color: #fff;
	font-weight: 900;
	border-radius: 999px;
	padding: 6px 10px;
	margin: 0 0 8px;
}
.resp h1 {
	margin: 0.1rem 0 0.5rem;
	line-height: 1.15;
	font-size: 30px;
	font-weight: 900;
	color: #0b3b5a;
}
@media (min-width: 768px) {
	.resp h1 {
		font-size: 36px;
	}
}
.lead {
	max-width: 60ch;
	color: #334155;
}

.h6 {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0369a1;
	margin: 0.2rem 0 0.6rem;
}
.checks {
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
}
.checks li {
	position: relative;
	padding-left: 22px;
	margin: 8px 0;
}
.checks li::before {
	content: '✔';
	position: absolute;
	left: 0;
	top: 0.15rem;
	color: #10b981;
	font-weight: 900;
}
.note {
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 10px 12px;
	color: #475569;
}

/* Guia regulado */
.reg {
	padding: 24px 0 40px;
	background: #fff;
}
.center {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 18px;
}
.center h2 {
	margin: 0 0 6px;
	font-weight: 900;
	font-size: 26px;
}
@media (min-width: 768px) {
	.center h2 {
		font-size: 30px;
	}
}
.center .sub {
	color: #475569;
	margin: 0 auto;
	max-width: 68ch;
}

.cards {
	display: grid;
	gap: 14px;
	margin-top: 12px;
}
@media (min-width: 720px) {
	.cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
.card {
	background: #ffffff;
	border: 1px solid #e6edf5;
	border-radius: 16px;
	padding: 16px;
	box-shadow: 0 10px 26px rgba(16, 24, 40, 0.06);
}
.card h3 {
	margin: 0.1rem 0 0.4rem;
	font-size: 18px;
	color: #0b3b5a;
}
.card p {
	margin: 0;
	color: #334155;
	line-height: 1.7;
}

.pt-footer {
	background: linear-gradient(180deg, #0f291d, #0b2017);
	color: #eaf2ee;
	font-family:
		'Rubik',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Arial,
		sans-serif;
}
.pt-footer a {
	color: #b9f2d2;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.pt-footer a:hover {
	opacity: 0.95;
}
.ft-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 16px;
}
@media (min-width: 640px) {
	.ft-container {
		padding: 36px 24px;
	}
}
@media (min-width: 1024px) {
	.ft-container {
		padding: 44px 32px;
	}
}

/* -------- Top row -------- */
.ft-top {
	display: grid;
	gap: 18px;
}
@media (min-width: 900px) {
	.ft-top {
		grid-template-columns: 1.3fr 0.7fr;
		align-items: start;
		gap: 22px;
	}
}
.ft-about .age {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #c6f6d5;
	color: #124a2f;
	display: grid;
	place-items: center;
	font-weight: 900;
	margin-bottom: 6px;
}
.ft-about h2 {
	margin: 0.1rem 0 0.4rem;
	font-size: 20px;
	color: #d7ffee;
}
.ft-about p {
	margin: 0;
	color: #cfe6da;
	line-height: 1.7;
}
.ft-help h3 {
	margin: 0.15rem 0 0.4rem;
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #a7ffcf;
}
.ft-help ul {
	list-style: none;
	margin: 0 0 8px;
	padding: 0;
	display: grid;
	gap: 6px;
}
.ft-help li a {
	display: inline-block;
	background: #0f3224;
	border: 1px solid #1e4b36;
	border-radius: 10px;
	padding: 8px 10px;
	text-decoration: none;
	color: #d6ffe9;
}
.ft-help li a:hover {
	background: #13402d;
}
.ft-help .mini {
	margin: 2px 0 0;
	color: #b7d7c8;
	font-size: 12px;
}

/* -------- Logos -------- */
.ft-logos {
	margin: 22px 0 10px;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
	.ft-logos {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1024px) {
	.ft-logos {
		grid-template-columns: repeat(5, 1fr);
	}
}
.fot-logo {
	background: #0f3224;
	border: 1px solid #1e4b36;
	border-radius: 12px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.18s ease;
}
.fot-logo:hover {
	transform: translateY(-2px);
	background: #123a2b;
}
.fot-logo img {
	max-height: 50px;
	width: auto;
}

/* -------- Bottom -------- */
.ft-bottom {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid #1e4b36;
	display: grid;
	gap: 10px;
}
@media (min-width: 760px) {
	.ft-bottom {
		grid-template-columns: 1fr auto;
		align-items: center;
	}
}
.ft-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
}
.ft-links a {
	text-decoration: none;
	color: #d6ffe9;
	border-bottom: 1px dashed transparent;
}
.ft-links a:hover {
	border-bottom-color: #d6ffe9;
}
.ft-copy {
	color: #b7d7c8;
	font-size: 12px;
	text-align: left;
}
@media (min-width: 760px) {
	.ft-copy {
		text-align: right;
	}
}

.logo-head {
	display: flex;
	align-items: center;
	gap: 10px;

	font-size: 20px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;

	border: 3px solid #0bb07a;
	width: fit-content;
	padding: 10px 15px;
	border-radius: 20px;
	margin: 0 auto 40px;

	transition: all 0.5s ease;
}

.logo-head:hover {
	border: 3px solid #fff;
}

.logo-head img {
	width: 50px;
}

.cc {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;

	backdrop-filter: blur(6px);
	padding: 12px;
}
.cc.hidden {
	display: none;
}
.cc__inner {
	max-width: 980px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e6edf5;
	border-radius: 14px;
	padding: 14px;
	box-shadow: 0 8px 24px rgba(16, 24, 40, 0.15);
	display: grid;
	gap: 10px;
	align-items: center;
	font-family:
		'Rubik',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Arial,
		sans-serif;
	color: #0f172a;
}
@media (min-width: 720px) {
	.cc__inner {
		grid-template-columns: 1fr auto;
		gap: 16px;
	}
}
.cc__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #334155;
}
.cc__text a {
	color: #0b5aa2;
}
.cc__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-start;
}
@media (min-width: 720px) {
	.cc__actions {
		justify-content: flex-end;
	}
}
.cc__btn {
	appearance: none;
	cursor: pointer;
	border-radius: 10px;
	padding: 10px 14px;
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	transition: 0.18s;
}
.cc__btn--primary {
	background: #10b981;
	color: #0b1324;
	border-color: #0bb07a;
}
.cc__btn--primary:hover {
	filter: brightness(0.97);
	transform: translateY(-1px);
}
.cc__btn--ghost {
	background: #f0f9ff;
	color: #0b3b5a;
	border-color: #cfe8fb;
}
.cc__btn--ghost:hover {
	background: #e8f3ff;
}
@media (prefers-reduced-motion: reduce) {
	.cc__btn,
	.cc__inner {
		transition: none;
	}
}
.ag {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family:
		'Rubik',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Arial,
		sans-serif;
}
.ag--hidden {
	display: none;
}
.ag__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.6);
}
.ag__box {
	position: relative;
	z-index: 1;
	max-width: 520px;
	width: calc(100% - 32px);
	background: #ffffff;
	border: 1px solid #e6edf5;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 18px 50px rgba(16, 24, 40, 0.22);
	text-align: center;
	color: #0f172a;
	display: grid;
	gap: 12px;
}
@media (min-width: 640px) {
	.ag__box {
		padding: 24px;
	}
}
.ag__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 2px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: #ecfeff;
	color: #0e7490;
	font-weight: 900;
}
.ag__title {
	margin: 0;
	font-size: 22px;
	font-weight: 900;
}
.ag__text {
	margin: 0;
	color: #334155;
}
.ag__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 4px;
}
.ag__btn {
	appearance: none;
	cursor: pointer;
	border-radius: 12px;
	padding: 10px 14px;
	font-weight: 800;
	font-size: 14px;
	border: 1px solid transparent;
	transition: 0.18s ease;
}
.ag__btn--ok {
	background: #10b981;
	color: #0b1324;
	border-color: #0bb07a;
}
.ag__btn--ok:hover {
	filter: brightness(0.97);
	transform: translateY(-1px);
}
.ag__btn--no {
	background: #f0f9ff;
	color: #0b3b5a;
	border-color: #cfe8fb;
}
.ag__btn--no:hover {
	background: #e8f3ff;
}
.ag__note {
	margin: 2px 0 0;
	color: #64748b;
	font-size: 12px;
}
.ag-lock {
	overflow: hidden;
}

.text-section {
	max-width: 960px;
	margin: 0 auto;
	padding: 16px;
	font-family:
		'Rubik',
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Arial,
		sans-serif;
	color: #0f172a;
	line-height: 1.75;
}
.text-section .lead {
	color: #475569;
	margin-top: 0.25rem;
}
.text-section h1 {
	font-size: 1.75rem;
	line-height: 1.2;
	margin: 0.25rem 0 0.5rem;
	font-weight: 900;
}
.text-section h2 {
	font-size: 1.25rem;
	line-height: 1.35;
	margin: 1.25rem 0 0.5rem;
	font-weight: 800;
	color: #0b3b5a;
}
.text-section p {
	margin: 0.5rem 0;
}
.text-section ul {
	margin: 0.25rem 0 0.75rem 1.25rem;
}
.text-section li {
	margin: 0.25rem 0;
}
.text-section a {
	color: #0b5aa2;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
}
@media (min-width: 640px) {
	.text-section {
		padding: 20px;
	}
	.text-section h1 {
		font-size: 2rem;
	}
	.text-section h2 {
		font-size: 1.375rem;
	}
}
@media (min-width: 1024px) {
	.text-section {
		padding: 24px;
	}
	.text-section h1 {
		font-size: 2.2rem;
	}
	.text-section h2 {
		font-size: 1.5rem;
	}
}

/* SIMPLE HEADER STYLES */
.header {
	background: white;
	border-bottom: 1px solid #e2e8f0;
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-brand {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.3s;
}

.header-brand:hover {
	opacity: 0.8;
}

.header-logo {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.header-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a202c;
	margin-left: 12px;
	text-decoration: none;
}

/* PAGE CONTENT STYLES */
.page-content {
	padding: 40px 0;
	background: #f8fafc;
	min-height: calc(100vh - 200px);
}

.page-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1a202c;
	text-align: center;
	margin-bottom: 20px;
	line-height: 1.2;
}

.page-subtitle {
	font-size: 1.2rem;
	color: #4a5568;
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.5;
}

.content-section {
	background: white;
	border-radius: 12px;
	padding: 40px;
	margin-bottom: 30px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	border: 1px solid #e2e8f0;
}

.content-section h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: #1a202c;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e2e8f0;
}

.content-section h3 {
	font-size: 1.4rem;
	font-weight: 600;
	color: #2d3748;
	margin: 30px 0 15px 0;
}

.content-section p {
	font-size: 1rem;
	line-height: 1.7;
	color: #4a5568;
	margin-bottom: 20px;
}

.content-section ul {
	margin: 20px 0;
	padding-left: 20px;
}

.content-section li {
	font-size: 1rem;
	line-height: 1.7;
	color: #4a5568;
	margin-bottom: 10px;
}

.content-section a {
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}

.content-section a:hover {
	color: #5a67d8;
	text-decoration: underline;
}

/* RESPONSIVE STYLES FOR PAGES */
@media (max-width: 768px) {
	.header-title {
		font-size: 20px;
		margin-left: 8px;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.content-section {
		padding: 24px;
		margin-bottom: 20px;
	}
	
	.content-section h2 {
		font-size: 1.5rem;
	}
	
	.content-section h3 {
		font-size: 1.2rem;
	}
}
