/* =========================================
   FONTS
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:wght@400;500;600;700;900&display=swap');
/* =========================================
   RESET
========================================= */
/* 0. Remove margins and padding */
html, body,
html *, body * {
	margin: 0;
	padding: 0;
	border: 0;
}
/* 1. Box sizing global */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* 2. Previne o aumento automático de fontes em dispositivos móveis */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* 3. Remove margens padrão e define o comportamento do scroll */
body, h1, h2, h3, h4, h5, h6 p, figure, blockquote, dl, dd {
  margin-block-end: 0;
}
/* 4. Remove estilos de lista apenas quando usamos o atributo
   (Útil para acessibilidade sem perder o estilo padrão de textos longos) */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 5. Configurações base do corpo do site */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* Melhora a renderização no macOS/iOS */
}
/* 6. Melhora a legibilidade em títulos e elementos interativos */
h1, h2, h3, h4, h5, h6,
button, input, label {
  line-height: 1.1;
}
/* 8. Evita espaços estranhos abaixo das imagens */
img,
picture {
  display: block;
}
/* 9. Faz com que inputs e botões herdem as fontes do projeto */
input,
button,
textarea,
select,
address {
  font: inherit;
}
/* 10. Garante que textareas sem atributo 'rows' tenham um tamanho mínimo decente */
textarea:not([rows]) {
  min-height: 5em;
}
/* 11. limpa propriedades de campos de formulários */
input,
select,
textarea,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    outline: none;
    background-color: transparent;
    box-shadow: none;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
textarea {
    resize: vertical; /* Oculta o arrasto horizontal para não quebrar o layout, permite só vertical */
}
/* Remove o "X" de limpar que o Chrome/Safari injeta nos inputs de pesquisa */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}
/* Remove a setinha padrão do select em navegadores da Microsoft */
select::-ms-expand {
    display: none;
}
/* 12. Adiciona margem de scroll para links internos (âncoras) não ficarem "colados" ao topo */
:target {
  scroll-margin-block: 5ex;
}
/* =========================================
   VARIÁVEIS
========================================= */
:root {
	--primary: #ffd503;
	--primary-hover: #FFFFFF;
	--bg-black: #000000;
	--bg-zinc: #222222;
	--border-zinc: #444444;
	--text-white: #FFFFFF;
}
/* =========================================
   GERAIS
========================================= */
html {
    font-size: 16px;
	scroll-behavior: smooth;
}

body {
    padding-top: 70px;
    color: var(--text-white);
	font-family: "Elms Sans", system-ui, sans-serif;
	background-color: var(--bg-black);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
/* =========================================
   ESTRUTURA E LAYOUT
========================================= */
.container {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}

.container-sm {
	max-width: 48rem;
	margin: 0 auto;
}

.section-padding {
	padding: 2rem 0;
}

.bg-dark {
	background-color: var(--bg-zinc);
}

.text-center {
	text-align: center;
}

.text-primary {
	color: var(--primary);
}

.text-gray {
	color: var(--text-white);
}

/* Grids Responsivos */
.grid {
	display: grid;
	gap: 1.5rem;
}

.grid-gap-lg {
	gap: 3rem;
}

.grid-2,
.grid-3,
.grid-4,
.grid-5 {
	display: grid;
	gap: 1.5rem;
}

/* =========================================
   TIPOGRAFIA E COMPONENTES
========================================= */
.section-text{
    margin-bottom: 2.5rem;
}
.title-xl {
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.025em;
	word-spacing: -0.2em;
    text-wrap: balance;
	margin-bottom: 1rem;
}

.title-lg {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1;
	word-spacing: -0.2em;
    text-wrap: balance;
}

.title-md {
	font-size: 1.5rem;
	font-weight: 700;
	word-spacing: -0.2em;
    text-wrap: balance;
	margin-bottom: 0.5rem;
}

.subtitle {
	font-size: 1.25rem;
	color: var(--text-white);
	margin-bottom: 2.5rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.125rem 0.75rem;
	border-radius: 9999px;
	background-color: var(--primary);
	color: var(--bg-black);
	font-size: 0.75rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

/* Botões */
.btn-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 3rem;
}

.cta-dropdown {
	position: relative;
	display: inline-flex;
}

.cta-dropdown-menu {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(0.5rem);
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	background-color: transparent;
	padding: 0.625rem 0;
	min-width: 14rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 20;
}

.cta-dropdown-menu::after {
	content: '';
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	right: 0;
	height: 0.5rem;
}

.cta-dropdown:hover .cta-dropdown-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	word-spacing: -0.2em;
    line-height: 1.1;
}

