/* ==========================================================================
   Clínica Porto Medical Hub — LP de venda de salas
   Paleta e tipografia derivadas da identidade da clínica.
   ========================================================================== */

:root {
  /* Cores */
  --cream:        #F9F7F2;
  --cream-2:      #F5F1E9;
  --brown-900:    #5D4037;
  --brown-800:    #4B3A30;
  --brown-700:    #6F5E53;
  --brown-500:    #8B6F62;
  --tan:          #B59A7D;
  --sand:         #C6B6A7;
  --border:       #CEC0B6;
  --white:        #FFFFFF;

  /* Tipografia */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', system-ui, -apple-system, sans-serif;

  /* Ritmo */
  --pad-x:        clamp(20px, 6vw, 90px);
  --pad-y:        clamp(60px, 8vw, 110px);
  --radius:       20px;
  --radius-lg:    24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--brown-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brown-700); }
a:hover { color: var(--tan); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brown-900);
}

::selection { background: var(--tan); color: #fff; }

/* Utilitários -------------------------------------------------------------- */

.section        { padding: var(--pad-y) var(--pad-x); }
.section--alt   { background: var(--cream-2); }
.section--dark  { background: var(--brown-900); }
.section--center{ text-align: center; }
.section--relative { position: relative; overflow: hidden; }

.wrap           { max-width: 1100px; margin: 0 auto; }
.wrap--narrow   { max-width: 720px; margin: 0 auto; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--tan);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.2;
  margin: 0 0 44px;
}
.h2--sm  { font-size: clamp(26px, 3.4vw, 38px); }
.h2--tight { margin-bottom: 30px; }

.grid {
  display: grid;
  gap: 30px;
}
.grid--auto-320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--auto-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--auto-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--auto-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--auto-220 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.blob {
  position: absolute;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}
.blob--tr { width: 340px; height: 340px; top: -80px; right: -80px; }
.blob--bl { width: 300px; height: 300px; bottom: -60px; left: -60px; }

.placeholder-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--brown-700);
}

/* Botões ------------------------------------------------------------------- */

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 30px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--brown-700); color: #fff; }
.btn--primary:hover { background: var(--brown-900); color: #fff; }

.btn--cream { background: var(--cream); color: var(--brown-900); }
.btn--cream:hover { background: #fff; color: var(--brown-900); }

.btn--outline-light { border-color: var(--cream-2); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn--outline { border-color: var(--brown-700); color: var(--brown-700); }
.btn--outline:hover { background: var(--brown-700); color: #fff; }

.btn--sm { padding: 12px 22px; font-size: 14px; }
.btn--block { display: block; width: 100%; text-align: center; padding: 14px; font-size: 14px; }

/* Header ------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 247, 242, 0.93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 14px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header__logo {
  display: flex;
  align-items: center;
}
.site-header__logo img { height: 88px; width: auto; }

.site-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a { text-decoration: none; color: var(--brown-700); }
.site-nav a:hover { color: var(--tan); }

.site-header .btn { padding: 11px 24px; font-size: 14px; }

/* Hero --------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, var(--border) 0 22px, var(--sand) 22px 44px);
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(93,64,55,.82), rgba(93,64,55,.55));
}
.hero__content {
  position: relative;
  max-width: 720px;
  margin: 0 var(--pad-x);
  padding: 80px 0;
  color: #fff;
}
.hero__badge {
  display: inline-block;
  background: var(--cream);
  color: var(--brown-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__content h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
  margin: 0 0 20px;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 560px;
  margin: 0 0 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* VSL ---------------------------------------------------------------------- */

.vsl {
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--brown-500), var(--brown-700));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vsl iframe { width: 100%; height: 100%; border: 0; }
.vsl__play {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--tan);
  display: flex; align-items: center; justify-content: center;
}
.vsl__play::after {
  content: '';
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
  margin-left: 4px;
}
.vsl__note {
  position: absolute;
  bottom: 22px;
  font-size: 13px;
  color: var(--cream-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Dores -------------------------------------------------------------------- */

.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 17px;
  line-height: 1.5;
  color: var(--brown-700);
}
.pain-list li::before {
  content: '→';
  font-size: 20px;
  color: var(--tan);
  flex-shrink: 0;
  line-height: 1.4;
}

/* Comparativo -------------------------------------------------------------- */

.compare {
  border-radius: var(--radius);
  padding: 36px;
}
.compare--light { background: var(--cream); border: 1px solid var(--border); }
.compare--dark  { background: var(--brown-900); }
.compare h3 {
  font-size: 22px;
  margin: 0 0 20px;
}
.compare--light h3 { color: var(--brown-500); }
.compare--dark h3  { color: #fff; }
.compare ul { list-style: none; margin: 0; padding: 0; }
.compare li { font-size: 15px; margin: 0 0 12px; }
.compare li::before { content: '· '; }
.compare--light li { color: var(--brown-500); }
.compare--dark li  { color: var(--cream-2); }

.pull-quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--brown-900);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.4;
}
.source-note {
  text-align: center;
  font-size: 12px;
  color: var(--brown-500);
  margin: 0;
}

/* Pilares ------------------------------------------------------------------ */

.pillar__n {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 8px;
}
.pillar h3 { font-family: var(--font-body); font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.pillar p  { font-size: 15px; line-height: 1.5; color: var(--brown-700); margin: 0; }

/* Por que a Porto ---------------------------------------------------------- */

.feature { display: flex; gap: 14px; }
.feature__dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tan);
  flex-shrink: 0;
}
.feature h4 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--brown-900); }
.feature p  { font-size: 14px; line-height: 1.5; color: var(--brown-700); margin: 0; }

