:root {
  --bg-gradient-start: #f4f7ff;
  --bg-gradient-end: #f1fffb;
  --primary: #22a06b;
  --primary-dark: #1b7d54;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 18px;
  --radius-full: 999px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background: linear-gradient(135deg, #faf8f4 0%, #f5faf8 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Flores decorativas - canto superior direito */
body::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -90px;
  width: 300px;
  height: 300px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><g opacity="0.35"><ellipse cx="100" cy="60" rx="20" ry="35" fill="%237DDFCB" transform="rotate(0 100 100)"/><ellipse cx="100" cy="60" rx="20" ry="35" fill="%237DDFCB" transform="rotate(60 100 100)"/><ellipse cx="100" cy="60" rx="20" ry="35" fill="%237DDFCB" transform="rotate(120 100 100)"/><ellipse cx="100" cy="60" rx="20" ry="35" fill="%237DDFCB" transform="rotate(180 100 100)"/><ellipse cx="100" cy="60" rx="20" ry="35" fill="%237DDFCB" transform="rotate(240 100 100)"/><ellipse cx="100" cy="60" rx="20" ry="35" fill="%237DDFCB" transform="rotate(300 100 100)"/><circle cx="100" cy="100" r="15" fill="%237DDFCB"/></g></svg>') no-repeat center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

/* Flores decorativas - canto superior esquerdo */
body::after {
  content: '';
  position: absolute;
  top: 320px;
  left: -110px;
  width: 320px;
  height: 320px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><g opacity="0.30"><ellipse cx="100" cy="60" rx="18" ry="32" fill="%237DDFCB" transform="rotate(0 100 100)"/><ellipse cx="100" cy="60" rx="18" ry="32" fill="%237DDFCB" transform="rotate(60 100 100)"/><ellipse cx="100" cy="60" rx="18" ry="32" fill="%237DDFCB" transform="rotate(120 100 100)"/><ellipse cx="100" cy="60" rx="18" ry="32" fill="%237DDFCB" transform="rotate(180 100 100)"/><ellipse cx="100" cy="60" rx="18" ry="32" fill="%237DDFCB" transform="rotate(240 100 100)"/><ellipse cx="100" cy="60" rx="18" ry="32" fill="%237DDFCB" transform="rotate(300 100 100)"/><circle cx="100" cy="100" r="13" fill="%237DDFCB"/></g></svg>') no-repeat center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244, 247, 255, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.logo-text {
  font-weight: 600;
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  color: #4b5563;
  transition: color 0.2s ease, transform 0.15s ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-header {
  font-size: 0.9rem;
}

/* Botão padrão */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(34, 160, 107, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 18px 40px rgba(34, 160, 107, 0.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-secondary:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.4);
  transform: translateY(-1px);
}

/* Menu mobile */

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */

.main-hero {
  padding: 1.5rem 0 3rem; /* reduzir espaço superior para aproximar do topo */
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr; /* centraliza conteúdo e coloca visual abaixo */
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
}

.hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(34,160,107,0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px rgba(34,160,107,0.06);
}

.hero-title {
  font-size: 4.2rem; /* maior para combinar com print */
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  font-weight: 400;
  color: #111827;
}

.hero-title-accent {
  display: block;
  margin-top: 0.25rem;
  font-style: italic;
  color: var(--primary);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.8rem; /* tornar a segunda linha mais pronunciada */
  line-height: 0.98;
  font-weight: 600;
  transform: translateY(-0.06em);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Ajustes para telas grandes */
@media (min-width: 1200px) {
  .container { max-width: 1320px; }
  .hero-title { font-size: 4.6rem; }
  .hero-title-accent { font-size: 5.2rem; }
}

@media (max-width: 900px) {
  .hero-title { font-size: 2.6rem; }
  .hero-title-accent { font-size: 2.8rem; }
  .main-hero { padding-top: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-title-accent { font-size: 2.2rem; }
}

/* Eye visual */

.hero-visual {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.eye-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eye-wrapper svg {
  filter: drop-shadow(0 8px 24px rgba(125, 223, 203, 0.3));
}

/* Sections genéricas */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.8);
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.section p {
  color: var(--text-muted);
  max-width: 640px;
}

/* ===== Seção Contato ===== */

.section-contact {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(244, 247, 255, 0.3) 0%, rgba(245, 255, 250, 0.3) 100%);
}

.contact-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
  width: 100%;
}

.contact-title .highlight-green {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', serif;
}

.contact-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 880px;
  margin: 0 auto 3rem auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Formulário */

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 160, 107, 0.15);
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Informações de Contato */

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 160, 107, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-info-content {
  flex: 1;
}

.contact-info-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.contact-info-text {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.contact-info-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Card WhatsApp */

.contact-whatsapp-card {
  background: linear-gradient(135deg, var(--primary), #1b7d54);
  padding: 1.3rem 1.8rem;
  border-radius: 12px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 30px rgba(34, 160, 107, 0.3);
}

.btn-whatsapp {
  background: white;
  color: var(--primary);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  width: 100%;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Instagram Button */

.instagram-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.instagram-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.instagram-button:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

/* Responsivo */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .section-contact {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .form-row-double {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 1.2rem;
  }
}

/* ===== Animações de Scroll ===== */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.scroll-animate {
  opacity: 0;
}

.scroll-animate.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.scroll-animate-left.visible {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.scroll-animate-right.visible {
  animation: fadeInRight 0.6s ease-out forwards;
}

/* Delay para efeito em cascata */
.scroll-animate:nth-child(1) { animation-delay: 0s; }
.scroll-animate:nth-child(2) { animation-delay: 0.1s; }
.scroll-animate:nth-child(3) { animation-delay: 0.2s; }
.scroll-animate:nth-child(4) { animation-delay: 0.3s; }
.scroll-animate:nth-child(5) { animation-delay: 0.4s; }
.scroll-animate:nth-child(6) { animation-delay: 0.5s; }

.scroll-animate.visible:nth-child(1) { animation-delay: 0s; }
.scroll-animate.visible:nth-child(2) { animation-delay: 0.1s; }
.scroll-animate.visible:nth-child(3) { animation-delay: 0.2s; }
.scroll-animate.visible:nth-child(4) { animation-delay: 0.3s; }
.scroll-animate.visible:nth-child(5) { animation-delay: 0.4s; }
.scroll-animate.visible:nth-child(6) { animation-delay: 0.5s; }

/* Responsivo */

/* Footer */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.5rem 0;
  background: rgba(244, 247, 255, 0.95);
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsivo */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-inner {
    gap: 0.75rem;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(244, 247, 255, 0.98);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease-out;
  }

  .nav.nav-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .eye-wrapper svg {
    width: 220px;
    height: 110px;
  }
}

/* ===== Seção Sobre a Iridologia ===== */

.section-about {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, rgba(244, 247, 255, 0.4) 0%, rgba(245, 255, 250, 0.4) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.brain-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
  object-fit: cover;
}

.about-label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.about-title {
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  font-weight: 400;
  color: var(--text-main);
}

.about-title .highlight {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', serif;
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.about-benefits {
  list-style: none;
  margin-top: 1.8rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-benefits li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.check-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  min-width: 24px;
}

/* ===== Seção Terapeuta ===== */

.section-therapist {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(244, 247, 255, 0.4) 0%, rgba(245, 255, 250, 0.35) 100%);
}

.therapist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.therapist-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.therapist-avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 30% 30%, #c2f5e5, #7ddfcb);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.therapist-badge {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(34, 160, 107, 0.12);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.therapist-title {
  font-size: 2.4rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.8rem 0;
  font-weight: 500;
}

.therapist-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.therapist-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.therapist-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.therapist-list li::before {
  content: '•';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.therapist-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 160, 107, 0.12);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.highlight-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.highlight-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .therapist-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .therapist-photo {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section-therapist {
    padding: 3.5rem 0;
  }

  .therapist-avatar {
    width: 200px;
    height: 200px;
  }

  .therapist-title {
    font-size: 2rem;
  }

  .therapist-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsivo */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .brain-img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .section-about {
    padding: 3.5rem 0;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-benefits {
    margin-top: 1.5rem;
    gap: 0.9rem;
  }

  .about-benefits li {
    font-size: 0.9rem;
  }
}

/* ===== Seção Serviços ===== */
.section-services {
  padding: 4rem 0;
  background: transparent;
}

.section-kicker {
  text-align: center;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 auto 1.5rem auto;
  font-size: 1rem;
  display: block;
}

.services-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
  width: 100%;
}

.services-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 880px;
  margin: 0 auto 2.5rem auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(34,160,107,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.card-title {
  font-size: 1.05rem;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.card-text {
  margin: 0 0 0.8rem 0;
  color: var(--text-muted);
}

.card-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-main);
}

.card-list li {
  margin-bottom: 0.45rem;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-title { font-size: 2.0rem; }
}

/* ===== Seção Produtos ===== */
.section-products {
  padding: 4rem 0;
  background: transparent;
}

.products-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
  width: 100%;
}

.products-title .highlight {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
  font-family: Georgia, 'Times New Roman', serif;
}

.products-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 880px;
  margin: 0 auto 2.5rem auto;
}

.products-section {
  margin-top: 2.5rem;
}

.products-section-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-icon {
  color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15,23,42,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(15,23,42,0.1);
}

.product-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.product-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-main);
  line-height: 1.3;
}