.btn-lg {
	height: 3.5rem;
	padding: 0 2rem;
	font-size: 1.125rem;
	text-transform: uppercase;
}

.btn-md {
    width: max-content;
	height: 2.25rem;
	padding: 0 1rem;
	font-size: 0.875rem;
}

.btn-primary {
	background-color: var(--primary);
	color: var(--bg-black);
}

.btn-primary:hover {
	background-color: var(--primary-hover);
}

.btn-outline {
	background-color: rgba(255, 255, 255, 0.1);
	border: 2px solid #fff;
	color: #fff;
}

.btn-outline:hover {
	background-color: #fff;
	color: #000;
}

.btn-dark {
	background-color: var(--bg-zinc-800);
	color: #fff;
}

.btn-dark:hover {
	background-color: #3f3f46;
}

.btn-black {
	background-color: #000;
	color: var(--primary);
}

.btn-black:hover {
	background-color: #111;
}

.btn svg {
	margin-right: 0.25rem;
	width: 1.5rem;
	height: 1.5rem;
}

/* Ícones */
.icon-box {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: rgba(234, 179, 8, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	flex-shrink: 0;
}

.icon-box-lg {
	width: 5rem;
	height: 5rem;
	margin: 0 auto 1rem auto;
}

.icon-box svg {
	width: 1.25rem;
	height: 1.25rem;
}

.icon-box-lg svg {
	width: 3rem;
	height: 3rem;
}

/* =========================================
   HEADER
========================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	background-color: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border-zinc);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	gap: 2rem;
}

.header-logo {
	display: flex;
	width: auto;
	height: 50px;
}

.header-nav {
    background-image: url(img/uranium-fitness-icon.png);
    background-repeat: no-repeat;
    background-position: 1rem 11px;
	background-color: var(--bg-black);
	width: 100vw;
	height: 100vh;
	padding: 75px 1rem;
	display: flex;
    flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	position: absolute;
	top: 0;
	left: 100vw;
    z-index: 10;
	transition: left 0.3s ease;
}

.header-nav::after {
	content: '';
	background: url(img/bg-menu.webp) no-repeat right bottom;
	background-size: 100% auto;
	width: 93vw;
	height: 100vw;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	opacity: 0.3;
}

.header-nav.ativo {
	left: 0;
	z-index: 10;
}

.header-nav a {
	font-size: 1.5rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-white);
	transition: color 0.2s;
	white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
	color: var(--primary);
}
.btn-menu {
	background: var(--primary);
    border-radius: 50%;
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	top: 16px;
	right: 1rem;
    z-index: 20;
    cursor: pointer;
}
.btn-menu .bar{
    width: 24px;
    height: 2px;
    background-color: var(--bg-black);
    display: block;
    position: absolute;
    left: 8px;
    transform-origin: center center;
    transition: transform 200ms ease, opacity 200ms ease;
}
.btn-menu .bar.bar-1{
    top: 12px;
}
.btn-menu .bar.bar-2,
.btn-menu .bar.bar-3{
    top: 19px;
}
.btn-menu .bar.bar-4{
    width: 14px;
    top: 26px;
}
.btn-menu.ativo .bar.bar-2{
    transform: rotate(45deg);
}
.btn-menu.ativo .bar.bar-3{
    transform: rotate(-45deg);
}
.btn-menu.ativo .bar.bar-1,
.btn-menu.ativo .bar.bar-4{
   opacity: 0;
}

.header-cta {
	display: none;
}

.cta-dropdown-down .cta-dropdown-menu {
	top: 100%;
    right: 0;
	bottom: auto;
	left: auto;
	transform: translateX(0) translateY(-0.5rem);
}

.cta-dropdown-down .cta-dropdown-menu::after {
	content: none;
}

.cta-dropdown-down:hover .cta-dropdown-menu {
	transform: translateX(0) translateY(0);
}

.cta-dropdown:has(.cta-dropdown-menu > .btn:hover) > .btn-primary {
    background-color: var(--primary-hover);
}

/* =========================================
   SEÇÕES ESPECÍFICAS
========================================= */
/* Hero */
.hero {
	position: relative;
	height: auto;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-bg {
    width: 100vw;
    height: 100vw;
	position: absolute;
    top: 0;
    left: 0;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 1.5s ease, transform 1.5s ease;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-left: 0;
}

.hero-slide.active {
	opacity: 1;
	transform: translateX(0);
}

.hero-slide.exit {
	opacity: 0;
	transform: translateX(-40px);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 10%, transparent 100%);
}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 80rem;
	padding: 2rem 1rem;
}

