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

:root {
  --g1: #0A2540;
  --g2: #0E5C8A;
  --g3: #1BA8C4;
  --teal: #1BA8C4;
  --teal-d: #0E7FA0;
  --white: #FFFFFF;
  --off: rgba(255,255,255,0.72);
  --dim: rgba(255,255,255,0.42);
  --glass: rgba(255,255,255,0.10);
  --glass-b: rgba(255,255,255,0.16);
}

html, body {
  height: 100%;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* ══════════════════════════════
   FULL-SCREEN HERO SHELL
══════════════════════════════ */
.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, var(--g1) 0%, var(--g2) 52%, var(--g3) 100%);
  z-index: 0;
}

.bg-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 44%;
  z-index: 1;
  overflow: hidden;
}
.bg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.bg-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--g2) 0%, transparent 35%);
  z-index: 2;
}
.bg-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, rgba(10,37,64,0.6) 0%, transparent 100%);
  z-index: 2;
}

.wave-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 54%;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.wave-divider svg { height: 100%; width: 100%; }

.cross {
  position: absolute;
  z-index: 4;
  opacity: 0.18;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  user-select: none;
  animation: floatCross 6s ease-in-out infinite;
}
.cross:nth-child(1) { right: 6%; top: 12%; font-size: 2.4rem; animation-delay: 0s; }
.cross:nth-child(2) { right: 14%; bottom: 22%; font-size: 1.6rem; animation-delay: 1.5s; }
.cross:nth-child(3) { right: 3%; bottom: 40%; font-size: 1rem; animation-delay: 3s; }

@keyframes floatCross {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(5deg); }
}

.dot-grid {
  position: absolute;
  bottom: 4%;
  left: 3%;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  opacity: 0.25;
}
.dot-grid span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--white);
  display: block;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  z-index: 3;
}
.ring-1 { width: 320px; height: 320px; right: 38%; top: -80px; }
.ring-2 { width: 180px; height: 180px; left: 42%; bottom: 60px; border-color: rgba(27,168,196,0.3); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 5%;
}

.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.03em; line-height: 1.2;
}
.logo-text small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 0.3rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.82rem; font-weight: 400;
  color: var(--off); padding: 0.45rem 1rem; border-radius: 2rem;
  letter-spacing: 0.04em; transition: all 0.2s; display: block;
}
.nav-links a:hover { color: var(--white); background: var(--glass); }
.nav-links .active {
  color: var(--white); font-weight: 500;
  border-bottom: 1.5px solid var(--teal);
  border-radius: 0; padding-bottom: 0.3rem;
}
.nav-cta-wrap { display: flex; align-items: center; gap: 0.8rem; }
.crm-badge {
  font-size: 0.68rem; font-weight: 300; color: var(--dim);
  letter-spacing: 0.06em;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 0.8rem;
}

/* ══════════════════════════════
   HERO CONTENT
══════════════════════════════ */
.hero {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 5% 6% 5%;
  max-width: 56%;
}

.tag-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(27,168,196,0.2);
  border: 1px solid rgba(27,168,196,0.5);
  color: #7FE0F0;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.38rem 1rem; border-radius: 2rem;
  width: fit-content; margin-bottom: 1.6rem;
  animation: slideIn 0.5s ease both;
}
.tag-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%; background: #7FE0F0; display: block;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--white); line-height: 1.1; margin-bottom: 0.6rem;
  animation: slideIn 0.5s 0.08s ease both;
}
h1 em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--off);
  margin-bottom: 1.4rem; letter-spacing: 0.02em;
  animation: slideIn 0.5s 0.14s ease both;
}

.hero-desc {
  font-size: 0.9rem; color: var(--dim); line-height: 1.85;
  max-width: 400px; margin-bottom: 2.2rem;
  animation: slideIn 0.5s 0.2s ease both;
}

.action-row {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 400px;
  animation: slideIn 0.5s 0.28s ease both;
}

