/* =========================================================
   ZEQURI — HOJA DE ESTILOS PRINCIPAL
   =========================================================

   Este CSS está diseñado específicamente para el
   index.html actual de ZEQURI.

   IMPORTANTE:
   - No cambiar las clases del HTML.
   - Las imágenes se controlan desde index.html.
   - JavaScript se encuentra en js/script.js.
   ========================================================= */


/* =========================================================
   1. VARIABLES GLOBALES
   ========================================================= */

:root {

  /* ---------- Colores de marca ---------- */

  --navy: #1A2E4A;
  --navy-2: #142338;

  --gold: #C9A94E;

  --green: #2D5A3B;


  /* ---------- Colores generales ---------- */

  --paper: #F8F9FA;

  --ink: #1F2937;

  --ink-soft: #5B6472;

  --white: #FFFFFF;


  /* ---------- Tipografía ---------- */

  --font:
    'Plus Jakarta Sans',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;


  /* ---------- Medidas generales ---------- */

  --max-w: 1180px;

  --radius: 14px;


  /* ---------- Animaciones ---------- */

  --ease: cubic-bezier(.22, .61, .36, 1);
}


/* =========================================================
   2. RESET
   ========================================================= */

/*
 * Eliminamos los estilos predeterminados del navegador.
 *
 * Esto permite que nosotros controlemos completamente
 * márgenes, tamaños y espacios.
 */

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


/* =========================================================
   3. CONFIGURACIÓN GENERAL DEL DOCUMENTO
   ========================================================= */

html {
  scroll-behavior: smooth;
}


body {

  font-family: var(--font);

  color: var(--ink);

  background: var(--paper);

  line-height: 1.55;

  -webkit-font-smoothing: antialiased;
}


/*
 * Las imágenes nunca deben salir de su contenedor.
 */

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


/*
 * Los enlaces no tendrán el subrayado predeterminado.
 */

a {
  color: inherit;
  text-decoration: none;
}


/*
 * Los botones utilizan la misma tipografía
 * que el resto de la página.
 */

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}


/* =========================================================
   4. CONTENEDOR
   ========================================================= */

/*
 * .container es utilizado prácticamente en todas
 * las secciones del sitio.
 *
 * max-width:
 * limita el ancho máximo del contenido.
 *
 * margin-inline: auto:
 * centra el contenido.
 */

.container {

  width: 100%;

  max-width: var(--max-w);

  margin-inline: auto;

  padding-inline: 24px;
}


/* =========================================================
   5. ACCESIBILIDAD
   ========================================================= */

/*
 * Cuando navegamos utilizando teclado, mostramos
 * claramente qué elemento está seleccionado.
 */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

  outline: 3px solid var(--gold);

  outline-offset: 3px;
}


/* =========================================================
   6. TÍTULOS GENERALES
   ========================================================= */

h1,
h2,
h3 {

  font-weight: 700;

  letter-spacing: -0.01em;

  color: var(--navy);
}


/* =========================================================
   7. SECCIONES
   ========================================================= */

/*
 * Espaciado vertical estándar de las secciones.
 */

.section {

  padding: 96px 0;
}


/* =========================================================
   8. ANIMACIONES REVEAL
   ========================================================= */

/*
 * Los elementos con .reveal comienzan invisibles
 * y ligeramente desplazados hacia abajo.
 *
 * JavaScript agrega .is-visible cuando aparecen
 * dentro de la pantalla.
 */

.reveal {

  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}


/*
 * Estado final de la animación.
 */

.reveal.is-visible {

  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   9. REDUCCIÓN DE MOVIMIENTO
   ========================================================= */

/*
 * Si el usuario tiene activada la reducción de movimiento
 * en su sistema operativo, eliminamos prácticamente
 * todas las animaciones.
 */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* =========================================================
   10. BOTONES
   ========================================================= */

/*
 * Estilo base de todos los botones.
 */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 14px 28px;

  border-radius: 999px;

  font-size: 0.98rem;

  font-weight: 600;

  white-space: nowrap;

  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}


/*
 * Efecto al pasar el cursor.
 */

.btn:hover {

  transform: translateY(-2px);
}


/* ---------- Botón principal ---------- */

.btn-primary {

  background: var(--green);

  color: var(--white);
}


.btn-primary:hover {

  background: #264D33;
}


/* ---------- Botón secundario ---------- */

.btn-ghost {

  background: transparent;

  color: var(--white);

  border: 1.5px solid rgba(255, 255, 255, 0.35);
}


