/* =========================================================
   INSTITUTO CUIDAR EM FAMÍLIA — Landing Page
   Paleta baseada no logotipo: azul royal, verde, dourado, branco
   ========================================================= */

:root {
  --azul-royal: #1b3f8b;
  --azul-escuro: #10275a;
  --azul-claro: #4d7cf0;
  --verde: #4c9a2a;
  --verde-escuro: #2f6e17;
  --verde-claro: #7cc94a;
  --dourado: #d9a441;
  --dourado-escuro: #b9822b;
  --branco: #ffffff;
  --cinza-claro: #f6f8fb;
  --cinza-medio: #e5e9f2;
  --texto-escuro: #1c2438;
  --texto-suave: #4a5468;

  --gradiente-azul: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-royal) 100%);
  --gradiente-verde: linear-gradient(135deg, var(--verde-escuro) 0%, var(--verde) 100%);
  --gradiente-dourado: linear-gradient(135deg, #f0c15f 0%, var(--dourado) 100%);

  --sombra-suave: 0 10px 30px rgba(16, 39, 90, 0.10);
  --sombra-forte: 0 20px 50px rgba(16, 39, 90, 0.18);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto-escuro);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1.25;
}

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

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

.section { padding: 90px 0; }

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header.light h2, .section-header.light p { color: var(--branco); }

.section-tag {
  display: inline-block;
  background: rgba(27, 63, 139, 0.08);
  color: var(--azul-royal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-tag-gold {
  background: rgba(217, 164, 65, 0.15);
  color: var(--dourado-escuro);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-header p { color: var(--texto-suave); font-size: 1.05rem; }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gradiente-verde);
  color: var(--branco);
  box-shadow: 0 10px 24px rgba(76, 154, 42, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(76, 154, 42, 0.45); }

.btn-secondary {
  background: var(--gradiente-azul);
  color: var(--branco);
  box-shadow: 0 10px 24px rgba(27, 63, 139, 0.3);
}
.btn-secondary:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gradiente-dourado);
  color: var(--azul-escuro);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.4);
}
.btn-gold:hover { transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--azul-royal);
  color: var(--azul-royal);
}
.btn-outline:hover { background: var(--azul-royal); color: var(--branco); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--branco);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: var(--branco); color: var(--azul-escuro); }

.btn-whatsapp {
  background: var(--gradiente-verde);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(76, 154, 42, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(16, 39, 90, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: var(--sombra-suave); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: 'Poppins', sans-serif; color: var(--azul-royal); font-size: 1.05rem; }
.brand-text small { color: var(--verde); font-weight: 600; font-size: 0.85rem; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 500;
  color: var(--texto-escuro);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--verde);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .btn-whatsapp { padding: 10px 20px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--azul-royal);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(16,39,90,0.94) 0%, rgba(27,63,139,0.85) 45%, rgba(47,110,23,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 164, 65, 0.18);
  border: 1px solid rgba(217, 164, 65, 0.5);
  color: #f4d896;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--branco);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}
.text-gold { color: var(--dourado); }
.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  padding: 14px 26px;
  border-radius: 16px;
  color: var(--branco);
}
.price-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.price-value { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--dourado); }
.price-value small { font-size: 1rem; font-weight: 600; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--branco);
  border-bottom: 1px solid var(--cinza-medio);
  padding: 28px 0;
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--azul-royal);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item i { color: var(--verde); font-size: 1.3rem; }

/* ===== SOBRE ===== */
.sobre-section { background: var(--cinza-claro); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--sombra-forte);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--branco);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--sombra-forte);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--azul-royal);
  font-size: 0.9rem;
  max-width: 220px;
}
.about-image-badge i { color: var(--dourado); font-size: 1.4rem; }

.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 18px; }
.about-text p { color: var(--texto-suave); margin-bottom: 16px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--texto-escuro); font-weight: 500; }
.about-list i { color: var(--verde); margin-top: 3px; }

/* ===== ESPECIALIDADES ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spec-card {
  border-radius: var(--radius);
  padding: 34px 26px;
  color: var(--branco);
  box-shadow: var(--sombra-suave);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--sombra-forte); }
.card-blue { background: var(--gradiente-azul); }
.card-green { background: var(--gradiente-verde); }
.spec-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.spec-card h3 { color: var(--branco); font-size: 1.15rem; margin-bottom: 8px; }
.spec-card p { color: rgba(255,255,255,0.88); font-size: 0.95rem; }

.note-box {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(217, 164, 65, 0.1);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
}
.note-box i { color: var(--dourado-escuro); font-size: 1.3rem; margin-top: 2px; }
.note-box p { color: var(--texto-escuro); font-size: 0.95rem; }
.note-box-light { background: rgba(27, 63, 139, 0.06); border-color: rgba(27, 63, 139, 0.2); }
.note-box-light i { color: var(--azul-royal); }

/* ===== EXAMES ===== */
.exames-section { background: var(--cinza-claro); }
.exames-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.exames-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 16px; }
.exames-text > p { color: var(--texto-suave); margin-bottom: 26px; }
.exames-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.exames-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--branco);
  border: 1px solid var(--cinza-medio);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--texto-escuro);
}
.exames-list i { color: var(--verde); }
.exames-image img {
  border-radius: var(--radius);
  box-shadow: var(--sombra-forte);
  height: 520px;
  object-fit: cover;
}

