/* DESIGN SYSTEM */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #f0f0f0;
  --text-secondary: #8892b0;
  --text-muted: #5a6072;
  --accent: #d4a056;
  --accent-hover: #e8b96e;
  --accent-glow: rgba(212, 160, 86, 0.4);
  --gradient-hero: linear-gradient(160deg, #0a0a0f 0%, #2a1f0f 50%, #0a0a0f 100%);
}

/* RESET & GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, .nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  margin-left: 2rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--accent);
  border-radius: 10px;
  transition: all 0.3s linear;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-shapes .shape {
  position: absolute;
  background: var(--accent-glow);
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.shape-2 { width: 200px; height: 200px; bottom: 10%; right: 5%; animation-delay: 2s !important; }
.shape-3 { width: 150px; height: 150px; top: 20%; right: 10%; animation-delay: 4s !important; }
.shape-4 { width: 100px; height: 100px; bottom: 20%; left: 15%; }

.hero-content {
  position: relative;
  z-index: 1;
}

.category-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.decorative-line {
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 1.5rem auto;
  border-radius: 2px;
  box-shadow: 0 0 15px var(--accent-glow);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #ffd700;
  font-size: 1.2rem;
  justify-content: center;
  margin: 1rem 0 2.5rem;
}

.rating-text {
  color: var(--text-primary);
  font-weight: 600;
  margin-left: 0.5rem;
}

.rating-count {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* BUTTONS */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px var(--accent-glow);
}

/* SECTIONS */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* GLASSMORPHISM CARDS */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px var(--accent-glow);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: block;
}

.card-icon.big {
  font-size: 2.5rem;
}

.glass-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* SOBRE SECTION */
.sobre-content p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  color: var(--text-secondary);
}

.feature-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.feature-cards .glass-card {
  flex: 1;
}

/* LOCALIZACAO SECTION */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.8rem 0;
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link i {
  color: var(--accent);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* CONTATO SECTION */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.muted-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.muted-link:hover {
  color: var(--accent);
}

.text-muted {
  color: var(--text-secondary);
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.quick-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.quick-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--accent-glow);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 4rem 1.2rem;
  }

  .navbar {
    padding: 1rem 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 1.5rem 0;
    font-size: 1.2rem;
  }

  .feature-cards {
    flex-direction: column;
  }

  .localizacao-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
