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

:root {
  --green:        #2ECC5A;
  --green-dark:   #1A7A36;
  --green-deeper: #0F4D22;
  --green-glow:   rgba(46, 204, 90, 0.10);
  --green-glow2:  rgba(46, 204, 90, 0.06);
  --green-mid:    #3DDC6A;
  --white:        #ffffff;
  --off-white:    #F6F9F7;
  --gray-100:     #EEF3F0;
  --gray-200:     #D8E5DC;
  --gray-400:     #7A9E88;
  --gray-600:     #3D6149;
  --dark:         #091A0E;
  --dark-mid:     #0D2416;
  --dark-card:    #102019;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(46,204,90,0.18);
  transition: all 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.nav-logo-text span { color: var(--green-dark); }

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

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--green-dark) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  font-size: 13.5px !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover { opacity: 0.85 !important; transform: scale(1.02) !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46,204,90,0.12);
}

.hc1 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hc2 { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hc3 { width: 1100px; height: 1100px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  background: radial-gradient(circle, rgba(46,204,90,0.08) 0%, transparent 70%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 20px;
  height: 0.5px;
  background: var(--green);
  opacity: 0.5;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}

h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.85; transform: scale(1.02); }

.btn-ghost {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: rgba(255,255,255,0.85); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(3px); }

/* hero pill badges */
.hero-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-pill {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s infinite;
}

.scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ── SECTIONS ── */
section { padding: 120px 48px; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--green-dark);
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 520px;
}

/* ── SOBRE ── */
#sobre {
  background: var(--off-white);
  padding: 120px 80px;
}

.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 0.5px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.sobre-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green), transparent);
}

.sobre-stat {
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.sobre-stat-label {
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.5;
}

.sobre-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding-top: 28px;
  border-top: 0.5px solid var(--gray-200);
}

.mini-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--dark);
  font-weight: 400;
}

.mini-stat-label {
  font-size: 11.5px;
  color: var(--gray-400);
  font-weight: 300;
  margin-top: 3px;
  line-height: 1.4;
}

/* ── O QUE É BPO ── */
#bpo {
  background: var(--dark);
  padding: 120px 80px;
}

.bpo-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bpo-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}

#bpo .section-label { color: var(--green); }
#bpo .section-title { color: var(--white); }
#bpo .section-body { color: rgba(255,255,255,0.4); }

.bpo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
}

.bpo-card {
  padding: 36px 28px;
  background: var(--dark-mid);
  transition: background 0.3s;
  position: relative;
}

.bpo-card:hover { background: rgba(46,204,90,0.05); }

.bpo-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-glow);
  border: 0.5px solid rgba(46,204,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

.bpo-card-icon svg { width: 18px; height: 18px; }

.bpo-card-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}

.bpo-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  font-weight: 300;
}

/* ── PROPÓSITO ── */
#proposito {
  padding: 120px 80px;
  background: var(--white);
}

.proposito-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proposito-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proposito-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--gray-200);
  align-items: flex-start;
}

.proposito-item:first-child { padding-top: 0; }

.prop-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 400;
  letter-spacing: 1px;
  min-width: 28px;
  margin-top: 2px;
}

.prop-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.55;
}

/* ── COMPARATIVO ── */
#comparativo {
  background: var(--gray-100);
  padding: 120px 80px;
}

.comparativo-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.comp-header {
  text-align: center;
  margin-bottom: 64px;
}

.comp-header .section-label,
.comp-header .section-title,
.comp-header .section-body {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.comp-col {
  border-radius: 20px;
  overflow: hidden;
  border: 0.5px solid var(--gray-200);
}

.comp-col-header {
  padding: 20px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.comp-col.clt .comp-col-header {
  background: var(--gray-200);
  color: var(--gray-600);
}

.comp-col.aresta .comp-col-header {
  background: var(--green-dark);
  color: var(--white);
}

.comp-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px;
  font-size: 13.5px;
  border-bottom: 0.5px solid var(--gray-200);
  background: var(--white);
}

.comp-row:last-child { border-bottom: none; }

.comp-row-label { color: var(--gray-600); font-weight: 300; }
.comp-row-value { font-weight: 500; color: var(--dark); }

.comp-row.total {
  background: var(--gray-100);
  padding: 18px 28px;
}

.comp-row.total .comp-row-label {
  font-weight: 500;
  color: var(--dark);
  font-size: 14px;
}

.comp-row.total .comp-row-value {
  font-size: 16px;
  color: var(--dark);
}

.comp-col.aresta .comp-row-value { color: var(--green-dark); }

.aresta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 28px;
  border-bottom: 0.5px solid var(--gray-200);
  background: var(--white);
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 300;
}

