/* Florecer IPTV - Minimalist Premium Design */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #080808;
  color: #F5F5F5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: hidden; width: 100%; }
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { opacity: 0.85; }
button, .app-card, .faq-tab, summary { cursor: pointer; }
::selection { background: rgba(229,9,20,0.3); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #E50914; border-radius: 3px; }

/* Global Utilities */
.text-red { color: #E50914; }
.btn-primary {
  display: inline-block;
  background: #E50914;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #FF2D2D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229,9,20,0.35);
}

/* Header */
.header-fixed {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1E1E1E;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: #E50914; text-decoration: none;
  letter-spacing: -0.03em; flex-shrink: 0; z-index: 1001;
}
.nav-menu { display: flex; align-items: center; gap: 0; }
.nav-menu a {
  color: #888; text-decoration: none; font-weight: 500;
  font-size: 0.88rem; transition: color 0.2s; padding: 0.4rem 0.8rem;
}
.nav-menu a:hover { color: #F5F5F5; }
.btn-cta {
  background: #E50914 !important; color: #fff !important;
  padding: 0.5rem 1.1rem !important; border-radius: 6px;
  font-weight: 700 !important; margin-left: 0.5rem;
  transition: background 0.2s, transform 0.1s; white-space: nowrap;
}
.btn-cta:hover { background: #FF2D2D !important; transform: translateY(-1px); }

/* Hamburguer */
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px; background: none; border: none;
  cursor: pointer; padding: 0; z-index: 1001;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: #F5F5F5;
  border-radius: 2px; transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 70px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.97) 0%, rgba(26,0,0,0.82) 50%, rgba(8,8,8,1) 100%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 750px;
  padding: 4rem 2rem; animation: fadeInUp 0.8s ease forwards; margin: 0 auto;
}
.hero-badge {
  display: inline-block; background: rgba(229,9,20,0.12);
  border: 1px solid rgba(229,9,20,0.35); color: #E50914;
  padding: 0.35rem 1rem; border-radius: 20px; font-size: 0.82rem;
  font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.04em;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1;
  color: #F5F5F5; margin-bottom: 1.2rem; letter-spacing: -0.03em;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem); color: #888;
  line-height: 1.7; margin-bottom: 2rem; max-width: 560px;
}
.hero-sub strong { color: #C0C0C0; font-weight: 600; }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; }
.stat span:first-child { font-size: 1.8rem; font-weight: 900; color: #E50914; line-height: 1; }
.stat-label { font-size: 0.72rem !important; color: #555; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.btn-primary-hero {
  background: #E50914; color: #fff; padding: 0.9rem 1.8rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
  display: inline-block; white-space: nowrap;
}
.btn-primary-hero:hover {
  background: #FF2D2D; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229,9,20,0.35);
}
.btn-secondary-hero {
  color: #888; border: 1px solid #2a2a2a; padding: 0.9rem 1.8rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
  display: inline-block; white-space: nowrap;
}
.btn-secondary-hero:hover { border-color: #E50914; color: #F5F5F5; }

/* Sections */
section { padding: 100px 2rem; max-width: 1100px; margin: 0 auto; position: relative; }
section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; color: #F5F5F5; letter-spacing: -0.02em; }
.section-full { max-width: none !important; width: 100% !important; margin: 0 !important; }
.section-sub { font-size: 1rem; color: #888; margin-bottom: 3rem; max-width: 700px; line-height: 1.6; }

/* Apps Grid */
.apps-grid { display: grid; grid-template-columns: 1fr; gap: 10px; max-width: 860px; margin: 0 auto; }
.app-card {
  display: grid; grid-template-columns: 36px 56px 1fr auto; align-items: center; gap: 1.2rem;
  background: #0F0F0F; border: 1px solid #1E1E1E; border-radius: 16px; padding: 1.1rem 1.4rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s; cursor: pointer;
}
.app-card:hover { border-color: #E50914; background: #140000; transform: translateX(4px); }
.app-rank { font-size: 0.72rem; font-weight: 700; color: #E50914; text-align: center; opacity: 0.8; }
.app-img-wrap img { width: 56px; height: 56px; border-radius: 12px; object-fit: contain; background: #000; flex-shrink: 0; transition: box-shadow 0.2s; }
.app-card:hover .app-img-wrap img { box-shadow: 0 0 20px rgba(229,9,20,0.3); }
.app-name { font-size: 0.92rem; font-weight: 700; color: #F5F5F5; margin: 0 0 0.2rem; letter-spacing: -0.01em; }
.app-desc { font-size: 0.76rem; color: #555; margin: 0 0 0.4rem; line-height: 1.4; }
.app-rating { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.35rem; }
.stars { color: #F7C948; font-size: 0.78rem; }
.rating-val { font-weight: 700; color: #F5F5F5; font-size: 0.82rem; }
.rating-count { color: #444; font-size: 0.72rem; }
.app-tags { display: flex; gap: 0.25rem; flex-wrap: wrap; }
.tag {
  background: transparent; border: 1px solid #2a2a2a; color: #555;
  padding: 0.12rem 0.45rem; border-radius: 4px; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.app-actions { display: flex; gap: 0.5rem; }
.btn-ver-app {
  background: transparent; border: 1px solid #2a2a2a; color: #777;
  padding: 0.4rem 0.85rem; border-radius: 8px; font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.btn-ver-app:hover { border-color: #F5F5F5; color: #F5F5F5; }
.btn-testar {
  background: #E50914; color: #fff; padding: 0.4rem 0.85rem; border-radius: 8px;
  font-size: 0.78rem; font-weight: 700; transition: background 0.2s, transform 0.1s;
  white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.btn-testar:hover { background: #FF2D2D; transform: translateY(-1px); }

/* Rating System Components */
.rating-block {
  display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding: 2rem;
  background: #0F0F0F; border: 1px solid #1E1E1E; border-radius: 16px; margin-bottom: 2rem;
}
.rating-big { font-size: 4rem; font-weight: 900; color: #F5F5F5; line-height: 1; }
.star.filled { color: #F7C948; } .star.half { color: #F7C94880; }
.rating-count-summary { font-size: 0.85rem; color: #888; margin-top: 0.3rem; }
.bar-row { display: flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; color: #888; margin-bottom: 0.4rem; }
.bar { flex: 1; height: 6px; background: #1E1E1E; border-radius: 3px; overflow: hidden; }
.fill { height: 100%; background: #E50914; border-radius: 3px; transition: width 0.8s ease; }
.review-card {
  background: #0F0F0F; border: 1px solid #1E1E1E; border-radius: 16px; padding: 1.5rem;
  margin-bottom: 1rem; transition: border-color 0.2s;
}
.review-card:hover { border-color: #333; }
.review-card header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: #E50914;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-size: 0.85rem; color: #fff; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; color: #F5F5F5; display: block; font-size: 0.95rem; }
.reviewer-location { color: #666; font-size: 0.8rem; }
.review-stars { color: #F7C948; margin-left: auto; letter-spacing: 2px; }
.review-card p { color: #aaa; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.review-card time { color: #555; font-size: 0.75rem; }

/* FAQ Tabs */
.faq-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.faq-tab {
  background: transparent; border: 1px solid #333; color: #A0A0A0; padding: 0.6rem 1.2rem;
  border-radius: 25px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 0.4rem;
}
.faq-tab:hover { border-color: #555; color: #fff; }
.faq-tab.active { background: #E50914; border-color: #E50914; color: #fff; }
.tab-count { background: rgba(255,255,255,0.2); border-radius: 10px; padding: 0.1rem 0.5rem; font-size: 0.75rem; }
.faq-tab.active .tab-count { background: rgba(255,255,255,0.3); }
.faq-panel { display: none; } .faq-panel.active { display: block; }
.faq-item { border-bottom: 1px solid #1a1a1a; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0;
  cursor: pointer; font-weight: 600; font-size: 0.95rem; color: #fff; list-style: none; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #E50914; }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid #E50914; border-radius: 50%; color: #E50914;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: all 0.2s;
}
.faq-item[open] .faq-icon { background: #E50914; color: #fff; transform: rotate(45deg); }
.faq-item p { color: #A0A0A0; line-height: 1.7; padding-bottom: 1.2rem; font-size: 0.9rem; }

/* Article Meta */
.article-meta {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 0 2rem;
  border-bottom: 1px solid #1E1E1E; margin-bottom: 2rem; flex-wrap: wrap;
}
.author-link {
  display: flex; align-items: center; gap: 0.5rem; color: #888; font-size: 0.85rem;
  font-weight: 600; text-decoration: none; transition: color 0.2s;
}
.author-link:hover { color: #E50914; }
.article-meta time { color: #444; font-size: 0.78rem; }
.article-meta time + time::before { content: "•"; margin-right: 0.8rem; color: #333; margin-left: 0.8rem; }

/* Direct Answer */
.direct-answer {
  background: rgba(229,9,20,0.05); border-left: 3px solid #E50914;
  padding: 1.5rem; margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.7;
  color: #DDD; border-radius: 0 8px 8px 0;
}

/* Footer */
.site-footer { background: #050505; border-top: 1px solid #1E1E1E; padding: 4rem 0 0; margin-top: 6rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid #1E1E1E; }
.footer-brand p { color: #555; font-size: 0.85rem; line-height: 1.7; margin: 0.8rem 0 1.2rem; }
.footer-brand strong { color: #888; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: #E50914; text-decoration: none; letter-spacing: -0.03em; }
.footer-cta {
  display: inline-block; background: #E50914; color: #fff; padding: 0.5rem 1rem;
  border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: background 0.2s;
}
.footer-cta:hover { background: #FF2D2D; }
.footer-grid section h3 { font-size: 0.72rem; font-weight: 700; color: #F5F5F5; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-grid section ul { list-style: none; padding: 0; margin: 0; }
.footer-grid section ul li { margin-bottom: 0.5rem; }
.footer-grid section ul a { color: #555; font-size: 0.83rem; text-decoration: none; transition: color 0.2s; font-weight: 500; }
.footer-grid section ul a:hover { color: #E50914; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom p { color: #333; font-size: 0.78rem; margin: 0; }
.footer-kw { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.footer-kw a { color: #444; font-size: 0.75rem; text-decoration: none; transition: color 0.2s; }
.footer-kw a:hover { color: #E50914; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.app-card:nth-child(1) { transition-delay: 0.05s; }
.app-card:nth-child(2) { transition-delay: 0.10s; }
.app-card:nth-child(3) { transition-delay: 0.15s; }
.app-card:nth-child(4) { transition-delay: 0.20s; }
.app-card:nth-child(5) { transition-delay: 0.25s; }
.app-card:nth-child(6) { transition-delay: 0.30s; }
.app-card:nth-child(7) { transition-delay: 0.35s; }
.app-card:nth-child(8) { transition-delay: 0.40s; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Media Queries */
@media (max-width: 1024px) {
  .hero-content { padding: 3rem 2rem; max-width: 90%; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  section { padding: 80px 1.2rem; }
  .section-sub { margin-bottom: 3rem; }
  
  .header-fixed { padding: 0.9rem 1.2rem; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px; height: 100vh;
    background: #0F0F0F; border-left: 1px solid #1E1E1E; flex-direction: column;
    align-items: flex-start; padding: 5rem 1.5rem 2rem; gap: 0.2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1rem; padding: 0.8rem 0; width: 100%; border-bottom: 1px solid #1a1a1a; color: #A0A0A0; }
  .nav-menu a:last-child { border-bottom: none; }
  .btn-cta { margin: 1rem 0 0 !important; width: 100%; text-align: center; padding: 0.8rem 1rem !important; border-radius: 8px; }
  
  main { padding: 0; max-width: none; }
  .hero { 
    min-height: 100svh; padding: 100px 1.2rem 80px; display: flex; flex-direction: column; 
    justify-content: center; align-items: center; width: 100% !important; max-width: none !important; margin: 0 !important;
  }
  .hero-content { width: 100%; text-align: center; max-width: 500px; margin: 0 auto; }
  .hero-badge { font-size: 0.68rem; margin-bottom: 1.5rem; display: inline-block; white-space: normal; line-height: 1.4; }
  h1 { font-size: clamp(1.6rem, 8vw, 2rem); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 2.5rem; line-height: 1.6; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 3rem; width: 100%; max-width: 360px; margin-left: auto; margin-right: auto; }
  .stat { align-items: center; text-align: center; }
  .stat span:first-child { font-size: 1.5rem; }
  .hero-ctas { display: flex; flex-direction: column; gap: 0.8rem; width: 100%; max-width: 360px; margin: 0 auto; }
  .btn-primary-hero, .btn-secondary-hero { width: 100%; text-align: center; padding: 1.1rem 0.8rem; font-size: 0.9rem; border-radius: 12px; white-space: normal; line-height: 1.2; }
  
  .app-card { grid-template-columns: 24px 48px 1fr; grid-template-rows: auto auto; padding: 1.2rem; gap: 1rem; }
  .app-info h3 { font-size: 1rem; line-height: 1.3; }
  .app-actions { grid-column: 1 / -1; display: flex; flex-direction: row; margin-top: 0.8rem; gap: 0.8rem; }
  .btn-ver-app, .btn-testar { flex: 1; text-align: center; padding: 0.75rem; font-size: 0.8rem; }
  
  .grid-3, .blog-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .flex-steps li { flex-direction: column !important; gap: 0.8rem !important; }
  .flex-steps span { font-size: 1.5rem !important; }

  .rating-block { grid-template-columns: 1fr; text-align: center; padding: 1.5rem; gap: 1.5rem; }
  .rating-big { font-size: 3rem; }
  .rating-summary { display: flex; flex-direction: column; align-items: center; }

  .site-footer { padding: 3rem 0 0; margin-top: 4rem; }
  .footer-inner { padding: 0 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.2rem; padding-bottom: 2rem; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 1.5rem; border-bottom: 1px solid #1A1A1A; }
  .footer-grid section h3 { font-size: 0.68rem; margin-bottom: 0.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 1.2rem 1.2rem; gap: 0.5rem; }
  .footer-kw { gap: 0.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .app-actions { flex-direction: column; }
  .btn-testar { margin-left: 0; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.6rem; line-height: 1.2; }
  section { padding: 60px 1rem; }
}

/* Utilities */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.flex-steps { list-style: none; counter-reset: steps; padding: 0; }
.flex-steps li { display: flex; gap: 1.5rem; margin-bottom: 1.5rem; }
.flex-steps div h3 { font-size: 1.1rem; color: #F5F5F5; margin-bottom: 0.3rem; }
.flex-steps div p { font-size: 0.9rem; color: #888; }
.flex-steps span { font-size: 2rem; font-weight: 900; color: #E50914; line-height: 1; }

/* Compare Table */
.compare-table { width: 100%; border-collapse: collapse; margin-top: 2rem; background: #0F0F0F; border-radius: 12px; overflow: hidden; }
.compare-table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; border: 1px solid #1E1E1E; }
.compare-table th, .compare-table td { padding: 1rem; text-align: left; border-bottom: 1px solid #1E1E1E; min-width: 140px; }
.compare-table th { background: #161616; font-weight: 700; color: #F5F5F5; font-size: 0.85rem; }
.compare-table td { font-size: 0.85rem; color: #888; }
.compare-table .yes { color: #2ECC71; font-weight: 600; }
.compare-table .no { color: #E74C3C; }
.compare-table .partial { color: #F39C12; }

/* Article/Page Styling */
main { padding: 100px 2rem 4rem; max-width: 900px; margin: 0 auto; }
article h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: #F5F5F5; font-weight: 700; }
article p { color: #AAA; line-height: 1.7; margin-bottom: 1.2rem; }
article ul, article ol { color: #AAA; margin-left: 1.5rem; margin-bottom: 1.5rem; }
article li { margin-bottom: 0.5rem; }
.cta-inline { background: #161616; padding: 2rem; border-radius: 12px; border: 1px solid #1E1E1E; margin: 2.5rem 0; text-align: center; }
.cta-inline p { font-size: 1.1rem; color: #F5F5F5; font-weight: 600; margin-bottom: 1rem; }
.cta-inline a { display: inline-block; background: #E50914; color: #fff; padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 700; transition: background 0.2s; }
.cta-inline a:hover { background: #FF2D2D; }

/* App Review Styling */
.app-review-header { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2.5rem; }
.app-profile-img { width: 80px; height: 80px; border-radius: 16px; object-fit: cover; box-shadow: 0 0 20px rgba(0,0,0,0.5); flex-shrink: 0; }
.app-img-placeholder { width: 80px; height: 80px; border-radius: 16px; display:flex; align-items:center; justify-content:center; font-weight:bold; font-size: 1.5rem; color: #FFF; flex-shrink: 0; }
.app-review-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 0.5rem; }
.cta-inline-app {
  background: rgba(229,9,20,0.05); border: 1px solid rgba(229,9,20,0.1);
  padding: 1.5rem; border-radius: 12px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.2rem; margin: 2rem 0;
}
.cta-inline-app h3 { font-size: 1.2rem; color: #F5F5F5; margin-bottom: 0.2rem; }
.cta-inline-app p { font-size: 0.9rem; color: #888; margin: 0; }
.pros-card, .cons-card { background: #0F0F0F; padding: 1.5rem; border: 1px solid #1E1E1E; border-radius: 12px; }
.pros-card { border-top: 3px solid #2ECC71; }
.cons-card { border-top: 3px solid #E74C3C; }

/* Blog Article Styling */
.blog-article-header { margin-bottom: 2.5rem; }
.blog-article-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 1rem 0; }
.author-avatar-mini { width: 30px; height: 30px; border-radius: 50%; background: #E50914; color: white; display:flex; align-items:center; justify-content:center; font-size:0.7rem; font-weight:bold; }
.read-time { color: #555; font-size: 0.8rem; }
.blog-featured-img-wrap { width: 100%; border-radius: 16px; margin-bottom: 3rem; border: 1px solid #1E1E1E; overflow: hidden; position: relative; aspect-ratio: 16/9; background: #000; }
.blog-featured-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .app-review-header { flex-direction: column; text-align: center; gap: 1rem; }
  .app-profile-img { width: 100px; height: 100px; }
  .cta-inline-app { flex-direction: column; text-align: center; padding: 1.2rem; }
  .cta-inline-app .btn-primary { width: 100%; }
  .blog-featured-img-wrap { margin-bottom: 2rem; }
}


/* Breadcrumb */
nav[aria-label="Breadcrumb"] { margin-bottom: 2rem; }
nav[aria-label="Breadcrumb"] ol { display: flex; gap: 0.5rem; list-style: none; font-size: 0.8rem; color: #555; margin: 0; padding: 0; }
nav[aria-label="Breadcrumb"] a { color: #555; }
nav[aria-label="Breadcrumb"] a:hover { color: #E50914; }
nav[aria-label="Breadcrumb"] li + li::before { content: "›"; color: #333; margin-right: 0.5rem; }
nav[aria-label="Breadcrumb"] li[aria-current="page"] { color: #E50914; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.blog-card { background: #0F0F0F; border: 1px solid #1E1E1E; border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.blog-card:hover { border-color: #333; }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 1.5rem; }
.blog-tag { color: #E50914; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; line-height: 1.4; letter-spacing: -0.01em; }
.blog-card h3 a { color: #F5F5F5; }
.blog-card p { font-size: 0.9rem; color: #888; margin-bottom: 1.2rem; line-height: 1.5; }
.blog-card time { font-size: 0.75rem; color: #555; }


/* Adições de Limpeza */
.why-card { background: #0F0F0F; padding: 1.5rem; border: 1px solid #1E1E1E; border-radius: 12px; }
.why-card h3 { color: #E50914; font-size: 1.1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: #888; }
.blog-img-placeholder { width: 100%; height: 200px; border-bottom: 1px solid #1E1E1E; background: #000; display:flex; align-items:center; justify-content:center; border-radius: 12px 12px 0 0; overflow:hidden; }
.blog-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

