@font-face {
    font-family: 'Neuemontreal';
    src: url('../../css/fonts/NeueMontreal-Medium.otf') format('opentype');
}
:root,
.not-dark {
	--cnvs-themecolor: #0037ff;
	--cnvs-themecolor-rgb: 0, 55, 255;
	--cnvs-primary-font: 'Neuemontreal', Arial, sans-serif;
	--cnvs-body-font: tenon, sans-serif;

	--cnvs-border-radius: 35px;

	--cnvs-dark-0: #f5f5f5;
	--cnvs-dark-100: #e1e1e7;

	--cnvs-font-size-body: 1.25rem;

}

body.dark {
	--cnvs-themecolor: #baff00;
	--cnvs-themecolor-rgb: 186, 255, 0;

	--cnvs-body-bg: var(--cnvs-dark-0);

	--cnvs-dark-0: #0f0f0f;
	--cnvs-dark-100: #1a1a1b;
}

* {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}


#header {
	--cnvs-header-height: 70px;
	--cnvs-header-floating-bg: rgba(240, 240, 240, 0.85);
	--cnvs-primary-menu-font: var(--cnvs-body-font);
	--cnvs-primary-menu-font-weight: 500;
	--cnvs-primary-menu-font-size: 1.125rem;
	--cnvs-primary-menu-tt:	none;
	--cnvs-primary-menu-ls:	0;
	--cnvs-header-floating-top-offset: 0;
	--cnvs-primary-menu-color: var(--cnvs-contrast-800);
	--cnvs-primary-menu-active-color: var(--cnvs-contrast-1000);
	--cnvs-primary-menu-hover-color: var(--cnvs-contrast-1000);
	--cnvs-top-search-placeholder: var(--cnvs-contrast-500);
	--cnvs-primary-menu-submenu-hover-bg: rgba(var(--cnvs-contrast-rgb),0.1);
}

.dark #header {
	--cnvs-header-floating-bg: rgba(42, 42, 43, 0.85);
	--cnvs-primary-menu-color: var(--cnvs-contrast-500);
	--cnvs-primary-menu-active-color: var(--cnvs-contrast-1000);
	--cnvs-primary-menu-hover-color: var(--cnvs-contrast-1000);
	--cnvs-top-search-placeholder: var(--cnvs-contrast-300);
}


.is-expanded-menu #header-wrap,
.is-expanded-menu .sticky-header #header-wrap {
    position: fixed !important;
    top: 15px;
    background-color: transparent;
    border: 0;
}

.is-expanded-menu #header.transparent-header.floating-header .container {
	border-radius: var(--cnvs-border-radius);
	max-width: calc(100% - 30px);
	backdrop-filter: blur(.5rem);
	-webkit-backdrop-filter: blur(.5rem);
}

.is-expanded-menu .style-3 .menu-container > .menu-item.current > .menu-link {
	--cnvs-primary-menu-active-color: var(--cnvs-contrast-1000);
    background-color: var(--cnvs-primary-menu-submenu-hover-bg);
}

.is-expanded-menu .style-3 .menu-container > .menu-item > .menu-link {
	--cnvs-primary-menu-padding-x: 20px;
	--cnvs-primary-menu-padding-y: 8px;
	margin: 10px 2px;
	border-radius: var(--cnvs-border-radius);
}

.card,
.portfolio-image {
	--bs-card-border-width: 0;
	--bs-card-bg: var(--cnvs-dark-100);
}

.portfolio-item .portfolio-image, .portfolio-item .portfolio-image > a, .portfolio-item .portfolio-image img {
	border-radius: var(--cnvs-border-radius);
}

.portfolio .bg-overlay-content {
	text-align: center;
}

.is-expanded-menu .portfolio .bg-overlay-content::before {
	--cnvs-blur-offset: 100px;
	content: "";
	position: absolute;
	width: calc(100% - var(--cnvs-blur-offset));
	height: calc(100% - var(--cnvs-blur-offset));
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: var(--cnvs-border-radius) !important;
	transition-property: width,height;
	transition-duration: .3s;
	transition-timing-function: ease;
	transform-origin: center center;

}

