@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600&display=swap');

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

:root {
  --text: #2E2A26;
  --muted: #4B443C;
  --cream: #fdfaf5;
  --section-bg: #f9f6f1;
  --gold: #C1A15E;
  --gold-light: #DCC69C;
  --gold-dark: #a28749;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 110px;
}

a { color: inherit; }

/* --- HEADER / MENU FLUTUANTE --- */
.alma-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: all 0.3s ease;
}

.alma-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  top: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--gold-light);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .menu-container { flex-direction: column; gap: 10px; padding: 16px 20px; }
  .nav-links { justify-content: center; gap: 18px; }
  body { padding-top: 165px; }
}

/* --- HERO (página inicial) --- */
.hero-section {
  width: 100%;
  min-height: 90vh;
  background: linear-gradient(rgba(217, 191, 137, 0.35), rgba(0, 0, 0, 0.25)),
              url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.65);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--muted);
}

/* --- PÁGINA-HERO (páginas internas) --- */
.page-hero {
  padding: 70px 20px 40px;
  text-align: center;
  background: var(--section-bg);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- BOTÕES --- */
.btn {
  display: inline-block;
  background-color: var(--gold-light);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 40px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: transparent;
  border-color: var(--gold-light);
  box-shadow: 0 0 10px rgba(220, 198, 156, 0.5);
}

/* --- SEÇÕES GERAIS --- */
section { scroll-margin-top: 120px; }

.section {
  padding: 90px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section.alt { background-color: var(--section-bg); }

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #4b3821;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #7a6a4b;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

.divider {
  width: 90px;
  height: 3px;
  background-color: var(--gold);
  margin: 14px auto 20px;
  border-radius: 4px;
}

/* --- CARDS: teasers, vídeos, textos --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(180, 140, 70, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(200, 160, 80, 0.2);
}

.card .card-body { padding: 20px 22px 26px; }

.card h3, .card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.teaser-icon { font-size: 1.8rem; margin-bottom: 6px; display: block; }

.video-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--section-bg), #efe6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 600;
}

.video-placeholder span.badge {
  font-size: 0.75rem;
  background: var(--gold-light);
  color: var(--text);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.leia-mais {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.leia-mais:hover { color: var(--gold-dark); }

/* --- RODAPÉ --- */
.footer {
  background: linear-gradient(180deg, #2E2A26 0%, #1f1b17 100%);
  color: #f8f8f8;
  text-align: center;
  padding: 70px 20px 40px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-container h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #e8d9b5;
}

.footer p { margin-bottom: 20px; color: #ddd; }

.footer-links a {
  display: inline-block;
  margin: 0 14px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s;
}

.footer-links a:hover { color: #fff; transform: translateY(-2px); }

.copy { font-size: 0.85rem; margin-top: 26px; color: #aaa; }

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 2rem; }
}