.btn-ghost:hover {

  border-color: var(--gold);

  color: var(--gold);
}


/* =========================================================
   11. HEADER
   ========================================================= */

/*
 * El encabezado permanece visible al hacer scroll.
 */

.site-header {

  position: sticky;

  top: 0;

  z-index: 50;

  background: rgba(26, 46, 74, 0.92);

  backdrop-filter: blur(8px);
}


/* ---------- Contenedor interno ---------- */

.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 84px;
}


/* =========================================================
   12. LOGO
   ========================================================= */

.logo {

  display: flex;

  align-items: center;

  flex-shrink: 0;
}


/*
 * Imagen del logo principal.
 *
 * Tu archivo actual:
 *
 * images/mejor-logo-zequri.png
 */

.logo img {

  display: block;

  width: auto;

  max-width: 180px;

  height: 48px;

  object-fit: contain;
}


/* =========================================================
   13. NAVEGACIÓN PRINCIPAL
   ========================================================= */

.main-nav {

  display: flex;

  align-items: center;

  gap: 36px;
}


.main-nav a {

  color: rgba(255, 255, 255, 0.82);

  font-size: 0.95rem;

  font-weight: 500;

  transition: color 0.2s ease;
}


.main-nav a:hover {

  color: var(--gold);
}


/* =========================================================
   14. CTA DEL HEADER
   ========================================================= */

.header-cta {

  flex-shrink: 0;
}


/* =========================================================
   15. MENÚ MÓVIL
   ========================================================= */

.menu-toggle {

  display: none;

  position: relative;

  width: 40px;

  height: 40px;

  background: transparent;
}


/*
 * Cada span representa una línea del menú hamburguesa.
 */

.menu-toggle span {

  position: absolute;

  left: 8px;

  right: 8px;

  height: 2px;

  background: var(--white);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


.menu-toggle span:nth-child(1) {
  top: 14px;
}


.menu-toggle span:nth-child(2) {
  top: 20px;
}


.menu-toggle span:nth-child(3) {
  top: 26px;
}


/*
 * Cuando JavaScript agrega .open,
 * el menú hamburguesa se convierte en X.
 */

.menu-toggle.open span:nth-child(1) {

  transform:
    translateY(6px)
    rotate(45deg);
}


.menu-toggle.open span:nth-child(2) {

  opacity: 0;
}


.menu-toggle.open span:nth-child(3) {

  transform:
    translateY(-6px)
    rotate(-45deg);
}


/* =========================================================
   16. HERO
   ========================================================= */

.hero {

  position: relative;

  overflow: hidden;

  padding: 84px 0 96px;

  background: var(--navy);

  color: var(--white);
}


/*
 * Patrón decorativo de puntos.
 */

.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image:
    radial-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );

  background-size: 22px 22px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 30%,
      black 70%,
      transparent
    );

  pointer-events: none;
}


/* ---------- Grid del Hero ---------- */

.hero-grid {

  position: relative;

  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  gap: 56px;

  align-items: center;
}


/* =========================================================
   17. CONTENIDO DEL HERO
   ========================================================= */

.hero-content {

  position: relative;

  z-index: 1;
}


/* ---------- Eyebrow ---------- */

/*
 * Pequeño texto superior utilizado para identificar
 * cada sección.
 */

.eyebrow {

  display: inline-block;

  margin-bottom: 16px;

  color: var(--gold);

  font-size: 0.78rem;

  font-weight: 700;

  letter-spacing: 0.12em;
}


/* ---------- Título ---------- */

.hero h1 {

  margin-bottom: 22px;

  color: var(--white);

  font-size: clamp(2.2rem, 4.2vw, 3.4rem);

  line-height: 1.12;
}


/*
 * Segunda parte del título.
 *
 * El HTML utiliza:
 *
 * <span>tus mascotas felices.</span>
 */

.hero h1 span {

  color: var(--gold);
}


/* ---------- Texto principal ---------- */

.hero-lead {

  max-width: 46ch;

  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 1.14rem;
}


/* =========================================================
   18. BOTONES DEL HERO
   ========================================================= */

.hero-actions {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 44px;
}


/* =========================================================
   19. ESTADÍSTICAS DEL HERO
   ========================================================= */

.hero-stats {

  display: flex;

  flex-wrap: wrap;

  gap: 40px;
}


.stat strong {

  display: block;

  color: var(--gold);

  font-size: 1.25rem;

  font-weight: 800;
}


