@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Outfit:wght@400;700;900&display=swap');

:root {
  --primary-color: #FF9820; /* Laranja - CTAs e Ícones de Ação */
  --secondary-black: #150000; /* Preto - Headlines e Backgrounds de Autoridade */
  --secondary-creme: #FDFABB; /* Creme - Fundos de Seção */
  --text-dark: #333333;
  --text-light: #ffffff;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--secondary-creme);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--secondary-black);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 120px 0; /* Pro-Max: Extended Breathing Room */
}

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

.highlight {
  color: var(--primary-color);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  border-radius: 12px; /* Pro-Max: rounder buttons */
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #E67E00 100%);
  color: var(--secondary-black);
  box-shadow: 0 4px 15px rgba(255, 152, 32, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3); /* Metallic sheen */
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 152, 32, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #ffa840 0%, #f08910 100%);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: inset 0 0 0 0 var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--secondary-black);
  box-shadow: 0 4px 15px rgba(255, 152, 32, 0.3);
}

/* Header (Sticky) Pro-Max Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(21, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-light);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separation */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%; /* Ensure container fills header height */
}

.logo img {
  height: 48px; /* Fixed height to avoid floating monsters */
  width: auto;
  display: block;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.mobile-menu-btn {
  display: none; /* Hide toggle on larger screens */
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary-color);
}

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

.social-icon {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.hero {
  background-color: var(--secondary-black);
  color: var(--text-light);
  padding: 220px 0 140px; /* Pro-Max: Extended breathing room */
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at 50% 30%, rgba(255, 152, 32, 0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(21,0,0,1) 30%, rgba(21,0,0,0.7) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero h1 {
  color: var(--text-light);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--primary-color), #FFC880);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 600px;
}

.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-feature i {
  color: var(--primary-color);
}

/* Services Grid (Level 2) */
.services-section {
  background-color: #ffffff;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Pro-Max: wider base columns */
  gap: 40px; /* Pro-Max: relaxed spacing */
}

.service-card {
  background: #ffffff; /* Cleaner background for cards */
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 16px; /* Modern roundness */
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Springier transition */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); /* Base shadow */
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #FFC880);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Deep elevation */
  border-color: rgba(255, 152, 32, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 152, 32, 0.1) 0%, rgba(255, 152, 32, 0.05) 100%);
  color: var(--primary-color);
  border-radius: 16px; /* Squircle style */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 152, 32, 0.2);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, #E67E00 100%);
  color: var(--secondary-black);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(255, 152, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  margin-bottom: 25px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-link {
  color: var(--secondary-black);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

.service-link:hover {
  color: var(--primary-color);
}

/* Hyperlocal Silo Map (Level 3 Teaser) */
.silo-map-section {
  background-color: var(--secondary-black);
  color: var(--text-light);
}

.silo-map-section h2 {
  color: var(--text-light);
}

.silo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; /* Enhanced gap */
  margin-top: 50px;
}

.silo-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px); /* Glassmorphism strictly for dark cards */
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  cursor: pointer;
}

.silo-card:hover {
  background: rgba(255, 152, 32, 0.08);
  border-color: rgba(255, 152, 32, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 152, 32, 0.15); /* Soft neon elevation */
}

.silo-card h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.silo-card p {
  font-size: 0.85rem;
  color: #aaa;
}

/* Trust Section */
.trust-section {
  background-color: #ffffff;
}

.trust-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.trust-text {
  flex: 1;
}

.trust-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-box {
  background: #ffffff; /* Fresh, clean background */
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border-color: rgba(255, 152, 32, 0.2);
}

.stat-number {
  font-family: var(--font-heading); /* Utilize heading font for huge numbers */
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(120deg, var(--primary-color), #E67E00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-weight: 700;
  color: var(--secondary-black);
  font-size: 0.9rem;
}

/* Page Headers for Internal Silos */
.page-header {
  background-color: var(--secondary-black);
  color: var(--text-light);
  padding: 180px 0 100px; /* Increased top padding matching hero */
  position: relative;
  text-align: center;
}

.page-header h1 {
  color: var(--text-light);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 15px;
}

.page-header h1 span {
  background: linear-gradient(120deg, var(--primary-color), #FFC880);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
}

.page-header p {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

/* Content Area for Cities/Services */
.content-area {
  padding: 120px 0;
  background-color: #ffffff;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.15rem; /* Better readability */
  color: #444;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--secondary-black);
}

.content-block h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--secondary-black);
}

.content-block p {
  margin-bottom: 20px;
}

.content-block ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-block li {
  margin-bottom: 10px;
}

.info-alert {
  background-color: rgba(255, 152, 32, 0.1);
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

/* Internal Silo Navigation */
.silo-navigation {
  background: var(--secondary-creme);
  padding: 40px 0;
  border-top: 1px solid rgba(21,0,0,0.1);
}

.silo-navigation h3 {
  text-align: center;
  margin-bottom: 30px;
}

.silo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.silo-tag {
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-black);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.silo-tag.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, #E67E00 100%);
  color: var(--secondary-black);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 152, 32, 0.3);
}