.product-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  width: 100%;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: rgba(34,160,107,0.08);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-title {
    font-size: 2.0rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== Remédios Fitoterápicos ===== */

.products-section {
  margin-top: 2.5rem;
}

.products-section:last-child {
  margin-top: 4rem;
}

.remedies-section-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.remedies-text {
  padding-right: 0;
}

.products-section-title-alt {
  font-size: 2.4rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.products-section-subtitle {
  font-size: 0.9rem;
  color: #8b7355;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 400;
}

.products-section-text {
  font-size: 0.85rem;
  color: #8b7355;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 400;
}

.remedies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 1.5rem;
}

.remedy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.remedy-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.remedy-icon svg {
  width: 32px;
  height: 32px;
}

.remedy-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2933;
  margin: 0;
  line-height: 1.3;
}

.remedy-description {
  font-size: 0.8rem;
  color: #8b7355;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.remedies-note {
  font-size: 0.75rem;
  color: #a89080;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  padding: 0 1rem;
}

@media (max-width: 1024px) {
  .remedies-section-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .products-section-title-alt {
    font-size: 1.3rem;
  }

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

  .remedy-card {
    padding: 0;
  }
}

/* ================================================= */
/*  ESTILOS PARA FUNCIONALIDADES JAVASCRIPT         */
/* ================================================= */

