* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--gold-primary: #D4AF37;
	--gold-light: #F4E8C1;
	--gold-dark: #AA8C2C;
	--black-primary: #0a0a0a;
	--black-secondary: #1a1a1a;
	--black-tertiary: #2a2a2a;
}

body {
	font-family: 'Lato', sans-serif;
	background-color: var(--black-primary);
	color: var(--gold-light);
	line-height: 1.3;
	overflow-x: hidden;
}

h1, h2, h3, h4, .nav-link, .logo {
	font-family: 'Cinzel', serif;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
	background: var(--gold-dark);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--gold-primary);
}

/* Header */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent);
	padding: 0px;
	z-index: 1000;
	transition: all 0.3s ease;
}

header.scrolled {
	background: rgba(10, 10, 10, 0.98);
	box-shadow: 0px rgba(212, 175, 55, 0.2);
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--gold-primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo i {
	font-size: 2rem;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 40px;
	align-items: center;
}

.nav-link {
	color: var(--gold-light);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gold-primary);
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link:hover {
	color: var(--gold-primary);
}

.btn-gold {
	background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
	color: var(--black-primary) !important;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid var(--gold-primary);
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.mobile-menu {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--gold-primary);
}

/* Hero Section */
.hero {
	margin-top: 0;
	min-height: 0vh;
	/*background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8)), */
				/*url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%230a0a0a" width="1920" height="1080"/></svg>');*/
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.6) 100%);*/
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 100%;
	padding: 0px;
}

.hero-image {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0px;
	position: relative;
	z-index: -1;
}

.hero-image img {
	width: 100%;
	height: auto;
	padding-top: 20px;
	filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
}

.hero h1 {
	font-size: 1.5rem;
	color: var(--gold-primary);
	margin-bottom: 1px;
	text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
	line-height: 1.2;
}

.hero p {
	font-size: 1 rem;
	margin-bottom: 30px;
	color: var(--gold-light);
	font-weight: 300;
}

.hero-subtitle {
	font-size: 1rem;
	margin-bottom: 40px;
	opacity: 0.9;
}

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	color: var(--gold-primary);
	font-size: 2rem;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Sections General */
