/* Buttons - Padronizados e Usáveis */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px; /* Mais respiro interno */
    border-radius: var(--radius-md);
    font-weight: 600;
    /* CORREÇÃO: Tamanho de fonte legível, não minúsculo */
    font-size: 1rem; 
    font-family: var(--font-body); /* Sans-serif é melhor para leitura de botões */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 52px; /* Área de toque segura */
    /* Removido text-transform: uppercase para melhorar leitura */
    text-transform: none; 
    letter-spacing: 0.02em;
    border: none;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    max-width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(177, 36, 23, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-container);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(177, 36, 23, 0.35);
}

/* Botão Secundário (Outline) - Melhor contraste */
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

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

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Cards & Content Blocks */
.card {
  background-color: var(--surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(27, 28, 26, 0.05);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Tags / Chips */
.tag {
    background-color: var(--surface-container-low);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs); /* Atualizado: agora 12px */
    font-family: var(--font-label);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(197, 160, 89, 0.4);
    color: var(--gold);
    display: inline-block;
    white-space: nowrap;
}

.tag-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.45);
}

/* Identity Section Rectangles (Ponto 8) */
.identity-rect {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 4px; /* Retangular com micro-arredondado */
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.15rem; /* ~18px */
  font-weight: 500;
  text-transform: uppercase;
  color: #f6d393;
  letter-spacing: 2px;
  text-align: center;
  margin: 4px;
}

/* Material Symbols Integration */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Custom Quote Styles */
blockquote {
  position: relative;
  padding: 2.5rem;
  margin: 2rem 0;
}

.quote-quote {
  font-size: 4rem;
  line-height: 1;
  font-family: var(--font-headline);
  opacity: 0.15;
  position: absolute;
  color: var(--gold);
}

.quote-open { top: -20px; left: -20px; }
.quote-close { bottom: -40px; right: 20px; }

/* Novo: Chips Retangulares (Ponto 3) */
.chip {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px; /* Retangular */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--on-dark);
  font-size: var(--fs-base);
  font-weight: 300;
  transition: all 0.3s ease;
  text-align: center;
}

.chip:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

/* Section Spacing */
.section {
  padding: clamp(3rem, 2.5rem + 3vw, 5.5rem) 0; /* Ponto 4, 6 - Layout mais denso */
  position: relative;
  overflow: hidden;
}

/* Swiper Overrides */
.modules-swiper .swiper-button-next,
.modules-swiper .swiper-button-prev {
  color: var(--primary) !important;
}

.modules-swiper .swiper-button-next::after,
.modules-swiper .swiper-button-prev::after {
  font-size: 1.25rem !important;
  font-weight: 700;
}

.swiper-pagination {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: var(--primary) !important;
  opacity: 0.25 !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
  opacity: 1 !important;
  width: 10px !important;
  border-radius: 50% !important;
}

.modules-swiper .swiper-pagination-bullet:nth-child(n+6) {
  display: none;
}

/* Gold Gradient Text */
.gold-gradient-text {
  background: linear-gradient(90deg, #f6d393 0%, #c5a059 45%, #f4d9a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

/* Scrollbars Helper */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2.75rem 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(197, 160, 89, 0.18), transparent 28%),
    radial-gradient(circle at 82% 50%, rgba(244, 217, 163, 0.12), transparent 22%),
    linear-gradient(90deg, #171411 0%, #201913 44%, #261d15 100%);
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  color: rgba(255, 248, 239, 0.92);
}

.site-footer__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(197, 160, 89, 0.08) 50%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__logo {
  height: 2.8rem;
  width: auto;
  object-fit: contain;
  filter: sepia(1) saturate(0.9) hue-rotate(356deg) brightness(1.08);
}

.site-footer__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer__rights {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 248, 239, 0.78);
}

.site-footer__signature {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 248, 239, 0.8);
  text-align: right;
  white-space: nowrap;
}

.site-footer__signature a {
  color: #f6d393;
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 211, 147, 0.32);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.site-footer__signature a:hover {
  color: #fff2d2;
  border-color: rgba(255, 242, 210, 0.72);
}
