/* ================================================
   Rodamundo — Static Site CSS
   Fiel ao design original (React/Tailwind)
================================================ */

/* Google Fonts loaded via HTML */

:root {
  --background: hsl(145, 20%, 97%);
  --foreground: hsl(145, 20%, 10%);
  --card: hsl(145, 15%, 99%);
  --card-foreground: hsl(145, 20%, 10%);
  --primary: hsl(145, 65%, 42%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(145, 20%, 12%);
  --secondary-foreground: hsl(0, 0%, 98%);
  --muted: hsl(145, 20%, 92%);
  --muted-foreground: hsl(145, 12%, 42%);
  --accent: hsl(160, 70%, 45%);
  --accent-foreground: hsl(0, 0%, 100%);
  --border: hsl(145, 20%, 85%);
  --surface: hsl(145, 25%, 94%);
  --radius: 0.625rem;
}

*, *::before, *::after {
  box-sizing: border-box;
  border-color: var(--border);
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

section {
  scroll-margin-top: 5rem;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.font-display { font-family: 'Space Grotesk', 'Inter', sans-serif; }
.font-sans { font-family: 'Inter', system-ui, sans-serif; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1400px;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: hsla(145, 20%, 12%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(145, 20%, 85%, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo svg { color: var(--primary); width: 1.75rem; height: 1.75rem; }
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-foreground);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--primary); }

.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0, 0%, 98%, 0.8);
  border-radius: var(--radius);
  transition: color 0.15s;
}
.desktop-nav a:hover { color: var(--primary); }

.btn-header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: filter 0.15s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-header-cta:hover { filter: brightness(1.1); }
@media (min-width: 1024px) { .btn-header-cta { display: inline-flex; } }

.mobile-toggle {
  background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--secondary-foreground);
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-menu {
  display: none;
  background-color: var(--secondary);
  border-top: 1px solid hsla(145, 20%, 85%, 0.3);
  padding: 0 1rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0, 0%, 98%, 0.8);
  border-bottom: 1px solid hsla(145, 20%, 85%, 0.2);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn-menu-cta {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ---- PAGE WRAPPER ---- */
.page-wrapper {
  padding-top: 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

/* ---- BUTTONS ---- */
.btn-accent {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--accent); color: var(--accent-foreground);
  padding: 1rem 2rem; border-radius: 0.75rem;
  font-size: 1.125rem; font-weight: 700;
  transition: filter 0.15s; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  border: none; cursor: pointer; text-decoration: none;
}
.btn-accent:hover { filter: brightness(1.1); }
.btn-accent-sm {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--accent); color: var(--accent-foreground);
  padding: 0.75rem 1.5rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600;
  transition: filter 0.15s; border: none; cursor: pointer; text-decoration: none;
}
.btn-accent-sm:hover { filter: brightness(1.1); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: hsla(0, 0%, 98%, 0.1); color: var(--secondary-foreground);
  padding: 1rem 2rem; border-radius: 0.75rem;
  font-size: 1.125rem; font-weight: 600;
  transition: background-color 0.15s; border: none; cursor: pointer; text-decoration: none;
}
.btn-ghost:hover { background-color: hsla(0, 0%, 98%, 0.2); }
.btn-primary-outline {
  display: inline-flex; align-items: center; gap: 0.25rem;
  color: var(--primary); font-weight: 500;
  text-decoration: none; transition: text-decoration 0.15s;
}
.btn-primary-outline:hover { text-decoration: underline; }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  background-color: var(--secondary);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, hsla(145,65%,42%,0.1) 0%, transparent 50%, hsla(160,70%,45%,0.05) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 5rem 1rem;
}
@media (min-width: 768px) { .hero-inner { padding: 7rem 1rem; } }
.hero-center { max-width: 48rem; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: hsla(145,65%,42%,0.1); color: var(--primary);
  padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem; font-weight: 700;
  color: var(--secondary-foreground);
  line-height: 1.2; margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero-h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 3.75rem; } }
.hero-h1 span { color: var(--primary); }
.hero-p {
  font-size: 1.125rem; color: hsla(0,0%,98%,0.7);
  margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .hero-p { font-size: 1.25rem; } }
