/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - BÍBLIA TODO DIA LANDING PAGE
   ========================================================================== */

:root {
  /* Paleta de Cores do App BTD & Estilo Suave */
  --color-cream-bg: #FDFBF7;
  --color-charcoal-text: #2D2D2D;
  --color-forest-green: #2C3E2D;
  --color-forest-green-light: #3a523b;
  --color-gold: #A68A64;
  --color-gold-light: #C9A96E;
  --color-accent-orange: #FF5E36;
  --color-accent-orange-hover: #e54c25;
  --color-muted-gray: #E9E4DE;
  
  /* App Interface Colors (Dark Theme BTD) */
  --app-bg: #0f0f0f;
  --app-surface: #1a1a1a;
  --app-primary-text: #EDE8E3;
  --app-secondary-text: #C9A96E;
  --app-text: #D4CFC9;
  --app-muted: #2A2A2A;
  --app-border: rgba(255, 255, 255, 0.08);
  --app-glass: rgba(26, 26, 26, 0.65);
  
  /* Fontes */
  --font-serif: 'Inter', sans-serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Sombras e Efeitos */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ==========================================================================
   GLOBAL RESET & STYLES
   ========================================================================== */

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

body {
  font-family: var(--font-sans);
  background-image: linear-gradient(rgba(15, 23, 16, 0.55), rgba(15, 23, 16, 0.68)), 
                    url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=1920&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--color-cream-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

.italic-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
}

/* ==========================================================================
   LAYOUT CONTAINERS & GRID
   ========================================================================== */

.section-container {
  width: 92%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 60px 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), var(--shadow-glass);
  transition: all 0.3s ease;
}

/* Common Section Layouts */
.feature-section {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.cream-bg .section-container {
  background: rgba(15, 32, 20, 0.38); /* More transparent green card */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream-bg);
}

.cream-bg .section-headline {
  color: #ffffff;
}

.green-bg .section-container {
  background: rgba(15, 32, 20, 0.38); /* More transparent green card */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream-bg);
}

