/* ══════════════════════════════════════════════
   O&S Serviços – style.css
   Autor: O&S Serviços LTDA
   ══════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #9b3a3a;
  --red-light: #b84848;
  --red-dark:  #7a2c2c;
  --bg:        #f9f8f6;
  --white:     #ffffff;
  --dark:      #1a1a1a;
  --gray:      #6b6b6b;
  --gray-light:#e8e5e0;
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155,58,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: #fff; }

/* ── TAG ─────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.tag::before { content: '—'; }

/* ── TOPBAR ──────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: .78rem;
  padding: .45rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
}
.topbar a { color: #ccc; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar i { font-size: .7rem; margin-right: .25rem; }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
  gap: 1rem;
}
.nav-logo-link {
  display: inline-flex;
  align-items: center;
}
.nav-logo-img {
  height: 47px;
  width: auto;
  display: block;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--dark);
}
.nav-phone i { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  animation: slideDown .25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-light);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.55) 70%,
    rgba(0,0,0,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 4rem 5rem;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-text p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .45rem 1rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 500;
}
.badge i { color: #f0c070; }

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.hero-form-card h3 span { color: var(--red); }
.form-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.form-row input,
.form-row select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color .2s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus { outline: none; border-color: var(--red); }
.form-row .btn { width: 100%; justify-content: center; margin-top: .25rem; }
.form-status {
  min-height: 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
}
.form-status.success {
  color: #1f8a5b;
}

/* ── CLIENTS ─────────────────────────────────── */
.clients {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.clients-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.client-logo {
  height: 45px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter .25s;
}
.client-logo:hover {
  filter: grayscale(0) opacity(1);
}
.client-logo:hover {
  filter: grayscale(0) opacity(1);     /* colorido no hover */
}
.client-logo:hover { color: var(--red); }

/* ── SECTION COMMONS ─────────────────────────── */
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.section-header p {
  margin-top: .75rem;
  color: var(--gray);
  max-width: 520px;
  margin-inline: auto;
}

/* ── ABOUT ───────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 2rem; right: -1.5rem;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-img-badge strong {
  display: block;
  font-size: 2rem;
  font-family: var(--font-head);
  line-height: 1;
}
.about-img-badge span { font-size: .78rem; opacity: .85; }

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-content > p {
  color: var(--gray);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--dark);
}
.about-bullets li i { color: var(--red); font-size: .85rem; }

.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-light);
  padding-top: 1.75rem;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.stat span { font-size: .82rem; color: var(--gray); }

/* ── SERVICES ────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--bg);
  transition: var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(155,58,58,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--red);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.service-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.service-bullets li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  color: var(--gray);
}
.service-bullets li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1.25rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap .2s;
}
.service-link:hover { gap: .6rem; }

/* ── GALLERY ─────────────────────────────────── */
.gallery { background: var(--bg); padding-block: 5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  padding: 1.25rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; transform: translateY(0); }
.gallery-overlay p { color: #fff; font-weight: 600; font-size: .9rem; }
.gallery-overlay span { color: rgba(255,255,255,.7); font-size: .78rem; }

/* ── PROCESS ─────────────────────────────────── */
.process { background: var(--red); }
.process .section-header h2,
.process .section-header p { color: #fff; }
.process .section-header p { opacity: .8; }
.process .tag { color: rgba(255,255,255,.6); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-step {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.process-step:hover { background: rgba(255,255,255,.18); }
.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  line-height: 1;
  margin-bottom: .5rem;
}
.process-step h3 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.process-step p { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.6; }

/* ── WHY US ──────────────────────────────────── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(155,58,58,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
}
.why-feature h4 { font-weight: 600; margin-bottom: .35rem; font-size: .98rem; }
.why-feature p { color: var(--gray); font-size: .88rem; line-height: 1.6; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--dark); color: #fff; }
.testimonials .section-header h2 { color: #fff; }
.testimonials .section-header p { color: rgba(255,255,255,.6); }
.testimonials .tag { color: rgba(255,255,255,.5); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  transition: transform .45s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 2rem;
  text-align: center;
}
.testimonial-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--red);
}
.testimonial-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  color: rgba(255,255,255,.9);
}
.testimonial-author strong { display: block; font-size: .95rem; color: #fff; }
.testimonial-author span { font-size: .82rem; color: rgba(255,255,255,.5); }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--red); transform: scale(1.3); }
.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.arrow-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-btn:hover { background: var(--red); border-color: var(--red); }

/* ── FAQ ─────────────────────────────────────── */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.faq-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--red); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 500;
  font-size: .92rem;
  gap: 1rem;
}
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 1.25rem 1.25rem;
}

/* ── FOOTER ──────────────────────────────────── */
.footer-social { background: var(--red-dark); padding: 0; }
.social-bar { display: flex; }
.social-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.1rem;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.social-link:last-child { border-right: none; }
.social-link:hover { background: rgba(255,255,255,.1); color: #fff; }

.footer-main {
  background: var(--red);
  padding: 3.5rem 0 2rem;
  color: rgba(255,255,255,.85);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-top: .75rem;
  opacity: .8;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.footer-col h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  margin-bottom: .6rem;
}
.footer-info li i { color: rgba(255,255,255,.5); margin-top: .2rem; font-size: .8rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }

/* ── WHATSAPP FLOAT ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  .topbar .container { justify-content: center; }
  .topbar-left { display: none; }

  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content .container { grid-template-columns: 1fr; gap: 2rem; align-items: end; }
  .hero-text h1 { font-size: 2rem; }
  .hero-form-card { margin-top: 1rem; }

  .clients-inner { gap: 1.5rem; }
  .client-logo { font-size: .85rem; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-badge { right: 1rem; }
  .about-img-wrap img { height: 300px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
  .gallery-item:nth-child(2) { order: -1; }

  .process-steps { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-img img { height: 280px; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-img { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .social-bar { flex-wrap: wrap; }
  .social-link { flex: 1 1 calc(33.33% - 1px); min-width: 100px; font-size: .78rem; }

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

  section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; }
  .badge { width: fit-content; }
  .about-stats { gap: 1.25rem; }
  .social-link { flex: 1 1 50%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