.hero-actions {
  display: flex; flex-direction: column; gap: 1rem; justify-content: center;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ---- SOCIAL PROOF ---- */
.social-proof {
  padding: 2rem 1rem;
  background-color: hsla(145, 20%, 12%, 0.8);
  border-top: 1px solid hsla(145,65%,42%,0.1);
  border-bottom: 1px solid hsla(145,65%,42%,0.1);
}
.social-proof-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .social-proof-inner { gap: 4rem; } }
.sp-item { text-align: center; }
.sp-item p:first-child { font-size: 1.5rem; font-weight: 700; color: var(--secondary-foreground); }
.sp-item p:last-child { font-size: 0.875rem; color: hsla(0,0%,98%,0.6); }

/* ---- SECTIONS ---- */
.section-bg { background-color: var(--surface); }
.section-bg-white { background-color: var(--background); }
.section-primary-soft { background-color: hsla(145,65%,42%,0.05); }
.section-secondary { background-color: var(--secondary); }
.section-muted { background-color: hsla(145,20%,92%,0.3); }

.section-py { padding: 4rem 1rem; }
@media (min-width: 768px) { .section-py { padding: 6rem 1rem; } }
.section-py-sm { padding: 3rem 1rem; }
@media (min-width: 768px) { .section-py-sm { padding: 4rem 1rem; } }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem; font-weight: 700; color: var(--foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-title span { color: var(--primary); }
.section-subtitle {
  color: var(--muted-foreground); max-width: 36rem;
  margin-left: auto; margin-right: auto;
}
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-3 { margin-top: 0.75rem; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }

/* ---- CARDS ---- */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.card:hover { border-color: hsla(145,65%,42%,0.3); }
.card-transition { transition: border-color 0.15s; }
.card-shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1); }
.card-popular {
  border-color: var(--primary) !important;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  ring: 2px solid hsla(145,65%,42%,0.2);
  outline: 2px solid hsla(145,65%,42%,0.2);
}

/* ---- GRIDS ---- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-6 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(6, 1fr); } }

/* ---- ICON BOX ---- */
.icon-box {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  background-color: hsla(160,70%,45%,0.1); color: var(--accent);
  border-radius: var(--radius); margin-bottom: 1rem;
}
.icon-primary { color: var(--primary); }
.icon-accent { color: var(--accent); }

/* ---- BENEFIT CARD ---- */
.benefit-card { padding: 1.5rem; }
.benefit-card h3 {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  color: var(--foreground); margin-bottom: 0.5rem;
}
.benefit-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---- CTA SECTION ---- */
.cta-section { padding: 4rem 1rem; }
@media (min-width: 768px) { .cta-section { padding: 5rem 1rem; } }
.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem; font-weight: 700;
  color: var(--primary-foreground); margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta-section h2 { font-size: 2.25rem; } }
.cta-section p { color: hsla(0,0%,100%,0.8); max-width: 36rem; margin: 0 auto 2rem; }

