/* Variáveis de cores - Paleta GOC Brasil */
:root {
  /* Dourado */
  --cor-primaria: #C5A572;
  --cor-primaria-hover: #D4B896;
  --cor-primaria-dark: #A68B5B;

  /* Vermelho/Bordô */
  --cor-acento: #8B1A1A;
  --cor-acento-hover: #A52A2A;
  --cor-acento-dark: #6B0F0F;

  /* Fundos */
  --cor-fundo-escuro: #3D2B1F;
  --cor-fundo-medio: #4A3728;
  --cor-fundo-vermelho: #5C1515;

  /* Textos */
  --cor-texto-claro: #FFFFFF;
  --cor-texto-dourado: #C5A572;

  /* Bordas */
  --cor-borda: rgba(197, 165, 114, 0.3);
  --cor-borda-vermelho: rgba(139, 26, 26, 0.3);
}

/* Geral */

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

body {
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 100%;
  background-color: var(--cor-fundo-escuro);
  overflow-x: clip;
  min-height: 100vh;
}

/* Header */

.headerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(180deg, var(--cor-fundo-escuro) 0%, var(--cor-fundo-medio) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-top: 4px solid var(--cor-acento);
  position: relative;
  z-index: 100;
}

.topHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
}

.logoLink {
  display: flex;
  align-items: center;
}

.topHeader img {
  object-fit: contain;
  height: auto;
  width: 5rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.topHeader img:hover {
  transform: scale(1.05);
}

.headerTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.headerTitle h1 {
  color: var(--cor-texto-dourado);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.headerSubtitle {
  color: var(--cor-texto-claro);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.15rem;
  opacity: 0.9;
  margin-top: 0.25rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--cor-acento);
}

.bottomHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem 1rem;
  position: relative;
}

.navMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--cor-borda);
  border-bottom: 2px solid var(--cor-acento);
}

.navMenu a {
  color: var(--cor-texto-claro);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  border-radius: 25px;
}

.navMenu a::after {
  display: none;
}

.navMenu a:hover {
  color: var(--cor-fundo-escuro);
  background: var(--cor-primaria);
}

/* Cart Badge */
.navCarrinhoLink {
  position: relative;
  display: flex;
  align-items: center;
}
.navCarrinhoBadge {
  position: absolute;
  top: 2px;
  right: 0;
  background: var(--cor-acento);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dropdown {
  position: relative;
}

.dropdownToggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  color: var(--cor-texto-claro);
  padding: 0.6rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  border-radius: 25px;
}

.dropdownToggle:hover {
  color: var(--cor-fundo-escuro);
  background: var(--cor-primaria);
}

.dropdownToggle i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdownToggle i {
  transform: rotate(180deg);
}

.dropdownMenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cor-fundo-medio);
  min-width: 300px;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.75rem 0;
  border: 1px solid var(--cor-borda);
}

.dropdown:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
}

.dropdownMenu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--cor-texto-claro);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border-radius: 0;
}

.dropdownMenu a:hover {
  background: rgba(197, 165, 114, 0.15);
  color: var(--cor-primaria);
  padding-left: 2rem;
}

.menuHamburger {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 1001;
}

.hamburgerIcon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburgerIcon span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--cor-primaria);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menuText {
  display: none;
  color: var(--cor-primaria);
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menuHamburger.active .hamburgerIcon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menuHamburger.active .hamburgerIcon span:nth-child(2) {
  opacity: 0;
}

.menuHamburger.active .hamburgerIcon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menuHamburger.active .menuText {
  color: var(--cor-texto-claro);
}

/* Home - Hero Section */

.heroSection {
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--cor-fundo-medio) 0%, var(--cor-fundo-escuro) 100%);
}

.heroContent {
  display: flex;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  min-height: 75vh;
}

.heroText {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.heroTag {
  display: inline-block;
  background: var(--cor-primaria);
  color: var(--cor-fundo-escuro);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  align-self: flex-start;
}

.heroText h1 {
  color: var(--cor-texto-claro);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heroText p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.heroButtons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btnPrimary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-primaria);
  color: var(--cor-fundo-escuro);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btnPrimary:hover {
  background: var(--cor-primaria-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

.btnSecondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cor-texto-claro);
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid var(--cor-borda);
  transition: all 0.3s ease;
}

.btnSecondary:hover {
  border-color: var(--cor-primaria);
  color: var(--cor-primaria);
}

/* Posts Grid */
.heroPosts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.heroPosts h2 {
  color: var(--cor-primaria);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

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

.postCard {
  display: flex;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--cor-borda);
}

.postCard:hover {
  transform: translateX(8px);
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--cor-primaria);
}

