/*
Theme Name: Manuela Piologo
Theme URI: https://manuelapiologo.com.br
Author: Gianfranco Sites
Author URI: https://manuelapiologo.com.br
Description: Tema one-page para consultoria de coloracao pessoal. Layout unico com hero, sobre, beneficios, processo, FAQ e contato via WhatsApp. Comentarios totalmente desativados e camadas de seguranca integradas.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: manuela-piologo
Tags: one-page, custom-colors, custom-logo, custom-menu, translation-ready
*/

/* =========================================================
   1. TOKENS
   ========================================================= */
:root {
  --mp-bg:        #FBF8F3;
  --mp-ink:       #2B0A45;
  --mp-body:      #4A2B63;
  --mp-purple:    #8A2BE2;
  --mp-pink:      #C2185B;
  --mp-orange:    #F2740D;
  --mp-gold:      #E9B406;
  --mp-green:     #3E9C35;
  --mp-teal:      #00B4AA;
  --mp-blue:      #2E7BE9;
  --mp-dark-1:    #2B0A45;
  --mp-dark-2:    #3A1160;
  --mp-footer:    #1E0733;
  --mp-footer-tx: #B79CD6;
  --mp-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --mp-sans:      'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mp-shell:     7vw;
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.mp-body {
  margin: 0;
  max-width: 100%;
  background: var(--mp-bg);
  color: var(--mp-ink);
  font-family: var(--mp-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

a { color: var(--mp-purple); text-decoration: none; transition: color .25s ease; }
a:hover, a:focus { color: var(--mp-pink); }

button { font-family: inherit; }

h1, h2, h3, h4 { font-weight: 500; }

.mp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: #fff;
  color: var(--mp-ink);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-size: 14px;
}
.mp-skip-link:focus { left: 0; }

.mp-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--mp-purple);
  outline-offset: 3px;
}

/* =========================================================
   3. ANIMACOES
   ========================================================= */
@keyframes mpBlobFloat {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(30px,-40px) scale(1.12); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes mpBlobFloat2 {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-40px,30px) scale(0.92); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes mpBirdIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mpFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mpShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes mpFloatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].on { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* =========================================================
   4. BLOBS DECORATIVOS
   ========================================================= */
.mp-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.mp-blob--hero-a {
  top: -160px; right: -120px; width: 560px; height: 560px;
  background: radial-gradient(circle at 40% 40%, rgba(242,116,13,.28), rgba(194,24,91,.18) 45%, transparent 70%);
  filter: blur(40px);
  animation: mpBlobFloat 11s ease-in-out infinite;
}
.mp-blob--hero-b {
  bottom: -180px; left: -140px; width: 620px; height: 620px;
  background: radial-gradient(circle at 60% 40%, rgba(138,43,226,.22), rgba(0,180,170,.16) 50%, transparent 72%);
  filter: blur(46px);
  animation: mpBlobFloat2 13s ease-in-out infinite;
}
.mp-blob--dark {
  top: -200px; left: 30%; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(194,24,91,.28), transparent 65%);
  filter: blur(50px);
  animation: mpBlobFloat 14s ease-in-out infinite;
}
.mp-blob--cta {
  bottom: -240px; right: -160px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(242,116,13,.3), transparent 65%);
  filter: blur(50px);
  animation: mpBlobFloat2 12s ease-in-out infinite;
}

/* =========================================================
   5. BOTOES
   ========================================================= */
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  border: none;
  cursor: pointer;
}
.mp-btn--gradient {
  color: #fff;
  background: linear-gradient(120deg, var(--mp-purple), var(--mp-pink), var(--mp-orange));
  background-size: 220% 220%;
  animation: mpShimmer 6s ease infinite;
  padding: 16px 34px;
  font-size: 15px;
}
.mp-btn--gradient:hover, .mp-btn--gradient:focus {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(194,24,91,.35);
  color: #fff;
}
.mp-btn--nav {
  color: #fff;
  background: linear-gradient(120deg, var(--mp-purple), var(--mp-pink), var(--mp-orange));
  background-size: 200% 200%;
  animation: mpShimmer 6s ease infinite;
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: .1em;
}
.mp-btn--nav:hover, .mp-btn--nav:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(138,43,226,.35);
  color: #fff;
}
.mp-btn--outline {
  gap: 8px;
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--mp-purple);
  border: 1.5px solid var(--mp-purple);
  padding: 13px 28px;
  background: transparent;
}
.mp-btn--outline:hover, .mp-btn--outline:focus {
  background: var(--mp-purple);
  color: #fff;
}
.mp-btn--light {
  color: var(--mp-ink);
  background: #fff;
  padding: 18px 40px;
  font-size: 16px;
  letter-spacing: .06em;
}
.mp-btn--light:hover, .mp-btn--light:focus {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.3);
  color: var(--mp-ink);
}

