:root {
  --salud-green: #B1D354;
  --salud-blue: #3A4B5D;
  --salud-orange: #F78F2B;
  --salud-white: #EFF1F5;
  --emerald-500: #10B981;
  --protein: #EF4444;
  --carbs: #F59E0B;
  --fat: #22C55E;
  --calories: #3B82F6;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--salud-blue);
  background-color: var(--salud-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── HEADER ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(58, 75, 93, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s, padding 0.35s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  transition: padding 0.35s;
}

.site-header.scrolled .header-inner {
  padding-top: 0;
  padding-bottom: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo .logo-full {
  height: 81px;
  width: auto;
  transition: opacity 0.35s, transform 0.35s;
}

.header-logo .logo-icon-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
  background: transparent;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo .logo-icon {
  height: 32px;
  width: 32px;
  display: block;
}

.site-header.scrolled .header-logo .logo-full {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.site-header.scrolled .logo-icon-wrap {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--emerald-500);
  color: #fff;
}

.btn-primary:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.btn-orange {
  background: var(--salud-orange);
  color: #fff;
}

.btn-orange:hover {
  background: #e5801f;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(247, 143, 43, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--salud-green);
  color: var(--salud-green);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── MOBILE NAV ───────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 75, 93, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--salud-green);
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  padding: 10rem 1.5rem 5rem;
  background: linear-gradient(135deg, var(--salud-blue) 0%, #2c3a4a 60%, #1f2937 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(177, 211, 84, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 143, 43, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--salud-green);
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── QUOTE ────────────────────────────────────────── */
.quote-section {
  padding: 4rem 1.5rem;
  background: #fff;
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-inner blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--salud-blue);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2rem;
}

.quote-inner blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--salud-green);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-inner cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--salud-blue);
}

/* ─── SECTIONS (generic) ──────────────────────────── */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: var(--salud-blue);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: rgba(58, 75, 93, 0.7);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald-500);
  margin-bottom: 0.75rem;
}

/* ─── CARDS GRID ──────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(58, 75, 93, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(58, 75, 93, 0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  padding: 8px;
  background: rgba(177, 211, 84, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--salud-blue);
}

.card p {
  font-size: 0.95rem;
  color: rgba(58, 75, 93, 0.7);
  line-height: 1.6;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-accent {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
}

.about-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-content p {
  color: rgba(58, 75, 93, 0.75);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 0.5rem;
}

/* ─── HOW IT WORKS ────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.step:nth-child(even) {
  direction: rtl;
}

.step:nth-child(even) > * {
  direction: ltr;
}

.step-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(58, 75, 93, 0.12);
}

.step-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--emerald-500);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--salud-blue);
}

.step-content h4 {
  font-size: 1rem;
  color: var(--emerald-500);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-content p {
  color: rgba(58, 75, 93, 0.7);
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── BENEFITS ────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(58, 75, 93, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(58, 75, 93, 0.1);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  padding: 10px;
  background: rgba(177, 211, 84, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1rem;
  color: var(--salud-blue);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(58, 75, 93, 0.65);
}

.benefit-card .mobile-desc {
  display: none;
}

/* ─── TEAM ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 75, 93, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(58, 75, 93, 0.1);
}

.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}

.team-card-info {
  padding: 1.5rem;
}

.team-card-info h3 {
  font-size: 1.1rem;
  color: var(--salud-blue);
  margin-bottom: 0.25rem;
}

.team-card-info .role {
  font-size: 0.85rem;
  color: var(--emerald-500);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card-info p {
  font-size: 0.88rem;
  color: rgba(58, 75, 93, 0.65);
  line-height: 1.6;
}

/* ─── LOGO CAROUSEL ───────────────────────────────── */
.carousel-section {
  padding: 3rem 0;
  overflow: hidden;
  background: var(--salud-white);
}

.carousel-section .section-header {
  padding: 0 1.5rem;
}

.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.carousel-track-wrapper::before,
.carousel-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.carousel-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--salud-white), transparent);
}

.carousel-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--salud-white), transparent);
}

.carousel-track {
  display: flex;
  gap: 3rem;
  animation: scroll-logos 30s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.carousel-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── CONTACT / CTA ───────────────────────────────── */
.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--salud-blue) 0%, #2c3a4a 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--salud-green);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff80' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--salud-blue);
  color: #fff;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--emerald-500);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.form-checkbox label a {
  color: #fff;
  text-decoration: underline;
}

.form-checkbox label a:hover {
  color: var(--salud-green);
}

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--emerald-500);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}

.form-submit:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--salud-blue);
  padding: 3rem 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--salud-green);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

/* ─── ANIMATIONS ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── POPUP OVERLAY ───────────────────────────────── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.popup-overlay.open {
  display: flex;
}

.popup-card {
  background: var(--salud-blue);
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.popup-card h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.popup-card > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ─── LEGAL PAGES ─────────────────────────────────── */
.legal-page {
  padding: 8rem 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--salud-blue);
}

.legal-page .subtitle {
  color: rgba(58, 75, 93, 0.5);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--salud-blue);
}

.legal-page h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--salud-blue);
}

.legal-page p {
  color: rgba(58, 75, 93, 0.75);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page li {
  color: rgba(58, 75, 93, 0.75);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.legal-page a {
  color: var(--emerald-500);
  text-decoration: underline;
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-accent {
    min-height: 200px;
    order: -1;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 7rem 1.5rem 3.5rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .benefit-card {
    padding: 1.25rem 1rem;
  }

  .benefit-card p {
    display: none;
  }

  .benefit-card .mobile-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(58, 75, 93, 0.65);
    margin-top: 0.25rem;
  }

  .benefit-card h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
  }

  .benefit-icon img {
    width: 28px;
    height: 28px;
  }

  .cta-form {
    padding: 1.5rem;
  }

  .popup-card {
    padding: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
}