.postImage {
  width: 120px;
  height: 90px;
  min-width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--cor-fundo-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
}

.postImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.postCard:hover .postImage img {
  transform: scale(1.1);
}

.postInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 1rem 0.75rem 0;
  gap: 0.5rem;
}

.postInfo h3 {
  color: var(--cor-texto-claro);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.postCard:hover .postInfo h3 {
  color: var(--cor-primaria);
}

.postDate {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.noPosts {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2rem;
}

.btnAllPosts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--cor-acento);
  color: var(--cor-texto-claro);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--cor-acento);
  transition: all 0.3s ease;
  align-self: center;
}

.btnAllPosts:hover {
  background: var(--cor-acento-hover);
  border-color: var(--cor-acento-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.4);
}

.btnAllPosts i {
  transition: transform 0.3s ease;
}

.btnAllPosts:hover i {
  transform: translateX(4px);
}

/* YouTube Section */
.youtubeSection {
  width: 100%;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--cor-acento) 0%, var(--cor-acento-dark) 100%);
  border-top: 4px solid var(--cor-primaria);
  border-bottom: 4px solid var(--cor-primaria);
}

.youtubeContent {
  max-width: 1400px;
  margin: 0 auto;
}

.youtubeHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.youtubeTitle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.youtubeTitle i {
  font-size: 2.5rem;
  color: var(--cor-texto-claro);
  opacity: 0.9;
}

.youtubeTitle h2 {
  color: var(--cor-texto-claro);
  font-size: 1.5rem;
  font-weight: 600;
}

.youtubeLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-primaria);
  color: var(--cor-fundo-escuro);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.youtubeLink:hover {
  background: var(--cor-primaria-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

.youtubeVideos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.videoCard {
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(197, 165, 114, 0.2);
  transition: all 0.3s ease;
}

.videoCard:hover {
  border-color: var(--cor-primaria);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.videoCard iframe {
  width: 100%;
  height: 100%;
}

/* YouTube Lite Embed */
.ytLiteCard {
  position: relative;
  cursor: pointer;
}

.ytLiteThumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ytLitePlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ytLiteCard:hover .ytLitePlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* About Section */
.aboutSection {
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #E8DCC8 0%, #D4C4A8 100%);
}

.aboutContent {
  max-width: 1400px;
  margin: 0 auto;
}

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

.aboutTag {
  display: inline-block;
  background: var(--cor-acento);
  color: var(--cor-texto-claro);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.aboutHeader h2 {
  color: var(--cor-fundo-escuro);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.aboutGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.aboutCard {
  background: var(--cor-texto-claro);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.aboutCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-bottom-color: var(--cor-primaria);
}

.aboutCardMain {
  border-bottom-color: var(--cor-acento);
}

.aboutCardMain:hover {
  border-bottom-color: var(--cor-acento);
}

.aboutIcon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cor-fundo-medio) 0%, var(--cor-fundo-escuro) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.aboutIcon i {
  font-size: 1.5rem;
  color: var(--cor-primaria);
}

.aboutCardMain .aboutIcon {
  background: linear-gradient(135deg, var(--cor-acento) 0%, var(--cor-acento-dark) 100%);
}

.aboutCardMain .aboutIcon i {
  color: var(--cor-texto-claro);
}

.aboutCard h3 {
  color: var(--cor-fundo-escuro);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.aboutCard p {
  color: #5a4a3a;
  font-size: 0.9rem;
  line-height: 1.7;
}

.aboutHighlight {
  background: linear-gradient(135deg, var(--cor-fundo-medio) 0%, var(--cor-fundo-escuro) 100%);
  padding: 2.5rem 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-left: 6px solid var(--cor-primaria);
}

.highlightIcon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: var(--cor-primaria);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlightIcon i {
  font-size: 2rem;
  color: var(--cor-fundo-escuro);
}

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

.highlightText h3 {
  color: var(--cor-primaria);
  font-size: 1.5rem;
  font-weight: 600;
}

.highlightText p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.btnHighlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-primaria);
  color: var(--cor-fundo-escuro);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btnHighlight:hover {
  background: var(--cor-primaria-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

.btnHighlight i {
  transition: transform 0.3s ease;
}

.btnHighlight:hover i {
  transform: translateX(4px);
}

/* Gallery Section */
.gallerySection {
  width: 100%;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--cor-fundo-escuro) 0%, var(--cor-fundo-medio) 100%);
}

.galleryContent {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.galleryTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-primaria);
  color: var(--cor-fundo-escuro);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.galleryHeader h2 {
  color: var(--cor-texto-claro);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 0.75rem;
}

.galleryHeader p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.galleryItem {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--cor-fundo-medio) 0%, var(--cor-fundo-escuro) 100%);
}

.galleryItem:hover {
  border-color: var(--cor-primaria);
  transform: scale(1.02);
}

.galleryItemLarge {
  grid-column: span 2;
}

.galleryItem img,
.galleryItem video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--cor-fundo-escuro);
}