/* =========================================================
   6. NAV
   ========================================================= */
.mp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(251,248,243,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43,10,69,.07);
}
.mp-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mp-ink);
}
.mp-nav__brand:hover { color: var(--mp-ink); }
.mp-nav__brand img { height: 40px; width: auto; }
.mp-nav__brand-text {
  font-size: 13px;
  letter-spacing: .32em;
  font-weight: 600;
  text-transform: uppercase;
}
.mp-nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.mp-nav__menu a:not(.mp-btn) {
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--mp-ink);
}
.mp-nav__menu a:not(.mp-btn):hover,
.mp-nav__menu a:not(.mp-btn):focus { color: var(--mp-pink); }

.mp-nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 10px;
  color: var(--mp-ink);
}
.mp-nav__toggle span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.mp-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mp-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mp-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================================
   7. HERO
   ========================================================= */
.mp-hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 4vw;
  padding: 130px var(--mp-shell) 80px;
}
.mp-hero__content {
  position: relative;
  z-index: 1;
  animation: mpFadeUp 1s cubic-bezier(.22,.61,.36,1) both;
}
.mp-hero__art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: mpBirdIn 1.2s cubic-bezier(.22,.61,.36,1) both;
}
.mp-hero__art img {
  width: 150px;
  height: auto;
  animation: mpFloatSoft 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(138,43,226,.25));
}
.mp-hero__title {
  margin: 0 0 24px;
  font-family: var(--mp-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.05;
  text-wrap: balance;
}
.mp-hero__lead {
  margin: 0 0 36px;
  max-width: 480px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mp-body);
}
.mp-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   8. EYEBROW / TITULOS
   ========================================================= */
.mp-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 500;
}
.mp-eyebrow--purple { color: var(--mp-purple); }
.mp-eyebrow--pink   { color: var(--mp-pink); }
.mp-eyebrow--light  { color: #F2A0C8; }
.mp-hero .mp-eyebrow { margin-bottom: 18px; }

.mp-h2 {
  margin: 0 0 22px;
  font-family: var(--mp-serif);
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.12;
}
.mp-h2--tight { margin-bottom: 0; }

/* =========================================================
   9. FAIXA COLORIDA
   ========================================================= */
.mp-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--mp-orange), var(--mp-gold), var(--mp-green), var(--mp-teal), var(--mp-blue), var(--mp-purple), var(--mp-pink));
  background-size: 300% 100%;
  animation: mpShimmer 10s linear infinite;
}

/* =========================================================
   10. SOBRE
   ========================================================= */
.mp-about {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 6vw;
  align-items: center;
  padding: 110px var(--mp-shell);
}
.mp-about__media { position: relative; }
.mp-about__media::before {
  content: "";
  position: absolute;
  inset: -18px -18px 18px 18px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(242,116,13,.35), rgba(138,43,226,.35));
  filter: blur(2px);
}
.mp-about__media img {
  position: relative;
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/4.6;
}
.mp-about__text p {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mp-body);
  max-width: 560px;
}
.mp-about__text p:last-of-type { margin-bottom: 32px; }

/* =========================================================
   11. SECAO ESCURA / BENEFICIOS
   ========================================================= */
.mp-dark {
  position: relative;
  padding: 110px var(--mp-shell);
  background: linear-gradient(180deg, var(--mp-dark-1), var(--mp-dark-2));
  color: #F5EFFA;
  overflow: hidden;
}
.mp-dark__intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.mp-dark__intro .mp-h2 { color: #fff; }
.mp-dark__intro p:last-child {
  margin: 0;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: #D9C8EC;
}
.mp-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}
.mp-benefit {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 34px 30px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform .3s ease, background .3s ease;
}
.mp-benefit:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
}
.mp-benefit__dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  margin-bottom: 22px;
}
.mp-benefit h3 {
  margin: 0 0 12px;
  font-family: var(--mp-serif);
  font-weight: 500;
  font-size: 26px;
  color: #fff;
}
.mp-benefit p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: #D9C8EC;
}

/* =========================================================
   12. PROCESSO
   ========================================================= */
.mp-process { padding: 110px var(--mp-shell); }
.mp-process__intro {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.mp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}
.mp-step {
  border: 1px solid rgba(43,10,69,.1);
  border-radius: 24px;
  padding: 32px 26px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mp-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43,10,69,.1);
}
.mp-step__num {
  display: inline-block;
  font-family: var(--mp-serif);
  font-size: 44px;
  font-weight: 500;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.mp-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
}
.mp-step p {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mp-body);
}

/* =========================================================
   13. FAQ
   ========================================================= */
