/* ==========================================================================
   PARANUTRIOLOGOS.COM - ESTILOS PRINCIPALES Y COMPONENTES
   ========================================================================== */

/* Header y Navegación */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-gray-200);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.brand-logo .brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--brand-primary), #0284c7);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
}

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

.brand-logo .brand-flag {
  font-size: 0.85rem;
  background-color: #fee2e2;
  color: #991b1b;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-gray-700);
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color 0.15s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--brand-primary);
  border-radius: var(--radius-full);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-trigger-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--brand-gray-100);
  border: 1px solid var(--brand-gray-200);
  color: var(--brand-gray-500);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-trigger-btn:hover {
  background-color: #ffffff;
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}

.search-trigger-btn kbd {
  background-color: #ffffff;
  border: 1px solid var(--brand-gray-300);
  border-radius: 4px;
  padding: 0.1rem 0.35rem;
  font-size: 0.75rem;
  font-family: var(--font-sans);
  color: var(--brand-gray-700);
}

/* Hero Section Principal */
.hero-section {
  background: radial-gradient(100% 120% at 50% 0%, #ecfdf5 0%, #f8fafc 100%);
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--brand-gray-200);
  text-align: center;
}

.hero-badge-container {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--brand-primary), #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--brand-gray-700);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Buscador Omnibox Principal */
.omnibox-wrapper {
  max-width: 680px;
  margin: 0 auto 2rem;
  position: relative;
}

.omnibox-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--brand-gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.omnibox-input-group:focus-within {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-xl), 0 0 0 4px rgba(5, 150, 105, 0.15);
}

.omnibox-icon {
  padding-left: 1.25rem;
  color: var(--brand-gray-500);
  font-size: 1.25rem;
}

.omnibox-input {
  width: 100%;
  padding: 1.1rem 1rem 1.1rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  border: none;
  background: transparent;
  outline: none;
  color: var(--brand-dark);
}

.omnibox-results-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 380px;
  overflow-y: auto;
  z-index: 50;
  display: none;
  text-align: left;
}

.omnibox-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--brand-gray-100);
  transition: background-color 0.15s ease;
}

.omnibox-result-item:hover {
  background-color: var(--brand-primary-light);
}

/* Métricas y Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.stat-label {
  font-size: 0.825rem;
  color: var(--brand-gray-500);
  font-weight: 500;
}

/* Categorías Grid */
.section-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--brand-dark);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--brand-gray-500);
  margin-top: 0.25rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.category-card {
  background: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary-border);
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.category-icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background-color: var(--brand-gray-100);
}

.category-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  background-color: var(--brand-primary-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.category-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.category-desc {
  font-size: 0.875rem;
  color: var(--brand-gray-500);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.category-link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Calculadoras Grid */
.calculators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.calculator-card {
  background: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.calculator-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.calculator-card-badge {
  margin-bottom: 0.75rem;
}

.calculator-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.calculator-card-desc {
  font-size: 0.875rem;
  color: var(--brand-gray-500);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.calculator-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--brand-gray-100);
  font-size: 0.825rem;
}

/* Layout de Calculadora Individual */
.calc-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
  .calc-page-layout {
    grid-template-columns: 1fr;
  }
}

.calc-interactive-box {
  background: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.calc-results-sidebar {
  position: sticky;
  top: 6rem;
  background: #ffffff;
  border: 2px solid var(--brand-primary-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--brand-gray-200);
}

.results-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.result-main-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.result-main-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-gray-500);
}

.result-status-pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin: 1rem 0;
}

.result-explanation {
  font-size: 0.9rem;
  color: var(--brand-gray-700);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.results-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Fórmulas y Contenido Clínico */
.formula-box {
  background: var(--brand-dark);
  color: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.05rem;
  margin: 1.5rem 0;
  overflow-x: auto;
}

/* Layout de Blogs */
.blog-header {
  padding: 3rem 0 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--brand-gray-500);
  font-size: 0.875rem;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}

.blog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-toc {
  position: sticky;
  top: 6rem;
  background: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.blog-toc-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.blog-toc-list {
  list-style: none;
  font-size: 0.85rem;
}

.blog-toc-list li {
  margin-bottom: 0.6rem;
}

.blog-toc-list a {
  color: var(--brand-gray-700);
  transition: color 0.15s ease;
}

.blog-toc-list a:hover {
  color: var(--brand-primary);
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brand-dark);
}

.blog-content h2 {
  font-size: 1.75rem;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-gray-100);
}

.blog-content h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
}

.blog-content ul, .blog-content ol {
  margin: 1rem 0 1.5rem 1.75rem;
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.clinical-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--brand-gray-200);
}