.green-bg .section-headline {
  color: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.grid-reverse {
  direction: ltr;
}

.grid-reverse > .feature-content {
  order: 2;
}
.grid-reverse > .feature-image-area {
  order: 1;
}

/* ==========================================================================
   UTILITY LAYOUT STYLES
   ========================================================================== */

.text-center { text-align: center; }
.justify-center { justify-content: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.max-w-2xl { max-width: 672px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--color-gold-light) !important; }
.text-white { color: #ffffff !important; }
.text-light { color: rgba(253, 251, 247, 0.85); }
.text-red { color: #f87171 !important; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   MOBILE TOP BAR STICKY BANNER
   ========================================================================== */

.mobile-only-bar {
  display: none;
  background-color: var(--color-forest-green);
  color: var(--color-cream-bg);
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-bar-links {
  display: flex;
  gap: 12px;
}

.bar-link-accent {
  color: var(--color-accent-orange);
  font-weight: 700;
}

.bar-link-white {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.main-header {
  background-color: transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  border-radius: 0;
  z-index: 95;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  height: 36px;
  width: auto;
  display: block;
}

.logo-image-drawer {
  height: 32px;
  width: auto;
  display: block;
}

.logo-image-footer {
  height: 36px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 24px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(253, 251, 247, 0.8);
}

.desktop-nav a:hover {
  opacity: 1;
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.btn-header:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 1150px) {
  .desktop-nav, .btn-header {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: var(--color-cream-bg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-muted-gray);
  padding-bottom: 16px;
}

.logo-text-drawer {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-forest-green);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--color-charcoal-text);
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-charcoal-text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.02);
}

.drawer-cta {
  background-color: var(--color-forest-green);
  color: var(--color-cream-bg);
  padding: 14px;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  background-color: #121913; /* Fundo escuro para a imagem de floresta */
  color: var(--color-cream-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-forest-green);
  margin-top: -69px;
  padding-top: 69px;
}

/* Simular fundo de floresta do concorrente */
.forest-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                    url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-logo-brand {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.hero-section .section-container {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 80px 24px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

.hero-mote {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero-headline {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(253, 251, 247, 0.8);
  margin-bottom: 40px;
  max-w-2xl: 600px;
  line-height: 1.5;
}

/* Platform badging */
.store-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  width: 180px;
  height: 50px;
  box-sizing: border-box;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.badge-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* App Store (Official Black) */
.badge-button.app-store {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-button.app-store:hover {
  background-color: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Google Play (Official White - Translucent) */
.badge-button.google-play {
  background-color: rgba(255, 255, 255, 0.85);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge-button.google-play:hover {
  background-color: #f3f4f6;
  border-color: rgba(0, 0, 0, 0.2);
}

.disabled-badge {
  cursor: not-allowed !important;
  pointer-events: none;
}

.disabled-badge.google-play {
  background-color: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
}

.disabled-badge .badge-text-wrapper {
  opacity: 0.65;
}

.disabled-badge .store-icon {
  opacity: 0.55;
  filter: grayscale(80%);
}

.disabled-badge:hover {
  transform: none !important;
  box-shadow: var(--shadow-md) !important;
}

/* Web App (Frosted Glass) */
.badge-button.web-app {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.badge-button.web-app:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-icon {
  width: 24px;
  height: 24px;
}

.badge-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.badge-sub {
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.badge-main {
  font-size: 14px;
  font-weight: 700;
}

/* Alternate dark border style for download badges */
.border-white-30 {
  background-color: transparent !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  color: var(--color-cream-bg) !important;
}

.border-white-30:hover {
  background-color: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ==========================================================================
   IPHONE FRAME GRAPHICS (Pure CSS)
   ========================================================================== */

.iphone-mockup {
  position: relative;
  width: 290px;
  height: 590px;
  border-radius: 42px;
  background-color: #000;
  border: 5px solid #1a1a1a;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.8),
              inset 0 0 4px 2px rgba(255,255,255,0.1),
              0 0 0 1px rgba(255,255,255,0.05);
  margin: 0 auto;
  overflow: hidden;
}

.border-white-10 {
  border-color: #222 !important;
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.9),
              inset 0 0 4px 2px rgba(255,255,255,0.05) !important;
}

.iphone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 25px;
  background-color: #000;
  border-radius: 20px;
  z-index: 100;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.1);
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 35px;
  overflow: hidden;
  background-color: var(--app-bg);
  position: relative;
}

/* Reflection/Glare */
.iphone-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 45%);
  pointer-events: none;
  z-index: 99;
}

/* ==========================================================================
   THREE IPHONES SHOWCASE (Last Fold)
   ========================================================================== */

.three-iphones-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  perspective: 1000px;
  padding-bottom: 30px;
}

.three-iphones-container .iphone-mockup {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.iphone-mockup.small-phone {
  width: 210px;
  height: 426px;
  border-radius: 30px;
  border-width: 4px;
}

.iphone-mockup.small-phone .iphone-screen {
  border-radius: 26px;
}

.three-iphones-container .phone-left {
  transform: rotateY(24deg) rotateX(8deg) rotateZ(4deg) scale(0.9);
  z-index: 1;
  opacity: 0.85;
  margin-right: -45px;
  filter: drop-shadow(-15px 25px 30px rgba(0,0,0,0.6));
}

.three-iphones-container .phone-center {
  z-index: 3;
  transform: rotateX(8deg) translateY(-10px) scale(1.02);
  filter: drop-shadow(0px 30px 45px rgba(0,0,0,0.7));
}

.three-iphones-container .phone-right {
  transform: rotateY(-24deg) rotateX(8deg) rotateZ(-4deg) scale(0.9);
  z-index: 2;
  opacity: 0.85;
  margin-left: -45px;
  filter: drop-shadow(15px 25px 30px rgba(0,0,0,0.6));
}

.three-iphones-container .iphone-mockup:hover {
  transform: scale(1.08) translateY(-15px) !important;
  z-index: 5;
  opacity: 1;
  box-shadow: 0 35px 80px -10px rgba(0,0,0,0.95);
}

@media (max-width: 768px) {
  .three-iphones-container {
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
  }
  .three-iphones-container .phone-left,
  .three-iphones-container .phone-right {
    margin: 0 !important;
    transform: none !important;
    opacity: 1;
  }
  .three-iphones-container .phone-center {
    transform: none !important;
  }
}

/* ==========================================================================
   APP SIMULATION INTERFACES
   ========================================================================== */

.app-interface {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  color: var(--app-text);
  background-color: var(--app-bg);
  font-size: 12px;
  user-select: none;
}

.dark-app {
  background-color: var(--app-bg);
}

.app-top-bar {
  padding: 44px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--app-border);
}

.app-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
}

.app-greeting {
  font-size: 10px;
  opacity: 0.6;
  display: block;
  line-height: 1;
}

.app-sub-greeting {
  font-size: 12px;
  font-weight: 700;
  color: var(--app-primary-text);
}

.app-streak {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 94, 54, 0.1);
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-accent-orange);
}

.streak-icon {
  width: 10px;
  height: 10px;
}

.app-main-content {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbars */
  -ms-overflow-style: none;
}

.app-main-content::-webkit-scrollbar {
  display: none;
}

.scrollable-area {
  display: flex;
  flex-direction: column;
}

/* Card: Verse of the day */
.app-verse-card {
  background: linear-gradient(135deg, rgba(44, 62, 45, 0.4) 0%, rgba(15, 23, 16, 0.3) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--app-border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glass);
}

.app-verse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
  margin-bottom: 10px;
}

.app-verse-text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.35;
  color: var(--app-primary-text);
  margin-bottom: 8px;
  font-style: italic;
}

.app-verse-ref {
  font-size: 11px;
  color: var(--app-secondary-text);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.app-verse-actions {
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 10px;
}

.app-card-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--app-text);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.accent-text {
  color: var(--app-secondary-text) !important;
}

.app-section-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
  margin-bottom: 12px;
}

