*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --bg: #ffffff;
  --fg: #1e293b;
  --primary: #1e2a3a;
  --primary-fg: #ffffff;
  --accent: #c5952a;
  --accent-fg: #ffffff;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --section-alt: #f8fafc;
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.w-full {
  width: 100%
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  gap: 1.5rem
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #173154;
  flex-shrink: 0
}

.nav-logo-img {
  display: block;
  height: 4.2rem;
  width: auto;
  object-fit: contain;
}



.nav-links {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  flex: 1
}

.nav-link {
  padding: 0.9rem 1.15rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #5b6b86;
  transition: all .2s
}

.nav-link:hover,
.nav-link.active {
  color: #1d3557;
  background: #e9eef6
}

.nav-cta {
  min-height: 54px;
  padding: 0.9rem 1.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(197, 149, 42, 0.24)
}

.nav-social {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-left: 0.5rem
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--primary);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all .2s
}

.social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px)
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer
}

@media(max-width:768px) {
  .nav-inner {
    flex-wrap: wrap;
  }

  .nav-links,
  .nav-cta {
    display: none
  }

  .nav-social {
    display: flex;
    position: fixed;
    right: max(0.45rem, env(safe-area-inset-right));
    top: calc(50% + 2.4rem);
    transform: translateY(-50%);
    z-index: 48;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.45rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
  }

  .menu-toggle {
    display: block
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 98px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.5rem;
    z-index: 49
  }

  .nav-cta.open {
    display: block;
    margin: 0 1rem 1rem
  }

  .nav-social.open {
      display: flex;
  }
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity .2s
}

.btn-gold:hover {
  opacity: 0.9
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background .2s
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1)
}

.btn-text {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.875rem
}

.btn-text:hover {
  color: var(--fg)
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
  background-image: url('assets/hero-ironing.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,58,0.82) 0%, rgba(30,42,58,0.65) 60%, rgba(30,42,58,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 700px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 149, 42, 0.2);
  border: 1px solid rgba(197, 149, 42, 0.3);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500
}

.star {
  color: var(--accent)
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-fg);
  line-height: 1.2
}

.accent-text {
  color: var(--accent);
  font-style: italic
}

.hero-sub {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center
}

@media(min-width:768px) {
  .hero h1 {
    font-size: 3.5rem
  }
}

/* Sections */
.section {
  padding: 4rem 1rem
}

.section-alt {
  background: var(--section-alt)
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem
}

.subtitle {
  color: var(--muted);
  margin-bottom: 2.5rem
}

@media(min-width:768px) {
  h2 {
    font-size: 2.5rem
  }

  .section {
    padding: 6rem 1rem
  }
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem
}

.card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem
}

.card p {
  color: var(--muted);
  font-size: 0.875rem
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto
}

@media(min-width:640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr)
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr)
  }
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(197, 149, 42, 0.1);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem
}

/* Steps icon row */
.steps-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 700px;
  margin: 2.5rem auto 0
}

.step-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(30,42,58,0.18)
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), #4a6080);
  min-width: 60px;
  max-width: 160px;
  margin-bottom: 2.25rem
}

@media(max-width: 640px) {
  .step-circle { width: 60px; height: 60px }
  .step-circle svg { width: 24px; height: 24px }
  .step-connector { min-width: 30px }
}

/* Catalog */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media(min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }
}

.catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
  background: transparent;
  transition: transform .2s;
  cursor: pointer;
}

.catalog-item:hover {
  transform: scale(1.05);
}

.catalog-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-bottom: 0.875rem;
}

.catalog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  text-align: center;
}

/* Area tags */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.02);
}

.area-icon {
  color: #64748b;
}

/* Features */
.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem
}

.feature-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500
}

/* Pricing */
.pricing-table {
  max-width: 500px;
  margin: 0 auto
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden
}

.pricing-table th {
  background: var(--section-alt);
  text-align: left;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem
}

.pricing-table th:last-child {
  text-align: right
}

.pricing-table td {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem
}

.pricing-table .price {
  text-align: right;
  font-weight: 600;
  color: var(--accent)
}

/* Booking */
.delivery-note {
  background: rgba(197, 149, 42, 0.1);
  border: 1px solid rgba(197, 149, 42, 0.2);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap
}

.step-dot {
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted)
}

.step-dot.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary)
}

.step-dot.done {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent)
}

.step-line {
  width: 1.5rem;
  height: 1px;
  background: var(--border)
}

.book-step h3 {
  margin-bottom: 1rem
}

.book-step label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem
}

.book-step select,
.book-step input,
.book-step textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.875rem;
  font-family: inherit;
  margin-bottom: 0.75rem;
  resize: none
}

.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem
}

.slot-btn {
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all .2s
}

.slot-btn:hover {
  border-color: var(--accent)
}

.slot-btn.selected {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent)
}

.confirm-icon {
  font-size: 3rem;
  margin-bottom: 1rem
}

