@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --bg: #fff7f8;
  --bg-soft: #ffe9ef;
  --rose: #e4a3b6;
  --rose-strong: #d37f98;
  --wine: #3a1f29;
  --ink: #2d2326;
  --sand: #f6f1ef;
  --gold: #c6a46d;
  --white: #ffffff;
  --shadow: 0 15px 45px rgba(58, 31, 41, 0.08);
  --radius: 32px;
  --radius-sm: 20px;
  --max: 1120px;
  --section-title-size: clamp(1.8rem, 4vw, 2.4rem);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, #ffe0ea 0%, transparent 45%),
    radial-gradient(circle at 90% 0%, #ffe7d6 0%, transparent 40%),
    linear-gradient(180deg, #fff7f8 0%, #fdf1f4 45%, #fff 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(211, 127, 152, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
  opacity: 0.45;
}

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

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

.container {
  width: min(92vw, var(--max));
  margin: 0 auto;
}

.testimonials {
  display: grid;
  gap: 24px;
}

.quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 32px 32px 32px 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(211, 127, 152, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 78px;
  left: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5.4rem;
  line-height: 1;
  color: rgba(211, 127, 152, 0.16);
  pointer-events: none;
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.quote-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-strong) 0%, var(--wine) 100%);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.quote-avatar--photo {
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(211, 127, 152, 0.16) 0%, rgba(58, 31, 41, 0.08) 100%);
  border: 2px solid rgba(211, 127, 152, 0.18);
}

.quote-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-name {
  display: block;
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.01em;
}

.quote-name-link {
  transition: color 0.3s ease;
}

.quote-name-link:hover {
  color: var(--rose-strong);
}

.quote-detail {
  display: block;
  font-size: 0.82rem;
  color: rgba(45, 35, 38, 0.52);
  font-weight: 600;
}

.quote-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.quote-text {
  margin: 0;
  position: relative;
  z-index: 1;
  padding-left: 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  font-style: italic;
  color: rgba(45, 35, 38, 0.85);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--wine);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(211, 127, 152, 0.3);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(58, 31, 41, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 31, 41, 0.25);
  background: var(--ink);
}

.btn-outline {
  border-color: var(--rose-strong);
  color: var(--wine);
  background: transparent;
}

.btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.btn-outline.text-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline.text-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

header {
  padding: 28px 0 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 248, 0.92);
  backdrop-filter: blur(10px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(211, 127, 152, 0.2);
}

.social-link:hover {
  background: var(--rose);
  transform: translateY(-2px);
  border-color: var(--rose-strong);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0.9);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--wine);
}

.nav {
  display: none;
  flex-direction: column;
  gap: 24px;
  font-size: 0.95rem;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(58, 31, 41, 0.22);
  z-index: 5;
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:hover {
  background: var(--sand);
}

.nav.is-open {
  display: flex;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 4px;
  box-shadow: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--wine);
  border-radius: 999px;
}

footer {
  margin-top: 0;
  padding: 48px 0;
  border-top: 1px solid rgba(211, 127, 152, 0.1);
  background: var(--bg);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wine);
}

.footer-location {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(45, 35, 38, 0.5);
  font-weight: 500;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(45, 35, 38, 0.58);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.4;
}

.footer-badge img {
  flex-shrink: 0;
  opacity: 0.78;
}

.copyright {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(45, 35, 38, 0.5);
  margin: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine);
}

.footer-links a:hover {
  text-decoration: underline;
}

.separator {
  color: var(--rose-strong);
  opacity: 0.5;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(211, 127, 152, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(58, 31, 41, 0.06);
}

.footer-socials a:hover {
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(58, 31, 41, 0.1);
}

@keyframes wpp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 30px rgba(37, 211, 102, 0.3); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 30px rgba(37, 211, 102, 0.3); }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: wpp-pulse 2.4s ease-out infinite;
}

.whatsapp-text {
  display: none;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@media (min-width: 860px) {
  .copyright {
    font-size: 0.85rem;
  }

  .copyright br {
    display: none;
  }

  .whatsapp-float {
    border-radius: 999px;
    width: auto;
    height: auto;
    padding: 14px 24px;
    gap: 10px;
    animation: none;
  }

  .whatsapp-text {
    display: inline;
    font-weight: 700;
  }

  .footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    text-align: left;
  }

  .footer-right {
    align-items: flex-end;
  }

  .footer-badges {
    justify-self: center;
    align-items: flex-start;
  }

  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.js-ready [data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-ready [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.br-desktop {
  display: none;
}

.desktop-only {
  display: none;
}

.mobile-only {
    display: inline;
}

@media (min-width: 860px) {
  .br-desktop {
    display: inline;
  }

  .desktop-only {
    display: inline;
  }

  .mobile-only {
        display: none;
  }
}

@media (min-width: 860px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 32px;
  }

  .nav a {
    padding: 0;
    font-weight: 500;
    position: relative;
  }

  .nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wine);
    transition: width 0.3s ease;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .menu-toggle {
    display: none;
  }
}