.portfolio .bg-overlay:not(.no-hover-blur):hover .bg-overlay-content::before {
	--cnvs-blur-offset: 50px;
	background-color: rgba(248, 248, 250, 0.1);
	backdrop-filter: blur(1.5rem);
	-webkit-backdrop-filter: blur(1.5rem);
}

.is-expanded-menu .bg-overlay .portfolio-desc {
	max-width: 60%;
	margin: 0 auto;
}

.bg-overlay .portfolio-desc h3 {
	font-size: 1.85rem;
	margin-bottom: 0;
	transition: transform .3s ease;
	font-style: italic;
}

.bg-overlay:hover .portfolio-desc h3 {
	transform: translateY(-7px);
}

.portfolio .bg-overlay-content p {
	transform: translateY(20px);
	opacity: 0;
	height: 0;
	margin-bottom: 0;
	transition: all .3s ease;
	font-size: 1.25rem;
	line-height: 1.4;
}

.portfolio .bg-overlay:hover p {
	opacity: 1;
	visibility: visible;
	transform: translateY(10px);
}

/* .flex-prev,
.flex-next {
	--cnvs-slider-arrows-size: 40px;
	top: auto;
	bottom: 20px;
	transform: none;
	border-radius: 50%;
	--cnvs-slider-arrows-bg-hover-color: rgba(255,255,255,1);
	--cnvs-slider-arrows-bg-color: rgba(255,255,255,0.2);
	--cnvs-slider-arrow-color: #000;
	backdrop-filter: blur(.5rem);
	-webkit-backdrop-filter: blur(.5rem);
}

.flex-prev {
	left: calc(50% - 24px);
	right: auto;
}

.flex-next {
	left: calc(50% + 24px);
	right: auto;
} */


.flex-direction-nav {
	position: absolute;
	top: auto;
	bottom: 20px;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
	column-gap: 10px;
	z-index: 9;
}

.flex-prev,
.flex-next {
	--cnvs-slider-arrows-size: 40px;
	position: relative;
	display: block;
	top: auto !important;
	bottom: auto !important;
	left: auto !important;
	right: auto !important;
	transform: none !important;
	border-radius: 50%;
	--cnvs-slider-arrows-bg-hover-color: rgba(255,255,255,1);
	--cnvs-slider-arrows-bg-color: rgba(255,255,255,0.25);
	--cnvs-slider-arrow-color: #000;
	backdrop-filter: blur(.75rem);
	-webkit-backdrop-filter: blur(.75rem);
}

.twitter-timeline {
	height: 100%;
}

.form-control {
	--cnvs-input-btn-input-bg : var(--cnvs-dark-100);
	--cnvs-form-control-radius : var(--cnvs-border-radius);

	--cnvs-input-btn-border-width: 0;
}


.text-fill-effect,
.gradient-text {
  text-shadow: none !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
}

.text-fill-effect {
	--cnvs-text-fill-placeholder: rgba(var(--cnvs-contrast-rgb), 0.1);
	--cnvs-text-fill-color: linear-gradient(to right, var(--cnvs-contrast-1000), var(--cnvs-contrast-1000));
	-webkit-text-fill-color: var(--cnvs-text-fill-placeholder);
	background-image: var(--cnvs-text-fill-color);
	background-size: calc(var(--cnvs-scroll-start) * 100%) 100%;
}

 .hero-section-special{
	background: #f9f9f9;
	color: #000;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.hero-title {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 25px;
	text-align: center;
}