.grid--3col-center {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  max-width: 980px;
  margin: 0 auto;
}
.grid--3col-center .feature {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.grid--3col-center .feature__dot { margin: 0 auto; }
@media (max-width: 860px) {
  .grid--3col-center { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 640px; }
}
@media (max-width: 560px) {
  .grid--3col-center { grid-template-columns: 1fr; max-width: 360px; }
}

/* Galeria ------------------------------------------------------------------ */

.gallery { display: flex; flex-direction: column; gap: 60px; }
.gallery__item {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.gallery__media {
  flex: 1 1 420px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand);
  background: repeating-linear-gradient(135deg, var(--cream-2) 0 18px, var(--border) 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery__media img { width: 100%; height: 100%; object-fit: cover; }
.gallery__body { flex: 1 1 320px; }
.gallery__body h3 { font-size: 22px; margin: 0 0 16px; }
.gallery__body ul { list-style: none; margin: 0; padding: 0; }
.gallery__body li { font-size: 15px; color: var(--brown-700); margin: 0 0 8px; }
.gallery__body li::before { content: '· '; }

/* Planos ------------------------------------------------------------------- */

.plans__head { text-align: center; margin-bottom: 44px; }
.plans__head h2 { color: #fff; margin: 0 0 12px; }

.hours { margin-bottom: 44px; }

.hours__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hours__btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--tan);
  background: transparent;
  color: var(--cream-2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.hours__btn[aria-pressed="true"] { background: var(--tan); color: #fff; }

.hours__stepper {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.hours__step {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.hours__step:disabled { opacity: .35; cursor: default; }
.hours__label {
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  min-width: 100px;
  text-align: center;
}

.plan {
  position: relative;
  background: var(--brown-800);
  border: 1px solid var(--brown-700);
  border-radius: var(--radius);
  padding: 32px;
}
.plan--recommended {
  background: var(--brown-700);
  border: 2px solid var(--tan);
  transform: translateY(-8px);
}
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tan);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__from {
  font-size: 12px;
  font-weight: 600;
  color: var(--tan);
  margin: 0 0 10px;
}
.plan h3 { font-size: 24px; color: #fff; margin: 0 0 10px; }
.plan__tagline {
  font-size: 14px;
  color: var(--cream-2);
  line-height: 1.5;
  margin: 0 0 22px;
  min-height: 44px;
}
.plan__price { margin-bottom: 22px; }
.plan__hr {
  font-family: var(--font-display);
  font-size: 34px;
  color: #fff;
  font-weight: 600;
}
.plan__hr span { font-size: 15px; font-weight: 400; color: var(--border); }
.plan__month { font-size: 14px; color: var(--border); margin-top: 4px; }
.plan__prefix { font-size: 13px; color: var(--tan); font-weight: 600; margin: 0 0 10px; }
.plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan__feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--tan);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.plan__feature-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.plan__feature-desc {
  display: block;
  font-size: 13px;
  color: var(--cream-2);
  opacity: .85;
  line-height: 1.4;
  margin-top: 2px;
}
.plan .btn { margin-top: 20px; }
.plan--recommended .btn { background: var(--tan); color: #fff; }
.plan:not(.plan--recommended) .btn { background: var(--cream-2); color: var(--brown-900); }

.plans__note {
  text-align: center;
  color: var(--cream-2);
  font-size: 14px;
  max-width: 600px;
  margin: 40px auto 0;
  line-height: 1.6;
}
.plans__fine {
  text-align: center;
  color: var(--border);
  font-size: 12px;
  margin-top: 20px;
}

/* Métrica ------------------------------------------------------------------ */

.stat__big {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 110px);
  color: var(--tan);
  font-weight: 700;
  position: relative;
  line-height: 1;
}
.stat__label {
  font-size: 18px;
  color: var(--brown-900);
  font-weight: 600;
  margin-top: 10px;
  position: relative;
}
.stat__text {
  max-width: 600px;
  margin: 20px auto 30px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-700);
  position: relative;
}

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.chip {
  background: var(--cream-2);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--brown-700);
}
.chip--solid {
  background: var(--brown-700);
  border-color: var(--brown-700);
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
}

/* Depoimentos -------------------------------------------------------------- */

.testimonial { max-width: 640px; margin: 0 auto; text-align: center; }
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--brown-900);
  margin: 0 0 24px;
  min-height: 3em;
}
.testimonial__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--border);
  margin: 0 auto 14px;
}
.testimonial__name { font-weight: 700; font-size: 15px; color: var(--brown-900); margin: 0; }
.testimonial__meta { font-size: 13px; color: var(--brown-500); margin: 2px 0 22px; }
.testimonial__nav { display: flex; justify-content: center; gap: 14px; }
.testimonial__nav button {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  color: var(--brown-700);
  font-size: 16px;
}
.testimonial__nav button:hover { background: var(--cream-2); }