.clinical-table th {
  background-color: var(--brand-gray-100);
  color: var(--brand-dark);
  font-weight: 700;
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--brand-gray-200);
}

.clinical-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--brand-gray-200);
}

.clinical-table tr:hover {
  background-color: var(--brand-primary-light);
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.95rem;
  color: var(--brand-gray-700);
  line-height: 1.6;
}

/* Footer Institucional */
.site-footer {
  background-color: var(--brand-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid var(--brand-dark-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-logo {
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

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

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--brand-dark-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-disclaimer {
  max-width: 600px;
  color: #64748b;
  line-height: 1.5;
}

/* E-E-A-T Señales de Confianza Médica y Sanitaria */
.medical-review-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  margin: 1.25rem 0;
}

.reviewer-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: #dcfce7;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 2px solid #86efac;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reviewer-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.reviewer-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.reviewer-note {
  font-size: 0.8rem;
  color: var(--brand-gray-500);
}

/* Rating Stars E-E-A-T */
.aggregate-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  margin-bottom: 0.75rem;
}

.stars-gold {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.rating-score {
  font-weight: 800;
  color: #b45309;
}

.rating-count {
  color: #78350f;
  font-size: 0.775rem;
}

/* Disclaimer Sanitario COFEPRIS / LGS */
.disclaimer-alert {
  background-color: #f8fafc;
  border-left: 4px solid #0284c7;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--brand-gray-700);
  line-height: 1.6;
  margin: 1.5rem 0;
}

.disclaimer-alert strong {
  color: #0369a1;
  display: block;
  margin-bottom: 0.25rem;
}

/* Categoría Landing Hub */
.category-hub-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--brand-gray-200);
  padding: 3.5rem 0;
}

.category-hub-intro {
  background-color: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}

.category-hub-intro h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

.category-hub-intro p {
  font-size: 0.95rem;
  color: var(--brand-gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Card de Guía Relacionada */
.related-guide-box {
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
  border: 1px solid #99f6e4;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.related-guide-box h4 {
  font-size: 0.95rem;
  color: #0f766e;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.related-guide-box p {
  font-size: 0.85rem;
  color: #115e59;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.related-guide-box a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0d9488;
}

.related-guide-box a:hover {
  text-decoration: underline;
  color: #0f766e;
}

/* ==========================================================================
   GLOSARIO CLÍNICO Y NORMATIVO MÉXICO (/glosario/)
   ========================================================================== */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.glossary-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.glossary-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.glossary-term {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.glossary-def {
  font-size: 0.95rem;
  color: var(--brand-gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.glossary-context {
  background-color: #f8fafc;
  border-left: 3px solid var(--brand-primary);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.85rem;
  color: var(--brand-gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.glossary-legal-tag {
  font-size: 0.775rem;
  color: #0369a1;
  background-color: #f0f9ff;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.glossary-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--brand-gray-100);
  padding-top: 1rem;
}

/* ==========================================================================
   HOJA DE IMPRESIÓN CLÍNICA PARA EXPEDIENTE (NOM-004-SSA3-2012)
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
  }

  .site-header,
  .site-footer,
  .header-actions,
  .search-trigger-btn,
  .breadcrumbs,
  .calculator-card-badge,
  .results-actions,
  #category-pills,
  #dir-search-input,
  .hero-section,
  .omnibox-wrapper,
  .btn,
  .related-guide-box,
  .faq-accordion,
  button {
    display: none !important;
  }

  .calc-page-layout {
    display: block !important;
  }

  .calc-results-sidebar {
    position: static !important;
    border: 2px solid #000000 !important;
    box-shadow: none !important;
    margin: 1.5rem 0 !important;
    padding: 1.5rem !important;
    page-break-inside: avoid;
  }

  .result-main-value {
    color: #000000 !important;
    font-size: 28pt !important;
  }

  .medical-review-badge {
    border: 1px solid #000000 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .disclaimer-alert {
    border-left: 2px solid #000000 !important;
    font-size: 9pt !important;
  }

  /* Membrete de Impresión de Expediente Clínico */
  .container::before {
    content: "EXPEDIENTE CLÍNICO NUTRICIONAL - NOTA DE VALORACIÓN (NOM-004-SSA3-2012)";
    display: block;
    font-size: 14pt;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .container::after {
    content: "_____________________________________\A Firma del Licenciado en Nutrición\A Cédula Profesional Federal DGP: __________________\A Archivar en Expediente Clínico (Custodia legal: 5 años)";
    white-space: pre-wrap;
    display: block;
    margin-top: 3rem;
    text-align: center;
    font-size: 10pt;
    line-height: 1.8;
  }
}
