/* ========================================
   D'INOX - Styles
   Versão sincronizada com React
   ======================================== */

/* CSS Variables */
:root {
	/* Colors - HSL values matching React */
	--background: hsl(220, 15%, 8%);
	--background-light: hsl(220, 15%, 12%);
	--foreground: hsl(0, 0%, 98%);

	--card: hsl(220, 15%, 12%);
	--card-foreground: hsl(0, 0%, 98%);

	--primary: hsl(185, 87%, 31%);
	--primary-light: hsl(185, 80%, 40%);
	--primary-dark: hsl(185, 80%, 25%);
	--primary-glow: hsla(185, 87%, 31%, 0.3);

	--secondary: hsl(220, 10%, 18%);
	--muted: hsl(220, 10%, 22%);
	--muted-foreground: hsl(220, 10%, 60%);

	--border: hsl(220, 10%, 20%);

	/* Gradients */
	--gradient-primary: linear-gradient(135deg, hsl(185, 87%, 31%) 0%, hsl(185, 80%, 25%) 100%);
	--gradient-card: linear-gradient(180deg, hsl(220, 15%, 14%) 0%, hsl(220, 15%, 10%) 100%);

	/* Shadows */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
	--shadow-glow: 0 0 40px var(--primary-glow);
	--shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);

	/* Transitions */
	--transition: all 0.3s ease;
	--transition-fast: all 0.2s ease;

	/* Border Radius */
	--radius-sm: 0.375rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-full: 9999px;
}

/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--foreground);
	background-color: var(--background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul {
	list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

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

.text-gradient {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

/* Container */
.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 768px) {
	.container {
		padding: 0 2rem;
	}
}

/* Section */
.section {
	padding: 4rem 0;
}

@media (min-width: 768px) {
	.section {
		padding: 6rem 0;
	}
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-badge {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.section-title {
	font-size: 1.875rem;
	margin-bottom: 1rem;
}

@media (min-width: 768px) {
	.section-title {
		font-size: 2.25rem;
	}
}

.section-subtitle {
	color: var(--muted-foreground);
	font-size: 1rem;
	max-width: 42rem;
	margin: 0 auto;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.875rem;
	padding: 0.625rem 1.25rem;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.btn i {
	width: 1.25rem;
	height: 1.25rem;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg), 0 0 50px var(--primary-glow);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.1);
	color: var(--foreground);
	border: 1px solid var(--border);
	backdrop-filter: blur(8px);
}

.btn-outline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--primary);
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
}

.btn-lg {
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.btn-xl {
	padding: 1rem 2rem;
	font-size: 1rem;
}

@media (max-width: 640px) {
	.btn-xl {
		padding: 0.875rem 1.5rem;
		font-size: 0.875rem;
	}
}

.btn-full {
	width: 100%;
}

/* Animations */
@keyframes fade-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.animate-fade-in {
	animation: fade-in 0.6s ease forwards;
	opacity: 0;
}

.animate-bounce {
	animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   HEADER
   ======================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(18, 22, 25, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}

@media (min-width: 768px) {
	.header-container {
		height: 5rem;
	}
}

.logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.logo {
		font-size: 1.875rem;
	}
}

.nav-desktop {
	display: none;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--muted-foreground);
}

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

.header-cta {
	display: none;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 768px) {
	.header-cta {
		display: flex;
	}
}

.phone-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.phone-link i {
	width: 1rem;
	height: 1rem;
}

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

.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	background: none;
	border: none;
	color: var(--foreground);
	cursor: pointer;
}

@media (min-width: 768px) {
	.menu-toggle {
		display: none;
	}
}

.menu-toggle i {
	width: 1.5rem;
	height: 1.5rem;
}

.nav-mobile {
	display: none;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem;
	border-top: 1px solid var(--border);
	animation: fade-in 0.3s ease;
}

.nav-mobile.active {
	display: flex;
}

@media (min-width: 768px) {
	.nav-mobile {
		display: none !important;
	}
}

.nav-link-mobile {
	font-size: 1rem;
	font-weight: 500;
	color: var(--muted-foreground);
	padding: 0.5rem 0;
}

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