/* ===== GALERIA ===== */
.galeria-section { background: var(--branco); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.galeria-grid figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
  box-shadow: var(--sombra-suave);
}
.galeria-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.galeria-grid figure:hover img { transform: scale(1.08); }
.galeria-grid figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(16,39,90,0.85), transparent);
  color: var(--branco);
  font-weight: 600;
  padding: 30px 16px 14px;
  font-size: 0.95rem;
}

/* ===== PLANOS ===== */
.planos-section {
  background: var(--gradiente-azul);
  position: relative;
}
.planos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.plano-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--sombra-forte);
  position: relative;
}
.plano-card.destaque {
  border: 3px solid var(--dourado);
  transform: scale(1.03);
}
.plano-selo {
  position: absolute;
  top: -16px;
  right: 28px;
  background: var(--gradiente-dourado);
  color: var(--azul-escuro);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: 20px;
  box-shadow: 0 6px 14px rgba(217,164,65,0.4);
}
.plano-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.plano-preco {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--verde-escuro);
  margin-bottom: 24px;
}
.plano-preco small { font-size: 1.2rem; font-weight: 600; }
.plano-preco span { font-size: 1rem; font-weight: 500; color: var(--texto-suave); }
.plano-preco-alt { font-size: 1.6rem; color: var(--azul-royal); }
.plano-beneficios { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.plano-beneficios li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.plano-beneficios i { color: var(--verde); margin-top: 3px; }

/* ===== FORMULÁRIO DE INTERESSE ===== */
.interesse-section { background: var(--cinza-claro); }
.interesse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.interesse-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 16px; }
.interesse-text > p { color: var(--texto-suave); margin-bottom: 28px; }
.interesse-beneficios { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.interesse-beneficios div { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.interesse-beneficios i { color: var(--verde); }
.interesse-contato-direto {
  background: var(--branco);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--sombra-suave);
}
.interesse-contato-direto p { font-weight: 600; margin-bottom: 12px; color: var(--azul-royal); }

.interesse-form-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--sombra-forte);
}
.lead-form h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--azul-royal);
}
.lead-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  margin-top: 16px;
  color: var(--texto-escuro);
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cinza-medio);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--texto-escuro);
  background: var(--cinza-claro);
  transition: border-color 0.2s ease;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--verde);
  background: var(--branco);
}
.lead-form textarea { resize: vertical; }
.lead-form button { margin-top: 26px; }
.form-feedback {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  min-height: 20px;
}
.form-feedback.success { color: var(--verde-escuro); }
.form-feedback.error { color: #c0392b; }

/* ===== CTA AGENDAMENTO ===== */
.cta-agendamento {
  background: var(--gradiente-verde);
  padding: 60px 0;
}
.cta-agendamento-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-agendamento h2 { color: var(--branco); font-size: 1.7rem; margin-bottom: 8px; }
.cta-agendamento p { color: rgba(255,255,255,0.9); }

/* ===== CONTATO ===== */
.contato-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
.contato-info { display: flex; flex-direction: column; gap: 22px; }
.contato-item { display: flex; align-items: flex-start; gap: 16px; }
.contato-item i {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(27, 63, 139, 0.08);
  color: var(--azul-royal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contato-item strong { display: block; color: var(--azul-royal); margin-bottom: 3px; font-size: 0.95rem; }
.contato-item a, .contato-item span { color: var(--texto-suave); font-weight: 500; }
.contato-razao {
  background: var(--cinza-claro);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 6px;
}
.contato-razao p { font-size: 0.9rem; color: var(--texto-suave); margin-bottom: 4px; }

.contato-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-forte);
  min-height: 420px;
}

/* ===== FOOTER ===== */
.site-footer { background: var(--azul-escuro); color: rgba(255,255,255,0.85); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--verde); }
.footer-col h4 { color: var(--branco); font-size: 1rem; margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--dourado); }
.footer-bottom { text-align: center; padding: 24px 0 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-legal-links { margin-top: 10px; }
.footer-legal-links a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-legal-links a:hover { color: var(--dourado); text-decoration: underline; }
.footer-legal-links span { margin: 0 8px; color: rgba(255,255,255,0.35); }

/* ===== FOOTER — DESENVOLVIDO POR (Lip Informática) ===== */
.footer-developer {
  margin-top: 24px;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.dev-logo-link { display: inline-block; }
.dev-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.dev-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.dev-text a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-decoration: none;
}
.dev-text a:hover { color: var(--dourado); text-decoration: underline; }
.dev-links {
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
}
.dev-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dev-links a:hover { color: var(--dourado); }
.dev-links i { color: var(--verde-claro); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: var(--gradiente-verde);
  color: var(--branco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 26px rgba(76, 154, 42, 0.45);
  z-index: 999;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 154, 42, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(76, 154, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 154, 42, 0); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
  .about-grid, .exames-grid, .interesse-grid, .contato-grid { grid-template-columns: 1fr; }
  .exames-image, .about-image { order: -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .planos-grid { grid-template-columns: 1fr; }
  .plano-card.destaque { transform: none; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn-whatsapp span { display: none; }
  .header-actions .btn-whatsapp { padding: 10px 14px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--branco);
    padding: 20px 24px;
    box-shadow: var(--sombra-suave);
    gap: 16px;
  }

  .hero { min-height: auto; padding-top: 40px; }
  .hero-content { padding-top: 40px; padding-bottom: 40px; }
  .trust-grid { justify-content: center; }
  .cta-agendamento-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .exames-list { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .interesse-form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { width: 44px; height: 44px; }
  .price-value { font-size: 1.8rem; }
}
