/* ============================
   LOJA NATURA BUENA VISTA
   Identidade: Natural, orgânico, feminino-sofisticado
   ============================ */

:root {
  --color-primary: #EF6C00;
  --color-primary-dark: #E65100;
  --color-primary-light: #FF9800;
  --color-cream: #FFF5EE;
  --color-cream-light: #FFFAF5;
  --color-brown: #4E2C0E;
  --color-brown-light: #8B5E3C;
  --color-green: #3D7A4A;
  --color-green-light: #5DA06A;
  --color-white: #FFFFFF;
  --color-text: #2D1500;
  --color-text-light: #6B5B4E;
  --color-border: #E8DDD0;
  --color-bg: #FFFCF8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(92, 45, 14, 0.06);
  --shadow-md: 0 4px 20px rgba(92, 45, 14, 0.08);
  --shadow-lg: 0 8px 40px rgba(92, 45, 14, 0.12);
  --shadow-card: 0 2px 12px rgba(92, 45, 14, 0.07);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--color-brown); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ---- UTILITIES ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  color: var(--color-brown);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(240, 90, 40, 0.3);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(240, 90, 40, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--color-brown);
  border: 2px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(240, 90, 40, 0.04);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  background: rgba(255, 252, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(255, 252, 248, 0.97);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-brown);
}
.navbar-logo span { color: var(--color-primary); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.navbar-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--color-primary); }
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
  border-radius: 1px;
}
.navbar-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 50%, #FFF5EC 100%);
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239,108,0,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74,124,89,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240, 90, 40, 0.08);
  color: var(--color-primary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(240, 90, 40, 0.15);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--color-brown);
}
.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--color-cream) 0%, rgba(240,90,40,0.08) 50%, rgba(74,124,89,0.06) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 2px dashed var(--color-border);
  color: var(--color-text-light);
  font-size: 0.9rem;
}
.hero-image-placeholder svg { opacity: 0.4; }

/* ---- ABOUT / SOBRE ---- */
.about {
  padding: 6rem 0;
  background: var(--color-white);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-cream), rgba(74,124,89,0.08));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
  color: var(--color-text-light);
  font-size: 0.85rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-card {
  padding: 1.25rem;
  background: var(--color-cream-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.value-card .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 90, 40, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.value-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-brown);
}
.value-card p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ---- PRODUCTS / CATEGORIAS ---- */
.products {
  padding: 6rem 0;
  background: var(--color-cream-light);
}
.products-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.products-header .section-desc { margin: 0.5rem auto 0; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card-image svg { opacity: 0.3; }
.product-card-body {
  padding: 1.5rem;
}
.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--color-brown);
}
.product-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition);
}
.product-card:hover .product-card-link { gap: 0.7rem; }

/* ---- HIGHLIGHT / DESTAQUE ---- */
.highlight {
  padding: 6rem 0;
  background: var(--color-brown);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.highlight .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.highlight .section-label { color: var(--color-primary-light); }
.highlight .section-label::before { background: var(--color-primary-light); }
.highlight .section-title { color: var(--color-cream); }
.highlight .section-desc { color: rgba(247, 239, 227, 0.8); }
.highlight-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.highlight-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 90, 40, 0.2);
  border-radius: 50%;
  color: var(--color-primary-light);
  margin-top: 2px;
}
.highlight-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247, 239, 227, 0.9);
}
.highlight-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.stat-card .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-card .label {
  font-size: 0.82rem;
  color: rgba(247, 239, 227, 0.7);
  letter-spacing: 0.03em;
}

/* ---- LOCATION ---- */
.location {
  padding: 6rem 0;
  background: var(--color-white);
}
.location-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.location-header .section-desc { margin: 0.5rem auto 0; }
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 400px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-card {
  padding: 1.5rem;
  background: var(--color-cream-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-card .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 90, 40, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
}
.info-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--color-brown);
}
.info-card p, .info-card a {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.info-card a:hover { color: var(--color-primary); }

/* ---- BLOG SECTION ---- */
.blog-section {
  padding: 6rem 0;
  background: var(--color-cream-light);
}
.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-brown);
  line-height: 1.3;
}
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--color-primary); }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--color-brown);
  color: var(--color-cream);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-cream);
}
.footer-brand span { color: var(--color-primary-light); }
.footer-desc {
  font-size: 0.88rem;
  color: rgba(247, 239, 227, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-cream);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(247, 239, 227, 0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-primary-light); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--color-primary-light);
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(247, 239, 227, 0.7);
}
.footer-contact-item a:hover { color: var(--color-primary-light); }
.footer-bottom {
  padding: 1.5rem 0;
  margin-top: 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(247, 239, 227, 0.5);
  text-align: center;
}
.footer-bottom a { color: var(--color-primary-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---- PAGE HEADER (subpages) ---- */
.page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  justify-content: center;
}
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .current { color: var(--color-text-light); }

/* ---- POST CONTENT ---- */
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}
.post-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-brown);
}
.post-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-brown);
}
.post-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}
.post-content ul, .post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.post-content img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

/* ---- POST CTA ---- */
.post-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--color-cream-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  text-align: center;
}
.post-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.post-cta p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* ---- SERVICE PAGE ---- */
.service-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--color-cream), var(--color-cream-light));
}
.service-content {
  padding: 4rem 0;
}
.service-content .container {
  max-width: 900px;
}
.service-content h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.service-content p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.25rem; color: var(--color-text-light); }
.service-content ul { margin: 1rem 0 1.5rem 1.5rem; list-style: disc; }
.service-content li { margin-bottom: 0.5rem; line-height: 1.7; color: var(--color-text-light); }
.service-cta {
  padding: 4rem 0;
  background: var(--color-cream-light);
  text-align: center;
}
.service-cta h2 { margin-bottom: 1rem; }
.service-cta p { color: var(--color-text-light); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ---- BLOG INDEX ---- */
.blog-page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--color-cream), var(--color-cream-light));
  text-align: center;
}

/* ---- DROPDOWN PRODUTOS ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  min-width: 220px;
  z-index: 1001;
  padding-top: 1.2rem;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--color-cream-light);
  color: var(--color-primary);
}
.dropdown-menu a::after { display: none; }
.dropdown-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0.4rem 0;
}
.dropdown-label {
  display: block;
  padding: 0.3rem 1.25rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brown);
  pointer-events: none;
}

/* ---- REAL IMAGES IN CARDS ---- */
.product-card-image img,
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-real {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 520px;
}
.hero-image-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual-real {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
}
.about-visual-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.navbar-logo img {
  height: 70px;
  width: auto;
}
.service-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}
.service-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* ---- VIDEO GALLERY ---- */
.videos-section {
  padding: 5rem 0;
  background: var(--color-white);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  background: var(--color-cream-light);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.video-card video {
  width: 100%;
  display: block;
}
.video-card-body {
  padding: 1rem 1.25rem;
}
.video-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; }
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .about .container { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { display: none; }
  .highlight .container { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 998;
  }
  .navbar-links.active { display: flex; }
  .navbar-links a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 999; }

  .hero { min-height: 80vh; padding-top: 100px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .products-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .highlight-stats { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 1.8rem; }
  .highlight .section-title { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.9rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
}