.stat span {

  display: block;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.86rem;
}


/* =========================================================
   20. IMAGEN DEL HERO
   ========================================================= */

/*
 * Tu imagen actual:
 *
 * images/logoconlema.png
 */

.hero-visual {

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 0;
}


.hero-image {

  display: block;

  width: 100%;

  max-width: 520px;

  height: auto;

  margin-inline: auto;

  object-fit: contain;
}


/* =========================================================
   21. ENCABEZADOS DE SECCIONES
   ========================================================= */

.section-heading {

  max-width: 620px;

  margin-bottom: 56px;
}


.section-heading h2 {

  margin-bottom: 14px;

  font-size: clamp(1.7rem, 3vw, 2.3rem);

  line-height: 1.2;
}


.section-heading p {

  color: var(--ink-soft);

  font-size: 1.05rem;
}


/* =========================================================
   22. ENCABEZADO CLARO SOBRE FONDO OSCURO
   ========================================================= */

.section-heading-light h2 {

  color: var(--white);
}


.section-heading-light p {

  color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   23. BENEFICIOS
   ========================================================= */

.benefits {

  background: var(--paper);
}


.benefits-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;
}


/* ---------- Tarjeta ---------- */

.benefit-card {

  padding: 8px 32px;

  border-left: 1px solid #DDE2E8;
}


/*
 * La primera tarjeta no necesita línea izquierda.
 */

.benefit-card:first-child {

  padding-left: 0;

  border-left: none;
}


/* ---------- Número ---------- */

.benefit-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 52px;

  height: 52px;

  margin-bottom: 22px;

  border-radius: 50%;

  background: rgba(201, 169, 78, 0.12);

  color: var(--gold);

  font-size: 0.85rem;

  font-weight: 800;
}


/* ---------- Título ---------- */

.benefit-card h3 {

  margin-bottom: 10px;

  font-size: 1.18rem;
}


/* ---------- Texto ---------- */

.benefit-card p {

  color: var(--ink-soft);

  font-size: 0.98rem;
}


/* =========================================================
   24. NOSOTROS
   ========================================================= */

.about {

  background: var(--white);
}


.about-grid {

  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 64px;

  align-items: center;
}


/* ---------- Texto ---------- */

.about-content h2 {

  margin-bottom: 22px;

  font-size: clamp(1.7rem, 3vw, 2.2rem);

  line-height: 1.2;
}


.about-content p {

  margin-bottom: 18px;

  color: var(--ink-soft);

  font-size: 1.02rem;
}


/* =========================================================
   25. VALORES
   ========================================================= */

.values {

  display: flex;

  flex-direction: column;

  gap: 28px;
}


/* ---------- Valor individual ---------- */

.value {

  position: relative;

  padding-left: 22px;
}


/*
 * Punto dorado que aparece a la izquierda
 * de cada valor.
 */

.value::before {

  content: "";

  position: absolute;

  left: 0;

  top: 8px;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--gold);
}


.value strong {

  display: block;

  margin-bottom: 5px;

  color: var(--navy);

  font-size: 0.98rem;
}


.value span {

  display: block;

  color: var(--ink-soft);

  font-size: 0.92rem;
}


/* =========================================================
   26. POR QUÉ ZEQURI
   ========================================================= */

.testimonials {

  background: var(--navy-2);

  color: var(--white);
}


.testimonials h2 {

  color: var(--white);
}


/* ---------- Grid ---------- */

.testimonial-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 0;
}


/* ---------- Tarjeta ---------- */

.testimonial-card {

  padding: 32px;

  border-left:
    1px solid
    rgba(255, 255, 255, 0.12);
}


/*
 * Primera tarjeta.
 */

.testimonial-card:first-child {

  padding-left: 0;

  border-left: none;
}


/* ---------- Número ---------- */

.testimonial-number {

  display: block;

  margin-bottom: 26px;

  color: var(--gold);

  font-size: 0.85rem;

  font-weight: 700;
}


/* ---------- Título ---------- */

.testimonial-card h3 {

  margin-bottom: 12px;

  color: var(--white);

  font-size: 1.15rem;

  line-height: 1.35;
}


/* ---------- Texto ---------- */

.testimonial-card p {

  color: rgba(255, 255, 255, 0.65);

  font-size: 0.95rem;
}


/* =========================================================
   27. CONTACTO
   ========================================================= */

.contact {

  background: var(--paper);
}