/* Mini action circles */
.app-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.app-mini-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mini-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--app-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  margin-bottom: 6px;
  color: #fff;
}

.mini-icon-circle svg {
  width: 18px;
  height: 18px;
}

.green-gradient-glow {
  background: linear-gradient(135deg, rgba(44, 62, 45, 0.8) 0%, rgba(15, 23, 16, 0.8) 100%);
  color: #EDE8E3;
}

.gold-gradient-glow {
  background: linear-gradient(135deg, rgba(166, 138, 100, 0.4) 0%, rgba(80, 60, 40, 0.4) 100%);
  color: var(--app-secondary-text);
}

.orange-gradient-glow {
  background: linear-gradient(135deg, rgba(255, 94, 54, 0.4) 0%, rgba(120, 40, 20, 0.4) 100%);
  color: var(--color-accent-orange);
}

.blue-gradient-glow {
  background: linear-gradient(135deg, rgba(63, 131, 248, 0.4) 0%, rgba(30, 60, 120, 0.4) 100%);
  color: #60a5fa;
}

.mini-progress-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--app-border);
  color: var(--app-secondary-text);
  font-size: 7px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 100px;
}

.mini-action-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* Card: Shortcut info */
.app-shortcut-card {
  background: var(--app-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--app-border);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.shortcut-icon-area {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shortcut-icon-area svg {
  width: 16px;
  height: 16px;
}

.gold-text { color: var(--app-secondary-text); }
.green-text { color: #10b981; }

.shortcut-text-area {
  flex: 1;
}

.shortcut-tag {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.5;
  display: block;
}

.shortcut-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-primary-text);
  display: block;
  margin-bottom: 4px;
}

.shortcut-meta {
  font-size: 9px;
  opacity: 0.7;
  display: block;
}

.shortcut-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.shortcut-bar {
  height: 3px;
  background-color: var(--app-secondary-text);
  border-radius: 20px;
}

.shortcut-percentage {
  font-size: 8px;
  font-weight: 700;
  opacity: 0.7;
}

.shortcut-arrow {
  opacity: 0.4;
  width: 14px;
  height: 14px;
}

/* App Header (Interior Page) */
.app-header-view {
  padding: 44px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--app-border);
}

.app-header-back, .app-header-right {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.app-header-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--app-primary-text);
}

