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

:root {
  --yellow: #ffcb18;
  --yellow-2: #ffc300;
  --green: #8ccf00;
  --pink: #ff2d72;
  --cyan-light: #dffaff;
  --blue-light: #e1f6ff;
  --text: #111111;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.07);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 16%, rgba(143, 211, 0, 0.12), transparent 28%),
    radial-gradient(circle at 92% 5%, rgba(255, 203, 24, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #ffffff 44%, #fff8e6 100%);
  overflow-x: hidden;
}

.shape,
.decor,
.shape-line {
  position: fixed;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.shape-green {
  left: -110px;
  top: 140px;
  width: 310px;
  height: 520px;
  border-radius: 46% 54% 55% 45% / 44% 39% 61% 56%;
  background: linear-gradient(160deg, #9bd900, #76bf00);
  transform: rotate(8deg);
}

.shape-yellow {
  right: -125px;
  top: -20px;
  width: 330px;
  height: 540px;
  border-radius: 44% 56% 48% 52% / 44% 54% 46% 56%;
  background: linear-gradient(160deg, #ffd938, #ffc400);
  transform: rotate(-9deg);
}

.shape-line {
  right: 115px;
  top: 245px;
  width: 160px;
  height: 290px;
  border-right: 5px dashed rgba(130, 194, 0, 0.8);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.decor {
  font-size: 44px;
}

.decor-heart-left {
  left: 68px;
  top: 370px;
  color: var(--pink);
  font-size: 62px;
}

.decor-heart-top {
  right: 22%;
  top: 115px;
  color: #e6d7cf;
  font-size: 34px;
}

.decor-bone-right {
  right: 76px;
  top: 355px;
  font-size: 70px;
  opacity: 0.50;
}

.decor-paw-left {
  left: 86px;
  top: 205px;
  color: #ffffff;
  font-size: 58px;
}

.decor-paw-right {
  right: 140px;
  bottom: 60px;
  color: #d7d0ca;
  font-size: 74px;
  opacity: 0.35;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 18px;
}

.bio-card {
  position: relative;
  width: min(100%, 620px);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 8%, rgba(225, 209, 199, 0.65) 0 12px, transparent 13px),
    radial-gradient(circle at 88% 9%, rgba(225, 209, 199, 0.58) 0 10px, transparent 11px),
    radial-gradient(circle at 91% 35%, rgba(225, 209, 199, 0.52) 0 11px, transparent 12px),
    linear-gradient(180deg, #fff 0%, #fffdfb 100%);
  padding: 28px 28px 0;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.soft-paw,
.soft-bone {
  position: absolute;
  color: #e4d5cc;
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
}

.soft-paw {
  font-size: 33px;
}

.paw-1 {
  left: 42px;
  top: 50px;
}

.paw-2 {
  right: 70px;
  top: 54px;
}

.paw-3 {
  left: 38px;
  top: 300px;
}

.paw-4 {
  right: 35px;
  bottom: 185px;
  font-size: 38px;
}

.soft-bone {
  right: 60px;
  top: 205px;
  font-size: 36px;
}

.header {
  position: relative;
  text-align: center;
  z-index: 2;
}

.logo {
  display: block;
  width: min(310px, 82%);
  margin: 0 auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
}

.header h1 {
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.header p {
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.4;
}

.header p span,
.footer span {
  color: var(--pink);
}

.links {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.link-card {
  min-height: 76px;
  display: grid;
  grid-template-columns: 58px 1fr 22px;
  align-items: center;
  gap: 15px;
  padding: 11px 17px 11px 11px;
  border-radius: 22px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.045);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.09);
  outline: none;
}

.icon {
  width: 58px;
  height: 58px;
  display: block;
  border-radius: 17px;
  flex: 0 0 auto;
}

.text {
  display: grid;
  gap: 4px;
}

.text strong {
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1;
  font-weight: 800;
}

.text small {
  color: #616161;
  font-size: clamp(13px, 1.8vw, 17px);
}

.arrow {
  color: #343434;
  font-size: 40px;
  line-height: 1;
  opacity: 0.86;
}

.instagram {
  background: linear-gradient(90deg, #ffffff 0%, #ffe2ec 100%);
}

.whatsapp {
  background: linear-gradient(90deg, #ffffff 0%, #eefbde 100%);
}

.pix {
  background: linear-gradient(90deg, #ffffff 0%, #dcfbff 100%);
}

.wifi {
  background: linear-gradient(90deg, #ffffff 0%, #fff0bb 100%);
}

.google {
  background: #ffffff;
}

.location {
  background: linear-gradient(90deg, #ffffff 0%, #ffe4ed 100%);
}

.site {
  background: linear-gradient(90deg, #ffffff 0%, #dff5ff 100%);
}

.info-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--border);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.035);
  backdrop-filter: blur(10px);
}

.info-card strong {
  display: block;
  font-size: 18px;
}

.info-card p {
  margin-top: 6px;
  color: #555;
  line-height: 1.5;
  font-size: 15px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.info-grid a,
.address {
  display: block;
  padding: 12px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--border);
  color: #333;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}

.address {
  margin-top: 10px;
}

.footer {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 145px;
  margin: 38px -28px 0;
  padding: 36px 22px 25px;
  text-align: center;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-2) 100%);
  border-radius: 55% 55% 0 0 / 30% 30% 0 0;
}

.paw-badge {
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 9px 23px rgba(0, 0, 0, 0.16);
}

.paw-badge img {
  width: 38px;
  height: 38px;
}

.footer p {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.38;
}

.toast {
  position: fixed;
  z-index: 99;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(140%);
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.modal {
  width: min(370px, calc(100% - 34px));
  border: none;
  border-radius: 24px;
  padding: 28px;
  margin: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.modal h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.modal p {
  margin: 8px 0;
}

.modal small {
  display: block;
  margin-top: 14px;
  color: #666;
  line-height: 1.5;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 1100px) {
  .bio-card {
    width: 620px;
  }
}

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  }

  .shape,
  .decor,
  .shape-line {
    display: none;
  }

  .page {
    padding: 0;
    display: block;
  }

  .bio-card {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    box-shadow: none;
    border: none;
    padding: 22px 18px 0;
  }

  .logo {
    width: min(270px, 78%);
  }

  .header h1 {
    margin-top: 6px;
    font-size: 34px;
  }

  .header p {
    font-size: 16px;
  }

  .links {
    margin-top: 24px;
    gap: 10px;
  }

  .link-card {
    grid-template-columns: 52px 1fr 18px;
    min-height: 68px;
    gap: 12px;
    padding: 10px 13px 10px 10px;
    border-radius: 18px;
  }

  .icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .text strong {
    font-size: 18px;
  }

  .text small {
    font-size: 13.5px;
  }

  .arrow {
    font-size: 34px;
  }

  .info-card {
    padding: 15px;
    border-radius: 20px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    margin: 36px -18px 0;
    min-height: 132px;
    padding-top: 34px;
  }

  .footer p {
    font-size: 17px;
  }

  .soft-paw.paw-1 {
    left: 22px;
    top: 26px;
  }

  .soft-paw.paw-2 {
    right: 26px;
    top: 30px;
  }

  .soft-bone {
    display: none;
  }
}

@media (max-width: 380px) {
  .bio-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo {
    width: 235px;
  }

  .header h1 {
    font-size: 30px;
  }

  .link-card {
    grid-template-columns: 48px 1fr 16px;
  }

  .icon {
    width: 48px;
    height: 48px;
  }

  .footer {
    margin-left: -14px;
    margin-right: -14px;
  }
}
