:root {
    --sand: #ffd4b4;
    --brown: #591e0c;
    --sun: #ffda2b;
    --orange: #ed8b4e;
    --choco: #591e0c;
    --breeze: #2aa79a;
    --offwhite: #f4f2f2;
    --shadow: 0 6px 32px 0 rgba(30,40,50,0.10);
}
html, body {
    background: var(--sand);
    margin: 0;
    padding: 0;
    min-height: 100%;
    color: #591e0c;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    max-width: 450px;
    xwidth: 98vw;
    margin: 0 auto;
    padding: 2.5em 0.7em 2.5em 0.7em;
}
.card {
    background: #fff;
    border-radius: 1.1em;
    box-shadow: var(--shadow);
    margin-bottom: 1.2em;
    overflow: hidden;
    padding: 0;
    transition: box-shadow 0.18s;
}
.card-image {
    width: 100%;
    display: block;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.card-label {
    padding: 1em 1.3em 1.2em 1.3em;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,0.18) 70%, transparent 100%);
    position: relative;
    margin-top: -4em;
    text-shadow: 0 3px 10px #2228;
}

.link-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    font-size: .9em;
    font-weight: 500;
    text-decoration: none;
    margin: 0 0 1.1em 0;
    padding: 1.25em 1.3em;
    width: 100%;
    box-sizing: border-box;
    transition: background .14s, box-shadow .14s;
    gap: 1em;
    letter-spacing: 0.01em;
}
.link-bubble:active, .link-bubble:hover {
    background: #ff8b61;
    box-shadow: 0 4px 12px 0 rgba(30,40,50,0.13);
}
.link-bubble .icon {
    font-size: 1.35em;
    margin-right: 0.7em;
}
/* WhatsApp & Rappi custom colors */
.link-wa { background: #25d366; }
.link-wa:active, .link-wa:hover { background: #1ebea5; }
.link-rappi { background: #ff6f42; xfont-family: 'Segoe Script', cursive; }
.link-rappi:active, .link-rappi:hover { background: #ff9269; }
/* Sede button, brown */
.link-brown { background: var(--choco); }
.link-brown:active, .link-brown:hover { background: #7c2f16; }

.menu-link {
    display: inline-block;
    margin: 1.2em auto 1em auto;
    padding: .95em 2em;
    font-size: 1.13em;
    background: #ff7442;
    color: #fff;
    border-radius: 1.5em;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 10px 0 rgba(30,40,50,0.08);
    transition: background 0.16s;
    text-align: center;
    border: none;
}
.menu-link:active,
.menu-link:hover {
    background: #ff9667;
    color: #fff;
}

/* Bio/Handle Section */
.profile-bio, .footer {
    text-align: center;
    margin-top: 1.2em;
    margin-bottom: 1.35em;
}
.profile-handle {
    font-weight: 700;
    font-size: 1.14em;
    margin-bottom: 0.27em;
    xcolor: #ff6b80;
    letter-spacing: 0.2px;
}
.profile-bio-main {
    font-size: 1.11em;
    xcolor: #7a5e41;
    line-height: 1.38;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.profile-bio-main .emoji {
    font-size: 1.06em;
    vertical-align: middle;
}
.profile-bio-main .light {
    color: #9a8067;
    font-weight: 400;
}

/* Socials Row (for icon links under bio) */
.social-row {
    xmargin: 1.2em 0 1.7em 0;
    xdisplay: flex;
    xjustify-content: center;
    xgap: 1.1em;
}
.social-icon {
    width: 34px;
    height: 34px;
    opacity: 0.91;
    transition: opacity 0.14s, transform 0.13s;
    display: inline-block;
    vertical-align: middle;
}
.social-icon:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* Responsive for Mobile */
@media (max-width: 600px) {
    .container { max-width: 99vw; padding: 1.7em 0.2em; }
    .card, .link-bubble { font-size: 1em; }
    .link-bubble, .menu-link { padding: 1.06em 1.1em; }
    .social-icon { width: 30px; height: 30px; }
}
.social-row {
  display: flex;
  gap: 1.1em;
  justify-content: center;
  margin-bottom: 1.3em;
  margin-top: 1.2em;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55em 1.2em;
  border-radius: 24px;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  color: #fff;
  background: #222;
  transition: background 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 8px 0 rgba(20,40,60,0.08);
}
.social-btn.ig { background: #E4405F; }
.social-btn.wa { background: #25D366; }
.social-btn.fb { background: #1877f3; }
.social-btn.map { background: #3981d4; }
.social-btn.trip { background: #34e0a1; color: #146b41; }
.social-btn:hover { filter: brightness(1.13); }


.bubble {
  width: 98%;
  max-width: 600px;
  margin: 0.7em auto 1.4em auto;
  background: var(--orange);
  border-radius: 1.2em;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
  min-height: 74px;
  transition: box-shadow 0.15s;
}