:root {
  --framboesa: #e5175b;
  --rosa-gelo: #f2d5db;
  --rosa-chiclete: #f59fb9;
  --neve: #fffbff;
  --feijao: #201c1d;
  --marrom-suave: #6f5661;
  --sombra: rgba(110, 45, 71, 0.16);
  --titulo: "Lobster Two", cursive;
  --texto: "Montserrat Alternates", sans-serif;
}

/* =========================
   RESET
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: var(--texto);
  color: var(--feijao);
  background-color: var(--rosa-gelo);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%23f59fb9' fill-opacity='0.30'%3E%3Cellipse cx='38' cy='56' rx='13' ry='10'/%3E%3Cellipse cx='20' cy='38' rx='7' ry='11'/%3E%3Cellipse cx='34' cy='26' rx='7' ry='11'/%3E%3Cellipse cx='52' cy='26' rx='7' ry='11'/%3E%3Cellipse cx='66' cy='38' rx='7' ry='11'/%3E%3C/g%3E%3Cg fill='%23f59fb9' fill-opacity='0.22'%3E%3Cellipse cx='104' cy='102' rx='11' ry='9'/%3E%3Cellipse cx='88' cy='86' rx='6' ry='9'/%3E%3Cellipse cx='100' cy='76' rx='6' ry='9'/%3E%3Cellipse cx='114' cy='76' rx='6' ry='9'/%3E%3Cellipse cx='126' cy='86' rx='6' ry='9'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  overflow-x: hidden;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   BOTÃO MENU CELULAR
   ========================= */
.menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border: 2px solid var(--framboesa);
  border-radius: 14px;
  background: var(--neve);
  color: var(--framboesa);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(229, 23, 91, 0.18);
}

.mobile-overlay {
  display: none;
}

/* =========================
   SIDEBAR
   ========================= */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 320px;
  height: 100vh;
  padding: 12px 14px;
  z-index: 1100;
  overflow: visible;
}

.sidebar-shell {
  position: relative;
  height: calc(100vh - 24px);
  min-height: auto;
  max-height: calc(100vh - 24px);
  background: var(--neve);
  border: 3px solid var(--framboesa);
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--sombra);
  padding: 18px 16px;
  overflow: visible;
}

.sidebar-shell::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px dashed var(--rosa-chiclete);
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
}

.sidebar-shell > * {
  position: relative;
  z-index: 4;
}

/* logo e texto */
.brand {
  margin-bottom: 10px;
}

.brand-text-logo-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
}

.brand-text p {
  color: var(--marrom-suave);
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
}

/* tags */
.tag-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 0 14px 0;
  width: 100%;
}

.tag-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rosa-chiclete);
  background: #fff5f8;
  color: var(--framboesa);
  border-radius: 999px;
  padding: 7px 5px;
  font-family: var(--texto);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

/* menu */
.menu {
  display: grid;
  gap: 10px;
  padding-bottom: 0;
}