.galleryItem img[alt]:after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--cor-fundo-escuro);
  content: attr(alt);
  color: var(--cor-primaria);
  font-size: 1rem;
  text-align: center;
  padding: 1rem;
}

.galleryItem:hover img,
.galleryItem:hover video {
  transform: scale(1.1);
}

.galleryOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(61, 43, 31, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galleryItem:hover .galleryOverlay {
  opacity: 1;
}

.galleryOverlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--cor-primaria);
  background: var(--cor-fundo-escuro);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--cor-primaria);
}

.galleryOverlay span {
  color: var(--cor-texto-claro);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.btnGallery {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cor-primaria);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--cor-primaria);
  transition: all 0.3s ease;
}

.btnGallery:hover {
  background: var(--cor-primaria);
  color: var(--cor-fundo-escuro);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
}

.btnGallery i {
  transition: transform 0.3s ease;
}

.btnGallery:hover i {
  transform: translateX(4px);
}

/* Footer */

.siteFooter {
  display: flex;
  width: 100%;
  min-height: 400px;
  border-top: 4px solid var(--cor-acento);
}

.siteFooter .footerLeft {
  width: 45%;
  background: linear-gradient(135deg, var(--cor-fundo-medio) 0%, var(--cor-fundo-escuro) 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  border-right: 3px solid var(--cor-acento);
}

.footerCommunity {
  border-bottom: 1px solid var(--cor-borda);
  padding-bottom: 1.5rem;
}

.footerCommunity:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footerCommunity h3 {
  font-family: 'Cinzel', serif;
  color: var(--cor-texto-claro);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--cor-acento);
}

.footerCommunity p {
  color: var(--cor-texto-claro);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.footerCommunity p strong {
  color: var(--cor-primaria);
}

.siteFooter .footerRight {
  width: 55%;
  background: linear-gradient(135deg, #E8DCC8 0%, #D4C4A8 100%);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerPadre {
  display: flex;
  gap: 2rem;
  max-width: 800px;
  align-items: flex-start;
}

.padreImage {
  flex-shrink: 0;
}

.padreImage img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--cor-acento);
}

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