section {
	padding: 100px 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	color: var(--gold-primary);
	text-align: center;
	margin-bottom: 0px;
	position: relative;
	display: inline-block;
	width: 100%;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: var(--gold-light);
	opacity: 0.8;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.divider {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
	gap: 20px;
}

.divider-line {
	width: 150px;
	height: 1px;
	background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
}

.divider-icon {
	color: var(--gold-primary);
	font-size: 1.2rem;
}

.divider-image {
	width: 60%; /* ajuste o tamanho */
	height: auto;
	filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Services Grid */
.services-grid, .rituals-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.service-card, .ritual-card {
	background: linear-gradient(135deg, var(--black-secondary), var(--black-tertiary));
	border: 2px solid var(--gold-dark);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}

.service-card::before, .ritual-card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.service-card:hover::before, .ritual-card:hover::before {
	opacity: 1;
}

.service-card:hover, .ritual-card:hover {
	transform: translateY(-10px);
	border-color: var(--gold-primary);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.icon-container {
	width: 140px;
	height: 140px;
	margin: 0 auto 25px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--gold-primary);
	box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
	position: relative;
	z-index: 1;
}

.icon-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card h3, .ritual-card h3 {
	font-size: 1.4rem;
	color: var(--gold-primary);
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}

.service-card p, .ritual-card p {
	font-size: 0.95rem;
	color: var(--gold-light);
	opacity: 0.85;
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.btn-small {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 25px;
	border: 1px solid var(--gold-primary);
	color: var(--gold-primary);
	text-decoration: none;
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.btn-small:hover {
	background: var(--gold-primary);
	color: var(--black-primary);
}

/* Section Backgrounds */
.section-dark {
	background: linear-gradient(to bottom, var(--black-primary), var(--black-secondary));
	max-width: 100%;
}

.section-dark .section-title,
.section-dark .section-subtitle {
	position: relative;
	z-index: 1;
}

/* Footer */
footer {
	background: linear-gradient(to top, var(--black-primary), var(--black-secondary));
	padding: 20px;
	text-align: center;
	border-top: 1px solid var(--gold-dark);
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-quote {
	font-size: 1.5rem;
	color: var(--gold-primary);
	font-family: 'Cinzel', serif;
	margin-bottom: 15px;
}

.footer-subquote {
	font-size: 1rem;
	opacity: 0.8;
	margin-bottom: 30px;
}

.footer-cta {
	margin: 40px 0;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 40px 0;
}

.social-links a {
	width: 50px;
	height: 50px;
	border: 2px solid var(--gold-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold-primary);
	font-size: 1.3rem;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--gold-primary);
	color: var(--black-primary);
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.footer-logo {
	font-size: 2rem;
	color: var(--gold-primary);
	font-family: 'Cinzel', serif;
	margin: 40px 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.footer-bottom {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(212, 175, 55, 0.3);
	font-size: 0.9rem;
	opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
	.nav-links {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	section {
		padding: 60px 20px;
	}

	.services-grid, .rituals-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.hero h1 {
		font-size: 1.3rem;
	}

	.section-title {
		font-size: 1rem;
	}

	.icon-container {
		width: 120px;
		height: 120px;
	}
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	border: 1px solid #d4af37;
	border-radius: 30px;
	padding: 20px;
	margin-bottom: 30px;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Loading animation */
.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.5s ease;
}

.loader.hidden {
	opacity: 0;
	pointer-events: none;
}

.loader-content {
	width: 80px;
	height: 80px;
	border: 3px solid var(--gold-dark);
	border-top-color: var(--gold-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

#backPage svg,
#backToTop svg {
  width: 20px;
  height: 20px;
}

#backPage, #backToTop {
  transform: translateY(10px);
  position: fixed;
  bottom: 30px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

#backPage {
  left: 30px;
}

#backToTop {
  right: 30px;
}

#backPage:hover,
#backToTop:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(201,169,106,0.5);
}

#backPage.show,
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.detail-wrap {
display: grid;
grid-template-columns: 320px 1fr;
gap: 40px;
align-items: start;
margin-top: 40px;
}

/* CARD */
.detail-card {
background: linear-gradient(135deg, var(--black-secondary), var(--black-tertiary));
border: 2px solid var(--gold-dark);
border-radius: 20px;
padding: 30px;
text-align: center;
}

.detail-card h3, .detail-card h4 {
color: var(--gold-primary);
margin-top: 15px;
}

/* TEXTO */
.detail-text {
line-height: 1.9;
}

.detail-text p {
margin-bottom: 20px;
}

@media (max-width: 500px) {
.detail-wrap {
grid-template-columns: 1fr;
}

.detail-card {
margin-bottom: 20px;
}
}

.about-content {
  max-width: 900px;
  margin: 40px auto 0;
  line-height: 1.9;
  font-size: 1rem;
  opacity: 0.9;
}

.about-content p {
  margin-bottom: 20px;
}

.about-highlight {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin: 40px 0;
}

.about-signature {
  text-align: center;
  margin-top: 40px;
  color: var(--gold-primary);
}

.about-manifesto {
  text-align: center;
  margin-top: 20px;
  line-height: 2;
  color: var(--gold-light);
}
.contact-container {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
}

.contact-intro {
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.9;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contact-card {
  border: 1px solid var(--gold-dark);
  border-radius: 20px;
  padding: 30px 20px;
  text-decoration: none;
  color: var(--white);
  transition: 0.3s;
  background: rgba(255,255,255,0.02);
}

.contact-card h3 {
  color: var(--gold-primary);
  margin: 15px 0 10px;
}

.contact-card p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(201,169,106,0.3);
  background: rgba(201,169,106,0.05);
}

.contact-card .icon {
  font-size: 28px;
}
.contact-card .icon i {
  font-size: 28px;
  color: var(--gold-primary);
  transition: 0.3s;
}

.contact-card:hover .icon i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(201,169,106,0.6));
}

@media (max-width: 700px) {
  .contact-links {
    grid-template-columns: 1fr;
  }
}

.menu-frame {
  width: 100%;
  height: 60px;
  border: none;
}

.footer-frame {
  width: 100%;
  height: 420px;
  border: none;
  overflow: hidden;
}