.hero-subtitle {
	font-size: 1.2rem;
	line-height: 1.6;
	color: #cccccc;
	margin-bottom: 50px;
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.feature-card {
	background: rgb(239 239 239 / 22%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #6c9f71 0%, #9fcd56 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 2rem;
	color: white;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.feature-description {
	font-size: 1rem;
	line-height: 1.6;
	color: #b0b0b0;
	margin-bottom: 0;
}

.cta-button {
	background: linear-gradient(135deg, #efae36 0%, #9fcd56 100%);
	color: white;
	padding: 18px 50px;
	font-size: 1.2rem;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 10px 30px rgba(65, 105, 225, 0.3);
	display: inline-block; /* Importante para links se comportarem como botões */
	text-decoration: none; /* Remove underline dos links */
	margin: 10px; /* Espaçamento entre botões */
}

.cta-button:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #9fcd56 0%, #efae36 100%);
	color: white; /* Mantém texto branco no hover */
}

.cta-container {
	text-align: center;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	padding: 0 15px; /* Padding lateral */
}


/* Mobile */
@media (max-width: 768px) {
	.cta-container {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.cta-button {
		width: 100%;
		max-width: 350px;
		padding: 16px 30px;
		font-size: 1rem;
		margin: 0;
		text-align: center;
	}
}

/* Tablets */
@media (max-width: 991px) and (min-width: 769px) {
	.cta-button {
		padding: 16px 40px;
		font-size: 1.1rem;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.feature-card {
		margin-bottom: 25px;
	}

	.cta-button {
		padding: 15px 40px;
		font-size: 1rem;
	}
}

.credibility-section {
	color: #0a0a0a;
	position: relative;
	background: #f9f9f9;
	padding: 80px 0 0 0;
}

.subtitle {
	font-size: 1.3rem;
	line-height: 1.7;
	color: #b0b0b0;
	text-align: center;
	max-width: 950px;
	margin: 0 auto 80px;
	font-weight: 400;
}

.stats-container {
	display: flex;
	justify-content: center;
	gap: 0;
	margin-bottom: 80px;
	flex-wrap: wrap;
}

.stat-item {
	flex: 1;
	min-width: 250px;
	text-align: center;
	padding: 30px 40px;
	position: relative;
}

.stat-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.1);
}

.stat-number {
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #9fcd56 0%, #efae36 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	font-size: 1.1rem;
	color: #b0b0b0;
	font-weight: 500;
	line-height: 1.4;
}

.trainer-image-container {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
}

.trainer-image {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

@media (max-width: 992px) {
	.main-title {
		font-size: 2.8rem;
	}

	.subtitle {
		font-size: 1.1rem;
	}

	.stat-number {
		font-size: 3.5rem;
	}

	.stat-item:not(:last-child)::after {
		display: none;
	}

	.stat-item {
		min-width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.stat-item:last-child {
		border-bottom: none;
	}
}

@media (max-width: 576px) {
	.main-title {
		font-size: 2rem;
	}

	.subtitle {
		font-size: 1rem;
		margin-bottom: 50px;
	}

	.stat-number {
		font-size: 2.8rem;
	}

	.stat-label {
		font-size: 0.95rem;
	}

	.credibility-section {
		padding: 60px 0 0;
	}
}

.programas {
	padding: 80px 0;
	background-color: #fff;
}

.video-section{
	padding: 80px 0;
}

.questions {
	padding: 80px 0;
}

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

.accordion-item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 10px;
	border: none !important;
}

.accordion-header {
	background-color: #f9f9f9;
	padding: 15px;
	cursor: pointer;
	font-size: 1.3rem;
	color: #333;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s;
}

.accordion-header:hover {
	background-color: #f0f0f0;
}

.accordion-header::after {
	content: '+';
	font-size: 1.5rem;
	color: #ff6b6b;
}

.accordion-item.active .accordion-header::after {
	content: '−';
}

.accordion-content {
	display: none;
	padding: 15px;
	font-size: 1.1rem;
	background-color: #fff;
	text-align: left;
}

.accordion-item.active .accordion-content {
	display: block;
}

.precos{
	padding: 80px 0;
}

.testemunhos-section{
	padding: 80px 0;
}

.acompanhamento{
	padding: 80px 0;
}

.forWho{
	padding: 80px 0;
	background-color: #f9f9f9;
}

.testemunhos-section-2{
	padding: 80px 0;
	background-color: #f9f9f9;
}

.calculator-container {
	margin: 0 auto;
}

.calculator-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calculator-title {
	font-size: 2rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	text-align: center;
}

.calculator-subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 30px;
	text-align: center;
}

.form-label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.form-control, .form-select {
	border-radius: 10px;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
	border-color: #ff6b00;
	box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
}

.result-box {
	background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
	color: white;
	padding: 25px;
	border-radius: 15px;
	text-align: center;
	margin-top: 30px;
}

.result-label {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
	opacity: 0.9;
}

.result-value {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
}

.result-unit {
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 5px;
	opacity: 0.9;
}

.mb-4 {
	margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
	.calculator-card {
		padding: 25px;
	}

	.calculator-title {
		font-size: 1.5rem;
	}

	.result-value {
		font-size: 2.5rem;
	}
}

 .subscription-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}


.subscription-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 25px;
}

.subscription-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333;
	margin-bottom: 15px;
}