.contact-grid {

  display: grid;

  grid-template-columns: 0.85fr 1.15fr;

  gap: 56px;

  align-items: start;
}


/* ---------- Información ---------- */

.contact-content h2 {

  margin-bottom: 18px;

  font-size: clamp(1.7rem, 3vw, 2.2rem);

  line-height: 1.2;
}


.contact-content > p {

  margin-bottom: 28px;

  color: var(--ink-soft);

  font-size: 1.02rem;
}


/* =========================================================
   28. TARJETA DE WHATSAPP
   ========================================================= */

.whatsapp-card {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 22px;

  margin-bottom: 14px;

  background: var(--white);

  border: 1px solid #E3E7EC;

  border-radius: var(--radius);

  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}


.whatsapp-card:hover {

  transform: translateY(-2px);

  border-color: var(--green);
}


/* ---------- Icono ---------- */

.whatsapp-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 44px;

  height: 44px;

  border-radius: 50%;

  background: var(--green);

  color: var(--white);

  font-size: 0.65rem;

  font-weight: 700;
}


/* ---------- Texto ---------- */

.whatsapp-card strong {

  display: block;

  margin-bottom: 2px;

  color: var(--navy);

  font-size: 0.98rem;
}


.whatsapp-card small {

  display: block;

  color: var(--ink-soft);

  font-size: 0.86rem;
}


/* =========================================================
   29. FORMULARIO
   ========================================================= */

.contact-form {

  padding: 36px;

  background: var(--white);

  border: 1px solid #E3E7EC;

  border-radius: var(--radius);
}


/* ---------- Grupo ---------- */

.form-group {

  margin-bottom: 20px;
}


/* ---------- Etiquetas ---------- */

.form-group label {

  display: block;

  margin-bottom: 8px;

  color: var(--navy);

  font-size: 0.88rem;

  font-weight: 600;
}


/* ---------- Campos ---------- */

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;

  padding: 13px 16px;

  border: 1.5px solid #DDE2E8;

  border-radius: 10px;

  background: var(--paper);

  color: var(--ink);

  font-family: inherit;

  font-size: 0.96rem;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


/* ---------- Focus ---------- */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  border-color: var(--navy);

  outline: none;

  box-shadow:
    0 0 0 3px
    rgba(26, 46, 74, 0.08);
}


/* ---------- Textarea ---------- */

.form-group textarea {

  min-height: 130px;

  resize: vertical;
}


/* ---------- Botón ---------- */

.contact-form .btn {

  width: 100%;

  justify-content: center;
}


/* =========================================================
   30. FOOTER
   ========================================================= */

.site-footer {

  background: var(--navy);

  color: rgba(255, 255, 255, 0.72);

  padding: 56px 0 28px;
}


/* ---------- Grid principal ---------- */

.footer-grid {

  display: grid;

  grid-template-columns:
    1.5fr
    0.8fr
    0.8fr
    1fr;

  gap: 40px;

  padding-bottom: 36px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.12);

  margin-bottom: 24px;
}


/* =========================================================
   31. LOGO DEL FOOTER
   ========================================================= */

/*
 * Tu archivo actual:
 *
 * images/logo_horizontal.png
 */

.footer-logo {

  display: block;

  width: auto;

  max-width: 160px;

  height: 44px;

  margin-bottom: 12px;

  object-fit: contain;
}


.footer-brand p {

  max-width: 320px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.92rem;
}


/* =========================================================
   32. LINKS DEL FOOTER
   ========================================================= */

.footer-links {

  display: flex;

  flex-direction: column;

  gap: 10px;
}


.footer-links a {

  color: rgba(255, 255, 255, 0.60);

  font-size: 0.90rem;

  transition: color 0.2s ease;
}


.footer-links a:hover {

  color: var(--gold);
}


/* =========================================================
   33. REDES SOCIALES
   ========================================================= */

.footer-social {

  display: flex;

  flex-direction: column;

  gap: 10px;
}


.footer-social a {

  color: rgba(255, 255, 255, 0.60);

  font-size: 0.90rem;

  transition: color 0.2s ease;
}


.footer-social a:hover {

  color: var(--gold);
}


/* =========================================================
   34. CORREO
   ========================================================= */

.footer-contact {

  display: flex;

  align-items: flex-start;
}


.footer-contact a {

  color: rgba(255, 255, 255, 0.60);

  font-size: 0.90rem;

  word-break: break-word;

  transition: color 0.2s ease;
}