/* ===== Validação de Formulário ===== */
.form-group.error input,
.form-group.error textarea {
  border-color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.05);
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ===== Mensagem de Sucesso do Formulário ===== */
.form-success-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, rgba(34, 160, 107, 0.1) 0%, rgba(125, 223, 203, 0.1) 100%);
  border: 2px solid var(--primary);
  border-radius: 12px;
  margin-bottom: 2rem;
  animation: slideInDown 0.4s ease-out;
  box-shadow: 0 4px 12px rgba(34, 160, 107, 0.15);
}

.form-success-message svg {
  color: var(--primary);
  flex-shrink: 0;
}

.form-success-message span {
  color: #1b7d54;
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* ===== Menu Mobile Melhorado ===== */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-main);
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle.active {
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 100;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.5rem;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav.nav-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem 1.2rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 1.05rem;
  }

  .nav-link:hover {
    background: rgba(34, 160, 107, 0.08);
    transform: translateX(5px);
  }

  .btn-header {
    display: none;
  }
}

/* ===== Animações de Scroll Melhoradas ===== */
.scroll-animate,
.scroll-animate-left,
.scroll-animate-right,
.service-card,
.product-card,
.remedy-card,
.contact-info-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate-left {
  transform: translateX(-50px) translateY(20px);
}

.scroll-animate-right {
  transform: translateX(50px) translateY(20px);
}

.scroll-animate.visible,
.scroll-animate-left.visible,
.scroll-animate-right.visible,
.service-card.visible,
.product-card.visible,
.remedy-card.visible,
.contact-info-card.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Adicionar delay escalonado para cards */
.service-card:nth-child(1).visible { transition-delay: 0.1s; }
.service-card:nth-child(2).visible { transition-delay: 0.2s; }
.service-card:nth-child(3).visible { transition-delay: 0.3s; }
.service-card:nth-child(4).visible { transition-delay: 0.4s; }

.product-card:nth-child(1).visible { transition-delay: 0.1s; }
.product-card:nth-child(2).visible { transition-delay: 0.2s; }
.product-card:nth-child(3).visible { transition-delay: 0.3s; }
.product-card:nth-child(4).visible { transition-delay: 0.4s; }

.contact-info-card:nth-child(1).visible { transition-delay: 0.1s; }
.contact-info-card:nth-child(2).visible { transition-delay: 0.2s; }
.contact-info-card:nth-child(3).visible { transition-delay: 0.3s; }
.contact-info-card:nth-child(4).visible { transition-delay: 0.4s; }

/* ===== Botão de Submit com Loading ===== */
.btn-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ===== Scroll suave para navegadores antigos ===== */
html {
  scroll-behavior: smooth;
}

/* ================================================= */
/*  NOVAS MELHORIAS MODERNAS                        */
/* ================================================= */

/* ===== Rodapé Melhorado ===== */
.footer {
  background: linear-gradient(135deg, #1f2933 0%, #2d3748 100%);
  color: white;
  padding: 3rem 0 1.5rem;
  border-top: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  color: #7DDFCB;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #7DDFCB;
  transform: translateX(5px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ===== Botão Voltar ao Topo ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #1b7d54 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(34, 160, 107, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(34, 160, 107, 0.5);
}

.back-to-top:active {
  transform: translateY(-2px);
}

/* ===== Barra de Progresso de Scroll ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #7DDFCB 100%);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===== Hover Effects nos Botões ===== */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== Shimmer Effect nos Cards ===== */
.service-card,
.product-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(125, 223, 203, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::after,
.product-card:hover::after {
  left: 100%;
}

/* ===== Pulsação no Logo ===== */
.logo-mark {
  animation: pulse 2s ease-in-out infinite;
}

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

/* ===== Header Dinâmico ===== */
.header {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

/* ===== Seleção de Texto Customizada ===== */
::selection {
  background: rgba(34, 160, 107, 0.3);
  color: var(--text-main);
}

::-moz-selection {
  background: rgba(34, 160, 107, 0.3);
  color: var(--text-main);
}

/* ===== Scrollbar Customizada ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary) 0%, #7DDFCB 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1b7d54 0%, var(--primary) 100%);
}

/* ===== Loading Animation ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== Responsividade do Rodapé ===== */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
}