.app-bottom-nav {
  height: 64px;
  border-top: 1px solid var(--app-border);
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 12px;
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  font-size: 8px;
  font-weight: 600;
  cursor: pointer;
}

.app-nav-item svg {
  width: 18px;
  height: 18px;
  margin-bottom: 3px;
}

.app-nav-item.active {
  opacity: 1;
  color: var(--app-secondary-text);
}

/* ==========================================================================
   SPECIFIC APP SCREENS STYLING
   ========================================================================== */

/* SCREEN: Mentoria (Jornada) */
.app-assessment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(166,138,100,0.15) 0%, rgba(0,0,0,0.2) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--app-border);
  margin-bottom: 16px;
}

.score-circle-outer {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: conic-gradient(var(--app-secondary-text) 72%, rgba(255,255,255,0.05) 72%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-circle-inner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--app-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-value {
  font-size: 14px;
  font-weight: 800;
  color: var(--app-primary-text);
  line-height: 1;
}

.score-label {
  font-size: 6px;
  text-transform: uppercase;
  opacity: 0.5;
}

.score-meta h4 {
  font-size: 11px;
  color: var(--app-secondary-text);
  margin-bottom: 2px;
}

.score-meta p {
  font-size: 9px;
  opacity: 0.7;
  line-height: 1.25;
}

.app-pillars-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-pillar-card {
  background: var(--app-glass);
  border: 1px solid var(--app-border);
  border-radius: var(--radius-md);
  padding: 12px;
}

.pillar-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-heart { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.bg-shield { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.bg-swords { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.pillar-details {
  flex: 1;
}

.pillar-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--app-primary-text);
  display: block;
}

.pillar-status {
  font-size: 8px;
  opacity: 0.5;
  display: block;
}

.pillar-score-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--app-border);
}

.pillar-score-badge.bg-gold {
  background: rgba(166, 138, 100, 0.2);
  color: var(--app-secondary-text);
  border-color: var(--app-secondary-text);
}

.pillar-score-badge.bg-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.3);
}

.pillar-card-progress {
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-top: 8px;
  overflow: hidden;
}

.pillar-progress-fill {
  height: 100%;
  background: #3b82f6;
}

.pillar-progress-fill.bg-gold { background-color: var(--app-secondary-text); }
.pillar-progress-fill.bg-red { background-color: #ef4444; }

.active-card {
  border-color: rgba(166, 138, 100, 0.3);
  box-shadow: 0 4px 15px rgba(166, 138, 100, 0.05);
}

.warning-card {
  border-color: rgba(239, 68, 68, 0.2);
}

/* SCREEN: Jejum */
.glass-card {
  background: rgba(26, 26, 26, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--app-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-glass);
}

.fasting-timer-card {
  text-align: center;
}

.fasting-subtitle {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
}

.fasting-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--app-primary-text);
  margin-top: 4px;
}

.fasting-duration {
  font-size: 10px;
  opacity: 0.6;
}

.timer-progress-ring {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.stroke-gold {
  stroke: var(--app-secondary-text);
}

.timer-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-time {
  font-size: 16px;
  font-weight: 800;
  color: var(--app-primary-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.timer-label {
  font-size: 7px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 2px;
}

.fasting-day-index {
  font-size: 9px;
  font-weight: 700;
  color: var(--app-secondary-text);
  margin-bottom: 12px;
  display: block;
}

.fasting-action-bar {
  display: flex;
  gap: 10px;
}

.btn-fasting-cancel {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--app-border);
  color: #fff;
  padding: 8px;
  border-radius: var(--radius-md);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.btn-fasting-read {
  flex: 1.2;
  border: none;
  color: #000;
  padding: 8px;
  border-radius: var(--radius-md);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-fasting-read svg {
  stroke-width: 2.5;
}

.fasting-checklist .checklist-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--app-secondary-text);
  display: block;
  margin-bottom: 8px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 10px;
}

.checklist-item svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.checklist-item.forbidden {
  opacity: 0.6;
}

.mt-4 { margin-top: 16px; }

/* SCREEN: Quarto de Guerra */
.war-room-intro {
  background: linear-gradient(to right, rgba(44, 62, 45, 0.4), rgba(0,0,0,0.1));
  border: 1px solid var(--app-border);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  margin-bottom: 16px;
  line-height: 1.35;
}

.war-room-intro span {
  font-family: var(--font-sans);
  font-size: 8px;
  color: var(--app-secondary-text);
  font-style: normal;
  display: block;
  margin-top: 4px;
  font-weight: 700;
}

.war-room-fronts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.fronts-list-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
}

.front-card-mini {
  position: relative;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--app-border);
}

