:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --secondary: #1e293b;
  --accent: #f59e0b;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #64748b;
  --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  --navbar-height: 80px;
  color-scheme: light dark;
}

/* Reset e configurações básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  filter: none !important;
}

body {
  background-color: #fff;
  color: var(--secondary);
  line-height: 1.6;
}

/* Navbar arredondada e branca */
#header-placeholder {
  display: contents; /* Remove qualquer layout que possa interferir */
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
    width: 95vw;
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
    box-shadow: 1px 2px 10px rgba(0,0,0,1);
}

#navbar-container {
  background: #ffffff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}



nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.cta-button {
  background: var(--gradient);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Hero Section com imagem vazando atrás da navbar */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: calc(-2 * var(--navbar-height));
  padding-top: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: 
    linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 100%),
    radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 30%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, 
      rgba(10, 10, 10, 0.95) 0%, 
      rgba(30, 30, 30, 0.92) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect x="200" y="300" width="80" height="400" fill="%23FFD700" opacity="0.1"/><rect x="350" y="200" width="70" height="500" fill="%23FFD700" opacity="0.1"/><rect x="500" y="250" width="100" height="450" fill="%23FFD700" opacity="0.1"/><circle cx="900" cy="600" r="40" fill="none" stroke="%23FFD700" stroke-width="2" opacity="0.2"/><path d="M1000,650 L1100,550 L1150,650" stroke="%23FFD700" stroke-width="3" fill="none" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, 
    rgba(212, 175, 55, 0.3) 0%, 
    transparent 70%);
  clip-path: polygon(
    0% 30%, 
    10% 0%, 20% 30%, 
    30% 0%, 40% 30%, 
    50% 0%, 60% 30%, 
    70% 0%, 80% 30%, 
    90% 0%, 100% 30%,
    100% 100%, 0% 100%
  );
}

.hero-container {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  color: #FFD700;
  font-weight: 300;
  text-shadow: 
    0 0 10px rgba(255, 215, 0, 0.3),
    0 0 20px rgba(255, 215, 0, 0.2);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #111 !important;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Services Section */
.services {
	padding: 5rem 5%;
	background: #f5f7fa;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.2rem;
	color: var(--secondary);
	margin-bottom: 1rem;
}

.section-title p {
	color: var(--gray);
	max-width: 600px;
	margin: 0 auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.service-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
}

.card-image {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.card-content {
	padding: 1.5rem;
}

.card-content h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--secondary);
}

.card-content p {
	color: var(--gray);
	margin-bottom: 1.5rem;
}

.card-stats {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--gray);
}

.stat-item i {
	color: var(--secondary);
}

.card-button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.5rem;
	background: var(--gradient);
	color: white;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s;
}

.card-button:hover {
	background: var(--primary-light);
}

/* Benefits Section */
.benefits {
	padding: 5rem 5%;
	background: white;
}

.benefits-container {
	max-width: 1200px;
	margin: 0 auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.benefit-card {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
	width: 70px;
	height: 70px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	color: var(--primary);
	font-size: 1.8rem;
}

.benefit-card h3 {
	margin-bottom: 1rem;
	color: var(--secondary);
}

.benefit-card p {
	color: var(--gray);
	font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
	padding: 5rem 5%;
	background: var(--gradient);
	color: white;
	text-align: center;
}

.cta-container {
	max-width: 800px;
	margin: 0 auto;
}

.cta-section h2 {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

.cta-section p {
	margin-bottom: 2rem;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.secondary-button {
	background: white;
	color: var(--primary);
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.3s;
}

.secondary-button:hover {
	transform: translateY(-2px);
}

/* Footer */
footer {
	background: var(--secondary);
	color: white;
	padding: 4rem 5% 2rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	display: inline-block;
}

.footer-about p {
	opacity: 0.8;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s;
}

.social-links a:hover {
	background: var(--primary);
}

.footer-links h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-links h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: var(--primary);
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.3s;
	font-size: 0.95rem;
}

.footer-links a:hover {
	color: white;
}

.footer-contact .contact-item {
	display: flex;
	gap: 0.8rem;
	margin-bottom: 1rem;
	align-items: flex-start;
}

.contact-item i {
	color: var(--primary);
	margin-top: 3px;
}

.footer-bottom {
	text-align: center;
	padding-top: 3rem;
	margin-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
	font-size: 0.9rem;
	opacity: 0.7;
}

/* WhatsApp Button */
.whatsapp-btn {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	background: #25D366;
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
	z-index: 100;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 1000px) {
	.header-container {
		flex-direction: column;
		gap: 1rem;
	}

	nav ul {
		gap: 1rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}
	
				
/*@media (prefers-color-scheme: dark) {
  body {
	background: #000;
	color: white;
  }
  
  header {
		color-scheme: light; /* Desativa o modo escuro apenas aqui */
	}
  
  .services {
		padding: 5rem 5%;
		background: rgba(245, 247, 250, 0); /* 0.5 = 50% de opacidade */
	}
}*/
	