:root {
  /* Paleta Luz do Oratório & Devoção Mariana */
  --bg-main: #FAF8F5;              /* Marfim suave / Linho natural */
  --bg-surface: #FFFFFF;           /* Branco puro para cartões */
  --bg-card: #FFFFFF;
  --bg-card-hover: #FCFBFA;
  --border-color: rgba(184, 138, 27, 0.28);
  --border-subtle: #E6DFD5;
  --text-main: #0F1933;             /* Azul Marinho Litúrgico - Alta Legibilidade Sênior */
  --text-muted: #4B5563;            /* Cinza ardósia com excelente contraste */
  --gold-primary: #B88A1B;          /* Dourado Nobre / Ouro Polido */
  --gold-hover: #9E7412;
  --gold-glow: rgba(184, 138, 27, 0.20);
  --gold-light: #FEF9E7;
  --blue-mariano: #1E3A8A;          /* Azul do Manto de Nossa Senhora */
  --blue-mariano-hover: #172554;
  --wood-warm: #78350F;             /* Madeira Nobre do Gabinete */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(15, 25, 51, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 25, 51, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 25, 51, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   SITE HEADER & NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  box-shadow: 0 2px 12px rgba(15, 25, 51, 0.04);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  background: var(--gold-light);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.logo-motto {
  font-size: 0.75rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--blue-mariano);
}

.nav-admin-link {
  color: var(--gold-primary) !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-mariano);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.25);
}
.btn-primary:hover {
  background: var(--blue-mariano-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(30, 58, 138, 0.35);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: #F8FAFC;
  border-color: var(--border-color);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: var(--gold-light);
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
}
.btn-gold-outline:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 70px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(254, 249, 231, 0.4) 0%, rgba(250, 248, 245, 1) 100%);
}

.hero-backdrop {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 650px;
  background: radial-gradient(circle, rgba(184, 138, 27, 0.12) 0%, rgba(250, 248, 245, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold-light);
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

/* ==========================================================================
   PHYSICAL RADIO MOCKUP (ILLUSTRATION)
   ========================================================================== */
.hero-visual {
  display: flex;
  justify-content: center;
}

.radio-mockup-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(145deg, #3d220f, #1c0e05);
  border: 5px solid #5c3818;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(61, 34, 15, 0.35), 0 0 35px rgba(184, 138, 27, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.mockup-header {
  height: 85px;
  background: radial-gradient(#150b04 20%, transparent 20%);
  background-size: 8px 8px;
  border-radius: 12px;
  border: 1px solid #4a2d13;
}

.mockup-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-brand {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #f3cf58;
}

.mockup-screen {
  background: #0d160e;
  border: 2px solid #284425;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: inset 0 0 15px rgba(74, 222, 128, 0.2);
}

.screen-tuning {
  font-size: 0.68rem;
  color: #4ade80;
  letter-spacing: 2px;
}

.screen-station {
  font-family: monospace;
  font-size: 1.18rem;
  font-weight: bold;
  color: #86efac;
}

.screen-saint {
  font-size: 0.78rem;
  color: #bbf7d0;
}

.mockup-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.mockup-knob {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle, #9c7f55, #4a341b);
  border: 2px solid #bda177;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  position: relative;
}

.mockup-knob.large {
  width: 56px;
  height: 56px;
}

.knob-marker {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.mockup-buttons {
  display: flex;
  gap: 8px;
}

.m-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #4a2d13;
  border: 1px solid #734e26;
  color: #d1b48c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.mockup-badge {
  text-align: center;
  font-size: 0.8rem;
  color: #d1b48c;
  border-top: 1px solid #4a2d13;
  padding-top: 10px;
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section {
  padding: 90px 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-container.narrow {
  max-width: 800px;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   CATALOG WEB PLAYER SECTION
   ========================================================================== */
.live-player-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.live-player-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.live-eq span {
  width: 4px;
  background: var(--gold-primary);
  border-radius: 2px;
  height: 6px;
  transition: height 0.2s;
}
.live-eq.playing span {
  animation: liveEqualize 0.8s infinite ease-in-out alternate;
}
.live-eq.playing span:nth-child(2) { animation-delay: 0.2s; height: 18px; }
.live-eq.playing span:nth-child(3) { animation-delay: 0.4s; height: 12px; }

@keyframes liveEqualize {
  from { height: 4px; }
  to { height: 22px; }
}

.live-station-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}

.live-station-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-main);
}

.live-player-ctrl {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-live-play {
  background: var(--gold-primary);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  transition: transform 0.2s, background-color 0.2s;
  box-shadow: 0 4px 12px var(--gold-glow);
}
.btn-live-play:hover {
  background: var(--gold-hover);
  transform: scale(1.08);
}

.live-player-ctrl input[type="range"] {
  width: 90px;
  accent-color: var(--gold-primary);
}

.stations-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.station-card-web {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.station-card-web:hover {
  border-color: var(--border-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.sc-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.sc-saint {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.sc-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.sc-tag {
  font-size: 0.75rem;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 4px 8px;
  border-radius: 4px;
  color: #475569;
  font-weight: 600;
}

.btn-play-card {
  background: var(--gold-light);
  color: var(--gold-primary);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-play-card:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
}

/* ==========================================================================
   ORDERS SECTION
   ========================================================================== */
.order-box-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.order-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.editions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.edition-item {
  display: flex;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.edition-check {
  color: var(--gold-primary);
  font-weight: bold;
  font-size: 1.3rem;
}

.edition-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.edition-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.order-form-card,
.suggestion-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: var(--text-main);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-mariano);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-status-msg {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 14px;
}
.form-status-msg.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.form-status-msg.error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.form-status-msg.hidden {
  display: none;
}

/* ==========================================================================
   LEGAL NOTICES & COMPLIANCE
   ========================================================================== */
.legal-hardware-notice {
  background: var(--gold-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.lhn-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.lhn-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.lhn-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal-box {
  background: #111C38;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  max-width: 1000px;
  margin: 10px auto 0;
}

.legal-box-header {
  margin-bottom: 12px;
}

.legal-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #F3CF58;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-box-content p {
  font-size: 0.85rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 12px;
}

.legal-box-content strong {
  color: #FFFFFF;
}

.takedown-contact-card {
  background: rgba(7, 13, 30, 0.6);
  border-left: 3px solid #F3CF58;
  padding: 14px 16px;
  border-radius: 4px;
  margin-top: 14px;
}

.takedown-contact-card strong {
  display: block;
  font-size: 0.88rem;
  color: #F3CF58;
  margin-bottom: 6px;
}

.takedown-contact-card p {
  font-size: 0.84rem;
  margin-bottom: 0;
  color: #E2E8F0;
}

.legal-link {
  color: #F3CF58;
  text-decoration: underline;
  font-weight: 600;
}
.legal-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   FOOTER (AZUL MARIANO PROFUNDO SOLENE)
   ========================================================================== */
.site-footer {
  background: #0B1329;
  border-top: 2px solid var(--border-color);
  padding: 60px 0 40px;
  color: #FFFFFF;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #F3CF58;
}

.footer-copy {
  font-size: 0.8rem;
  color: #64748B;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  width: 100%;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .order-box-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 2.4rem; }
  .main-nav { display: none; }
}

@media (max-width: 600px) {
  .form-row { flex-direction: column; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}