.bg-front-cura {
  background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=300&q=50');
  background-size: cover;
  background-position: center;
}

.bg-front-familia {
  background-image: url('https://images.unsplash.com/photo-1472214103451-9374bd1c798e?auto=format&fit=crop&w=300&q=50');
  background-size: cover;
  background-position: center;
}

.front-card-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.front-card-content {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.front-badge-top {
  align-self: flex-start;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 7px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  color: var(--app-secondary-text);
  margin-bottom: 4px;
}

.front-card-content h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.front-card-content p {
  font-size: 8px;
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.personal-prayers-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prayers-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prayers-section-header span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
}

.btn-add-prayer {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--app-border);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.app-prayer-item {
  background: var(--app-glass);
  border: 1px solid var(--app-border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prayer-item-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.active-dot { background-color: var(--app-secondary-text); }

.prayer-item-details {
  flex: 1;
}

.prayer-item-details h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--app-primary-text);
}

.prayer-item-details p {
  font-size: 8px;
  opacity: 0.5;
}

.prayer-item-arrow {
  opacity: 0.3;
}

/* SCREEN: Devocional */
.devotional-banner-card {
  text-align: left;
}

.devo-badge {
  background: rgba(166, 138, 100, 0.15);
  border: 1px solid var(--app-secondary-text);
  color: var(--app-secondary-text);
  font-size: 7px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.devo-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--app-primary-text);
  line-height: 1.25;
}

.devo-verse-ref {
  font-size: 10px;
  color: var(--app-secondary-text);
  font-weight: 600;
}

.devo-body-preview {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  border-left: 2px solid var(--app-secondary-text);
  padding-left: 8px;
  margin: 12px 0;
}

.devo-card-actions {
  display: flex;
  gap: 8px;
}

.devo-action-btn {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--app-border);
  color: #fff;
  padding: 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.devo-action-btn.bg-gold {
  border: none;
  background-color: var(--app-secondary-text);
  color: #000;
}

.devo-themes-section .section-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
  display: block;
  margin-bottom: 8px;
}

.devo-theme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.devo-theme-chip {
  background: var(--app-glass);
  border: 1px solid var(--app-border);
  padding: 8px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.devo-theme-chip.active-chip {
  border-color: var(--app-secondary-text);
  color: var(--app-secondary-text);
}

/* SCREEN: Bíblia */
.bible-version-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--app-border);
  background: rgba(255,255,255,0.03);
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.bible-chapter-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 120px; /* Space for commentary modal popup */
}

.bible-verse-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 4px 0;
}

.verse-num {
  font-size: 9px;
  font-weight: 800;
  color: var(--app-secondary-text);
  margin-top: 3px;
  width: 12px;
}

.verse-content-text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--app-text);
  flex: 1;
}

.selected-verse {
  background: rgba(166, 138, 100, 0.08);
  border-left: 2px solid var(--app-secondary-text);
  padding-left: 8px;
}

/* Commentary Modal Simulation */
.simulated-modal-overlay {
  position: absolute;
  bottom: 64px; /* above bottom nav */
  left: 0;
  width: 100%;
  height: 240px;
  z-index: 10;
  padding: 0 8px;
  display: flex;
  align-items: flex-end;
}

.simulated-commentary-modal {
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: 1px solid var(--app-border);
  border-bottom: none;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
}

