:root {
  /* Cores - Tema Light Premium (Areia & Ouro) */
  --bg-color: #F8F7F2;         /* Areia clarinho, off-white quente */
  --bg-color-alt: #EFECE5;     /* Tom de papel artesanal */
  
  --text-main: #333932;        /* Verde oliva escuro profundo para texto */
  --text-light: #6A7269;       /* Tons suaves para descrições */
  
  --border: rgba(168, 143, 96, 0.12); /* Ouro suave opaco */
  --border-strong: rgba(168, 143, 96, 0.25);
  
  --accent: #A88F60;           /* Ouro Bronzeado chique */
  /* Fonts (stacks locais para evitar bloqueio de fontes remotas) */
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: "Segoe UI", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  
  --transition: all 0.35s ease;
  --radius-sm: 6px;
  --radius-md: 14px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background Atmosphere */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.glow-1 {
  width: 250px;
  height: 250px;
  background-color: rgba(135, 156, 129, 0.1); 
  top: -100px;
  left: -100px;
}
.glow-2 {
  width: 350px;
  height: 3500px;
  background-color: rgba(168, 143, 96, 0.05); 
  bottom: 100px;
  right: -200px;
}

.app-container {
  max-width: 480px; /* Mais estreito para foco mobile */
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  background: transparent;
}


/* --- HEADER --- */
.app-header {
  text-align: center;
  padding: 3rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.8;
}

.profile-avatar-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.avatar-ring {
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.2;
}

.profile-avatar {
  width: 90px; /* Reduzido de 110px */
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid #FFF;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

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

.profile-name {
  font-family: var(--font-serif);
  font-size: 2.1rem; /* Reduzido de 2.6rem */
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.profile-subtitle {
  font-size: 0.75rem; /* Reduzido de 0.85rem */
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.social-badge a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  background-color: #FFF;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: var(--text-main);
  transition: var(--transition);
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.social-badge a:hover {
  transform: translateY(-1px);
}
.social-badge a i,
.social-badge a svg { width: 14px; height: 14px; color: var(--accent); }

.ig-icon {
  display: inline-block;
  vertical-align: middle;
  color: var(--accent);
  flex-shrink: 0;
}


/* --- CATALOG ACCORDION --- */
.catalog-accordion {
  padding: 0 1rem;
}

.accordion-item {
  background: #FFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(168, 143, 96, 0.08);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem; /* Reduzido */
  cursor: pointer;
  color: var(--text-main);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-wrapper {
  color: #FFF;
  background: var(--accent);
  width: 30px; /* Reduzido de 36px */
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.icon-wrapper i,
.icon-wrapper svg {
  width: 16px;
  height: 16px;
}

.header-left .title {
  font-family: var(--font-serif);
  font-size: 1.15rem; /* Reduzido de 1.4rem */
  font-weight: 500;
}

.accordion-header .chevron {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform 0.4s ease;
  opacity: 0.6;
}

.accordion-item.active .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-inner {
  padding: 0 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* Reduzido de 1.25rem */
}

.section-intro {
  font-size: 0.85rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
  font-style: italic;
  font-family: var(--font-serif);
}

/* Service Card (Simplified Light) */
.service-card {
  background: #FAFAFA;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem; /* Reduzido */
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-card.highlight {
  border-color: var(--accent);
  background: #FFF;
}

.service-card.style-clean {
  background: transparent;
  border: none;
  border-left: 1px solid var(--accent);
  border-radius: 0;
  padding: 0.25rem 0 0.25rem 1rem;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
}

.service-top h3 {
  font-size: 1rem; /* Reduzido de 1.15rem */
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-main);
  font-family: var(--font-serif);
}

.badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: var(--bg-color-alt);
  color: var(--accent);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.price {
  font-family: var(--font-sans);
  font-size: 0.95rem; /* Reduzido */
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

.service-card p {
  font-size: 0.8rem; /* Reduzido */
  color: var(--text-light);
  line-height: 1.5;
}

.service-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
}
.service-bottom span i,
.service-bottom span svg { width: 12px; height: 12px; }


/* --- CTA FLUTUANTE --- */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(to top, var(--bg-color) 60%, transparent);
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 100;
}

.main-btn {
  background: var(--text-main);
  color: #FFF;
  text-decoration: none;
  pointer-events: auto;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  width: 100%;
  max-width: 320px;
  transition: var(--transition);
}

.main-btn:active {
  transform: translateY(2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.main-btn i,
.main-btn svg {
  width: 16px;
  height: 16px;
}
