/* ===== Variáveis ===== */
:root {
  --color-bg: #faf9f7;
  --color-bg-alt: #f0eeeb;
  --color-text: #2c2a28;
  --color-text-muted: #5c5956;
  --color-accent: #3d6b5c;
  --color-accent-hover: #2d5346;
  --color-border: #e5e3e0;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", -apple-system, sans-serif;
  --container: min(1120px, 92vw);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ===== Reset e base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ===== Skip Nav ===== */
.skip-nav {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius);
  z-index: 200;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: var(--space-xs);
  color: #fff;
}

/* ===== Focus ===== */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--color-accent);
}

.nav {
  display: flex;
  gap: var(--space-lg);
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav a:hover {
  color: var(--color-accent);
}

.header-cta {
  font-weight: 600;
  color: var(--color-accent);
}

.header-cta:hover {
  text-decoration: none;
}

/* ===== Menu Toggle (Mobile) ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 101;
}

.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Nav Overlay ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay--visible {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 80vw);
    height: 100dvh;
    flex-direction: column;
    background: var(--color-bg);
    padding: calc(var(--space-xl) * 2) var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .nav--open {
    transform: translateX(0);
  }

  .nav a {
    font-size: 1.1rem;
  }

  .header-cta {
    margin-left: auto;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-xl) * 1.5) 0 var(--space-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--color-bg) 0%, #f0eeeb 40%, #e8e5e0 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
  max-width: 36ch;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 200px 200px 40px 40px;
  object-fit: cover;
  aspect-ratio: 5 / 6;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(61, 107, 92, 0.06);
}

/* --- Butterflies --- */
.hero-butterflies {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.butterfly {
  position: absolute;
  fill: var(--color-accent);
}

.butterfly--1 {
  width: 100px;
  top: 8%;
  left: 5%;
  opacity: 0.04;
  transform: rotate(-15deg);
  animation: butterfly-float 8s ease-in-out infinite;
}

.butterfly--2 {
  width: 60px;
  top: 15%;
  right: 8%;
  opacity: 0.05;
  transform: rotate(25deg);
  animation: butterfly-float 10s ease-in-out 1s infinite;
}

.butterfly--3 {
  width: 45px;
  top: 60%;
  left: 2%;
  opacity: 0.035;
  transform: rotate(40deg);
  animation: butterfly-float 9s ease-in-out 2s infinite;
}

.butterfly--4 {
  width: 75px;
  bottom: 10%;
  right: 15%;
  opacity: 0.04;
  transform: rotate(-30deg);
  animation: butterfly-float 11s ease-in-out 0.5s infinite;
}

.butterfly--5 {
  width: 35px;
  top: 35%;
  left: 42%;
  opacity: 0.03;
  transform: rotate(10deg);
  animation: butterfly-float 7s ease-in-out 3s infinite;
}

.butterfly--6 {
  width: 55px;
  bottom: 25%;
  left: 12%;
  opacity: 0.045;
  transform: rotate(-50deg);
  animation: butterfly-float 12s ease-in-out 1.5s infinite;
}

.butterfly--7 {
  width: 40px;
  top: 5%;
  right: 35%;
  opacity: 0.03;
  transform: rotate(60deg);
  animation: butterfly-float 9s ease-in-out 4s infinite;
}

@keyframes butterfly-float {
  0%, 100% { translate: 0 0; }
  25% { translate: 4px -6px; }
  50% { translate: -2px -10px; }
  75% { translate: 6px -4px; }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: calc(var(--space-xl) * 1.5) 0 var(--space-lg);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    order: 2;
  }

  .hero-image-wrap {
    order: 1;
  }

  .hero-image {
    max-width: 260px;
    border-radius: 140px 140px 32px 32px;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .butterfly--1 { width: 60px; }
  .butterfly--2 { width: 40px; }
  .butterfly--3 { width: 30px; }
  .butterfly--4 { width: 50px; }
  .butterfly--5 { display: none; }
  .butterfly--6 { width: 35px; }
  .butterfly--7 { display: none; }
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ===== Seções ===== */
.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}

/* ===== Sobre ===== */
.sobre {
  background: var(--color-accent);
  padding: var(--space-xl) 0;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.sobre-photo-wrap {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.sobre-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sobre-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.sobre-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sobre-butterfly {
  width: 30px;
  height: 24px;
  fill: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.sobre-headline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 var(--space-md);
}

.sobre-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--space-md);
  max-width: 52ch;
}

.sobre-locations {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.sobre-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.sobre-location svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.sobre-btn {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid #fff;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

.sobre-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .sobre-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .sobre-content {
    align-items: center;
  }

  .sobre-tagline {
    justify-content: center;
  }

  .sobre-bio {
    max-width: 100%;
  }

  .sobre-locations {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===== Vídeo ===== */
.video-section {
  padding: var(--space-lg) 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Serviços ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(61, 107, 92, 0.08);
}

.service-ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-accent);
  margin-top: 1px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0.2rem 0 0;
  line-height: 1.4;
}

.services-cta {
  text-align: center;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Resultados (Antes e Depois) ===== */
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.resultado-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-text);
}

.resultado-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.3s, transform 0.3s;
}

.resultado-card:hover img {
  opacity: 0.65;
  transform: scale(1.04);
}

.resultado-card figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.resultado-card:hover figcaption {
  opacity: 1;
}

@media (max-width: 768px) {
  .resultados-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .resultados-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Depoimentos ===== */
.testimonials-subtitle {
  color: var(--color-text-muted);
  margin: calc(var(--space-lg) * -1 + var(--space-xs)) 0 var(--space-lg);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.google-icon {
  vertical-align: middle;
}

.testimonials-slider {
  overflow: hidden;
  margin-bottom: var(--space-lg);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.testimonials-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: testimonials-scroll 35s linear infinite;
}

.testimonials-slider:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-md);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 var(--space-sm);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.testimonial-author cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonials-cta {
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 290px;
  }
}

/* ===== Footer ===== */
.footer {
  padding: var(--space-xl) 0 0;
  background: var(--color-text);
  color: #e5e3e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #fff;
}

.footer-tagline {
  margin: 0 0 var(--space-md);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #c9e0d8;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 var(--space-sm);
}

.footer-contact {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.footer-ctas {
  margin-top: var(--space-sm);
}

.footer-btn {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.footer-btn:hover {
  background: #fff;
  color: var(--color-text);
  border-color: #fff;
}

.footer-address {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-legal-row {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal-info {
  text-align: center;
}

.footer-legal {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  opacity: 0.4;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-credits {
  opacity: 0.35;
}

.footer-credits a {
  color: #c9e0d8;
  text-decoration: none;
}

.footer-credits a:hover {
  color: #fff;
  opacity: 1;
}

.footer a {
  color: #c9e0d8;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-item.reveal:nth-child(2)  { transition-delay: 0.05s; }
.service-item.reveal:nth-child(3)  { transition-delay: 0.1s; }
.service-item.reveal:nth-child(4)  { transition-delay: 0.05s; }
.service-item.reveal:nth-child(5)  { transition-delay: 0.1s; }
.service-item.reveal:nth-child(6)  { transition-delay: 0.15s; }
.service-item.reveal:nth-child(7)  { transition-delay: 0.1s; }
.service-item.reveal:nth-child(8)  { transition-delay: 0.15s; }
.service-item.reveal:nth-child(9)  { transition-delay: 0.2s; }
.service-item.reveal:nth-child(10) { transition-delay: 0.15s; }
.service-item.reveal:nth-child(11) { transition-delay: 0.2s; }
.service-item.reveal:nth-child(12) { transition-delay: 0.25s; }


@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .butterfly {
    animation: none;
  }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 52px;
    height: 52px;
  }
}