.footer-contact a:hover {

  color: var(--gold);
}


/* =========================================================
   35. PARTE INFERIOR DEL FOOTER
   ========================================================= */

.footer-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 16px;

  font-size: 0.84rem;

  color: rgba(255, 255, 255, 0.45);
}


/* =========================================================
   36. WHATSAPP FLOTANTE
   ========================================================= */

.floating-whatsapp {

  position: fixed;

  right: 22px;

  bottom: 22px;

  z-index: 60;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: var(--green);

  color: var(--white);

  font-size: 0.65rem;

  font-weight: 700;

  box-shadow:
    0 8px 24px
    rgba(45, 90, 59, 0.4);

  transition:
    transform 0.25s var(--ease);
}


.floating-whatsapp:hover {

  transform: scale(1.07);
}


/* =========================================================
   37. TABLET
   ========================================================= */

@media (max-width: 900px) {

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

  .main-nav {

    position: absolute;

    top: 84px;

    left: 0;

    right: 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 0;

    max-height: 0;

    overflow: hidden;

    background: var(--navy-2);

    transition:
      max-height 0.3s var(--ease);
  }


  .main-nav.open {

    max-height: 320px;
  }


  .main-nav a {

    width: 100%;

    padding: 16px 24px;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.08);
  }


  .header-cta {

    display: none;
  }


  .menu-toggle {

    display: block;
  }


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

  .hero-grid {

    grid-template-columns: 1fr;

    gap: 48px;
  }


  .hero-visual {

    order: -1;
  }


  .hero-image {

    max-width: 420px;
  }


  /* ---------- Nosotros ---------- */

  .about-grid {

    grid-template-columns: 1fr;

    gap: 48px;
  }


  /* ---------- Contacto ---------- */

  .contact-grid {

    grid-template-columns: 1fr;

    gap: 48px;
  }


  /* ---------- Footer ---------- */

  .footer-grid {

    grid-template-columns:
      1fr 1fr;
  }
}


/* =========================================================
   38. TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 800px) {

  .benefits-grid {

    grid-template-columns: 1fr;

    gap: 36px;
  }


  .benefit-card {

    padding:
      28px 0 0;

    border-left: none;

    border-top:
      1px solid
      #DDE2E8;
  }


  .benefit-card:first-child {

    padding-top: 0;

    border-top: none;
  }


  .testimonial-grid {

    grid-template-columns: 1fr;

    gap: 0;
  }


  .testimonial-card {

    padding:
      28px 0;

    border-left: none;

    border-top:
      1px solid
      rgba(255, 255, 255, 0.12);
  }


  .testimonial-card:first-child {

    padding-top: 0;

    border-top: none;
  }
}


/* =========================================================
   39. CELULAR
   ========================================================= */

@media (max-width: 720px) {

  /* ---------- Secciones ---------- */

  .section {

    padding: 64px 0;
  }


  /* ---------- Contenedor ---------- */

  .container {

    padding-inline: 20px;
  }


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

  .header-inner {

    min-height: 72px;
  }


  .main-nav {

    top: 72px;
  }


  .logo img {

    max-width: 150px;

    height: 42px;
  }


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

  .hero {

    padding:
      64px 0 72px;
  }


  .hero h1 {

    font-size:
      clamp(2rem, 10vw, 2.7rem);
  }


  .hero-lead {

    font-size: 1.05rem;
  }


  .hero-actions {

    align-items: stretch;

    flex-direction: column;

    gap: 12px;
  }


  .hero-actions .btn {

    width: 100%;
  }


  .hero-stats {

    gap: 24px;
  }


  .hero-image {

    max-width: 360px;
  }


  /* ---------- Footer ---------- */

  .footer-grid {

    grid-template-columns: 1fr;

    gap: 32px;
  }


  .footer-logo {

    max-width: 145px;

    height: 40px;
  }


  .footer-bottom {

    align-items: flex-start;

    flex-direction: column;
  }
}


/* =========================================================
   40. CELULAR PEQUEÑO
   ========================================================= */

@media (max-width: 520px) {

  .container {

    padding-inline: 18px;
  }


  .hero-stats {

    flex-direction: column;

    gap: 18px;
  }


  .contact-form {

    padding: 24px;
  }


  .whatsapp-card {

    padding: 16px;
  }


  .floating-whatsapp {

    right: 16px;

    bottom: 16px;

    width: 54px;

    height: 54px;
  }
}