/* ========================================
   HERO
   ======================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 4rem;
}

@media (min-width: 768px) {
	.hero {
		padding-top: 5rem;
	}
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, var(--background) 0%, rgba(18, 22, 25, 0.9) 50%, rgba(18, 22, 25, 0.7) 100%);
}

.hero-overlay-bottom {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--background) 0%, transparent 50%, transparent 100%);
}

.hero-content {
	position: relative;
	z-index: 10;
	padding: 0 1rem;
}

.hero-inner {
	max-width: 48rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(10, 134, 146, 0.1);
	border: 1px solid rgba(10, 134, 146, 0.3);
	border-radius: var(--radius-full);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.hero-badge i {
	width: 1rem;
	height: 1rem;
}

.hero-title {
	font-size: 1.875rem;
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 2.25rem;
	}
}

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

@media (min-width: 1024px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

@media (min-width: 1280px) {
	.hero-title {
		font-size: 4.5rem;
	}
}

.hero-title-line {
	display: block;
}

@media (min-width: 640px) {
	.hero-title-line {
		display: block;
	}
}

.hero-subtitle {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	max-width: 42rem;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.25rem;
	}
}

.hero-subtitle strong {
	color: var(--foreground);
}

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

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
	}
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
	width: 1.5rem;
	height: 2.5rem;
	border: 2px solid var(--muted-foreground);
	border-radius: var(--radius-full);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 0.5rem;
	opacity: 0.3;
}

.scroll-dot {
	width: 0.25rem;
	height: 0.5rem;
	background: var(--primary);
	border-radius: var(--radius-full);
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories {
	background: var(--card);
}

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

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

/* Category Card Overlay Style (matching React) */
.category-card-overlay {
	position: relative;
	display: block;
	aspect-ratio: 4/3;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.category-card-overlay img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.category-card-overlay:hover img {
	transform: scale(1.1);
}

.category-overlay-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--background) 0%, rgba(18, 22, 25, 0.5) 50%, transparent 100%);
}

.category-overlay-content {
	position: absolute;
	inset: 0;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.category-overlay-content h3 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

@media (min-width: 768px) {
	.category-overlay-content h3 {
		font-size: 1.5rem;
	}
}

.category-card-overlay:hover .category-overlay-content h3 {
	color: var(--primary);
}

.category-overlay-content p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	margin-bottom: 1rem;
}

.category-link-overlay {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--primary);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.category-card-overlay:hover .category-link-overlay {
	opacity: 1;
}

.category-link-overlay i {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s ease;
}

.category-card-overlay:hover .category-link-overlay i {
	transform: translateX(4px);
}

.category-border-glow {
	position: absolute;
	inset: 0;
	border: 2px solid transparent;
	border-radius: var(--radius-lg);
	transition: border-color 0.3s ease;
	pointer-events: none;
}

.category-card-overlay:hover .category-border-glow {
	border-color: rgba(10, 134, 146, 0.5);
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
	background: var(--background);
}

.why-us-grid {
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.why-us-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}



.why-us-text {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	margin-bottom: 2rem;
}

.why-us-text strong {
	color: var(--foreground);
}

.benefits-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: border-color 0.3s ease;
}

.benefit-item:hover {
	border-color: rgba(10, 134, 146, 0.5);
}

.benefit-icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 134, 146, 0.1);
	border-radius: var(--radius-lg);
	color: var(--primary);
}

.benefit-icon i {
	width: 1.5rem;
	height: 1.5rem;
}

.benefit-item h4 {
	font-size: 1.125rem;
	margin-bottom: 0.25rem;
}

.benefit-item p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.why-us-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 165px;
}

@media (max-width: 640px) {
	.why-us-stats {
		gap: 0.5rem;
		margin-top: 0px;
		grid-template-columns: repeat(1, 1fr);
	}
}

.stat-card {
	background: var(--gradient-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow-card);
}

.stat-number {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
	.stat-number {
		font-size: 3.75rem;
	}
}

.stat-label {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

/* ========================================
   PORTFOLIO
   ======================================== */
/* ========================================
   GUARDA-CORPO
   ======================================== */
.guarda-corpo {
	background: var(--background);
}

.guarda-corpo-grid {
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.guarda-corpo-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}

.guarda-corpo-image {
	position: relative;
}

.guarda-corpo-image img {
	aspect-ratio: 4/3;
	width: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.image-decoration-1 {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	width: 6rem;
	height: 6rem;
	background: rgba(10, 134, 146, 0.2);
	border-radius: var(--radius-lg);
	z-index: -1;
}

.image-decoration-2 {
	position: absolute;
	top: -1.5rem;
	left: -1.5rem;
	width: 8rem;
	height: 8rem;
	border: 2px solid rgba(10, 134, 146, 0.3);
	border-radius: var(--radius-lg);
	z-index: -1;
}

.guarda-corpo-text {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	margin-bottom: 1.5rem;
}

.guarda-corpo-text strong {
	color: var(--foreground);
}

.indicados-title {
	font-size: 1.125rem;
	margin-bottom: 1rem;
}

.indicados-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.indicados-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--muted-foreground);
}

.indicados-list i {
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	background: rgba(10, 134, 146, 0.2);
	border-radius: 50%;
	color: var(--primary);
}

/* ========================================
   EMPRESARIAL
   ======================================== */
.empresarial {
	background: var(--card);
}