.subscription-text b {
	font-weight: 600;
}

.email-note {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin-top: 15px;
}

.subscription-form {
	max-width: 550px;
	margin: 40px auto 0;
}

.email-input {
	border-radius: 50px;
	padding: 16px 24px;
	font-size: 1rem;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
}

.email-input:focus {
	border-color: #ff6b00;
	box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
}

.subscribe-btn {
	background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
	color: white;
	padding: 16px 40px;
	font-size: 1.1rem;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.subscribe-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.message-box {
	margin-top: 20px;
	padding: 15px;
	border-radius: 10px;
	display: none;
}

.message-box.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

.message-box.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block;
}

@media (max-width: 768px) {
	.subscription-title {
		font-size: 1.8rem;
	}

	.subscription-text {
		font-size: 1rem;
	}

	.email-subscription-section {
		padding: 50px 0;
	}

	.trainer-photo {
		width: 120px;
		height: 120px;
	}
}

.image-plan img {
	max-width: 100%;
    border-radius: 10px!important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.callToAction{
	padding: 80px 0;
	background-color: #f9f9f9;
}

.circuloAtivoSection{
	padding: 80px 0;
}

.modal-dialog {
	max-width: 650px;
}

.modal-content {
	border: none;
	border-radius: 50px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	background: #ffffff;
	overflow: hidden;
}

.modal-header {
	background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
	border: none;
	padding: 35px 40px;
	position: relative;
}

.modal-title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
}

.btn-close {
	filter: none;
	opacity: 1;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	backdrop-filter: blur(10px);
	transition: all 0.2s ease;
}

.btn-close:hover {
	background: rgba(255, 255, 255, 0.3) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	transform: scale(1.1);
}

.modal-body {
	padding: 40px;
	background: #fafbfc;
}

.form-label {
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 10px;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control, 
.form-select {
	border-radius: 16px;
	padding: 16px 20px;
	border: 2px solid transparent;
	font-size: 1rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:hover,
.form-select:hover {
	border-color: #e5e7eb;
}

.form-control:focus, 
.form-select:focus {
	border-color: #ff8c00;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	background: #ffffff;
	outline: none;
}

.form-control::placeholder {
	color: #9ca3af;
	font-weight: 400;
}

.price-box {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	padding: 20px;
	border-radius: 16px;
	text-align: center;
	border: 2px solid #fbbf24;
}

.price-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #92400e;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.price-highlight {
	color: #b91c1c;
	font-weight: 900;
	font-size: 2.5rem;
	display: block;
	line-height: 1;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
	background: linear-gradient(135deg, #efae36 0%, #9fcd56 100%);
	border: none;
	border-radius: 50px;
	padding: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 40px -5px rgba(102, 126, 234, 0.5);
}

.btn-primary:active {
	transform: translateY(-1px);
}

.btn-primary.loading {
	opacity: 0.8;
	cursor: not-allowed;
	transform: none;
}

.alert {
	border-radius: 16px;
	border: none;
	padding: 18px 24px;
	font-weight: 500;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.alert-success {
	background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
	color: #065f46;
	border-left: 4px solid #10b981;
}

.alert-danger {
	background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
	color: #991b1b;
	border-left: 4px solid #ef4444;
}

/* Grid layout para campos */
.row-cols-2 > * {
	padding-right: 8px;
	padding-left: 8px;
}

.mb-3 {
	margin-bottom: 1.5rem;
}

/* Animação do modal */
.modal.show .modal-dialog {
	animation: modalZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalZoomIn {
	from {
		transform: scale(0.9);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* Backdrop escurecido */
.modal-backdrop.show {
	opacity: 0.7;
}

/* Responsive */
@media (max-width: 576px) {
	.modal-body {
		padding: 24px;
	}

	.modal-header {
		padding: 24px;
	}

	.modal-title {
		font-size: 1.5rem;
	}

	.price-highlight {
		font-size: 2rem;
	}

	.btn-primary {
		font-size: 1rem;
		padding: 16px;
	}

	.row-cols-2 > * {
		flex: 0 0 100%;
		max-width: 100%;
	}
}