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

body {
  font-family: 'Exo', sans-serif;
  color: var(--text-color);
  background: var(--fundo);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ================= PALETA HARMÔNICA ================= */
:root {
  --verde: #9bc72c;
  --verde-escuro: #5f7f1f;
  --azul: #007780;
  --laranja: #e66012;
  --marrom: #7a4a2a;
  --fundo: #f0ebe0;
  --text-color: #4a4a4a;
  --heading-font: 'Lora', serif;

  --shadow-sm: 0 4px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 15px 30px rgba(0,0,0,0.1);
}

/* ================= TIPOGRAFIA BASE ================= */
h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  color: var(--azul);
  font-weight: 700;
}

/* ================= HEADER ================= */
.header {
  background-color: var(--azul);
  /* Padrão de fundo: Linhas curvas (água/mapa) + Gradiente */
  background-image: 
    url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 25 50 10 T 100 10' stroke='rgba(255,255,255,0.08)' fill='none' stroke-width='2'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--azul) 0%, #005f66 100%);
  background-size: 100px 20px, 100% 100%;
  border-bottom: 3px dashed var(--laranja); /* Detalhe visual de "trilha" */
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  height: 64px;
  width: auto;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.logo:hover, .logo:focus {
  transform: scale(1.05);
}

.logo-container {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.compass-icon {
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.compass-needle {
  transform-origin: 50px 50px;
  animation: compassMove 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

@keyframes compassMove {
  0% { transform: rotate(0deg); }
  40% { transform: rotate(30deg); }
  80% { transform: rotate(-20deg); }
  100% { transform: rotate(0deg); }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3; /* Garante que fique acima da navegação */
}

nav {
  display: flex;
  gap: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  padding: 8px 0;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

nav a:hover, nav a:focus {
  color: var(--verde);
  transform: translateY(-2px);
}

nav a:hover::before, nav a:focus::before {
  width: 60%;
}

/* separador delicado entre itens do menu */
/* removido: voltando ao estilo anterior sem pontos separadores */

/* BOTÃO HAMBURGUER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* ================= HERO ================= */
.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(1, 2, 2, 0.4), rgba(19, 24, 25, 0.5)),
    url('../img/hero.jpg') center/cover no-repeat;
  background-attachment: fixed; /* Efeito de paralaxe */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  color: white;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ================= BOTÕES ================= */
.btn {
  background: linear-gradient(135deg, var(--laranja) 0%, #d45a0a 100%);
  color: white;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  display: inline-block;
}

.btn:hover, .btn:focus {
  background: linear-gradient(135deg, var(--verde) 0%, #7cb61c 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(155, 199, 44, 0.4);
}

.btn:active, .btn:focus {
  transform: translateY(-1px);
}

/* ================= SOBRE ================= */
.sobre {
  padding: 80px 20px;
  background: white;
}

.sobre-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.sobre-texto h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.sobre-texto p {
  margin-bottom: 12px;
}

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

.sobre-texto, .sobre-img {
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 0;
}

.sobre-texto {
  transform: translateX(-50px);
}

.sobre-img {
  transform: translateX(50px);
}

.sobre-texto.is-visible, .sobre-img.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================= DESTINOS ================= */
.destinos {
  padding: 80px 20px;
  background: var(--fundo);
  text-align: center;
}

.destinos h2 {
  font-size: 2.5rem;
  margin-bottom: 35px;
}

.cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: white;
  width: 300px;
  border-radius: 16px;
  overflow: visible; /* Allow shadow to be visible */
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  padding-top: 200px; /* Space for the image */
}

.card:hover, .card:focus-within {
  box-shadow: var(--shadow-lg);
}

.card img {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card h3 {
  color: var(--azul);
  margin: 0;
  padding: 20px 20px 8px;
  font-size: 1.3rem;
}

.card p {
  padding: 0 20px 25px;
  font-size: 0.92rem;
  color: #666;
}

/* ================= SERVIÇOS ================= */
.servicos {
  padding: 80px 20px;
  text-align: center;
  background: white;
}

.servicos h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.servicos .card {
  padding: 40px 20px;
  overflow: hidden;
}

.servico-icon {
  width: 48px;
  height: 48px;
  color: var(--verde);
  margin-bottom: 20px;
}

.servicos .card h3 {
  padding: 0;
  margin-bottom: 10px;
}

.servicos .card p {
  padding: 0;
}

/* ================= CONTATO ================= */
.contato {
  padding: 80px 20px;
  background: var(--fundo);
  text-align: center;
}

.contato-container {
  max-width: 1100px;
  margin: auto;
}

.contato h2 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.contato-container > p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.contato-info {
  background: linear-gradient(135deg, rgba(9, 119, 128, 0.1) 0%, rgba(155, 199, 44, 0.05) 100%);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 5px solid var(--azul);
  position: relative;
  overflow: hidden;
}

.contato-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(155, 199, 44, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contato-info:hover, .contato-info:focus-within {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(9, 119, 128, 0.15) 0%, rgba(155, 199, 44, 0.1) 100%);
  border-left-color: var(--verde);
}

.contato-info h3 {
  margin-bottom: 15px;
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.contato-info p {
  color: #555;
  margin: 0;
  position: relative;
  z-index: 1;
}

.contato-info a {
  color: var(--laranja);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contato-info a:hover, .contato-info a:focus {
  color: var(--verde);
  font-weight: 700;
}

.contato-cta {
  margin-top: 40px;
}

/* ================= FORMULÁRIO DE CONTATO ================= */
.form-container {
  background: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: left;
}

.form-container h3 {
  margin-bottom: 25px;
  color: var(--azul);
  text-align: center;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Exo', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(155, 199, 44, 0.2);
  background: white;
}

.form-container button {
  width: 100%;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* ================= ROTEIROS ================= */
.roteiros-section {
  padding: 90px 20px;
  background: white;
}

.roteiros-section h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.5rem;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  opacity: 0;
  transform: translateY(-20px);
}

.secao-descricao {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
  opacity: 0;
  transform: translateY(-20px);
}

.roteiros-section h2.is-visible,
.secao-descricao.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.roteiro-card {
  max-width: 1100px;
  margin: 0 auto 60px;
  background: var(--fundo);
  border-radius: 14px;
  overflow: hidden; /* Keep this for inner elements */
  background: white; /* Fundo branco para destacar o card */
  box-shadow: var(--shadow-md); /* Sombra padrão */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roteiro-card:hover, .roteiro-card:focus-within {
  box-shadow: 0 18px 36px rgba(0,0,0,0.15); /* Sombra mais pronunciada no hover */
}

.roteiro-header {
  background: linear-gradient(135deg, var(--azul) 0%, var(--verde) 100%);
  color: white;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1); /* Linha sutil para separar */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.roteiro-header h3 {
  font-size: 1.8rem;
  color: white; /* Título branco para melhor contraste */
  margin: 0;
}

.badge-roteiro {
  background: rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-roteiro.adventura {
  background: rgba(230, 96, 18, 0.3);
}

.roteiro-conteudo {
  padding: 40px;
}

.roteiro-descricao {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.roteiro-destaque {
  background: var(--fundo); /* Usar cor do tema para destaque */
  padding: 20px;
  border-left: 5px solid var(--laranja); /* Cor de destaque diferente */
  border-radius: 8px;
  margin-bottom: 30px;
}

.roteiro-destaque h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.roteiro-destaque p {
  margin: 0;
  color: #444;
}

.roteiro-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.info-roteiro {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.info-roteiro strong {
  color: var(--azul);
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.info-roteiro p {
  color: #333;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.por-pessoa {
  display: block;
  font-size: 0.85rem;
  color: #999;
  font-weight: 400;
  margin-top: 5px;
}

.roteiro-conteudo-detalhado {
  margin: 30px 0;
  padding: 20px;
  background: var(--fundo); /* Fundo sutil para detalhes */
  border-left: 4px solid var(--verde);
  border-radius: 8px;
}

.roteiro-conteudo-detalhado h4 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.lista-inclusos,
.lista-cachoeiras {
  margin: 0;
  padding-left: 20px;
  color: #555;
}

.lista-inclusos li,
.lista-cachoeiras li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* PAUSAS DA TRILHA */
.parada-trilha {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 5px solid var(--laranja);
}

.parada-trilha h5 {
  color: var(--laranja);
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.parada-trilha p {
  color: #555;
  margin: 8px 0;
  font-size: 0.95rem;
}

.parada-trilha ul {
  margin: 12px 0;
  padding-left: 20px;
}

.parada-trilha li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.5;
}

/* CTA DESTAQUE */
.destaque-cta {
  background: linear-gradient(135deg, rgba(9, 119, 128, 0.15) 0%, rgba(155, 199, 44, 0.15) 100%);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
  border: 1px solid rgba(9, 119, 128, 0.2);
}

.destaque-cta p {
  margin: 0;
  color: var(--azul);
  font-weight: 600;
  font-size: 1rem;
}

/* ================= PERSONALIZAR ROTEIRO ================= */
.personalizar-roteiro {
  background: linear-gradient(135deg, var(--azul) 0%, var(--verde) 100%);
  color: white;
  padding: 50px 30px;
  border-radius: 14px;
  text-align: center;
  margin: 60px auto 40px;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
}

.personalizar-roteiro h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
}

.personalizar-roteiro p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.personalizar-roteiro .btn {
  background: white;
  color: var(--azul);
  border: none;
}

.personalizar-roteiro .btn:hover {
  background: #f9f9f9;
  color: var(--verde);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 24px;
  padding: 15px 18px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: 0.3s;
}

.whatsapp-float:hover, .whatsapp-float:focus {
  transform: scale(1.1);
}

/* ================= FOOTER ================= */

.footer {
  background: var(--azul);
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  text-align: left;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 12px 20px; /* reduzir altura */
  align-items: flex-start;
  justify-content: space-between; /* distribuir colunas */
}

.footer-col {
  flex: 1 1 260px;
  min-width: 200px;
  text-align: left; /* alinhar conteúdo das colunas à esquerda */
}

.footer h3,
.footer h4 {
  color: white;
  margin: 0 0 6px 0;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  margin: 0 0 6px 0;
  font-size: 0.92rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li { margin: 4px 0; }

.footer a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  display: inline-block;
  transition: color 0.14s ease, transform 0.14s ease;
  font-weight: 400;
}

.footer a:hover, .footer a:focus { color: var(--verde); transform: translateX(3px); }

/* ícones discretos */
.footer .icon { display:inline-flex; width:18px; height:18px; margin-right:8px; vertical-align:middle; color: rgba(255,255,255,0.95); }
.footer .contact-item { display:flex; align-items:center; gap:8px; }

.footer-links ul { padding:0; }
.footer-links ul li { margin:4px 0; }
.footer-links ul li a { display:inline-block; padding:1px 0; }

.footer-bottom {
  text-align: center;
  background: rgba(0,0,0,0.1);
  padding: 8px 12px; /* reduzir ainda mais */
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
}

/* Empilhar links rápidos verticalmente */
.footer-links a {
  display: block;
  margin: 8px 0;
  padding: 2px 0;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
  /* HEADER */
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--azul);
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    transform: translateY(-200%);
    transition: 0.3s ease;
    display: flex;
  }

  nav.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .compass-icon {
    display: none; /* Oculta a bússola em telas menores para economizar espaço */
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 50vh;
    background-attachment: scroll; /* Corrige o problema da imagem no celular */
  }

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

  .hero p {
    font-size: 1rem;
  }

  /* SOBRE */
  .sobre-container {
    flex-direction: column;
  }

  /* CARDS */
  .cards {
    gap: 20px;
  }

  .card {
    width: 100%;
  }

  /* GALERIA */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CONTATO */
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .contato h2 {
    font-size: 1.5rem;
  }

  /* DESTINOS */
  .roteiros-section h2 {
    font-size: 1.8rem;
  }

  .roteiro-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .roteiro-header h3 {
    font-size: 1.3rem;
  }

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

  .roteiro-conteudo {
    padding: 25px;
  }

  .parada-trilha {
    padding: 15px;
  }

  .parada-trilha h5 {
    font-size: 1rem;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-col {
    min-width: 100%;
  }
}
/* ================= GALERIA PREMIUM ================= */
.galeria {
  padding: 90px 20px;
  background: white;
  text-align: center;
}

.galeria h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.galeria-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-icon {
  font-size: 3rem;
  animation: heartbeat 0.6s ease infinite;
}

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

/* LIGHTBOX */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

#lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  animation: zoom 0.3s ease;
}

.close-lightbox {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: #bbb;
}

@keyframes zoom {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.footer a {
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.footer {
  position: relative;
  z-index: 1;
}