.empresarial-grid {
	display: grid;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.empresarial-grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}

.empresarial-text {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	margin-bottom: 1rem;
}

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

@media (max-width: 640px) {
	.empresarial-features {
		grid-template-columns: 1fr;
	}
}

.feature-card {
	padding: 1rem;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	text-align: center;
}

.feature-card .feature-icon {
	width: 2rem;
	height: 2rem;
	margin: 0 auto 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.feature-card .feature-icon i {
	width: 2rem;
	height: 2rem;
}

.feature-card h4 {
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
}

.feature-card p {
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

.empresarial-image {
	position: relative;
}

.empresarial-image img {
	aspect-ratio: 4/3;
	width: 100%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
}

.empresarial-badge {
	position: absolute;
	bottom: -1rem;
	left: -1rem;
	background: var(--primary);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-glow);
	text-align: center;
}

.empresarial-badge .badge-number {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
}

.empresarial-badge .badge-text {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   PORTFOLIO
   ======================================== */
.portfolio {
	background: var(--card);
}

.portfolio-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.filter-btn {
	padding: 0.5rem 1.5rem;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--muted-foreground);
	background: var(--secondary);
	border: none;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition: var(--transition);
}

.filter-btn:hover {
	background: rgba(10, 134, 146, 0.2);
}

.filter-btn.active {
	color: var(--foreground);
	background: var(--primary);
	box-shadow: var(--shadow-glow);
}

/* Wrapper do portfólio com efeito de fade e botão "ver mais" */
.portfolio-wrapper {
	position: relative;
	text-align: center;
}

/* esconde o checkbox */
.portfolio-toggle {
	display: none;
}

/* mostra só os 6 primeiros por padrão */
.portfolio-grid .portfolio-item:nth-child(n + 7) {
	display: none;
}

/* quando marcado, mostra todos */
.portfolio-toggle:checked~.portfolio-grid .portfolio-item {
	display: block;
}

/* efeito esmaecido na parte inferior quando estiver fechado */
.portfolio-grid {
	position: relative;
}

.portfolio-grid::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 80px;
	pointer-events: none;
	background: linear-gradient(to bottom,
			rgba(18, 22, 25, 0) 0%,
			var(--card) 100%);
	opacity: 1;
	transition: opacity 0.3s ease;
}

/* ao abrir, remove o esmaecimento */
.portfolio-toggle:checked~.portfolio-grid::after {
	opacity: 0;
}

/* Botão "ver mais / ver menos" */
.portfolio-toggle-btn {
	margin: 2rem auto 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-full);
	border: 1px solid var(--border);
	background: var(--secondary);
	color: var(--muted-foreground);
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	transition: var(--transition);
}

.portfolio-toggle-btn:hover {
	background: rgba(10, 134, 146, 0.15);
	color: var(--foreground);
	border-color: var(--primary);
}

/* troca o texto do botão */
.portfolio-toggle-btn .see-less {
	display: none;
}

.portfolio-toggle:checked~.portfolio-toggle-btn .see-more {
	display: none;
}

.portfolio-toggle:checked~.portfolio-toggle-btn .see-less {
	display: inline;
}

.portfolio-wrapper.no-fade .portfolio-grid::after {
	opacity: 0;
}

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

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

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

.portfolio-item {
	position: relative;
	aspect-ratio: 4/3;
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	background: linear-gradient(to top, rgba(18, 22, 25, 0.9) 0%, rgba(18, 22, 25, 0.2) 50%, transparent 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-title {
	transform: translateY(0);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
	background: var(--background);
}

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

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

.testimonial-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	transition: border-color 0.3s ease;
}

.testimonial-card:hover {
	border-color: rgba(10, 134, 146, 0.5);
}

.testimonial-quote {
	color: var(--primary);
	margin-bottom: 1rem;
	opacity: 0.3;
}

.testimonial-quote i {
	width: 2.5rem;
	height: 2.5rem;
}

.testimonial-stars {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.testimonial-stars i {
	width: 1.25rem;
	height: 1.25rem;
}

.testimonial-stars .star-filled {
	color: var(--primary);
	fill: var(--primary);
}

.testimonial-text {
	color: var(--muted-foreground);
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.author-avatar {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 134, 146, 0.2);
	border-radius: 50%;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: var(--primary);
}

.author-name {
	display: block;
	font-weight: 600;
}

.author-role {
	display: block;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.testimonials-cta {
	text-align: center;
	margin-top: 2.5rem;
}

.google-reviews-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary);
	font-weight: 600;
}

.google-reviews-link:hover {
	opacity: 0.8;
}

.google-reviews-link i {
	width: 1rem;
	height: 1rem;
	fill: var(--primary);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
	background: var(--card);
}

.contact-grid {
	display: grid;
	gap: 3rem;
}

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

.contact-text {
	font-size: 1.125rem;
	color: var(--muted-foreground);
	margin-bottom: 2rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: border-color 0.3s ease;
}

.contact-item:hover {
	border-color: rgba(10, 134, 146, 0.5);
}

.contact-icon {
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 134, 146, 0.1);
	border-radius: var(--radius-lg);
	color: var(--primary);
}