.tab-link,
.subtab-link {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  background: #ffffff;
  color: var(--feijao);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tab-link {
  min-height: 58px;
  border: 2px solid var(--rosa-chiclete);
  padding: 11px 14px;
  font-family: var(--texto);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.tab-link:hover,
.tab-link.active {
  background: #fff4f8;
  border-color: var(--framboesa);
  color: var(--framboesa);
  transform: translateX(4px);
}

.menu-group {
  position: relative;
  display: grid;
  gap: 8px;
}

.has-submenu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.arrow.open {
  transform: rotate(180deg);
}

.submenu {
  display: none;
  padding-left: 0;
}

.submenu.open {
  display: grid;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  gap: 8px;
  background: var(--neve);
  border: 2px solid var(--rosa-chiclete);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 8px 8px 0 var(--sombra);
}

.subtab-link {
  border: 2px dashed var(--rosa-chiclete);
  padding: 11px 12px;
  font-family: var(--texto);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  background: #fff8fa;
  border-radius: 14px;
}

.subtab-link:hover,
.subtab-link.active {
  background: #fff4f8;
  border-color: var(--framboesa);
  color: var(--framboesa);
  transform: translateX(4px);
}

/* =========================
   ÁREA PRINCIPAL
   ========================= */
.page {
  margin-left: 336px;
  padding: 24px 24px 30px;
}

.main-shell {
  max-width: 980px;
}

/* =========================
   BANNERS
   ========================= */
.banner-card {
  position: relative;
  background: var(--neve);
  border: 3px solid var(--framboesa);
  border-radius: 30px;
  box-shadow: 12px 12px 0 var(--sombra);
  padding: 12px;
}

.banner-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed var(--rosa-chiclete);
  border-radius: 20px;
  pointer-events: none;
}

.hero-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

.default-banner.hide {
  display: none;
}

.catalogo-banner {
  display: none;
}

.catalogo-banner.show {
  display: block;
}

.catalogo-banner-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr 0.65fr;
  gap: 10px;
  align-items: center;
  min-height: 185px;
  max-width: 820px;
  margin: 0 auto;
}

.catalogo-banner-left,
.catalogo-banner-center,
.catalogo-banner-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalogo-banner-title {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.catalogo-banner-printer {
  width: 100%;
  max-width: 185px;
  height: auto;
}

.catalogo-banner-center p {
  color: var(--marrom-suave);
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 700;
  text-align: left;
}

.catalogo-banner-center strong {
  color: var(--framboesa);
}

/* =========================
   PAINÉIS / ABAS
   ========================= */
.tab-panel {
  display: none;
  margin-top: 22px;
}

.tab-panel.active {
  display: block;
}

/* =========================
   CARDS GERAIS
   ========================= */
.card {
  position: relative;
  background: var(--neve);
  border: 3px solid var(--framboesa);
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--sombra);
  padding: 26px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px dashed var(--rosa-chiclete);
  border-radius: 18px;
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h2,
.card h3,
.section-title,
.pet-card h3 {
  font-family: var(--titulo);
  color: var(--framboesa);
}

.card h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.card p,
.card li,
.contact-item,
.product-item span {
  color: var(--marrom-suave);
  font-size: 1.02rem;
  line-height: 1.8;
  font-weight: 600;
}

/* =========================
   HOME
   ========================= */
.two-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.small-card {
  min-height: 180px;
}

.cute-list {
  padding-left: 18px;
}

.cute-list li {
  margin-bottom: 8px;
}

.avisos-lista {
  padding-left: 22px;
  margin-top: 8px;
}

.avisos-lista li {
  margin-bottom: 8px;
}

/* =========================
   SOBRE A ARTISTA
   ========================= */
.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
}

.about-photo-wrap {
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 20px;
  padding: 10px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
}

.about-text p {
  margin-top: 10px;
}

/* =========================
   MEUS PRODUTOS
   ========================= */
