/*
 * Rafael Biazon — Site Pessoal
 * Design: Art Deco Contemporâneo — Ouro & Sombra
 * Tema: Fundo escuro premium (#0D0D0D) com detalhes dourados (#C9A84C)
 * Tipografia: Playfair Display (serif) + DM Sans (sans-serif)
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --gold: #C9A84C;
  --gold-dark: #8B6914;
  --gold-light: #E8C96A;
  --black-deep: #0D0D0D;
  --black-card: #161616;
  --white-warm: #F5F0E8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black-deep);
  color: var(--white-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a[href] {
  cursor: pointer;
}

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: 1280px;
  }
}

/* ===== GOLD DIVIDERS ===== */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.gold-accent {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 1.5rem;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--gold);
  color: var(--black-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn-gold:hover {
  background-color: var(--gold-light);
  color: var(--black-deep);
}

.btn-gold:active {
  transform: scale(0.97);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: var(--black-deep);
}

.btn-outline-gold:active {
  transform: scale(0.97);
}

/* ===== NAV LINKS ===== */
.nav-link {
  position: relative;
  color: var(--white-warm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* ===== STAT CARD ===== */
.stat-card {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

/* ===== SCROLL REVEAL ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .navbar-inner {
    padding: 1.25rem 0;
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo-box {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.5);
}

.navbar-logo-box img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
}

.navbar-brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.5);
}

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

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

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-cta {
  display: none;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: inline-flex;
  }
}

.navbar-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.5rem 1.5rem 1.5rem;
  background-color: rgba(13, 13, 13, 0.98);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

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

.mobile-menu .btn-gold {
  text-align: center;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--black-deep);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url('../images/bg-texture.png');
  background-size: cover;
  background-position: center;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(13,13,13,0.95) 45%, rgba(13,13,13,0.3) 100%);
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-photo {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .hero-photo {
    width: 55%;
  }
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) contrast(1.05);
}

.hero-photo-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black-deep) 0%, rgba(13,13,13,0.15) 50%, transparent 100%);
}

.hero-photo-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--black-deep), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 36rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white-warm);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(245, 240, 232, 0.75);
  max-width: 26rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background-color: rgba(201, 168, 76, 0.06);
  margin-bottom: 2.5rem;
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201, 168, 76, 0.6);
  animation: bounce 2s infinite;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 6rem 0;
  background-color: var(--black-card);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white-warm);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-title em {
  color: var(--gold);
  font-style: italic;
}

.about-quote {
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.6;
}

.about-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.75);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--white-warm);
}

.about-photo-wrap {
  position: relative;
}

.about-photo-frame-outer {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
}

.about-photo-frame-inner {
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.about-photo-wrap img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: 540px;
  filter: brightness(0.88) contrast(1.08) grayscale(0.15);
  position: relative;
  z-index: 2;
}

.about-corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.about-corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-photo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.9) 0%, transparent 100%);
}

.about-photo-badge span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.65);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.stat-sublabel {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 0;
  background-color: var(--black-deep);
}

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

.services-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-header {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white-warm);
  line-height: 1.2;
}

.services-title em {
  color: var(--gold);
  font-style: italic;
}

.services-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  padding-left: 1.5rem;
}

.services-list {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.service-row {
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2rem 0;
  transition: background-color 0.2s ease;
}

.service-row:hover {
  background-color: rgba(201, 168, 76, 0.02);
}

.service-row-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .service-row-grid {
    grid-template-columns: 80px 1fr auto;
  }
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.5);
  letter-spacing: 0.15em;
  padding-top: 0.2rem;
  min-width: 40px;
}

.service-content {
  flex: 1;
}

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

.service-icon {
  color: var(--gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.service-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: var(--white-warm);
  line-height: 1.2;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
  max-width: 540px;
}

.service-highlight {
  display: none;
  align-self: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  white-space: nowrap;
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  padding-left: 1.25rem;
  max-width: 160px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .service-highlight {
    display: block;
  }
}

.services-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ===== CONTACT ===== */
.contact {
  padding: 6rem 0;
  background-color: var(--black-card);
}

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

.contact-inner {
  padding-top: 5rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white-warm);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-title em {
  color: var(--gold);
  font-style: italic;
}

.contact-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 36rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background-color: rgba(201, 168, 76, 0.1);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(201, 168, 76, 0.15);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-warm);
}

.contact-card-sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.6);
}

/* CTA card */
.contact-cta {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--black-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact-cta-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background-color: rgba(201, 168, 76, 0.08);
}

.contact-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-cta h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 1rem;
}

.contact-cta p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-cta .btn-gold {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #080808;
}

.footer-top-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.footer-inner {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

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

.footer-logo-box {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background-color: rgba(201, 168, 76, 0.05);
}

.footer-logo-box img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white-warm);
  margin-bottom: 0.35rem;
}

.footer-brand-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.35);
  line-height: 1.6;
}

.footer-col-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

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

.footer-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-creci-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background-color: rgba(201, 168, 76, 0.04);
}

.footer-creci-badge span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(201, 168, 76, 0.75);
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-bottom-inner {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.05em;
}

.footer-creci-info {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.05em;
}

/* ===== ICON SVG STYLES ===== */
.icon {
  display: inline-block;
  vertical-align: middle;
}