.contact-icon i {
	width: 1.5rem;
	height: 1.5rem;
}

.contact-label {
	display: block;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.contact-value {
	font-weight: 600;
}

.contact-form {
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-card);
}

.form-row {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.form-row {
		grid-template-columns: 1fr 1fr;
	}
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.875rem;
	color: var(--foreground);
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--muted-foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(10, 134, 146, 0.1);
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 1rem;
	padding-right: 2.5rem;
}

.form-group textarea {
	resize: none;
	min-height: 100px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
	background: var(--background);
	border-top: 1px solid var(--border);
	padding: 4rem 0 2rem;
}

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

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

@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}
}

.footer-brand .logo {
	display: inline-block;
	margin-bottom: 1rem;
}

.footer-brand p {
	color: var(--muted-foreground);
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
}

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

.social-links a {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	color: var(--muted-foreground);
	transition: var(--transition);
}

.social-links a:hover {
	color: var(--primary);
	border-color: var(--primary);
}

.social-links i {
	width: 1.25rem;
	height: 1.25rem;
}

.footer-links h4,
.footer-contact h4 {
	font-size: 1.125rem;
	margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-links a,
.footer-links span,
.footer-contact span {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.footer-links a:hover {
	color: var(--primary);
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-contact i {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--primary);
}

.footer-bottom {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

/* texto à esquerda */
.footer-copy {
	flex: 1;
}

/* imagem de crédito à direita */
.footer-credit img {
	height: 28px;
	/* ajusta se necessário */
	display: block;
	opacity: 0.85;
	transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.footer-credit img:hover {
	opacity: 1;
	transform: translateY(-1px);
}

/* Mobile: empilha e centraliza */
@media (max-width: 640px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-copy {
		order: 1;
	}

	.footer-credit {
		order: 2;
	}
}

/* ========================================
   TOAST
   ======================================== */
.toast {
	position: fixed;
	top: 2rem;
	right: 2rem;
	z-index: 200;
	padding: 1rem 1.5rem;
	background: var(--card);
	border: 1px solid var(--primary);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	transform: translateY(150%);
	opacity: 0;
	transition: var(--transition);
}

.toast.show {
	transform: translateY(0);
	opacity: 1;
}

.toast-content {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--primary);
}

.toast-content i {
	width: 1.25rem;
	height: 1.25rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
	border-color: #f97373;
}

.form-error {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: #fecaca;
}

/* Toast em modo erro */
.toast.error {
	border-color: #f97373;
}

.toast.error .toast-content {
	color: #fecaca;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */
.section-sm {
	padding: 3rem 0;
}

.clients-title {
	text-align: center;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted-foreground);
	margin-bottom: 2rem;
}

.clients-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}

@media (min-width: 768px) {
	.clients-grid {
		gap: 3rem;
	}
}

.client-logo {
	width: 6rem;
	height: 3rem;
	background: var(--secondary);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted-foreground);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	padding: 10px;
	transition: all 0.3s ease;
}

@media (max-width: 640px) {
	.clients-grid {
		gap: 3rem !important;
	}

	.client-logo {
		width: 9rem;
		height: 4rem;
	}
}

.client-logo:hover {
	color: var(--primary);
	background: rgba(10, 134, 146, 0.1);
}

/* ========================================
   EMPRESARIAL VIDEO
   ======================================== */
.empresarial-video {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-elevated);
}

.empresarial-video video {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.empresarial-video .empresarial-badge {
	position: absolute;
	bottom: 50%;
	right: 1.5rem;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	padding: 1rem 1.5rem;
	border-radius: var(--radius-lg);
	text-align: center;
	width: 30%;
}

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.whats {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	background-image: url(./img/whats.png);
	background-size: 60%;
	background-repeat: no-repeat;
	background-position: center;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	z-index: 1000
}

.whats:hover {
	color: #fff;
	background-color: #25d366
}

.pulse_whats {
	cursor: pointer;
	box-shadow: 0 0 0 rgba(69, 183, 81, .4);
	animation: pulse_button 2s infinite
}

.pulse_whats:hover {
	animation: none
}

@-webkit-keyframes pulse_button {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .8)
	}

	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0)
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
	}
}

@keyframes pulse_button {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, .8);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, .8)
	}

	70% {
		-moz-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0);
		box-shadow: 0 0 0 30px rgba(0, 0, 0, 0)
	}

	100% {
		-moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0)
	}
}