.book-summary {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.8
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem
}

@media(min-width:768px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    align-items: start;
    gap: 2.5rem
  }
}

.contact-shell {
  max-width: 1120px
}

.contact-panel h3,
.contact-form-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 1rem
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--muted)
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem
}

.contact-item-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 42, 58, 0.08);
  font-size: 1.05rem;
  flex-shrink: 0
}

.contact-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem
}

.contact-item-copy {
  line-height: 1.7
}

.contact-info a {
  color: var(--muted);
  transition: color .2s
}

.contact-info a:hover {
  color: var(--fg)
}

.map-link {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.5rem;
  display: inline-block
}

.contact-map {
  margin-top: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08)
}

.contact-map img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  background: #e2e8f0
}

.contact-form-card {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.4rem;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08)
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-top: 0.5rem
}

.form-stack input,
.form-stack textarea {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #f8fafc;
  font-size: 0.95rem;
  font-family: inherit
}

.contact-form-card .btn-gold {
  margin-top: 0.4rem;
  min-height: 3rem;
  border-radius: 1rem;
  font-size: 1rem
}

/* Partner */
.partner-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 149, 42, 0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%)
}

.partner-wrap {
  max-width: 1120px
}

.partner-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(30, 42, 58, 0.08);
  color: #41546f;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.2rem
}

.partner-card h2 {
  color: #172b4d;
  margin-bottom: 1rem
}

.partner-card p {
  max-width: 760px;
  margin: 0 auto;
  color: #5f708e;
  font-size: 1.08rem
}

.partner-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap
}

.partner-primary {
  min-height: 60px;
  padding-inline: 1.8rem;
  border-radius: 1rem;
  font-size: 1rem
}

.partner-secondary {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 1rem;
  background: #24b454;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(36, 180, 84, 0.20);
  transition: transform .2s, opacity .2s
}

.partner-secondary:hover {
  transform: translateY(-1px);
  opacity: 0.96
}

@media(max-width: 640px) {
  .partner-card {
    padding: 0
  }

  .partner-card p {
    font-size: 1rem
  }

  .partner-primary,
  .partner-secondary {
    width: 100%
  }
}

/* CTA */
.cta-section {
  background:
    radial-gradient(circle at top left, rgba(221, 170, 36, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(30, 42, 58, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  color: var(--primary);
  padding: 5.5rem 1rem 6rem
}

.cta-section p {
  color: #5f708e;
  margin-top: 1.5rem;
  font-size: 1.15rem
}

.cta-section h2 {
  color: #172b4d;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0
}

.cta-wrap {
  max-width: 1240px
}

.cta-highlight {
  background: linear-gradient(90deg, #5e6a63 0%, #8f7a36 45%, #d7a318 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.cta-actions {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap
}

.cta-book {
  min-width: 300px;
  min-height: 82px;
  border-radius: 1.25rem;
  font-size: 1.1rem;
  box-shadow: 0 14px 28px rgba(197, 149, 42, 0.24)
}

.cta-whatsapp {
  min-width: 300px;
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 1.25rem;
  background: #24b454;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 14px 28px rgba(36, 180, 84, 0.22);
  transition: transform .2s, opacity .2s
}

.cta-whatsapp:hover {
  transform: translateY(-1px);
  opacity: 0.96
}

@media(max-width: 640px) {
  .cta-section {
    padding: 4.5rem 1rem
  }

  .cta-section p {
    font-size: 1rem
  }

  .cta-book,
  .cta-whatsapp {
    width: 100%;
    min-width: 0;
    min-height: 64px
  }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1f314d 0%, #192941 100%);
  color: #ffffff;
  padding-top: 4.5rem
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.95fr 1.1fr;
    gap: 4rem
  }
}

.footer h4 {
  margin-bottom: 1.3rem;
  font-size: 1.1rem;
  color: #ffffff
}

.footer p,
.footer a {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-bottom: 0.85rem
}

.footer a:hover {
  color: #fff
}

.footer-brand p {
  max-width: 360px;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 1.2rem;
  margin-bottom: 0
}

.footer-logo {
  width: 160px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain
}

.footer-links a {
  width: fit-content
}

.footer-contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1rem;
  line-height: 1.55
}

.footer-contact-label {
  color: #4ef08e;
  font-weight: 700
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 1.4rem 1rem 1.8rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55)
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.85rem;
  flex-wrap: wrap
}

.footer-social .social-icon {
  border-color: rgba(255, 255, 255, 0.22);
  color: #e6edf7;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin-bottom: 0;
}

.footer-social .social-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-social .social-icon:hover {
  color: var(--accent);
  border-color: var(--accent)
}

@media(max-width: 640px) {
  .footer {
    padding-top: 3.5rem
  }

  .footer-grid {
    gap: 2.2rem
  }

  .footer-logo {
    width: 132px;
    min-height: 108px
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform .2s
}

.whatsapp-float:hover {
  transform: scale(1.1)
}