.input-field {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--glass-b);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 0.6rem; padding: 0.85rem 1.1rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}
.input-field:focus-within {
  border-color: rgba(27,168,196,0.7);
  background: rgba(255,255,255,0.16);
}
.input-icon { font-size: 1rem; opacity: 0.7; flex-shrink: 0; }
.input-field input, .input-field select {
  background: none; border: none; outline: none;
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  color: var(--white); flex: 1; width: 100%;
}
.input-field input::placeholder { color: rgba(255,255,255,0.45); }
.input-field select { color: rgba(255,255,255,0.45); cursor: pointer; }
.input-field select option { color: #0A2540; background: #fff; }

.btn-agendar {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--teal); color: var(--white);
  border: none; border-radius: 0.6rem; padding: 0.95rem 1.5rem;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.03em; cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.btn-agendar:hover {
  background: #14c5e8; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,168,196,0.4);
}
.btn-arrow { font-size: 1rem; transition: transform 0.2s; }
.btn-agendar:hover .btn-arrow { transform: translateX(4px); }

/* ══════════════════════════════
   FLOATING CARDS
══════════════════════════════ */
.float-cards {
  position: absolute; z-index: 10;
  bottom: 7%; right: 46%;
  display: flex; flex-direction: column; gap: 0.6rem;
  animation: slideIn 0.6s 0.4s ease both;
}

.fcard {
  background: rgba(255,255,255,0.97);
  border-radius: 0.9rem; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.8rem;
  box-shadow: 0 8px 32px rgba(10,37,64,0.18);
  min-width: 230px; backdrop-filter: blur(4px);
}
.fcard-icon {
  width: 36px; height: 36px; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.fcard-icon.blue  { background: linear-gradient(135deg, #0E5C8A, #1BA8C4); }
.fcard-icon.green { background: linear-gradient(135deg, #0A7A6E, #14B8A6); }
.fcard-title { font-size: 0.82rem; font-weight: 600; color: #0A2540; }
.fcard-sub   { font-size: 0.7rem; color: #6B7280; margin-top: 2px; }

/* ══════════════════════════════
   STATS STRIP
══════════════════════════════ */
.stats-strip {
  position: absolute; bottom: 0; left: 0;
  width: 56%; z-index: 10;
  display: flex; align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: slideIn 0.5s 0.5s ease both;
}
.stat-block {
  flex: 1; padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 0.8rem;
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.stat-lbl { font-size: 0.68rem; color: var(--dim); line-height: 1.4; letter-spacing: 0.04em; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.sections { background: #F8FAFB; }

/* SOBRE */
#sobre {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 70vh;
}
.sobre-img {
  position: relative; overflow: hidden;
  background: #E8EDF2; min-height: 500px;
}
.sobre-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.sobre-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.55) 0%, transparent 50%);
}
.sobre-img-tag {
  position: absolute; bottom: 1.8rem; left: 1.8rem;
  background: white; border-radius: 0.75rem; padding: 0.7rem 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-size: 0.78rem; color: #374151;
}
.sobre-img-tag strong { display: block; font-size: 0.88rem; color: #0A2540; }

.sobre-content {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.sec-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-d); font-weight: 500; margin-bottom: 0.8rem;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: #0A2540; line-height: 1.2; margin-bottom: 1.2rem;
}
.sobre-text { font-size: 0.92rem; color: #6B7280; line-height: 1.85; margin-bottom: 1rem; }

.cred-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cred-row {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 0.9rem 1rem; border-radius: 0.6rem;
  background: #F3F8FB; transition: background 0.2s;
}
.cred-row:hover { background: #E6F4F8; }
.cred-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); margin-top: 0.38rem; flex-shrink: 0;
}
.cred-row-text { font-size: 0.87rem; color: #1F2937; line-height: 1.5; }
.cred-row-text span { display: block; font-size: 0.76rem; color: #9CA3AF; margin-top: 1px; }

/* ESPECIALIDADES */
#especialidades { padding: 5rem 5%; background: #0A2540; }
.esp-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.esp-top h2 { color: white; margin: 0; }
.esp-top .sec-label { color: var(--teal); }
.ver-mais {
  font-size: 0.8rem; color: var(--teal);
  text-decoration: none;
  border: 1px solid rgba(27,168,196,0.4);
  padding: 0.45rem 1.1rem; border-radius: 2rem; transition: all 0.2s;
}
.ver-mais:hover { background: rgba(27,168,196,0.15); }

.esp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.esp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; padding: 1.8rem 1.5rem;
  cursor: default; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.esp-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.esp-card:hover {
  background: rgba(27,168,196,0.12);
  border-color: rgba(27,168,196,0.3);
  transform: translateY(-3px);
}
.esp-card:hover::before { transform: scaleX(1); }
.esp-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.esp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  color: white; margin-bottom: 0.5rem;
}
.esp-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ONDE ATENDO */
#locais { padding: 5rem 5%; background: #F8FAFB; }
.locais-top { margin-bottom: 2.5rem; }
.locais-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.local-card {
  background: white; border-radius: 1rem; padding: 1.5rem;
  border: 1px solid #E5EAF0; transition: all 0.25s;
}
.local-card:hover {
  border-color: rgba(14,127,160,0.3);
  box-shadow: 0 6px 24px rgba(10,37,64,0.08);
  transform: translateY(-2px);
}
.local-icon-wrap {
  width: 44px; height: 44px; border-radius: 0.6rem;
  background: linear-gradient(135deg, #0A2540, #1BA8C4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.local-card h4 { font-size: 0.9rem; font-weight: 600; color: #0A2540; margin-bottom: 0.35rem; }
.local-card p  { font-size: 0.78rem; color: #9CA3AF; line-height: 1.6; }
.local-tipo {
  display: inline-block; margin-top: 0.8rem;
  background: #EEF7FA; color: var(--teal-d);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border-radius: 2rem;
}

/* CONTATO */
#contato { display: grid; grid-template-columns: 1fr 1fr; background: white; }
.contato-left {
  background: linear-gradient(135deg, #0A2540 0%, #0E5C8A 100%);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contato-left .sec-label { color: var(--teal); }
.contato-left h2 { color: white; margin-bottom: 1rem; }
.contato-left p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.c-link {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.75rem; text-decoration: none;
  color: rgba(255,255,255,0.8); font-size: 0.87rem; transition: all 0.2s;
}
.c-link:hover { background: rgba(27,168,196,0.2); border-color: rgba(27,168,196,0.4); color: white; }
.c-icon { font-size: 1.1rem; width: 32px; text-align: center; }

.contato-form-wrap {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.contato-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: #0A2540; margin-bottom: 1.5rem;
}
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.72rem; color: #6B7280; letter-spacing: 0.06em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  padding: 0.8rem 0.95rem;
  border: 1.5px solid #E5EAF0; border-radius: 0.6rem;
  font-family: 'Outfit', sans-serif; font-size: 0.88rem;
  color: #0A2540; outline: none; transition: border-color 0.2s;
  background: #FAFCFD; resize: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal); background: white; }
.submit {
  background: linear-gradient(90deg, #0E5C8A, #1BA8C4);
  color: white; border: none; border-radius: 0.6rem; padding: 0.95rem;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; letter-spacing: 0.03em;
}
.submit:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,92,138,0.35); }
#success-msg { display: none; font-size: 0.85rem; color: var(--teal-d); margin-top: 0.3rem; text-align: center; }

/* FOOTER */
footer {
  background: #060F1E; padding: 1.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
}
.foot-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.5); }
.foot-logo span { color: var(--teal); }
footer p { font-size: 0.72rem; color: rgba(255,255,255,0.28); letter-spacing: 0.05em; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   CARROSSEL
══════════════════════════════ */
#galeria {
  padding: 5rem 5%;
  background: var(--white);
}
.galeria-header { margin-bottom: 2.5rem; }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 12px 48px rgba(10,37,64,0.12);
  user-select: none;
}

/* TRILHA */
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* SLIDE */
.slide {
  min-width: 100%;
  flex-shrink: 0;
  background: #0A2540;
}

.slide-img-wrap {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0A2540, #0E5C8A);
}
/* placeholder quando não há foto */
.slide-img-wrap.slide-placeholder {
  display: flex; align-items: center; justify-content: center;
}
.slide-img-wrap.slide-placeholder::after {
  content: '📷';
  font-size: 3rem; opacity: 0.3;
}

.slide-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.slide:hover .slide-img-wrap img { transform: scale(1.03); }

/* CAPTION */
.slide-caption {
  background: var(--white);
  padding: 1.5rem 2rem;
  border-top: 3px solid var(--teal);
}
.slide-caption h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: #0A2540; margin-bottom: 0.35rem;
}
.slide-caption p {
  font-size: 0.88rem; color: #6B7280; line-height: 1.65;
}

/* SETAS */
.carousel-btn {
  position: absolute; top: calc(240px - 24px); /* metade da img */
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #0A2540;
  box-shadow: 0 4px 16px rgba(10,37,64,0.18);
  transition: all 0.2s;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover {
  background: var(--teal); color: white;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(27,168,196,0.4);
}
.carousel-prev { left: 1.2rem; }
.carousel-next { right: 1.2rem; }

/* DOTS */
.carousel-dots {
  position: absolute;
  bottom: calc(1.5rem + 56px); /* acima da caption */
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.3s;
}
.dot.active {
  background: var(--white);
  width: 24px; border-radius: 4px;
}

/* BARRA DE PROGRESSO */
.carousel-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(10,37,64,0.1);
  z-index: 10;
}
.carousel-progress-bar {
  height: 100%;
  background: var(--teal);
  width: 0%;
  transition: width linear;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .locais-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bg-photo { display: none; }
  .hero { max-width: 100%; padding-bottom: 5rem; }
  .float-cards { display: none; }
  .stats-strip { width: 100%; position: relative; flex-wrap: wrap; }
  nav .crm-badge { display: none; }
  #sobre { grid-template-columns: 1fr; }
  .sobre-img { min-height: 300px; }
  .sobre-content { padding: 3rem 2rem; }
  .esp-grid { grid-template-columns: 1fr; }
  .locais-grid { grid-template-columns: 1fr; }
  #contato { grid-template-columns: 1fr; }
  .contato-left, .contato-form-wrap { padding: 3rem 2rem; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .esp-top { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Carrossel mobile */
  .slide-img-wrap { height: 240px; }
  .carousel-btn { top: calc(120px - 24px); width: 40px; height: 40px; }
  .carousel-dots { bottom: calc(1rem + 80px); }
  .slide-caption { padding: 1rem 1.2rem; }
}