.aresta-item:last-of-type { border-bottom: none; }

.aresta-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(26,122,54,0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.aresta-dot svg { width: 8px; height: 8px; }

.aresta-total {
  padding: 18px 28px;
  background: var(--green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aresta-total-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.aresta-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  font-weight: 400;
}

.savings-badge {
  background: var(--green-glow);
  border: 0.5px solid rgba(46,204,90,0.2);
  border-radius: 12px;
  padding: 20px 28px;
  margin-top: 24px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.savings-label {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
}

.savings-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--green-dark);
  font-weight: 400;
}

.savings-note {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 300;
  margin-top: 4px;
}

/* ── PLANOS ── */
#planos {
  padding: 120px 80px;
  background: var(--white);
}

.planos-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.planos-header {
  text-align: center;
  margin-bottom: 64px;
}

.planos-header .section-label,
.planos-header .section-title,
.planos-header .section-body {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plano-card {
  border: 0.5px solid var(--gray-200);
  border-radius: 24px;
  padding: 40px 36px;
  background: var(--white);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.plano-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

.plano-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.plano-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-glow);
  border: 0.5px solid rgba(26,122,54,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.plano-card.featured .plano-badge {
  color: var(--green);
  background: rgba(46,204,90,0.08);
  border-color: rgba(46,204,90,0.25);
}

.plano-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.plano-card.featured .plano-name { color: var(--white); }

.plano-tagline {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.5;
}

.plano-card.featured .plano-tagline { color: rgba(255,255,255,0.35); }

.plano-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.plano-card.featured .plano-price { color: var(--green); }

.plano-price-note {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 32px;
  font-weight: 300;
}

.plano-divider {
  height: 0.5px;
  background: var(--gray-200);
  margin-bottom: 28px;
}

.plano-card.featured .plano-divider { background: rgba(255,255,255,0.08); }

.plano-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.plano-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  font-weight: 300;
}

.plano-card.featured .plano-features li { color: rgba(255,255,255,0.5); }

.feat-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(26,122,54,0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.plano-card.featured .feat-check {
  background: rgba(46,204,90,0.1);
}

.feat-check svg { width: 8px; height: 8px; }

.plano-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  border: 1px solid var(--gray-200);
  color: var(--dark);
  background: transparent;
}

.plano-card.featured .plano-btn {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.plano-btn:hover { opacity: 0.8; transform: scale(0.99); }

/* ── EQUIPE ── */
#equipe {
  background: var(--off-white);
  padding: 120px 80px;
}

.equipe-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.equipe-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 0.5px solid var(--gray-200);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-glow);
  border: 1px solid rgba(26,122,54,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.team-name { font-size: 20px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.team-role {
  font-size: 11px;
  color: var(--green-dark);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.team-bio { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

.team-quote {
  grid-column: 1 / -1;
  background: var(--dark);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--green);
  line-height: 0.7;
  flex-shrink: 0;
  opacity: 0.4;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ── CONTATO ── */
#contato {
  background: var(--dark);
  padding: 120px 80px;
  text-align: center;
}

#contato .section-label { color: var(--green); }
#contato .section-title { color: var(--white); margin: 0 auto 20px; }

.contato-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 48px;
}

.contato-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-white:hover { opacity: 0.9; transform: scale(1.02); }

.btn-outline-white {
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-white:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.contato-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 48px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.info-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 6px;
}

.info-value { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 300; }
.info-value a { color: var(--green); text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: #040C07;
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text { font-size: 14px; color: rgba(255,255,255,0.3); font-weight: 300; }
.footer-text strong { color: var(--green); font-weight: 500; }
.footer-note { font-size: 12px; color: rgba(255,255,255,0.15); font-weight: 300; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  #sobre, #bpo, #proposito, #comparativo, #planos, #equipe, #contato { padding: 80px 24px; }
  .sobre-inner, .bpo-header, .proposito-inner, .equipe-header { grid-template-columns: 1fr; gap: 32px; }
  .bpo-cards { grid-template-columns: 1fr 1fr; }
  .sobre-mini-stats { grid-template-columns: 1fr 1fr; }
  .comp-grid, .planos-grid, .team-grid { grid-template-columns: 1fr; }
  .team-quote { grid-column: 1; }
  .contato-info { flex-direction: column; gap: 24px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}