/* ---- PLAN CARD ---- */
.plan-card { position: relative; display: flex; flex-direction: column; }
.plan-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background-color: var(--primary); color: var(--primary-foreground);
  padding: 0.25rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700;
}
.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.plan-period { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.plan-desc { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.plan-price { font-size: 1.875rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; margin-bottom: 1.5rem; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted-foreground);
}
.plan-cta {
  display: block; text-align: center;
  padding: 0.875rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.875rem; transition: filter 0.15s, background-color 0.15s;
  text-decoration: none;
}
.plan-cta-popular { background-color: var(--accent); color: var(--accent-foreground); }
.plan-cta-popular:hover { filter: brightness(1.1); }
.plan-cta-default { background-color: hsla(145,65%,42%,0.1); color: var(--primary); }
.plan-cta-default:hover { background-color: hsla(145,65%,42%,0.2); }

/* ---- TESTIMONIAL CARD ---- */
.testimonial-card { padding: 1.5rem; }
.stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.stars svg { width: 1rem; height: 1rem; fill: var(--primary); color: var(--primary); }
.testimonial-text { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.5rem; }
.testimonial-author span { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* ---- FAQ / ACCORDION (details/summary) ---- */
.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem; cursor: pointer;
  font-weight: 500; color: var(--foreground);
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chevron {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0;
  color: var(--muted-foreground); transition: transform 0.2s;
}
.faq-item[open] summary .chevron { transform: rotate(90deg); }
.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ---- BREADCRUMBS ---- */
.breadcrumbs { padding: 0.75rem 0; margin-bottom: 1.5rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
.breadcrumbs li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumbs a { color: var(--muted-foreground); transition: color 0.15s; display: inline-flex; align-items: center; gap: 0.25rem; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .current { color: var(--foreground); font-weight: 500; }
.breadcrumbs svg { width: 0.875rem; height: 0.875rem; }

/* ---- TABLE ---- */
.data-table { width: 100%; font-size: 0.875rem; border-collapse: collapse; }
.data-table thead tr { border-bottom: 1px solid var(--border); }
.data-table th { text-align: left; padding: 0.75rem 1rem; font-weight: 600; color: var(--foreground); }
.data-table th.center { text-align: center; }
.data-table th.primary { color: var(--primary); }
.data-table td { padding: 0.75rem 1rem; color: var(--muted-foreground); border-bottom: 1px solid hsla(145,20%,85%,0.5); }
.data-table td.strong { color: var(--foreground); font-weight: 500; }
.data-table td.center { text-align: center; }
.data-table td.center-primary { text-align: center; color: var(--primary); font-weight: 500; }
.overflow-x-auto { overflow-x: auto; }

/* ---- INFO BOX ---- */
.info-box-primary {
  background-color: hsla(145,65%,42%,0.05);
  border-left: 4px solid var(--primary);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem; margin-bottom: 2.5rem;
}
.info-box-accent {
  background-color: hsla(160,70%,45%,0.1);
  border-left: 4px solid var(--accent);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem; margin-bottom: 2.5rem;
}

/* ---- CTA BOX ---- */
.cta-box {
  background-color: var(--primary);
  border-radius: 0.75rem; padding: 2rem; text-align: center;
}
.cta-box h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--primary-foreground); margin-bottom: 0.75rem;
}
.cta-box p { color: hsla(0,0%,100%,0.8); margin-bottom: 1.5rem; }

/* ---- STEP CARD ---- */
.step-card {
  display: flex; gap: 1rem;
  background-color: var(--card); padding: 1.25rem;
  border-radius: 0.75rem; border: 1px solid var(--border);
}
.step-number {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem;
  background-color: var(--primary); color: var(--primary-foreground);
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem;
}
.step-content h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.step-content p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---- DEVICE CARD ---- */
.device-card {
  text-align: center; padding: 1.5rem;
}
.device-card svg { width: 2rem; height: 2rem; margin: 0 auto; color: var(--primary); margin-bottom: 0.75rem; }
.device-card p { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* ---- OTYPE INFO 3-COL CARDS ---- */
.info-3col {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 768px) { .info-3col { grid-template-columns: repeat(3, 1fr); } }
.info-3col .card { text-align: center; }
.info-3col .card svg { margin: 0 auto; width: 2rem; height: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.info-3col .card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.info-3col .card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* ---- FOOTER ---- */
.site-footer {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}
.footer-inner { padding: 3rem 1rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p { font-size: 0.875rem; color: hsla(0,0%,98%,0.7); margin-bottom: 1rem; }
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: hsla(0,0%,98%,0.5); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0; }
.footer-col li a {
  display: inline-block; padding: 0.5rem 0;
  font-size: 0.875rem; color: hsla(0,0%,98%,0.7);
  transition: color 0.15s; text-decoration: none;
}
.footer-col li a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid hsla(0,0%,98%,0.1);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: hsla(0,0%,98%,0.5); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background-color: var(--accent); color: var(--accent-foreground);
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  font-size: 0.875rem; font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.05); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.wa-float span { display: none; }
@media (min-width: 640px) { .wa-float span { display: inline; } }

/* ---- PAGE SPECIFIC STYLES ---- */
/* Content page checklist */
.check-list { display: flex; flex-direction: column; gap: 0.5rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--muted-foreground);
}
.check-list li svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }

/* Numbered step list */
.numbered-steps { display: flex; flex-direction: column; gap: 0.75rem; }
.numbered-steps li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; background-color: hsla(145,65%,42%,0.1);
  color: var(--primary); border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}