/* Perfil ------------------------------------------------------------------- */

.profile {
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}
.profile--yes { background: var(--cream-2); }
.profile--no  { background: #fff; }
.profile h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; margin: 0 0 18px; }
.profile--yes h3 { color: var(--brown-900); }
.profile--no h3  { color: var(--brown-500); }
.profile ul { list-style: none; margin: 0; padding: 0; }
.profile li { font-size: 14px; margin: 0 0 10px; }
.profile--yes li { color: var(--brown-700); }
.profile--yes li::before { content: '✓ '; color: var(--tan); }
.profile--no li { color: var(--brown-500); }
.profile--no li::before { content: '✗ '; }

/* Passos ------------------------------------------------------------------- */

.step { text-align: center; }
.step__n {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brown-900);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { font-size: 16px; font-weight: 700; color: var(--brown-900); margin: 0 0 8px; }
.step p  { font-size: 14px; color: var(--brown-700); line-height: 1.5; margin: 0; }

/* FAQ ---------------------------------------------------------------------- */

.faq__item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--brown-900);
  padding: 0;
  text-align: left;
}
.faq__icon { color: var(--tan); font-size: 20px; flex-shrink: 0; }
.faq__a {
  font-size: 14px;
  color: var(--brown-700);
  line-height: 1.6;
  margin: 14px 0 0;
}
.faq__a[hidden] { display: none; }

/* Localização -------------------------------------------------------------- */

.map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--sand);
  background: repeating-linear-gradient(135deg, var(--cream-2) 0 18px, var(--border) 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map iframe { width: 100%; height: 100%; border: 0; }
.address { font-size: 15px; color: var(--brown-700); line-height: 1.7; margin: 0 0 20px; }

/* CTA final + formulário --------------------------------------------------- */

.cta-final {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}
.cta-final h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 16px; }
.cta-final p  { color: var(--cream-2); font-size: 15px; line-height: 1.6; margin: 0; }

.form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form input {
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--brown-900);
  background: #fff;
}
.form input:focus {
  outline: 2px solid var(--tan);
  outline-offset: 1px;
}
.form button { border: none; }
.form__status {
  font-size: 13px;
  color: var(--brown-700);
  margin: 0;
  min-height: 18px;
}

/* Rodapé ------------------------------------------------------------------- */

.site-footer {
  padding: 44px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.site-footer img { height: 100px; width: auto; }
.site-footer nav {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--brown-500);
  flex-wrap: wrap;
  align-items: center;
}
.site-footer a { color: var(--brown-500); text-decoration: none; }
.site-footer a:hover { color: var(--tan); }

/* Flutuantes --------------------------------------------------------------- */

.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--tan);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(93, 64, 55, .3);
  z-index: 60;
}
.wa-float:hover { background: var(--brown-700); color: #fff; }

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown-700);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  z-index: 70;
}
.cookie a { color: var(--cream); text-decoration: underline; }
.cookie button {
  background: var(--cream);
  color: var(--brown-900);
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
}
.cookie[hidden] { display: none; }

/* Animação de entrada ------------------------------------------------------ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.is-visible { animation: fadeUp .6s ease forwards; }

/* Responsivo --------------------------------------------------------------- */

@media (max-width: 900px) {
  .site-nav { order: 3; width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .hours__buttons { display: none; }
  .hours__stepper { display: flex; }
  .plan--recommended { transform: none; }
  .wa-float { padding: 12px 20px; font-size: 13px; bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; animation: none !important; }
  .btn:hover { transform: none; }
}
