/* ==========================================================================
   CATOLIAI CLEAN HOMEPAGE - DESIGN LIMPO E PROFISSIONAL
   Paleta de cores do funil ctai - Sem elementos quebrados
   ========================================================================== */

/* CSS Variables - Cores do funil ctai */
:root {
  /* Cores Principais */
  --primary: #1e40af;
  --primary-dark: #1e3a8a;
  --secondary: #f59e0b;
  --catholic-gold: #d4af37;
  --divine-purple: #7c3aed;
  --heaven-blue: #3b82f6;
  
  /* Backgrounds */
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: #334155;
  
  /* Textos */
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  /* Gradientes */
  --gradient-divine: linear-gradient(135deg, var(--divine-purple), var(--heaven-blue));
  --gradient-gold: linear-gradient(135deg, var(--catholic-gold), #fbbf24);
  
  /* Sombras */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.4);
  
  /* Tipografia */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.catoliai-clean {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-clean {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-content-clean {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-preview-section {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.hero-preview-section .mockup-clean {
  max-width: 400px;
  width: 100%;
}

.brand-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.main-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--catholic-gold);
  padding: 3px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.catholic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid var(--divine-purple);
  border-radius: 25px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.catholic-badge i {
  color: var(--catholic-gold);
}

.main-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-blue {
  background: var(--gradient-divine);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.main-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.stats-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.25rem 0.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--catholic-gold);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
  color: var(--text-secondary);
}

.pricing-clean {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.price-display {
  text-align: center;
  margin-bottom: 2rem;
}

.price-old {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.price-old span {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount {
  background: #dc2626;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--catholic-gold);
}

.amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--catholic-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.btn-main-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  text-decoration: none;
  padding: 1.25rem 2rem;
  border-radius: 25px;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  width: 100%;
}

.btn-main-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  color: var(--bg-primary);
  text-decoration: none;
}

.btn-main-cta span {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.btn-main-cta small {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0.25rem;
}

.guarantees {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.guarantee-item i {
  color: #10b981;
  font-size: 1rem;
}

/* ==========================================================================
   HERO VISUAL - ENHANCED MOCKUP
   ========================================================================== */

.hero-visual-clean {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.mockup-clean {
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.6s ease;
  animation: mockupFloat 6s ease-in-out infinite;
}

.mockup-clean:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.browser-frame {
  background: linear-gradient(145deg, #2d3748, #1a202c);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.browser-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(212, 175, 55, 0.1));
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.mockup-clean:hover .browser-frame::before {
  opacity: 1;
}

.browser-header {
  background: linear-gradient(180deg, #374151, #2d3748);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.browser-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.browser-dots {
  display: flex;
  gap: 0.6rem;
}

.browser-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.browser-dots span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.browser-dots span:hover {
  transform: scale(1.2);
}

.browser-dots span:nth-child(1) {
  background: linear-gradient(135deg, #ff6b6b, #ff5f57);
  box-shadow: 0 2px 8px rgba(255, 95, 87, 0.3);
}

.browser-dots span:nth-child(1)::before {
  background: #8b0000;
}

.browser-dots span:nth-child(2) {
  background: linear-gradient(135deg, #ffd93d, #ffbd2e);
  box-shadow: 0 2px 8px rgba(255, 189, 46, 0.3);
}

.browser-dots span:nth-child(2)::before {
  background: #cc7a00;
}

.browser-dots span:nth-child(3) {
  background: linear-gradient(135deg, #51cf66, #28ca42);
  box-shadow: 0 2px 8px rgba(40, 202, 66, 0.3);
}

.browser-dots span:nth-child(3)::before {
  background: #1a7c2e;
}

.browser-dots span:hover::before {
  opacity: 1;
}

.browser-url {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.browser-url::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: urlShine 3s ease-in-out infinite;
}

.browser-content {
  background: linear-gradient(135deg, var(--bg-primary), #0f1419);
  padding: 2.5rem;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.browser-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  animation: contentGlow 8s ease-in-out infinite;
}

.bible-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  height: 100%;
  position: relative;
  z-index: 1;
}

.bible-center {
  display: flex;
  justify-content: center;
  position: relative;
}

.holy-bible {
  width: 90px;
  height: 90px;
  background: var(--gradient-divine);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 
    0 15px 35px rgba(124, 58, 237, 0.4),
    0 0 0 3px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  animation: holyPulse 4s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.4s ease;
}

.holy-bible::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  animation: holyRing 3s ease-in-out infinite;
}

.holy-bible:hover {
  transform: scale(1.1) rotateZ(5deg);
  box-shadow: 
    0 20px 40px rgba(124, 58, 237, 0.6),
    0 0 0 3px rgba(255, 255, 255, 0.2);
}

.holy-bible i {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  animation: iconFloat 3s ease-in-out infinite;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 320px;
  width: 100%;
}

.book-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.book-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.book-card:hover::before {
  left: 100%;
}

.book-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 15px 30px rgba(212, 175, 55, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.5);
  border-color: rgba(212, 175, 55, 0.6);
}

.book-card:nth-child(odd) {
  animation: bookFloat1 4s ease-in-out infinite;
}

.book-card:nth-child(even) {
  animation: bookFloat2 4s ease-in-out infinite 0.5s;
}

.book-abbr {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--catholic-gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
}

.book-card:hover .book-abbr {
  color: #fbbf24;
  transform: scale(1.2);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.book-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}

.book-card:hover .book-name {
  color: var(--text-secondary);
}

/* Enhanced Animations */
@keyframes mockupFloat {
  0%, 100% { 
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px);
  }
  50% { 
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px);
  }
}

@keyframes urlShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

@keyframes contentGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

@keyframes holyPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 
      0 15px 35px rgba(124, 58, 237, 0.4),
      0 0 0 3px rgba(255, 255, 255, 0.1);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 
      0 20px 40px rgba(124, 58, 237, 0.6),
      0 0 0 5px rgba(255, 255, 255, 0.2);
  }
}

@keyframes holyRing {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.2);
    opacity: 0.6;
  }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-2px) rotate(2deg); }
  66% { transform: translateY(1px) rotate(-1deg); }
}

@keyframes bookFloat1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(1deg); }
}

@keyframes bookFloat2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(-1deg); }
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-clean {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-divine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.feature-highlight {
  background: var(--catholic-gold);
  color: var(--bg-primary);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-block;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-clean {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.quote {
  font-size: 3rem;
  color: var(--divine-purple);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.author-info h4 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.rating {
  color: var(--catholic-gold);
  font-size: 1.1rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.metric {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--catholic-gold);
  display: block;
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-clean {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.final-pricing {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.original {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.arrow {
  font-size: 1.5rem;
  color: var(--catholic-gold);
}

.current {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--catholic-gold);
}

.savings {
  background: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 700;
  display: inline-block;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.btn-final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
  color: var(--bg-primary);
  text-decoration: none;
}

.btn-final-cta span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-final-cta small {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0.25rem;
}

.final-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.trust-item i {
  color: var(--catholic-gold);
  font-size: 1.1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
  .hero-clean {
    padding: 1rem 0;
  }
  
  .brand-main {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .main-logo {
    width: 50px;
    height: 50px;
  }
  
  .brand-title {
    font-size: 2rem;
  }
  
  .stats-clean {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-preview-section {
    margin: 1.5rem 0;
  }
  
  .hero-preview-section .mockup-clean {
    max-width: 100%;
    margin: 0 1rem;
  }
  
  .pricing-clean {
    padding: 1.5rem;
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .btn-main-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .guarantees {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  /* Enhanced Mobile Mockup */
  .hero-visual-clean {
    max-width: 100%;
    margin-top: 2rem;
  }
  
  .mockup-clean {
    transform: perspective(800px) rotateY(-3deg) rotateX(3deg);
    animation: mockupFloatMobile 5s ease-in-out infinite;
  }
  
  .mockup-clean:hover {
    transform: perspective(800px) rotateY(-1deg) rotateX(1deg) scale(1.01);
  }
  
  .browser-frame {
    border-radius: 15px;
    margin: 0 1rem;
  }
  
  .browser-header {
    padding: 0.75rem 1rem;
  }
  
  .browser-dots span {
    width: 12px;
    height: 12px;
  }
  
  .browser-url {
    min-width: 150px;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .browser-content {
    padding: 1.5rem;
    min-height: 280px;
  }
  
  .bible-display {
    gap: 1.5rem;
  }
  
  .holy-bible {
    width: 70px;
    height: 70px;
    font-size: 0.75rem;
  }
  
  .holy-bible i {
    font-size: 1.4rem;
  }
  
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 220px;
  }
  
  .book-card {
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
  }
  
  .book-abbr {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
  
  .book-name {
    font-size: 0.7rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .price-comparison {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .btn-final-cta {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
  
  .btn-final-cta span {
    text-align: center;
  }
  
  .final-trust {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Mobile-specific animations */
@keyframes mockupFloatMobile {
  0%, 100% { 
    transform: perspective(800px) rotateY(-3deg) rotateX(3deg) translateY(0px);
  }
  50% { 
    transform: perspective(800px) rotateY(-3deg) rotateX(3deg) translateY(-8px);
  }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-clean {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 500px;
  }
  
  .stat-item {
    padding: 1rem 0.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-preview-section .mockup-clean {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .catholic-badge {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
  }
  
  .main-description {
    font-size: 1rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
  
  .btn-main-cta {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  
  .metric {
    padding: 1rem;
  }
  
  .metric-number {
    font-size: 2rem;
  }
}
