/* Box de Promessas ("Voz do Alto") */
.promise-box {
  background: var(--color-gold-bg);
  border-left: 4px solid var(--color-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.promise-box::before {
  content: "VOZ DO ALTO";
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.promise-box .verse-quote { margin: 0; }

/* Callout Box */
.callout-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.callout-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-content h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--color-navy);
}

.callout-content p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
}

/* Photo Figure with Captions */
.figure-frame {
  margin: 2.5rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
}

.figure-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.figure-frame:hover img { transform: scale(1.02); }

.figure-caption {
  font-family: var(--font-sans);
  font-size: 0.825rem;
  color: var(--text-muted);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-style: italic;
  background: var(--bg-card-subtle);
  border-top: 1px solid var(--border-subtle);
}

/* Section Divider */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--color-gold);
}

.ornament-divider::before,
.ornament-divider::after {
  content: "";
  height: 1px;
  width: 50px;
  background: var(--border-gold);
}

/* Buttons and Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-terracotta);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--color-terracotta-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-main);
  background: var(--bg-surface);
}

.btn-outline:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