.modal-indicator {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin: 0 auto 10px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.ai-title-group {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.commentary-verse-ref {
  font-size: 10px;
  color: var(--app-secondary-text);
  font-weight: 700;
}

.modal-scroll-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 10px;
}

.modal-scroll-content::-webkit-scrollbar { display: none; }

.commentary-section strong {
  font-size: 8px;
  letter-spacing: 0.05em;
  color: var(--app-secondary-text);
  display: block;
  margin-bottom: 2px;
}

.commentary-section p {
  font-size: 10px;
  line-height: 1.35;
  opacity: 0.8;
}

.commentary-section ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.commentary-section li {
  font-size: 9px;
  line-height: 1.3;
}

/* SCREEN: Dons */
.gifts-result-card {
  padding: 20px 14px;
}

.text-center { text-align: center; }

.gift-trophy-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(166, 138, 100, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.gift-trophy-icon svg {
  width: 22px;
  height: 22px;
}

.gift-subtitle {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--app-secondary-text);
  display: block;
}

.gift-primary-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--app-primary-text);
  margin: 2px 0 6px;
}

.gift-primary-desc {
  font-size: 9px;
  opacity: 0.7;
  line-height: 1.35;
  margin-bottom: 20px;
}

.gift-breakdown-scores {
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
  margin-bottom: 20px;
}

.breakdown-title {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--app-secondary-text);
  display: block;
  margin-bottom: 10px;
}

.gift-score-bar-item {
  margin-bottom: 10px;
}

.bar-info {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 4px;
}

.bar-track {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
}

.bg-gold {
  background-color: var(--app-secondary-text);
}

.btn-redo-gifts {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--app-border);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

/* ==========================================================================
   FEATURE COPY / GENERAL SECTION CONTENT
   ========================================================================== */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-headline {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-forest-green);
  margin-bottom: 20px;
}

.section-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* List with styled bullets */
.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillars-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(44, 62, 45, 0.05);
  border: 1px solid rgba(44, 62, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-bullet svg {
  width: 14px;
  height: 14px;
}

.border-gold {
  border-color: rgba(166, 138, 100, 0.3) !important;
  background-color: rgba(166, 138, 100, 0.1) !important;
}

.pillar-info {
  font-size: 14px;
  line-height: 1.45;
}

.pillar-info strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* ==========================================================================
   TESTIMONIALS / STORIES (DOBRA 7)
   ========================================================================== */

.testimonials-section {
  border-bottom: 1px solid var(--color-muted-gray);
}

.section-header {
  margin-bottom: 56px;
}

.section-subtitle-text {
  font-size: 15px;
  opacity: 0.85;
  max-width: 600px;
  margin: 12px auto 0;
}

.text-muted-dark {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  color: var(--color-cream-bg);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.2);
}

.stars-row {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #fbbf24;
}

.stars-row svg {
  width: 14px;
  height: 14px;
  fill: #fbbf24;
  stroke: none;
}