/* Category card */
.category-card { padding: 1.25rem; }
.category-card svg { width: 2rem; height: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.category-card h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.category-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* App card */
.app-card { padding: 1.5rem; display: flex; flex-direction: column; transition: box-shadow 0.2s, border-color 0.2s; }
.app-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); border-color: hsla(145,65%,42%,0.3); }
.app-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.app-icon { color: var(--primary); }
.app-icon svg { width: 2rem; height: 2rem; }
.app-badge { background-color: var(--accent); color: var(--accent-foreground); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.app-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.app-aliases { font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.app-desc { font-size: 0.875rem; color: var(--muted-foreground); flex: 1; margin-bottom: 1rem; }
.platform-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: auto; }
.platform-tag { background-color: hsla(145,65%,42%,0.1); color: var(--primary); font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px; }

/* Contact option link */
.contact-option {
  display: flex; align-items: center; justify-content: space-between;
  background-color: var(--card); border-radius: 0.75rem;
  padding: 1.25rem; border: 1px solid var(--border);
  transition: border-color 0.15s; text-decoration: none;
}
.contact-option:hover { border-color: hsla(145,65%,42%,0.3); }
.contact-option span { font-weight: 500; color: var(--foreground); }
.contact-option svg { width: 1.25rem; height: 1.25rem; color: var(--muted-foreground); transition: color 0.15s; }
.contact-option:hover svg { color: var(--primary); }

/* Legal pages */
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.legal-section p { color: var(--muted-foreground); margin-bottom: 0.75rem; }
.legal-section ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal-section ul li { color: var(--muted-foreground); }

/* Which plan cards */
.which-plan-card { background-color: hsla(145,20%,92%,0.5); border-radius: 0.75rem; padding: 1.5rem; }
.which-plan-card svg { width: 2rem; height: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.which-plan-card h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.which-plan-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.75rem; }
.which-plan-card .recommended { font-size: 0.875rem; font-weight: 500; color: var(--primary); }

/* Stability tips */
.stability-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .stability-grid { grid-template-columns: repeat(2, 1fr); } }
.stability-tip { background-color: hsla(145,20%,92%,0.5); border-radius: var(--radius); padding: 1rem; }
.stability-tip h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.stability-tip p { font-size: 0.875rem; color: var(--muted-foreground); }

/* How-to-choose grid */
.choose-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .choose-grid { grid-template-columns: repeat(2, 1fr); } }
.choose-item { display: flex; gap: 0.75rem; }
.choose-item svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex-shrink: 0; margin-top: 0.25rem; }
.choose-item h3 { font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.choose-item p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Device compat in conteudos page */
.device-detail summary {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem; cursor: pointer;
}
.device-detail summary::-webkit-details-marker { display: none; }
.device-detail summary svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.device-detail summary .dev-name { font-weight: 500; color: var(--foreground); flex: 1; }
.device-detail summary .dev-hint { font-size: 0.75rem; color: var(--muted-foreground); }
.device-detail[open] summary .dev-hint { display: none; }
.device-detail .dev-steps { padding: 0 1.25rem 1.25rem; }
.dev-steps ol { display: flex; flex-direction: column; gap: 0.5rem; }
.dev-steps li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.dev-steps .dev-step-num { display: flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; background-color: hsla(145,65%,42%,0.1); color: var(--primary); border-radius: 9999px; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

/* Prose text */
.prose-text p { color: var(--muted-foreground); margin-bottom: 1rem; }
.prose-text p strong { color: var(--foreground); }
.prose-text ul { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.prose-text ul li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted-foreground); }
.prose-text ul li svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }

/* ---- UTILITIES ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.inline-flex { display: inline-flex; }
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* How to choose section for apps */
.how-to-choose-section { padding: 3rem 1rem; }
@media (min-width: 768px) { .how-to-choose-section { padding: 4rem 1rem; } }

/* ---- RESPONSIVE HELPERS ---- */
@media (max-width: 640px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
}