.hero-content .title-lg {
	font-size: 2rem;	
}

.hero-content .subtitle {
	margin-left: 0;
	max-width: 34rem;
    margin-bottom: 1.5rem;
}

.hero-content .btn-group {	
	margin-bottom: 1.5rem;
}

.hero-features {
	display: flex;
    flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero-feature-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hero-feature-item span{
    font-weight: 700;
    text-wrap: balance;
}

/* Sobre Nós */
.about.section-padding {
	padding: 4rem 0 2rem;
}

.img-shadow {
	border-radius: 0.5rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sobre-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

.sobre-feature-card {
	background-color: rgba(0, 0, 0, 0.5);
	padding: 1rem;
	border-radius: 0.5rem;
	border: 1px solid rgba(234, 179, 8, 0.2);
}

.sobre-feature-card svg {
	width: 2rem;
	height: 2rem;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.about .container {
	max-width: 70rem;
}

.sobre-slider .unit-slider-track {
	position: absolute;
	inset: 0;
}

/* Cards Genéricos */
.card {
	background-color: var(--bg-zinc);
	border: 1px solid var(--border-zinc);
	border-radius: 1rem;
	padding: 1.5rem 1.5rem 4rem;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.card:hover {
	border-color: var(--primary);
}

.card-icon {
	width: 3rem;
	height: 3rem;
	color: var(--primary);
	margin-bottom: 0.75rem;
}

/* Card Destaque (CrossFit / Planos) */
.card-highlight {
	background: linear-gradient(to bottom right, var(--primary), #ca8a04);
	border: none;
	color: var(--bg-black);
    padding: 2rem 1.5rem 5rem;
}

.card-highlight:hover {
	transform: scale(1.03);
	border-color: transparent;
}

.card-highlight .card-icon {
	color: var(--bg-black);
	width: 4rem;
	height: 4rem;
	margin-bottom: 1rem;
}

.card-icon.rotate-45 {
	transform: rotate(-45deg);
}

.card-highlight .title-md {
	color: #000;
}

.card-highlight p {
	color: rgba(0, 0, 0, 0.8);
	font-size: 1.125rem;
}

/* Planos */
.plans-grid {
	display: grid;
	gap: 1.5rem;
}

.plan-tier {
	border-radius: 0.75rem;
	border: 1px solid var(--border-zinc);
	transition: border-color 0.3s, transform 0.3s;
}

.plan-tier:hover {
	border-color: var(--primary);
    transform: scale(1.03);
}

.plan-tier-featured {
	border-color: var(--primary);
	transform: scale(1.03);
}

.plan-tier-featured:hover {
	transform: scale(1.06);
}

.plan-tier-header {
	background-color: var(--primary);
    border-radius: 0.65rem 0.65rem 0 0;
	color: var(--bg-black);
	font-weight: 900;
	font-size: 0.875rem;
	padding: 0.875rem 1.25rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
    position: relative;
}

.plan-tier-featured .plan-tier-header {
	font-size: 0.95rem;
}

.plan-tier-featured .plan-tier-header::before {
	content: "MAIS POPULAR";
	background-color: var(--bg-zinc);
	border-radius: 1.75rem;
	width: max-content;
	height: auto;
	color: var(--text-white);
	padding: 0.25rem 0.75rem;
	font-weight: 900;
	font-size: 0.705rem;
    letter-spacing: -0.0125em;
	display: block;
	position: absolute;
	top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.plan-row {
    background-color: var(--bg-black);
	border-bottom: 1px solid var(--border-zinc);	
	padding: 0.875rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.plan-row:last-child {
	border-bottom: none;
    border-radius: 0 0 0.75rem 0.75rem;
}

.plan-row-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.plan-period {
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--text-white);
	text-transform: uppercase;
}

.plan-price {
	font-weight: 700;
	font-size: 1rem;
	color: var(--primary);
	white-space: nowrap;
}

.plan-benefit {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.75rem;
	color: var(--text-white);
}

.plan-check {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	background-color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.plan-check svg {
	width: 0.5rem;
	height: 0.5rem;
	stroke: var(--bg-black);
}

.plans-footer {
	margin-top: 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding: 1.25rem 1.5rem;
	background-color: var(--bg-zinc);
	border: 1px solid var(--border-zinc);
	border-radius: 0.75rem;
}

.plans-footer span {
	font-weight: 700;
	font-size: 1rem;
	color: var(--text-white);
}

/* Diferenciais — parallax */
.differentiators-bg {
	background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url(img/bg-uranium.webp);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-color: var(--bg-zinc);
	min-height: calc(100vh - 70px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.differentiator-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Depoimentos */
.stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.stars svg {
	width: 1.25rem;
	height: 1.25rem;
	fill: var(--primary);
}

.testimonial-user {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: rgba(234, 179, 8, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: var(--primary);
}

.stars svg.star-empty {
	fill: none;
	stroke: var(--primary);
	stroke-width: 1.5;
}

/* Reviews Slider Google */
.reviews-slider {
	position: relative;
	overflow: hidden;
	padding-bottom: 2.5rem;
}

.review-slider-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	transition: transform 0.4s ease;
	will-change: transform;
}

.review-slide {
	flex-shrink: 0;
	box-sizing: border-box;
	display: flex;
	/* largura definida via JS */
}

.review-slide P{
    font-size: 1rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.reviews-slider .slider-dots {
	position: absolute;
	bottom: 0.5rem;
}

.avatar-photo {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

/* Unidades */
.units-grid {
	display: grid;
	gap: 2rem;
}

.unit-card {
	background-color: var(--bg-zinc);
	border: 1px solid var(--border-zinc);
	border-radius: 1rem;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.unit-card:hover {
	border-color: var(--primary);
}

.unit-slider {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.unit-slider.sobre-slider {
	aspect-ratio: 4 / 5;
}

.unit-slider-track {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
	will-change: transform;
}

.unit-slider-track img {
	min-width: 100%;
	height: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	transition: background-color 0.2s;
}

.slider-btn svg {
	width: 1.25rem;
	height: 1.25rem;
}

.slider-btn:hover {
	background-color: var(--primary);
	color: #000;
}

.slider-prev {
	left: 0.75rem;
}

.slider-next {
	right: 0.75rem;
}

.slider-dots {
	position: absolute;
	bottom: 0.75rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 0.375rem;
}

.dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.2s;
}

.dot.active {
	background-color: var(--primary);
}

.unit-info {
	padding: 1.5rem;
}

.unit-name {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.unit-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	color: var(--text-white);
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

.unit-info-item svg {
	width: 1.125rem;
	height: 1.125rem;
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.tel-link:hover{
    color: var(--primary);}

.unit-whatsapp {
	margin-top: 1.25rem;
	width: auto;
	padding: 0 1.5rem;
	height: 2.75rem;
	font-size: 1rem;
}

/* FAQ Accordion */
.faq-container {
	border: 1px solid var(--border-zinc);
	border-radius: 1rem;
	overflow: hidden;
}

.faq-item {
	background-color: var(--bg-zinc);
	border-bottom: 1px solid var(--border-zinc);
}

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

.faq-trigger {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	background: transparent;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
	transition: color 0.2s;
}

.faq-trigger:hover {
	color: var(--primary);
}

.faq-trigger svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--text-white);
}

.faq-content {
	padding: 0 1.5rem;
	color: var(--text-white);
	font-size: 0.875rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item[data-state="open"] {
	background-color: rgba(255, 255, 255, 0.05);
}

.faq-item[data-state="open"] .faq-content {
	max-height: 300px;
	padding-bottom: 1.5rem;
}

.faq-item[data-state="open"] .icon-down {
	display: none;
}

.icon-up {
	display: none;
}

.faq-item[data-state="open"] .icon-up {
	display: block;
}

/* CTA Pre-Footer */
.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url(img/bg-uranium.webp);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
    background-color: var(--bg-black);
	position: relative;
	overflow: hidden;
	padding: 10rem 0;
	text-align: center;
	border-top: 3px solid;
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, var(--primary), #ca8a04) 1;
}

.cta-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnptLTEyIDBjMy4zMTQgMCA2IDIuNjg2IDYgNnMtMi42ODYgNi02IDYtNi0yLjY4Ni02LTYgMi42ODYtNiA2LTZ6bTEyIDEyYzMuMzE0IDAgNiAyLjY4NiA2IDZzLTIuNjg2IDYtNiA2LTYtMi42ODYtNiA2IDIuNjg2LTYgNi02em0tMTIgMGMzLjMxNCAwIDYgMi42ODYgNiA2cy0yLjY4NiA2LTYgNi02LTIuNjg2LTYtNiAyLjY4Ni02IDYtNnoiIHN0cm9rZT0iIzIyMjIyMiIgb3BhY2l0eT0iLjMiLz48L2c+PC9zdmc+');
}

.cta-content {
	position: relative;
	z-index: 10;
}

/* Modal Serviços — Mídia + Texto lado a lado */
.service-modal {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.875rem;
	pointer-events: none;
}

.service-modal.active {
	pointer-events: auto;
}

.service-modal-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.85);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.service-modal.active .service-modal-overlay {
	opacity: 1;
}

.service-modal-box {
	position: relative;
	background-color: var(--bg-zinc);
	border: 1px solid var(--border-zinc);
	border-radius: 1rem;
	width: max-content;
    max-width: 100%;
	height: calc(100vh - 60px);
	max-height: 600px;
	overflow: hidden;
	transform: translateY(1.5rem) scale(0.97);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-modal.active .service-modal-box {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.service-modal-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background-color 0.2s;
}

.service-modal-close:hover {
	background-color: var(--primary);
	color: #000;
}

.service-modal-close svg {
	width: 1rem;
	height: 1rem;
}

.service-modal-body {
	display: flex;
	height: 100%;
}

#modal-video {
	height: 100%;
	width: auto;
	aspect-ratio: 9 / 16;
	object-fit: cover;
	flex-shrink: 0;
	display: none;
}

#modal-img {
	height: 100%;
	width: auto;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	flex-shrink: 0;
	display: none;
}

.service-modal-info {
	flex: 1;
	width: 21rem;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	overflow-y: auto;
}

#modal-icon svg {
	width: 3.5rem;
	height: 3.5rem;
	color: var(--primary);
	margin-bottom: 0;
}

.service-modal-info .title-md {
	margin-bottom: 0;
}

.service-modal-info p {
	color: var(--text-white);
}

.services .card {
	cursor: pointer;
	position: relative;
}

.ver-mais {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.65rem 0.3rem 0.5rem;
	background-color: transparent;
    border: 1px solid var(--primary-hover);
	color: var(--primary-hover);
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 999px;
	pointer-events: none;
	transition: all 0.3s;
}

.ver-mais svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}
.services .card.card-highlight .ver-mais {
    border: 1px solid var(--bg-black);
	color: var(--bg-black);
}
.services .card:hover .ver-mais {
	background-color: var(--primary);
    border: 1px solid var(--primary);
	color: var(--bg-zinc);
}

/* WhatsApp Flutuante */
.wa-float {
	display: none;
}

/* CTA Fixo no rodapé */
.cta-dropdown.fixed-bottom {
    width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
    transform: translateY(100%);
    z-index: 200;
    transition: transform 0.3s;
}
.cta-dropdown.fixed-bottom.active {
    transform: translateY(0);
}

.cta-dropdown.fixed-bottom .btn.btn-lg {
	border-radius: 0;
}

/* Footer */
.footer {
	background-color: var(--bg-black);
	border-top: 1px solid var(--bg-zinc);
	padding-top: 4rem;
}

.footer-grid {
	display: grid;
	gap: 1.5rem;
}

.footer-logo{
    width: 200px;
    margin-bottom: 1rem;
}

.footer-logo img{
    width: 100%;
}

.footer-units {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-top: 0.5rem;
}

.footer-unit-name {
	font-weight: 700;
	color: var(--primary);
	font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-contact li {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: var(--text-white);
}

.footer-contact svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
	flex-shrink: 0;
}

.footer-logos {
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.footer-logos img{
    width: 8rem;
}

.footer-bottom {
	border-top: 1px solid var(--border-zinc);
	margin-top: 2rem;
	padding: 1.5rem 0 5rem;
    font-size: 0.85rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-btn {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--bg-zinc);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.social-btn:hover {
	background-color: var(--primary);
	color: var(--bg-black);
}

/* =========================================
   MEDIA QUERIES
========================================= */

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 809px) {
    .hero {
        flex-direction: column;
    }

    .hero-bg {       
        position: relative;       
    }

	.slider-btn {
		display: none;
	}

	.service-modal {
		width: 100vw;
		align-items: flex-start;
		padding: 0.75rem;
	}

	.service-modal-box {
		width: 92vw;
		height: auto;
		max-height: 92vh;
		overflow-y: auto;
	}

	.service-modal-body {
		flex-direction: column;
		height: auto;
	}

	#modal-video {
		width: 100%;
		height: auto;
	}

	#modal-img {
		width: 100%;
		height: auto;
	}

	.service-modal-info {
        min-width: 0;
        width: 100%;
		overflow-y: visible;
	}
}

@media (min-width: 810px) {
	.section-small .container {
		max-width: 60rem;
	}

	.section-padding {
		padding: 4rem 0;
	}

	.grid-2 {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
	}

	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid-5 {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

    .section-text{
        margin-bottom: 4rem;
    }

	.title-xl {
		font-size: 4.5rem;
	}

	.title-lg {
		font-size: 3rem;
	}

    .hero .title-lg {
		font-size: 2.5rem;
	}

    .subtitle {
        max-width: 38rem;
    }

	.header-nav {
        background: none;
        width: auto;
        height: auto;
        padding: 0;
        flex-direction: row;
		flex: 1;
		justify-content: center;
        position: relative;
        left: 0;
	}

    .header-nav::after {
        content: none;
    }

    .header-nav a {
        font-size: 0.875rem;
    }

    .btn-menu {
        display: none;
    }

    .header-cta {
        display: block;
        position: relative;
        top: 0;
        right: 0;
    }

    .header-btn {
        height: 2rem;
        padding: 0 1rem;
        font-size: 0.875rem;
        text-transform: uppercase;
    }

    .btn-group {
		flex-direction: row;
	}

    .hero {
        height: calc( 100vh - 70px );
    }

    .hero-bg {
        height: calc( 100vh - 70px );
        top: 0;
    }

    .hero-slide img {
        width: auto;
        margin-left: auto;
    }

    .hero-overlay {
        background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
    }

    .hero-content {
        padding: 0 30rem 0 1rem;
    }

    .hero-content .subtitle {       
        margin-bottom: 2.5rem;
    }

    .hero-content .btn-group {	
        margin-bottom: 2.5rem;
    }

    .hero-features {
        flex-direction: row;
        gap: 1.5rem;
    }

    .about.section-padding {
        padding: 4rem 0;
    }

	.about .grid-2 {
		grid-template-columns: 2fr 3fr;
	}

    .about .text-center{
        text-align: left;    
    }

	.card-highlight {
        padding: 2rem 2rem 5rem;
    }

    .differentiator-item h3.title-md {
        width: min-content;
    }

	.plans-grid {
		grid-template-columns: repeat(3, 1fr);
		align-items: start;
	}

	.reviews-slider {
		padding-left: 3rem;
		padding-right: 3rem;
	}

    .reviews-slider::before,
    .reviews-slider::after {
        content: '';
        background: var(--bg-black);
        width: 3rem;
        height: 100%;
        position: absolute;
        top: 0;
        z-index: 10;
    }

    .reviews-slider::before {
        left: 0;
    }

    .reviews-slider::after {
        right: 0;
    }

    .reviews-slider .slider-btn {
        background-color: var(--border-zinc);
        z-index: 20;
    }

	.review-slide {
		padding: 0 0.75rem;
	}

	.units-grid {
		grid-template-columns: repeat(2, 1fr);
	}

    .wa-float {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 200;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }

    .wa-btn {
        background-color: var(--primary);
        border-radius: 9999px;
        width: max-content;
        padding: 0.5rem 0.625rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        color: var(--bg-black);
        font-weight: 700;
        font-size: 0.875rem;
        white-space: nowrap;
        word-spacing: -0.25em;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
    }

    .wa-btn:hover {
        transform: scale(1.06);
        background-color: var(--primary-hover);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    }

    .wa-btn svg {
        width: 1.5rem;
        height: 1.5rem;
        flex-shrink: 0;
    }

    .cta-dropdown.fixed-bottom {
        display: none;
    }

	.footer-grid {
		grid-template-columns: 1fr 2fr 1fr;
	}

    .footer-units {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        padding: 2rem 0;
    }

    .footer-bottom br {
        display: none;
    }
}

@media (min-width: 1024px) {
	.grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.grid-5 {
		grid-template-columns: repeat(5, 1fr);
	}

	.card-span-2 {
		grid-column: span 1;
		grid-row: span 2;
	}
}
