/* Acesso Direto - Design System */
:root {
  /* Base colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(215, 25%, 15%);
  
  /* Card styles */
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(215, 25%, 15%);
  
  /* Primary - Deep professional blue */
  --primary: hsl(215, 60%, 25%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-hover: hsl(215, 60%, 20%);
  --primary-light: hsl(215, 60%, 95%);
  
  /* Secondary - Warm orange */
  --secondary: hsl(25, 85%, 55%);
  --secondary-foreground: hsl(0, 0%, 100%);
  --secondary-hover: hsl(25, 85%, 50%);
  --secondary-light: hsl(25, 85%, 95%);
  
  /* Muted tones */
  --muted: hsl(215, 15%, 95%);
  --muted-foreground: hsl(215, 15%, 45%);
  
  /* Accent - Energetic coral */
  --accent: hsl(15, 80%, 60%);
  --accent-foreground: hsl(0, 0%, 100%);
  --accent-hover: hsl(15, 80%, 55%);
  
  /* Border */
  --border: hsl(215, 20%, 88%);
  
  /* Shadows */
  --shadow-sm: 0 2px 4px hsla(215, 25%, 15%, 0.05);
  --shadow-md: 0 4px 12px hsla(215, 25%, 15%, 0.08);
  --shadow-lg: 0 8px 24px hsla(215, 25%, 15%, 0.12);
  --shadow-accent: 0 8px 24px hsla(25, 85%, 55%, 0.25);
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(215, 60%, 25%) 0%, hsl(215, 60%, 35%) 100%);
  --gradient-accent: linear-gradient(135deg, hsl(25, 85%, 55%) 0%, hsl(15, 80%, 60%) 100%);
  --gradient-soft: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(215, 60%, 98%) 100%);
  
  /* Radius */
  --radius: 0.75rem;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: var(--secondary-hover);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition-base);
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav-container { height: 5rem; }
}

.nav-logo img {
  height: 3rem;
  width: auto;
}

@media (min-width: 768px) {
  .nav-logo img { height: 4rem; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-weight: 500;
  color: var(--foreground);
  transition: var(--transition-base);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-lang {
  display: flex;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition-base);
}

.nav-lang:hover {
  background: var(--muted);
}

.nav-lang img {
  width: 20px;
  border-radius: 2px;
}

/* Mobile Menu */
.nav-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--foreground);
  transition: var(--transition-base);
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-indicator div {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator span {
  width: 0.375rem;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-header h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.bg-soft {
  background: var(--gradient-soft);
}

.bg-primary-light {
  background: var(--primary-light);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

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

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

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

/* Icon Boxes */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-box-lg {
  width: 4rem;
  height: 4rem;
}

.icon-box-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.icon-box-secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.icon-box-accent {
  background: rgba(239, 104, 80, 0.1);
  color: var(--accent);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

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

/* Context/Callout Section */
.callout-card {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--card);
  border: 2px solid rgba(239, 104, 80, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-accent);
}

@media (min-width: 768px) {
  .callout-card { padding: 3rem; }
}

.callout-header {
  text-align: center;
  margin-bottom: 2rem;
}

.callout-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(239, 104, 80, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.callout-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.callout-list {
  list-style: none;
  margin-bottom: 2rem;
}

.callout-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.callout-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.callout-message {
  text-align: center;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.callout-cta {
  text-align: center;
}

.callout-cta .btn {
  white-space: pre-line;
}

/* About Section */
.essence-card {
  padding: 2rem;
  text-align: center;
}

.essence-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.essence-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.differential-card {
  padding: 1.5rem;
}

.differential-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.differential-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Services Section */
.pillar-card {
  padding: 2rem;
  border: 2px solid var(--border);
}

.pillar-card:hover {
  border-color: rgba(35, 61, 99, 0.3);
}

.pillar-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pillar-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.pillar-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-list {
  list-style: none;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.service-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--secondary-light);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.service-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Methodology Card */
.methodology-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 2px solid rgba(239, 104, 80, 0.2);
  box-shadow: var(--shadow-accent);
}

@media (min-width: 1024px) {
  .methodology-card { grid-template-columns: 1fr 1fr; }
}

.methodology-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .methodology-content { padding: 3rem; }
}

.methodology-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.methodology-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.methodology-description {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.methodology-image {
  position: relative;
  min-height: 300px;
}

.methodology-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Section */
.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
  .contact-card { grid-template-columns: 1fr 1fr; }
}

.contact-info {
  padding: 2rem;
  background: var(--card);
}

@media (min-width: 768px) {
  .contact-info { padding: 3rem; }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: var(--transition-base);
  margin-bottom: 0.5rem;
}

.contact-item:hover {
  background: rgba(0, 0, 0, 0.025);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition-base);
  word-break: break-all;
}

.contact-item:hover .contact-value.primary { color: var(--primary); }
.contact-item:hover .contact-value.secondary { color: var(--secondary); }
.contact-item:hover .contact-value.accent { color: var(--accent); }

.contact-image {
  position: relative;
  min-height: 400px;
}

.contact-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 2fr; }
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-foreground);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.footer-contact a:hover {
  color: var(--primary-foreground);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

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

/* CTA Section */
.cta-section {
  background: var(--gradient-accent);
  padding: 5rem 0;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Methodology Page */
.page-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(to bottom, var(--primary-light), var(--background));
}

.page-hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.page-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.page-hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.pillar-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.step-card {
  padding: 2rem;
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-card.secondary { border-left-color: var(--secondary); }
.step-card.accent { border-left-color: var(--accent); }

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-number.primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.step-number.secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.step-number.accent {
  background: var(--accent);
  color: var(--accent-foreground);
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.result-card {
  padding: 1.5rem;
  border: 2px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.result-card:hover {
  border-color: rgba(239, 104, 80, 0.3);
}

.result-card svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.result-card p {
  line-height: 1.7;
}

/* Resources Page */
.resources-hero {
  background: var(--gradient-hero);
  padding: 8rem 0 5rem;
}

.resources-hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.resources-hero h1 {
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.resources-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 1.875rem;
}

.article-card {
  padding: 1.5rem;
  transition: var(--transition-base);
}

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

.article-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.article-link h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  transition: var(--transition-base);
}

.article-link:hover h3 {
  color: var(--primary);
}

.article-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.article-icon {
  color: var(--muted-foreground);
  transition: var(--transition-base);
  flex-shrink: 0;
}

.article-link:hover .article-icon {
  color: var(--primary);
}

.book-card {
  padding: 1.5rem;
}

.book-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.book-authors {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.book-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.book-publisher {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }

/* Image Section */
.image-section {
  padding: 3rem 0;
}

.image-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
