:root {
  --primary: #2E7D32;
  --primary-hover: #236b26;
  --secondary: #66BB6A;
  --accent: #A5D6A7;
  --bg: #FAFAF7;
  --text: #2F2F2F;
  --text-light: #5A5A5A;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container: 1140px;
  --header-h: 64px;
  --error: #C62828;
  --success: #2E7D32;
  --focus-ring: 3px solid #66BB6A;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  z-index: 10000;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary);
  line-height: 1.3;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  min-height: 48px;
  text-decoration: none;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:active {
  background: var(--primary-hover);
  transform: scale(0.97);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:active {
  background: var(--primary);
  color: var(--white);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb {
  display: none;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: underline;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding-top: env(safe-area-inset-top, 0);
}

#header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--white);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

#header.scrolled .logo {
  color: var(--primary);
}

.logo img {
  width: 32px;
  height: 32px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.header-whatsapp:active {
  transform: scale(0.92);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#header.scrolled .hamburger span {
  background: var(--text);
}

.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(6px, -6px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  flex-direction: column;
  padding: calc(64px + env(safe-area-inset-top, 0)) 32px 32px;
  gap: 8px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  z-index: 999;
  display: flex;
  overflow-y: auto;
}

.nav-list.open {
  right: 0;
}

.nav-list a {
  color: var(--text) !important;
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-list a:active {
  background: var(--accent);
}

.nav-list .nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1B5E20, #2E7D32, #66BB6A);
  background: url('../img/hero.jpg') center center / cover no-repeat, linear-gradient(135deg, #1B5E20, #2E7D32, #66BB6A);
  color: var(--white);
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 16px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.9;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero .btn {
  width: 100%;
  max-width: 320px;
  min-height: 52px;
  font-size: 1.05rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.sobre-image {
  margin: 0;
}

.sobre-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sobre-image figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

.sobre-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.beneficios {
  background: var(--white);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.beneficio-card {
  text-align: center;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.beneficio-card:active {
  box-shadow: var(--shadow-hover);
}

.beneficio-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.beneficio-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.beneficio-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.produtos {
  background: var(--bg);
}

.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.produto-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.produto-card:active {
  box-shadow: var(--shadow-hover);
}

.produto-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.produto-card .card-body {
  padding: 16px;
  text-align: center;
}

.produto-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.produto-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.produto-card .btn {
  width: 100%;
  min-height: 48px;
  font-size: 0.95rem;
}

.paginacao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.pag-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.pag-btn:active:not(:disabled) {
  background: var(--primary);
  color: var(--white);
  transform: scale(0.94);
}

.pag-btn:disabled {
  border-color: #C8C8C8;
  color: #C8C8C8;
  cursor: not-allowed;
}

.pag-info {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
  min-width: 60px;
  text-align: center;
}

.depoimentos {
  background: var(--white);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.depoimento-card {
  background: var(--bg);
  padding: 24px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.depoimento-card:active {
  box-shadow: var(--shadow);
}

.stars {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #F9A825;
  letter-spacing: 2px;
}

.depoimento-card blockquote {
  margin: 0;
}

.depoimento-card p {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.depoimento-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.como-comprar {
  background: var(--white);
}

.passos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.passo-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: box-shadow 0.2s ease;
}

.passo-card:active {
  box-shadow: var(--shadow-hover);
}

.passo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.passo-card h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.passo-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lojas {
  background: var(--bg);
}

.lojas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.loja-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.loja-card:active {
  box-shadow: var(--shadow-hover);
}

.loja-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.loja-address {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.loja-map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  z-index: 0;
}

.loja-card .btn {
  width: auto;
  justify-self: center;
  padding: 12px 28px;
}

.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 700px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid #E0E0E0;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 16px 16px;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary);
  width: 100%;
  max-width: 320px;
  min-height: 52px;
}

.cta .btn-primary:active {
  background: var(--accent);
  color: var(--primary);
}

.contato {
  background: var(--bg);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-style: normal;
}

.contato-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contato-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contato-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 600;
}

.contato-item a,
.contato-item p {
  color: var(--text);
  font-size: 0.95rem;
}

.contato-item a:active {
  color: var(--primary);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #C8C8C8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background: var(--white);
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: #999;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: var(--secondary);
  outline: none;
}

.contato-form input.erro,
.contato-form textarea.erro {
  border-color: var(--error);
}

.contato-form input.sucesso,
.contato-form textarea.sucesso {
  border-color: var(--success);
}

.form-error {
  font-size: 0.85rem;
  color: var(--error);
  min-height: 1.2em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-error.visible::before {
  content: '✗ ';
}

.form-error.sucesso-msg::before {
  content: '✓ ';
  color: var(--success);
}

.form-error.sucesso-msg {
  color: var(--success);
}

.form-counter {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: right;
  margin-top: -8px;
}

.form-status {
  text-align: center;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.95rem;
}

.form-status.visible { display: block; }
.form-status.sucesso { background: #E8F5E9; color: var(--success); }
.form-status.erro { background: #FFEBEE; color: var(--error); }
.form-status.loading { background: #FFF8E1; color: #8D6E00; }

.contato-form .btn {
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
}

.contato-canais {
  margin-top: 32px;
  text-align: center;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contato-canais h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.contato-canais .btn {
  width: 100%;
  max-width: 320px;
}

.footer {
  background: #1B3B1B;
  color: var(--white);
  padding-top: 40px;
  padding-bottom: env(safe-area-inset-bottom, 16px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 24px;
  text-align: center;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 12px;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-nav h3,
.footer-social h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-nav a,
.social-links a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
  font-size: 0.9rem;
  padding: 6px 0;
  display: inline-block;
}

.footer-nav a:active,
.social-links a:active {
  opacity: 1;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0));
  right: calc(16px + env(safe-area-inset-right, 0));
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:active {
  transform: scale(0.92);
  animation: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 16px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  transform: scale(0.95) translateY(8px);
  transition: transform 0.3s ease;
}

.modal.open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--white);
  border: none;
  cursor: pointer;
  color: var(--text-light);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.modal-body {
  padding: 52px 20px 24px;
}

.modal-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.modal-thumb {
  margin: 0;
  flex-shrink: 0;
  width: 120px;
}

.modal-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.modal-thumb figcaption {
  display: none;
}

.modal-header-info {
  flex: 1;
  min-width: 0;
}

.modal-header-info h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.modal-header-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.modal-details {
  margin-top: 4px;
}

.modal-details h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 6px;
  margin-top: 20px;
}

.modal-details p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.modal-details ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--text-light);
}

.modal-details ul li {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.modal-faq {
  margin-top: 4px;
}

.modal-faq dt {
  font-weight: 600;
  color: var(--text);
  margin-top: 14px;
  font-size: 0.88rem;
}

.modal-faq dd {
  color: var(--text-light);
  margin: 4px 0 0 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ========== 361px+ ========== */
@media (min-width: 361px) {
  .hero-title { font-size: 2rem; }
}

/* ========== 481px+ ========== */
@media (min-width: 481px) {
  .container { padding: 0 24px; }

  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero .btn { width: auto; min-height: 52px; }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .depoimentos-grid {
    gap: 20px;
  }

  .passos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-content h2 { font-size: 1.6rem; }

  .modal-content {
    max-width: 600px;
    max-height: 85vh;
    max-height: 85dvh;
  }

  .modal-body {
    padding: 52px 28px 28px;
  }

  .modal-header {
    gap: 20px;
  }

  .modal-thumb {
    width: 160px;
  }

  .modal-thumb img {
    height: 120px;
  }

  .modal-header-info h3 {
    font-size: 1.25rem;
  }

  .modal-details {
    margin-top: 8px;
  }

  .contato-form .btn { width: auto; }

  .footer-inner { gap: 40px; }
}

/* ========== 769px+ (Tablets) ========== */
@media (min-width: 769px) {
  :root { --header-h: 72px; }

  .container { padding: 0 32px; }

  .section { padding: 72px 0; }
  .section-title { font-size: 1.8rem; }
  .section-subtitle { font-size: 1.05rem; margin-bottom: 40px; }

  .header-inner { gap: 16px; }
  .logo { font-size: 1.3rem; }
  .logo img { width: 36px; height: 36px; }

  .nav-overlay { display: none; }

  .nav-list {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
    flex-direction: row;
    gap: 20px;
    overflow: visible;
  }

  .nav-list .nav-close { display: none; }

  .nav-list a {
    color: var(--white) !important;
    font-size: 0.9rem;
    padding: 4px 0;
    border-radius: 0;
    position: relative;
  }

  #header.scrolled .nav-list a { color: var(--text) !important; }

  .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
  }

  .nav-list a:hover::after,
  .nav-list a:focus-visible::after {
    width: 100%;
  }

  .hamburger { display: none; }

  .header-whatsapp {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
  }

  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.15rem; }

  .hero .btn {
    max-width: 340px;
    font-size: 1rem;
  }

  .beneficios-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
  }

  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .passos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .contato-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 32px;
  }

  .contato-form .btn { width: auto; }

  .cta-content h2 { font-size: 1.8rem; }

  .cta .btn-primary {
    width: auto;
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    text-align: left;
    gap: 48px;
  }

  .footer .logo { justify-content: flex-start; }
  .footer-nav ul,
  .social-links { align-items: flex-start; }

  .modal-content {
    max-width: 640px;
  }

  .contato-canais .btn { width: auto; }

  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(46,125,50,0.35);
  }

  .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
    animation: none;
  }

  .produto-card:hover {
    box-shadow: var(--shadow-hover);
  }

  .beneficio-card:hover {
    box-shadow: var(--shadow-hover);
  }

  .passo-card:hover {
    box-shadow: var(--shadow-hover);
  }

  .pag-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,125,50,0.3);
  }
}

/* ========== 1025px+ (Notebooks) ========== */
@media (min-width: 1025px) {
  .produtos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title { font-size: 2.8rem; }
  .hero-content { max-width: 680px; }
}

/* ========== 1367px+ (Desktop) ========== */
@media (min-width: 1367px) {
  .container { padding: 0 40px; }

  .produtos-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title { font-size: 3rem; }

  .section { padding: 80px 0; }

  .card-body { padding: 24px; }
}

/* ========== 1921px+ (UltraWide) ========== */
@media (min-width: 1921px) {
  .container {
    max-width: 1400px;
    padding: 0 48px;
  }

  .hero-content { max-width: 800px; }
  .hero-title { font-size: 3.2rem; }
  .hero-subtitle { font-size: 1.2rem; }
}

/* Landscape orientation */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: 120vh;
    min-height: 120dvh;
  }

  .hero-title { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 16px; }

  .nav-list {
    padding-top: 48px;
  }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
