/*
Theme Name: Dr Arthur Lanna Premium
Theme URI: https://seusite.com
Author: Você
Author URI: https://seusite.com
Description: Tema premium baseado no layout React do Dr. Arthur Lanna (Tailwind + JS). SEO local forte para Ortopedia em Anápolis - GO.
Version: 1.1
Text Domain: lanna-premium
*/

/* ----------------------------
   Animações do layout original
----------------------------- */
@keyframes zoom-slow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.animate-zoom-slow { animation: zoom-slow 20s ease-out forwards; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0B0F17; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #14b8a6; }

.noise-overlay {
  mix-blend-mode: overlay;
  opacity: .30;
  pointer-events: none;
}

/* ----------------------------
   Tipografia moderna (posts/pages)
----------------------------- */
.content-typography {
  font-size: 1.06rem;
  line-height: 1.9;
  color: #e2e8f0;
}

.content-typography p { margin: 0 0 1.25em; }
.content-typography ul,
.content-typography ol { margin: 0 0 1.25em 1.25em; }
.content-typography li { margin: .4em 0; }

.content-typography h2,
.content-typography h3,
.content-typography h4 {
  color: #fff;
  line-height: 1.3;
  margin: 1.7em 0 .7em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.content-typography h2 { font-size: 1.7rem; }
.content-typography h3 { font-size: 1.35rem; }
.content-typography h4 { font-size: 1.15rem; }

.content-typography blockquote {
  border-left: 3px solid #14b8a6;
  padding-left: 1rem;
  color: #cbd5e1;
  font-style: italic;
  margin: 1.5em 0;
}

.content-typography a {
  color: #2dd4bf;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.content-typography a:hover { color: #5eead4; }

.content-typography img,
.content-typography figure {
  border-radius: 14px;
  margin: 1.6em 0;
  max-width: 100%;
  height: auto;
}

/* ----------------------------
   Botão flutuante WhatsApp
----------------------------- */
.wpp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.wpp-float:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}
.wpp-float svg { width: 28px; height: 28px; color: #fff; }

/* util */
.rotate { transform: rotate(180deg); }