.mp-faq { padding: 30px var(--mp-shell) 110px; }
.mp-faq__inner { max-width: 760px; margin: 0 auto; }
.mp-faq__head { text-align: center; margin-bottom: 50px; }
.mp-faq__head .mp-h2 { font-size: clamp(32px, 3.2vw, 46px); margin: 0; }
.mp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mp-faq__item {
  border: 1px solid rgba(43,10,69,.12);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.mp-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--mp-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--mp-ink);
  text-align: left;
}
.mp-faq__icon {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--mp-purple);
  transition: transform .3s ease;
}
.mp-faq__q[aria-expanded="true"] .mp-faq__icon { transform: rotate(45deg); }
.mp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,.61,.36,1);
}
.mp-faq__a p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mp-body);
}

/* =========================================================
   14. CONTATO / CTA
   ========================================================= */
.mp-cta {
  position: relative;
  padding: 120px var(--mp-shell);
  background: linear-gradient(160deg, #2B0A45 0%, #4A1170 55%, #7A1B6E 100%);
  text-align: center;
  overflow: hidden;
}
.mp-cta__inner { position: relative; z-index: 1; }
.mp-cta__mark {
  height: 170px;
  width: auto;
  margin-bottom: 20px;
  animation: mpFloatSoft 6s ease-in-out infinite;
}
.mp-cta__name {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: .38em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.mp-cta__role {
  margin: 0 0 40px;
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 500;
  color: #E7C9F5;
}
.mp-cta__title {
  margin: 0 auto 18px;
  max-width: 640px;
  font-family: var(--mp-serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}
.mp-cta__text {
  margin: 0 auto 40px;
  max-width: 460px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: #E7D6F5;
}

/* =========================================================
   15. WHATSAPP FLUTUANTE
   ========================================================= */
.mp-wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mp-wa-float:hover, .mp-wa-float:focus {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 36px rgba(37,211,102,.55);
}

/* =========================================================
   16. FOOTER
   ========================================================= */
.mp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 5vw;
  background: var(--mp-footer);
  color: var(--mp-footer-tx);
  font-size: 13px;
  letter-spacing: .06em;
  flex-wrap: wrap;
}
.mp-footer a { color: #E7D6F5; }
.mp-footer a:hover { color: #fff; }
.mp-footer__brand {
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: #E7D6F5;
}

/* =========================================================
   17. PAGINAS INTERNAS (404, page, index)
   ========================================================= */
.mp-page {
  padding: 170px var(--mp-shell) 110px;
  max-width: 900px;
  margin: 0 auto;
}
.mp-page__title {
  font-family: var(--mp-serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  margin: 0 0 28px;
}
.mp-page__content {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mp-body);
}
.mp-page__content h2, .mp-page__content h3 { color: var(--mp-ink); font-family: var(--mp-serif); }
.mp-page__content img { border-radius: 18px; }
.mp-entry-list { list-style: none; margin: 0; padding: 0; }
.mp-entry-list li { margin-bottom: 18px; }

/* =========================================================
   18. RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .mp-steps { grid-template-columns: repeat(2, 1fr); }
  .mp-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --mp-shell: 7vw; }

  .mp-nav__toggle { display: block; }
  .mp-nav {
    flex-wrap: wrap;
    padding: 12px 5vw;
  }
  .mp-nav__menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0 10px;
  }
  .mp-nav__menu.is-open { display: flex; }
  .mp-nav__menu a:not(.mp-btn) { padding: 10px 0; font-size: 16px; }
  .mp-nav__menu .mp-btn { margin-top: 8px; }

  .mp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 120px var(--mp-shell) 70px;
    text-align: left;
  }
  .mp-hero__art { order: -1; margin-bottom: 10px; justify-content: flex-start; }
  .mp-hero__art img { width: 110px; }
  .mp-hero__lead { max-width: none; }

  .mp-about {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 80px var(--mp-shell);
  }
  .mp-about__media { max-width: 420px; }

  .mp-dark, .mp-process { padding: 80px var(--mp-shell); }
  .mp-benefits { grid-template-columns: 1fr; }
  .mp-steps { grid-template-columns: 1fr; }
  .mp-faq { padding: 20px var(--mp-shell) 80px; }
  .mp-cta { padding: 90px var(--mp-shell); }
  .mp-cta__mark { height: 130px; }
  .mp-cta__name { font-size: 19px; letter-spacing: .3em; }

  .mp-footer { justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .mp-hero__lead { font-size: 16.5px; }
  .mp-btn--gradient { padding: 15px 26px; font-size: 14px; }
  .mp-nav__brand-text { font-size: 11px; letter-spacing: .24em; }
  .mp-nav__brand img { height: 34px; }
  .mp-benefit, .mp-step { padding: 28px 22px; }
  .mp-faq__q { padding: 18px 20px; font-size: 16px; }
  .mp-faq__a p { padding: 0 20px 20px; }
  .mp-wa-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}