.product-main-title {
  font-family: var(--titulo);
  color: var(--framboesa);
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-copy {
  margin-bottom: 18px;
}

.section-title {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-kind {
  font-family: var(--texto);
  color: var(--framboesa);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-section + .product-section {
  margin-top: 30px;
}

.product-subsection + .product-subsection {
  margin-top: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-item {
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 18px;
  padding: 12px;
  text-align: center;
}

.product-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-item span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
}

/* =========================
   CATÁLOGO
   ========================= */
.catalogo-content-card {
  max-width: 980px;
  margin: 0 auto;
}

.catalogo-top-note {
  margin-bottom: 18px;
}

.catalogo-extra-note {
  margin-top: 0;
  background: #fff7df;
  border: 2px solid #f3cf84;
  border-radius: 22px;
  padding: 24px 22px;
}

.catalogo-extra-note h3 {
  font-family: var(--titulo);
  color: var(--framboesa);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.catalogo-extra-note p {
  color: var(--marrom-suave);
  line-height: 1.7;
}

.catalogo-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.catalogo-item-box {
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 22px;
  padding: 18px;
}

.catalogo-item-box h3 {
  font-family: var(--titulo);
  color: var(--framboesa);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.catalogo-item-box ul {
  padding-left: 20px;
}

.catalogo-item-box li {
  color: var(--marrom-suave);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 600;
}

/* =========================
   MASCOTES
   ========================= */
.pet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pet-card {
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 18px;
  padding: 16px;
}

.pet-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.pet-card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pet-card p {
  font-size: 0.98rem;
  line-height: 1.75;
}

/* =========================
   CALENDÁRIO E CONTATO
   ========================= */
.calendar-wrap {
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 18px;
  padding: 12px;
}

.calendar-wrap iframe {
  width: 100%;
  min-height: 650px;
  border-radius: 12px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-item {
  display: block;
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--framboesa);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.contact-item:visited {
  color: var(--framboesa);
  text-decoration: none;
}

.contact-item:hover {
  background: #fff4f8;
  border-color: var(--framboesa);
  color: #b80f45;
  text-decoration: none;
  transform: translateX(4px);
  box-shadow: 0 6px 14px rgba(229, 23, 91, 0.14);
}

.contact-item:active {
  color: #970a35;
  text-decoration: none;
}

.contact-item:focus {
  outline: none;
  text-decoration: none;
}

.contact-item:focus-visible {
  outline: 3px solid rgba(229, 23, 91, 0.25);
  outline-offset: 3px;
}

.contact-list a,
.contact-list a:visited,
.contact-list a:hover,
.contact-list a:active {
  text-decoration: none;
}

/* =========================
   RODAPÉ
   ========================= */
.site-footer {
  margin-top: 24px;
  background: var(--neve);
  border: 3px solid var(--framboesa);
  border-radius: 26px;
  box-shadow: 12px 12px 0 var(--sombra);
  padding: 22px;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px dashed var(--rosa-chiclete);
  border-radius: 18px;
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer p {
  font-family: var(--titulo);
  color: var(--framboesa);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid var(--rosa-chiclete);
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--framboesa);
  font-family: var(--texto);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.footer-whatsapp:hover {
  background: #fff4f8;
  border-color: var(--framboesa);
  color: #b80f45;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(229, 23, 91, 0.14);
}

.footer-whatsapp,
.footer-whatsapp:visited,
.footer-whatsapp:hover,
.footer-whatsapp:active {
  text-decoration: none;
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================
   TABLET E CELULAR
   ========================= */
@media (max-width: 980px) {
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-overlay.show {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(32, 28, 29, 0.28);
    z-index: 1050;
  }

  .sidebar {
    width: min(86vw, 290px);
    height: 100dvh;
    padding: 8px 7px;
    transform: translateX(-108%);
    transition: transform 0.25s ease;
    overflow: visible;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebar-shell {
    height: calc(100dvh - 16px);
    min-height: auto;
    max-height: calc(100dvh - 16px);
    padding: 14px 11px;
    border-radius: 24px;
    overflow: visible;
  }

  .sidebar-shell::before {
    inset: 8px;
    border-radius: 17px;
  }

  .brand {
    margin-bottom: 8px;
  }

  .brand-logo {
    max-width: 135px;
    margin-bottom: 5px;
  }

  .brand-text p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .tag-list {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-bottom: 10px;
  }

  .tag-pill {
    font-size: 0.58rem;
    padding: 5px 3px;
    border-width: 2px;
  }

  .menu {
    gap: 7px;
    padding-bottom: 0;
  }

  .tab-link {
    min-height: 52px;
    padding: 8px 11px;
    font-size: 0.78rem;
    line-height: 1.25;
    border-radius: 15px;
  }

  .has-submenu {
    min-height: 52px;
  }

  .subtab-link {
    padding: 8px 10px;
    font-size: 0.74rem;
    line-height: 1.25;
    border-radius: 13px;
  }

  .submenu {
    display: none;
    padding-left: 0;
  }

  .submenu.open {
    display: grid;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 50;
    gap: 6px;
    background: var(--neve);
    border: 2px solid var(--rosa-chiclete);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 8px 8px 0 var(--sombra);
  }

  .page {
    margin-left: 0;
    padding: 82px 16px 24px;
  }

  .main-shell {
    max-width: none;
  }

  .about-layout,
  .two-grid,
  .pet-grid,
  .catalogo-subgrid,
  .catalogo-banner-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogo-banner-center p {
    text-align: center;
  }

  .catalogo-banner-grid {
    min-height: auto;
  }
}

/* =========================
   CELULAR PEQUENO
   ========================= */
@media (max-width: 720px) {
  .banner-card,
  .card {
    border-radius: 24px;
    padding: 18px;
    box-shadow: 8px 8px 0 var(--sombra);
  }

  .banner-card::before,
  .card::before {
    inset: 8px;
    border-radius: 16px;
  }

  .sidebar {
    width: min(88vw, 280px);
    padding: 7px 6px;
  }

  .sidebar-shell {
    height: calc(100dvh - 14px);
    max-height: calc(100dvh - 14px);
    padding: 13px 10px;
    border-radius: 23px;
    box-shadow: 8px 8px 0 var(--sombra);
  }

  .sidebar-shell::before {
    inset: 8px;
    border-radius: 16px;
  }

  .brand-logo {
    max-width: 128px;
  }

  .brand-text p {
    font-size: 0.76rem;
  }

  .tag-list {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .tag-pill {
    font-size: 0.56rem;
    padding: 6px 4px;
  }

  .menu {
    gap: 9px;
  }

  .tab-link {
    min-height: 50px;
    padding: 8px 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .subtab-link {
    padding: 10px 11px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .card h2 {
    font-size: 1.8rem;
  }

  .card h3,
  .section-title {
    font-size: 1.35rem;
  }

  .product-main-title {
    font-size: 2.1rem;
  }

  .product-kind {
    font-size: 0.92rem;
  }

  .card p,
  .card li,
  .contact-item,
  .product-item span,
  .pet-card p,
  .catalogo-item-box li,
  .catalogo-banner-center p {
    font-size: 0.96rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .calendar-wrap iframe {
    min-height: 520px;
  }

  .catalogo-banner-title {
    max-width: 260px;
  }

  .catalogo-banner-printer {
    max-width: 160px;
  }

  .site-footer {
    border-radius: 24px;
    padding: 18px;
    box-shadow: 8px 8px 0 var(--sombra);
  }

  .site-footer::before {
    inset: 8px;
    border-radius: 16px;
  }

  .site-footer p {
    font-size: 1.65rem;
  }

  .footer-whatsapp {
    width: 100%;
    font-size: 0.92rem;
    padding: 11px 18px;
  }
}

/* =========================
   CELULAR MUITO PEQUENO
   ========================= */
@media (max-width: 420px) {
  .sidebar {
    width: min(90vw, 265px);
    padding: 6px 5px;
  }

  .sidebar-shell {
    height: calc(100dvh - 12px);
    max-height: calc(100dvh - 12px);
    padding: 12px 9px;
    border-radius: 22px;
  }

  .sidebar-shell::before {
    inset: 7px;
    border-radius: 15px;
  }

  .brand-logo {
    max-width: 120px;
  }

  .brand-text p {
    font-size: 0.72rem;
  }

  .tag-list {
    gap: 5px;
    margin-bottom: 8px;
  }

  .tag-pill {
    font-size: 0.53rem;
    padding: 5px 2px;
  }

  .menu {
    gap: 6px;
  }

  .tab-link {
    min-height: 47px;
    padding: 7px 9px;
    font-size: 0.72rem;
    border-radius: 14px;
  }

  .subtab-link {
    padding: 7px 9px;
    font-size: 0.69rem;
  }
}