.testimonial-quote {
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 24px;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar-text {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.bg-green-avatar { background-color: var(--color-forest-green); }
.bg-gold-avatar { background-color: var(--color-gold); }
.bg-red-avatar { background-color: var(--color-accent-orange); }

.user-name {
  font-weight: 700;
  font-size: 12px;
  display: block;
  line-height: 1.2;
}

.user-details {
  font-size: 10px;
  opacity: 0.5;
}

/* ==========================================================================
   PRICING / TABLE OF PLANS (DOBRA 8)
   ========================================================================== */

.pricing-section {
  background: transparent;
  color: var(--color-cream-bg);
  border-bottom: none;
}

.pricing-section .section-container {
  background: rgba(15, 32, 20, 0.38); /* More transparent green card */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 56px auto 0;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.popular-card {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--color-gold) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}

.price-desc {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 24px;
}

.price-number {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-number span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.6;
}

.annual-price {
  font-size: 11px;
  color: var(--color-gold-light);
  margin-top: 4px;
  font-weight: 600;
}

.pricing-features-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  opacity: 0.85;
}

.pricing-features-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.btn-pricing {
  width: 100%;
  text-align: center;
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.btn-pricing-accent {
  background-color: var(--color-accent-orange) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(255, 94, 54, 0.3);
}

.btn-pricing-accent:hover {
  background-color: var(--color-accent-orange-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 54, 0.4);
}

/* ==========================================================================
   DOWNLOAD / CTA BOTTOM SECTION
   ========================================================================== */

.download-section {
  position: relative;
  background-color: #121913;
  padding: 100px 24px;
  color: var(--color-cream-bg);
  overflow: hidden;
  border-top: 1px solid var(--color-forest-green-light);
}

.cta-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.max-w-2xl {
  max-width: 600px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: #0f1310;
  color: rgba(253, 251, 247, 0.6);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-left {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}

.logo-icon-footer {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  gap: 64px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-nav-col a {
  font-size: 12px;
}

.footer-nav-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 24px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icons a:hover {
  color: #fff;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid, .feature-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content, .feature-content {
    align-items: center;
  }
  
  .grid-reverse > .feature-content {
    order: 1;
  }
  .grid-reverse > .feature-image-area {
    order: 2;
  }
  
  .hero-headline {
    font-size: 42px;
  }
  
  .section-headline {
    font-size: 32px;
  }
  
  .store-badge-container {
    justify-content: center;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-right {
    flex-wrap: wrap;
    gap: 32px 48px;
  }
}

@media (max-width: 768px) {
  .mobile-only-bar {
    display: flex;
  }
  
  .desktop-nav, .btn-header {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.iphone-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.home-screen-bg {
  background-image: linear-gradient(rgba(15, 23, 16, 0.82), rgba(15, 23, 16, 0.95)), 
                    url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=400&q=50');
  background-size: cover;
  background-position: center;
}

.home-screen-bg .app-main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 28px;
  overflow: hidden;
}

.app-top-logo {
  height: 20px;
  width: auto;
  display: block;
}

.app-top-icon {
  width: 16px;
  height: 16px;
  opacity: 0.8;
  color: #fff;
  cursor: pointer;
}

.app-welcome-section {
  margin-top: 8px;
  margin-bottom: 18px;
  text-align: left;
}

.app-welcome-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.app-welcome-text {
  font-size: 10px;
  opacity: 0.7;
  line-height: 1.35;
  margin-bottom: 6px;
  color: #EDE8E3;
}

.app-welcome-cta {
  font-size: 10px;
  font-weight: 700;
  color: #10B981;
  display: inline-block;
  text-decoration: none;
}

.app-home-cards-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.app-home-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  height: 68px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.bg-card-green {
  background: rgba(17, 85, 60, 0.2);
  border-color: rgba(17, 85, 60, 0.25);
}

.bg-card-brown {
  background: rgba(80, 60, 50, 0.25);
  border-color: rgba(80, 60, 50, 0.2);
}

.bg-card-purple {
  background: rgba(40, 30, 70, 0.2);
  border-color: rgba(40, 30, 70, 0.25);
}

.card-text-side {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.card-tag {
  font-size: 7px;
  font-weight: 900;
  color: #10B981;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.text-gold-tag {
  color: var(--app-secondary-text) !important;
}

.text-purple-tag {
  color: #818cf8 !important;
}

.card-verse-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 10px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

.card-verse-author {
  font-size: 8px;
  opacity: 0.6;
  color: #fff;
}

.card-title {
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.card-subtitle {
  font-size: 8.5px;
  opacity: 0.6;
  color: #EDE8E3;
}

.card-image-side {
  width: 50px;
  height: 52px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin: auto 8px auto 0;
  flex-shrink: 0;
}

.app-circles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.app-circle-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.circle-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  transition: all 0.2s ease;
}

.circle-btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.circle-btn-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

/* Specific colors matching screenshot outline glows */
.app-circle-action:nth-child(1) .circle-btn-icon { color: #10b981; }
.app-circle-action:nth-child(2) .circle-btn-icon { color: #34d399; }
.app-circle-action:nth-child(3) .circle-btn-icon { color: #34d399; }
.app-circle-action:nth-child(4) .circle-btn-icon { color: #f87171; }

.circle-btn-label {
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Remover filtro escuro da dobra de download e adicionar sombras para contraste */
.download-section .forest-bg-overlay {
  background-image: url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?auto=format&fit=crop&w=1920&q=80') !important;
}

.download-section h2.section-headline,
.download-section p.section-subtitle-text {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95), 0 2px 5px rgba(0, 0, 0, 0.95);
}