.padreInfo h2 {
  font-family: 'Cinzel', serif;
  color: var(--cor-acento);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.padreInfo p {
  color: var(--cor-fundo-escuro);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: justify;
  font-weight: 400;
}

.padreQuote {
  font-style: italic;
  opacity: 0.9;
}

.whatsappBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cor-fundo-escuro);
  color: var(--cor-texto-claro);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.whatsappBtn:hover {
  background: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsappBtn i {
  font-size: 1.1rem;
}

/* Footer responsive */

@media (max-width: 1024px) {
  .bottomHeader {
    padding: 0.75rem 1.5rem 1rem;
  }

  .navMenu {
    gap: 0.25rem;
    padding: 0.5rem 1rem;
  }

  .navMenu a {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .dropdownToggle {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .heroContent {
    gap: 2rem;
  }

  .heroText h1 {
    font-size: 2rem;
  }

  .youtubeVideos {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galleryGrid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .galleryItemLarge {
    grid-column: span 1;
  }

  .galleryItem:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .topHeader {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
  }

  .headerTitle {
    align-items: center;
  }

  .headerTitle h1 {
    font-size: 1.75rem;
    text-align: center;
  }

  .headerSubtitle {
    font-size: 0.8rem;
    text-align: center;
  }

  .bottomHeader {
    justify-content: center;
    padding: 0.75rem 1.5rem;
    min-height: 50px;
  }

  .menuHamburger {
    display: flex;
  }

  .menuText {
    display: block;
  }

  .menuHamburger.active {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
  }

  .menuHamburger.active .hamburgerIcon span {
    background: var(--cor-primaria);
  }

  .navMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(61, 43, 31, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 9999;
    border-radius: 0;
    border: none;
    padding: 2rem 0;
    overflow-y: auto;
  }

  .navMenu.active {
    display: flex;
  }

  .menuHamburger {
    z-index: 10000;
  }

  .navMenu a {
    color: var(--cor-texto-claro);
    font-size: 1.3rem;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--cor-borda);
    border-radius: 0;
  }

  .navMenu a:hover {
    background: rgba(197, 165, 114, 0.15);
    color: var(--cor-primaria);
  }

  .navMenu a::after {
    display: none;
  }

  .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dropdownToggle {
    color: var(--cor-texto-claro);
    font-size: 1.3rem;
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--cor-borda);
    border-radius: 0;
  }

  .dropdownToggle i {
    font-size: 0.8rem;
    position: static;
  }

  .dropdown.open .dropdownToggle {
    background: rgba(197, 165, 114, 0.15);
    color: var(--cor-primaria);
  }

  .dropdownMenu {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    min-width: 100%;
    border-radius: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    padding: 0;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
  }

  .dropdown.open .dropdownMenu {
    max-height: 500px;
  }

  .dropdown.open .dropdownToggle i {
    transform: rotate(180deg);
  }

  .dropdownMenu a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    text-align: center;
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
    display: flex;
    justify-content: center;
  }

  .dropdownMenu a:hover {
    background: rgba(197, 165, 114, 0.15);
    color: var(--cor-primaria);
  }

  /* Hero Responsive */
  .heroSection {
    padding: 2rem 1rem;
  }

  .heroContent {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

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

  .heroTag {
    align-self: center;
  }

  .heroText h1 {
    font-size: 1.75rem;
  }

  .heroText p {
    font-size: 1rem;
    text-align: center;
  }

  .heroButtons {
    flex-direction: column;
    width: 100%;
  }

  .btnPrimary,
  .btnSecondary {
    justify-content: center;
  }

  .heroPosts {
    width: 100%;
    align-items: center;
  }

  .heroPosts h2 {
    font-size: 1.25rem;
  }

  .postCard {
    flex-direction: row;
    align-items: center;
  }

  .postImage {
    width: 80px;
    min-width: 80px;
    height: 60px;
  }

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

  .postInfo {
    padding: 0.5rem 0.75rem 0.5rem 0;
    flex: 1;
  }

  .postInfo h3 {
    font-size: 0.8rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }

  .postDate {
    font-size: 0.7rem;
  }

  .postsGrid {
    gap: 0.75rem;
  }

  .btnAllPosts {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  /* YouTube Responsive */
  .youtubeSection {
    padding: 2rem 1rem;
  }

  .youtubeHeader {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .youtubeTitle {
    justify-content: center;
  }

  .youtubeTitle h2 {
    font-size: 1.25rem;
  }

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

  /* About Responsive */
  .aboutSection {
    padding: 2.5rem 1rem;
  }

  .aboutHeader h2 {
    font-size: 1.75rem;
  }

  .aboutGrid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .aboutCard {
    padding: 1.5rem;
  }

  .aboutIcon {
    width: 50px;
    height: 50px;
  }

  .aboutIcon i {
    font-size: 1.25rem;
  }

  .aboutHighlight {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    border-left: none;
    border-top: 6px solid var(--cor-primaria);
  }

  .highlightText {
    align-items: center;
  }

  .highlightText h3 {
    font-size: 1.25rem;
  }

  .highlightText p {
    text-align: center;
  }

  .btnHighlight {
    align-self: center;
  }

  /* Gallery Responsive */
  .gallerySection {
    padding: 2.5rem 1rem;
  }

  .galleryHeader h2 {
    font-size: 1.75rem;
  }

  .galleryHeader p {
    font-size: 0.95rem;
  }

  .galleryGrid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 1rem;
  }

  .galleryItem,
  .galleryItemLarge,
  .galleryItem:first-child {
    grid-column: span 1;
    height: 200px;
  }

  .galleryOverlay i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .galleryOverlay span {
    font-size: 0.9rem;
  }

  .siteFooter {
    flex-direction: column;
  }

  .siteFooter .footerLeft,
  .siteFooter .footerRight {
    width: 100%;
  }

  .siteFooter .footerLeft {
    padding: 2rem 1.5rem;
    border-right: none;
    border-bottom: 3px solid var(--cor-acento);
  }

  .siteFooter .footerRight {
    padding: 2rem 1.5rem;
  }

  .footerPadre {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .padreInfo {
    align-items: center;
  }

  .padreInfo p {
    text-align: center;
  }

  .whatsappBtn {
    align-self: center;
  }
}

/* Carrinho Flutuante */
.carrinhoFlutuante {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #3D2B1F;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(197, 165, 114, 0.5);
  z-index: 999;
  transition: all 0.3s ease;
}

.carrinhoFlutuante:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(197, 165, 114, 0.6);
}

.carrinhoFlutuanteBadge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--cor-acento);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