.silo-tag:hover:not(.active) {
  border-color: rgba(255, 152, 32, 0.5);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 152, 32, 0.1);
}

/* Fixed WhatsApp CTA */
.fixed-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: var(--secondary-black);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(255, 152, 32, 0.5);
  z-index: 1000;
  transition: var(--transition-smooth);
  animation: pulse 2s infinite;
}

.fixed-whatsapp:hover {
  transform: scale(1.15) rotate(5deg);
  color: var(--secondary-black);
  background: linear-gradient(135deg, #FFC880 0%, #f08910 100%);
  box-shadow: 0 8px 25px rgba(255, 152, 32, 0.6);
}

.fixed-whatsapp-text {
  position: absolute;
  right: 75px;
  background: var(--secondary-black);
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  transform: translateX(10px);
}

.fixed-whatsapp-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--secondary-black);
}

.fixed-whatsapp:hover .fixed-whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 152, 32, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(255, 152, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 152, 32, 0); }
}

/* Footer & NAP */
.footer {
  background-color: var(--secondary-black);
  color: #aaa;
  padding: 80px 0 30px;
  border-top: 5px solid var(--primary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 20px;
  display: inline-block;
}

.footer-brand .logo img {
  height: 60px; /* Specific size for footer */
  width: auto;
}

.footer-title {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.nap-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.nap-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.nap-text strong {
  display: block;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Maps Section */
.maps-section {
  padding: 0;
  background-color: var(--secondary-black);
}

.maps-container {
  width: 100%;
  height: 450px;
  position: relative;
}

.maps-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1);
}

.maps-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 0, 0, 0.9);
  padding: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  .hero h1 { font-size: 2.8rem; }
  .page-header h1 { font-size: 2.4rem; }
  .trust-content { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Hamburger Menu Logic */
  .mobile-menu-btn {
    display: block !important;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  .nav-links { 
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(21, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 100px 30px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin-bottom: 25px;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
  }

  .section { padding: 80px 0; }
  .content-area { padding: 60px 0; }
  .hero { padding: 140px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-features { flex-direction: column; gap: 10px; }
  
  .hero-buttons { gap: 15px; flex-direction: column; width: 100%; margin-top: 25px; }
  .hero-buttons .btn { width: 100%; margin: 0 !important; }

  .page-header { padding: 100px 0 50px; }
  .page-header h1 { font-size: 2rem; }
  .services-grid { gap: 20px; } /* Tighter mobile gaps */
  .silo-grid { gap: 15px; grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr; gap: 15px; } /* Stack stats on mobile */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  
  /* WhatsApp Mobile Optimization - Icon Only */
  .fixed-whatsapp {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }
  
  .fixed-whatsapp-text {
    display: none !important;
  }
}

/* Silo Navigation Widget (N3) */
.silo-navigation-widget {
  margin-top: 40px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
}

.silo-navigation-widget details {
  padding: 15px;
}

.silo-navigation-widget summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--primary-red);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.silo-navigation-widget summary::-webkit-details-marker {
  display: none;
}

.silo-navigation-widget summary i {
  font-size: 1.2rem;
}

.silo-widget-links {
  list-style: none;
  padding: 15px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.silo-widget-links li {
  font-size: 0.9rem;
}

.silo-widget-links a {
  display: inline-block;
  padding: 5px 12px;
  background: white;
  border: 1px solid #ced4da;
  border-radius: 20px;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s;
}

.silo-widget-links a:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: #fff5f5;
}

/* ============================
   Product Catalog (Accordion)
   ============================ */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 15px;
  background: #fcfcfc;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

details.seo-dropdown {
  background: #fdfdfd;
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(0,0,0,0.06);
  margin-top: auto;
}

details.seo-dropdown summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-color);
  outline: none;
  list-style: none; /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

details.seo-dropdown summary::-webkit-details-marker {
  display: none;
}

details.seo-dropdown summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

details.seo-dropdown[open] summary::after {
  transform: rotate(180deg);
}

details.seo-dropdown p {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,0.1);
}
