/* =========================================================
   FLÁVIA LIZ — PSICÓLOGA
   Digital Bloom — 2025
   ========================================================= */

/* ---------------------------------------------------------
   VARIÁVEIS
   --------------------------------------------------------- */
:root {
    --lavanda:       #9A6B4B;   /* marrom médio — detalhes */
    --lavanda-lt:    #C4956A;   /* marrom claro */
    --lavanda-pale:  #F5F0E6;   /* off-white quente */
    --rose:          #00306e;   /* azul navy — botões primários */
    --rose-dk:       #8B5E3C;   /* marrom médio — labels, eyebrow */
    --rose-lt:       #EDE0C8;   /* creme dourado */
    --creme:         #F5F0E8;   /* off-white */
    --creme-dk:      #EDE6D6;   /* off-white escuro */
    --white:         #FFFFFF;
    --gray:          #4A3828;   /* marrom escuro — texto corpo */
    --gray-lt:       #8A7060;   /* marrom médio — texto secundário */
    --gray-dk:       #2C1A0E;   /* marrom muito escuro — títulos */

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Inter', system-ui, sans-serif;

    --max-w:   1200px;
    --pad:     24px;
    --sec-gap: 100px;
    --hdr-h:   80px;

    --sh-sm: 0 2px 12px rgba(85,85,85,.06);
    --sh-md: 0 8px 28px rgba(85,85,85,.09);
    --sh-lg: 0 16px 48px rgba(85,85,85,.11);
    --sh-xl: 0 24px 64px rgba(85,85,85,.13);

    --r-sm:   8px;
    --r-md:   16px;
    --r-lg:   24px;
    --r-xl:   40px;
    --r-full: 9999px;

    --ease: cubic-bezier(.4,0,.2,1);
    --tr:   .3s var(--ease);
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--hdr-h);
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
address { font-style: normal; }
figure { margin: 0; }

/* ---------------------------------------------------------
   ANIMAÇÕES DE SCROLL  (só funciona com html.js — nunca em branco)
   --------------------------------------------------------- */
html.js .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease-out, transform .65s ease-out;
}
html.js .fade-up.in {
    opacity: 1;
    transform: translateY(0);
}
html.js .delay-1 { transition-delay: .14s; }
html.js .delay-2 { transition-delay: .28s; }

/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.section { padding: var(--sec-gap) 0; }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rose-dk);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-dk);
    margin-bottom: 18px;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--lavanda); }
.section-desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-lt);
}

/* ---------------------------------------------------------
   BOTÕES
   --------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--r-full);
    font-size: 15px;
    font-weight: 500;
    border: 2px solid transparent;
    transition: var(--tr);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: #002554;
    border-color: #002554;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,48,110,.32);
}
.btn-outline {
    background: transparent;
    color: var(--gray-dk);
    border-color: var(--creme-dk);
}
.btn-outline:hover, .btn-outline:focus-visible {
    border-color: var(--lavanda);
    color: var(--lavanda);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--gray-dk);
    border-color: var(--white);
}
.btn-white:hover, .btn-white:focus-visible {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--hdr-h);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.header.scrolled {
    background: rgba(250,247,243,.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--creme-dk);
    box-shadow: var(--sh-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; line-height: 1; flex-shrink: 0; }
.logo-img {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: opacity var(--tr);
}
.logo-img:hover { opacity: .85; }
.logo-img--footer { height: 70px; filter: brightness(0) invert(1); }
.logo-fallback {
    display: none;
    flex-direction: column;
}
.logo-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--gray-dk);
    transition: color var(--tr);
}
.logo:hover .logo-name { color: var(--lavanda); }
.logo-sub {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--gray-lt);
    margin-top: 3px;
}
.footer .logo-fallback .logo-name { color: var(--white); }
.footer .logo-fallback .logo-sub  { color: rgba(255,255,255,.5); }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-size: 14px;
    color: var(--gray);
    position: relative;
    padding-bottom: 2px;
    transition: color var(--tr);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--lavanda);
    transition: width var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--gray-dk); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; }

/* Hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    padding: 4px;
}
.bar {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--gray-dk);
    transition: transform .35s var(--ease), opacity .25s var(--ease);
    transform-origin: center;
}
.menu-toggle.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30,20,40,.35);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--tr);
    pointer-events: none;
}

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #FAF7F3 0%, #F5F0E8 60%, #F0E8DC 100%);
    overflow: hidden;
    padding-top: var(--hdr-h);
}

/* Linha vertical sutil — borda esquerda */
.hero::before {
    content: '';
    position: absolute;
    top: 15%; left: 0;
    width: 3px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, rgba(44,26,14,.25), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Linha horizontal sutil — base */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(44,26,14,.15), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Arcos concêntricos — canto superior esquerdo */
.hero-arc {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(44,26,14,.14);
    pointer-events: none;
    z-index: 0;
}
.hero-arc-1 {
    width: 600px; height: 600px;
    top: -220px; left: -150px;
}
.hero-arc-2 {
    width: 380px; height: 380px;
    top: -100px; left: -30px;
    border-color: rgba(44,26,14,.10);
}
/* Arco extra — canto inferior direito */
.hero-arc-3 {
    width: 440px; height: 440px;
    bottom: -180px; right: -140px;
    border-color: rgba(44,26,14,.10);
}

/* Listras diagonais finas — canto inferior direito */
.hero-stripes {
    position: absolute;
    bottom: 0; right: 0;
    width: 260px; height: 260px;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(44,26,14,.08) 0px,
        rgba(44,26,14,.08) 1px,
        transparent 1px,
        transparent 14px
    );
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at bottom right, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 25%, transparent 70%);
}

/* Listras diagonais — canto superior direito */
.hero-stripes-2 {
    bottom: auto; right: auto;
    top: 0; right: 0;
    width: 180px; height: 180px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(44,26,14,.07) 0px,
        rgba(44,26,14,.07) 1px,
        transparent 1px,
        transparent 12px
    );
    mask-image: radial-gradient(ellipse at top right, black 20%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 68%);
}

/* Grade de pontos — canto inferior esquerdo */
.hero-dots-grid {
    position: absolute;
    bottom: 56px; left: 36px;
    width: 130px; height: 130px;
    background-image: radial-gradient(circle, rgba(44,26,14,.20) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at bottom left, black 30%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 30%, transparent 72%);
}

/* Linha horizontal tênue atravessando o meio */
.hero-line-h {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(44,26,14,.12) 0%, transparent 30%, transparent 70%, rgba(44,26,14,.12) 100%);
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
    padding: 60px 0 80px;
}

/* Hero texto */
.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rose-dk);
    margin-bottom: 20px;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(34px, 4.8vw, 58px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--gray-dk);
    margin-bottom: 24px;
}
.hero-title em {
    display: block;
    font-style: italic;
    font-weight: 300;
    color: var(--lavanda);
}
.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray-lt);
    max-width: 480px;
    margin-bottom: 28px;
}
.hero-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.hero-flags span {
    font-size: 13px;
    color: var(--gray-lt);
    background: var(--creme);
    padding: 5px 14px;
    border-radius: var(--r-full);
    border: 1px solid var(--creme-dk);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero foto */
.hero-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-photo-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    height: 540px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(44,26,14,.22), 0 8px 24px rgba(44,26,14,.12);
    /* Gradiente como fundo — aparece se a foto não existir */
    background: linear-gradient(145deg, var(--lavanda-pale) 0%, var(--rose-lt) 100%);
}
/* Letra "F" visível quando não há foto */
.hero-photo-frame::after {
    content: 'F';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 140px;
    font-weight: 300;
    color: rgba(154,107,75,.35);
    pointer-events: none;
    z-index: 0;
}
.hero-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    transition: opacity .3s;
}
.hero-photo-deco {
    position: absolute;
    top: -18px; right: -18px;
    width: 100%; max-width: 440px;
    height: 540px;
    border-radius: var(--r-lg);
    background: linear-gradient(145deg, #DFC8A8 0%, #C4956A 100%);
    z-index: 1;
}
.hero-card {
    position: absolute;
    bottom: 48px; left: -28px;
    z-index: 3;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 215px;
}
.hero-card-star { color: var(--lavanda); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.hero-card p { font-size: 13px; line-height: 1.5; color: var(--gray); }
.hero-card strong { color: var(--gray-dk); font-weight: 600; }

/* ---------------------------------------------------------
   IDENTIFICAÇÃO EMOCIONAL
   --------------------------------------------------------- */
.identification { background: var(--creme); }

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
}
.pain-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 28px;
    border: 1px solid var(--creme-dk);
    transition: var(--tr);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pain-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    border-color: var(--lavanda-lt);
}
.pain-dot {
    display: block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lavanda);
    flex-shrink: 0;
}
.pain-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--gray);
    font-style: italic;
}
.pain-quote {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 56px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--creme-dk);
    text-align: center;
    position: relative;
}
.pain-quote::before {
    content: '"';
    position: absolute;
    top: 12px; left: 32px;
    font-family: var(--serif);
    font-size: 100px;
    line-height: 1;
    color: var(--lavanda-pale);
    font-style: italic;
    pointer-events: none;
}
.pain-quote p {
    font-family: var(--serif);
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 400;
    line-height: 1.65;
    color: var(--gray-dk);
    font-style: italic;
}
.pain-quote em { color: var(--lavanda); font-weight: 500; }

/* ---------------------------------------------------------
   SOBRE
   --------------------------------------------------------- */
.about { background: var(--white); }

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
}
.about-photo-col { position: relative; }
.about-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0 0 18px 18px;
}
.about-photo-deco {
    position: absolute;
    bottom: -18px;
    left: -18px;
    width: 100%;
    height: 100%;
    border-radius: var(--r-lg);
    background: linear-gradient(145deg, var(--lavanda-pale) 0%, var(--rose-lt) 100%);
    z-index: 1;
}
.about-photo-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 570px;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-xl);
    background: linear-gradient(145deg, var(--lavanda-pale) 0%, var(--rose-lt) 100%);
}
.about-photo-frame::after {
    content: 'F';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 130px;
    font-weight: 300;
    color: rgba(154,107,75,.35);
    pointer-events: none;
    z-index: 0;
}
.about-photo-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    transition: opacity .3s;
}
.about-badge {
    position: absolute;
    bottom: -24px; right: -24px;
    z-index: 3;
    background: linear-gradient(135deg, var(--lavanda) 0%, #5C3D2E 100%);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 22px 26px;
    box-shadow: var(--sh-lg);
    text-align: center;
    min-width: 172px;
}
.about-badge-star {
    display: block;
    font-size: 20px;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}
.about-badge p {
    font-family: var(--serif);
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

.about-content .section-label,
.about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
    font-size: 16px;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 14px;
}
.about-text em { font-style: italic; color: var(--gray-dk); }
.about-text strong { font-weight: 600; color: var(--gray-dk); }

.about-quote {
    font-family: var(--serif);
    font-size: 19px;
    font-style: italic;
    color: var(--lavanda);
    border-left: 3px solid var(--lavanda-lt);
    padding-left: 20px;
    margin: 28px 0;
    line-height: 1.65;
}

.about-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    margin: 8px 0 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--lavanda);
    transition: color .2s;
}
.about-more-toggle:hover { color: var(--lavanda-dk, #8a6fa8); }
.about-more-icon { transition: transform .35s ease; flex-shrink: 0; }
.about-more-toggle[aria-expanded="true"] .about-more-icon { transform: rotate(180deg); }

.about-more-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height .45s ease, opacity .35s ease;
}
.about-more-content.open { max-height: 400px; opacity: 1; }

.credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.credentials li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray);
}
.cred-dot { color: var(--lavanda); font-size: 11px; flex-shrink: 0; }

/* ---------------------------------------------------------
   BENEFÍCIOS
   --------------------------------------------------------- */
.benefits { background: var(--creme); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 32px;
    border: 1px solid transparent;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lavanda), var(--rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr);
}
.benefit-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-6px);
    border-color: var(--lavanda-pale);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon { margin-bottom: 20px; }
.benefit-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-dk);
    margin-bottom: 10px;
    line-height: 1.3;
}
.benefit-card p { font-size: 15px; line-height: 1.75; color: var(--gray-lt); }

/* ---------------------------------------------------------
   COMO FUNCIONA
   --------------------------------------------------------- */
.how-works { background: var(--white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 52px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--lavanda-lt), var(--rose-lt), var(--lavanda-lt));
    z-index: 0;
    pointer-events: none;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--lavanda-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--lavanda);
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: var(--tr);
}
.step:hover .step-num {
    background: linear-gradient(135deg, var(--lavanda), var(--rose));
    color: var(--white);
    border-color: var(--lavanda);
    box-shadow: var(--sh-md);
}
.step-body h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-dk);
    margin-bottom: 10px;
}
.step-body p { font-size: 14px; line-height: 1.75; color: var(--gray-lt); }

.highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 32px 40px;
    background: var(--creme);
    border-radius: var(--r-lg);
}
.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--gray);
}
.highlight span { color: var(--lavanda); font-size: 11px; }

/* ---------------------------------------------------------
   DEPOIMENTOS
   --------------------------------------------------------- */
.testimonials { background: var(--lavanda-pale); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 28px;
}
.tcard {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 36px;
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    transition: var(--tr);
}
.tcard:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.tcard-quote {
    font-family: var(--serif);
    font-size: 72px;
    line-height: .8;
    color: var(--lavanda-lt);
    font-style: italic;
    margin-bottom: 14px;
    user-select: none;
}
.tcard-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}
.tcard-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--creme-dk);
}
.tcard-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavanda), var(--rose));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}
.tcard-name { font-size: 15px; font-weight: 600; color: var(--gray-dk); margin-bottom: 2px; }
.tcard-info { font-size: 13px; color: var(--gray-lt); }
.testimonials-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-lt);
    font-style: italic;
}

/* ---------------------------------------------------------
   CTA INTERMEDIÁRIA
   --------------------------------------------------------- */
.cta-section {
    background: linear-gradient(135deg, #8B5E3C 0%, #5C3D2E 55%, #3D2010 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -60%; right: -10%;
    width: 55%; height: 220%;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-label { color: rgba(255,255,255,.7); }
.cta-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.85);
    margin-bottom: 40px;
}

/* ---------------------------------------------------------
   CONTATO
   --------------------------------------------------------- */
.contact { background: var(--creme); }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-label,
.contact-info .section-title { text-align: left; }
.contact-info .section-title { margin-bottom: 14px; }

.contact-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-lt);
    margin-bottom: 32px;
}
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray);
    transition: color var(--tr);
}
.contact-link:hover { color: var(--lavanda); }

/* Form */
.form-wrap {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px;
    border: 1px solid var(--creme-dk);
    border-top: 3px solid var(--lavanda);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-dk);
}

.req { color: var(--rose-dk); }

.field input,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1.5px solid var(--creme-dk);
    border-radius: var(--r-md);
    font-size: 15px;
    color: var(--gray-dk);
    outline: none;
    transition: border-color var(--tr), box-shadow var(--tr);
    resize: vertical;
    -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #C0BAB3; }
.field input:focus,
.field textarea:focus {
    border-color: var(--lavanda);
    box-shadow: 0 0 0 3px rgba(154,107,75,.18);
}
.field input.err,
.field textarea.err {
    border-color: #C05050;
    box-shadow: 0 0 0 3px rgba(192,80,80,.1);
}
.field-err {
    display: block;
    font-size: 12px;
    color: #C05050;
    min-height: 16px;
}
.form-note {
    font-size: 12px;
    color: var(--gray-lt);
    text-align: center;
    line-height: 1.6;
}
#submitBtn { margin-top: 4px; }
#submitBtn.sending { opacity: .7; pointer-events: none; }

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.footer { background: #2C1A0E; }
.footer .logo-name { color: var(--white); }
.footer .logo-sub  { color: rgba(255,255,255,.4); }

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    padding: 64px 0 56px;
}
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.5);
    margin-top: 16px;
    max-width: 280px;
}
.footer-flags { font-size: 20px; letter-spacing: 4px; margin-top: 14px; }
.footer-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: color var(--tr);
}
.footer-col a:hover { color: var(--lavanda-lt); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.38); }
.footer-bottom a { color: var(--lavanda-lt); transition: color var(--tr); }
.footer-bottom a:hover { color: var(--lavanda); }

/* ---------------------------------------------------------
   WHATSAPP FLUTUANTE
   --------------------------------------------------------- */
.wapp-float {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 900;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,.38);
    transition: transform var(--tr), box-shadow var(--tr);
    animation: wapp 3s ease-in-out infinite;
}
.wapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37,211,102,.5);
}
@keyframes wapp {
    0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.38); }
    50%      { box-shadow: 0 6px 28px rgba(37,211,102,.55), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ---------------------------------------------------------
   ACESSIBILIDADE
   --------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--lavanda);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ---------------------------------------------------------
   DIVISOR DE SEÇÃO
   --------------------------------------------------------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 64px;
    background: var(--white);
    padding: 0 var(--pad);
}
.divider-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lavanda-lt));
}
.section-divider .divider-line:last-child {
    background: linear-gradient(270deg, transparent, var(--lavanda-lt));
}
.divider-ornament {
    color: var(--lavanda);
    font-size: 14px;
    flex-shrink: 0;
}

/* ---------------------------------------------------------
   SERVIÇOS
   --------------------------------------------------------- */
.services { background: var(--creme); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.service-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 32px;
    border: 1px solid transparent;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lavanda), var(--rose));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--tr);
}
.service-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-6px);
    border-color: var(--lavanda-pale);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { margin-bottom: 20px; }
.service-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-dk);
    margin-bottom: 10px;
    line-height: 1.3;
}
.service-card p { font-size: 15px; line-height: 1.75; color: var(--gray-lt); }

/* ---------------------------------------------------------
   INSTAGRAM
   --------------------------------------------------------- */
.instagram {
    background: #EDE0CC;
    position: relative;
    overflow: hidden;
}

/* Arco — canto superior direito */
.ig-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.ig-deco-arc {
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1.5px solid rgba(92,61,46,.15);
    top: -180px; right: -140px;
}
.ig-deco-arc::after {
    content: '';
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid rgba(92,61,46,.09);
}

/* Grade de pontos — canto inferior esquerdo */
.ig-deco-dots {
    bottom: 40px; left: 40px;
    width: 150px; height: 150px;
    background-image: radial-gradient(circle, rgba(92,61,46,.22) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    mask-image: radial-gradient(ellipse at bottom left, black 30%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 30%, transparent 72%);
}

/* Listras diagonais — canto inferior direito */
.ig-deco-stripes {
    bottom: 0; right: 0;
    width: 200px; height: 200px;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(92,61,46,.08) 0px,
        rgba(92,61,46,.08) 1px,
        transparent 1px,
        transparent 14px
    );
    mask-image: radial-gradient(ellipse at bottom right, black 25%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 25%, transparent 68%);
}

/* Linha decorativa acima do label */
.instagram .section-label {
    display: flex;
    align-items: center;
    gap: 10px;
}
.instagram .section-label::before {
    content: '';
    display: inline-block;
    width: 28px; height: 1.5px;
    background: var(--rose-dk);
    flex-shrink: 0;
}

.instagram-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    gap: 80px;
}
.instagram-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-lt);
    margin-bottom: 32px;
}
.instagram-info .section-label,
.instagram-info .section-title { text-align: left; }
.instagram-info .section-title { margin-bottom: 18px; }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.ig-item {
    aspect-ratio: 1;
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: transform var(--tr), opacity var(--tr);
    position: relative;
}
.ig-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(183,167,200,0);
    transition: background var(--tr);
}
.ig-item:hover { transform: scale(1.04); }
.ig-item:hover::after { background: rgba(183,167,200,.14); }

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ig-1 { background: linear-gradient(135deg, #D5CAE0 0%, #EAD8D0 100%); }
.ig-2 { background: linear-gradient(135deg, #F0ECF5 0%, #D5CAE0 100%); }
.ig-3 { background: linear-gradient(135deg, #EAD8D0 0%, #F0ECF5 100%); }
.ig-4 { background: linear-gradient(135deg, #D5CAE0 0%, #F0ECF5 100%); }
.ig-5 { background: linear-gradient(135deg, #F0ECF5 0%, #EAD8D0 100%); }
.ig-6 { background: linear-gradient(135deg, #EAD8D0 0%, #D5CAE0 100%); }

/* ---------------------------------------------------------
   SLIDER DE DEPOIMENTOS
   --------------------------------------------------------- */
.slider-wrap {
    max-width: 760px;
    margin: 0 auto;
}
.slider-viewport {
    overflow: hidden;
    border-radius: var(--r-lg);
}
.slider-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.slide { min-width: 100%; }
.slide-inner {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 48px 52px;
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
}
.slide-quote {
    font-family: var(--serif);
    font-size: 80px;
    line-height: .7;
    color: var(--lavanda-lt);
    font-style: italic;
    margin-bottom: 12px;
    user-select: none;
}
.slide-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray);
    font-style: italic;
    flex: 1;
    margin-bottom: 28px;
    overflow-y: auto;
    max-height: 200px;
    scrollbar-width: thin;
    scrollbar-color: var(--lavanda-lt) transparent;
}
.slide-text::-webkit-scrollbar { width: 4px; }
.slide-text::-webkit-scrollbar-track { background: transparent; }
.slide-text::-webkit-scrollbar-thumb { background: var(--lavanda-lt); border-radius: 99px; }
.slide-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--creme-dk);
    flex-shrink: 0;
}
.slide-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavanda), var(--rose));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}
.slide-name { font-size: 15px; font-weight: 600; color: var(--gray-dk); margin-bottom: 2px; }
.slide-info { font-size: 13px; color: var(--gray-lt); }

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}
.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--creme-dk);
    transition: var(--tr);
    flex-shrink: 0;
}
.slider-btn:hover {
    border-color: var(--lavanda);
    color: var(--lavanda);
    background: var(--lavanda-pale);
}
.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--lavanda-lt);
    transition: background var(--tr), transform var(--tr);
}
.slider-dot.active {
    background: var(--lavanda);
    transform: scale(1.35);
}
.slider-dot:hover { background: var(--lavanda); }

/* ---------------------------------------------------------
   CONTACT CARDS
   --------------------------------------------------------- */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--creme-dk);
    border-left: 3px solid var(--lavanda);
    border-radius: var(--r-md);
    transition: var(--tr);
    color: inherit;
}
.contact-card:hover {
    border-left-color: var(--rose-dk);
    box-shadow: var(--sh-md);
    transform: translateX(4px);
}
.contact-card-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-wapp  { background: rgba(37,211,102,.1); }
.cc-email { background: var(--lavanda-pale); }
.cc-insta { background: rgba(225,48,108,.08); }
.contact-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.contact-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-lt);
}
.contact-card-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-dk);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-card-arrow {
    font-size: 18px;
    color: var(--lavanda-lt);
    transition: color var(--tr), transform var(--tr);
    flex-shrink: 0;
    line-height: 1;
}
.contact-card:hover .contact-card-arrow {
    color: var(--lavanda);
    transform: translateX(3px);
}

/* Elementos exclusivos do nav mobile — escondidos no desktop */
.nav-close      { display: none; }
.nav-cta-mobile { display: none; }

/* ---------------------------------------------------------
   RESPONSIVO — TABLET (≤ 1024px)
   --------------------------------------------------------- */
@media (max-width: 1024px) {
    :root { --sec-gap: 80px; }

    .hero-inner, .about-inner, .contact-inner { gap: 48px; }

    .pain-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .steps-grid::before { display: none; }

    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-desc  { max-width: 100%; }

    .about-badge { right: -12px; bottom: -16px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .instagram-inner { grid-template-columns: 1fr; gap: 48px; }
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------------------------------------------------------
   RESPONSIVO — MOBILE (≤ 768px)
   --------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --sec-gap: 64px;
        --hdr-h:   68px;
        --pad:     20px;
    }

    html, body { overflow-x: clip; }

    /* Evita vazamento de elementos decorativos absolutos */
    .hero, .about, .services, .how-works,
    .instagram, .testimonials, .contact { overflow-x: clip; }

    /* Nav mobile 100vh */
    .nav {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        padding: 0;
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        box-shadow: var(--sh-xl);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .nav.open         { transform: translateX(0); }
    .nav-overlay      { display: block; }
    .nav-overlay.open { opacity: 1; pointer-events: all; }
    .nav-list         { flex-direction: column; align-items: center; gap: 0; width: 100%; }
    .nav-link         { font-size: 22px; padding: 14px 0; display: block; width: 100%; text-align: center; }

    .nav-close {
        display: flex;
        position: absolute;
        top: 24px; right: 24px;
        width: 40px; height: 40px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: var(--gray);
        border: 1.5px solid var(--creme-dk);
        transition: var(--tr);
    }
    .nav-close:hover {
        border-color: var(--lavanda);
        color: var(--lavanda);
        background: var(--lavanda-pale);
    }
    .nav-cta-mobile { display: inline-flex; margin-top: 32px; font-size: 16px; }

    .menu-toggle { display: flex; }
    .header-cta  { display: none; }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 36px 0 60px;
    }
    .hero-content { order: 2; }
    .hero-photo-wrap { order: 1; justify-content: center; }

    .hero-sub { max-width: 100%; }
    .hero-flags, .hero-ctas { justify-content: center; }

    .hero-photo-frame,
    .hero-photo-deco { max-width: 290px; height: 360px; margin: 0 auto; }

    .hero-photo-deco { top: -12px; right: -12px; position: absolute; }

    .hero-card {
        position: static;
        max-width: 210px;
        margin: 20px auto 0;
    }

    /* Seções */
    .pain-grid, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }

    .pain-quote { padding: 32px 24px; }
    .pain-quote::before { font-size: 72px; top: 8px; left: 20px; }

    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-photo-col { display: flex; flex-direction: column; align-items: center; overflow: hidden; width: 100%; }
    .about-photo-wrap { width: 100%; max-width: 340px; padding: 0 0 18px 18px; }
    .about-photo-frame { height: 400px; width: 100%; }
    .about-photo-deco { bottom: 0; left: 0; width: calc(100% - 18px); }
    .about-badge { position: static; margin: 16px auto 0; display: inline-block; text-align: center; min-width: auto; }
    .about-content .section-label,
    .about-content .section-title,
    .about-quote,
    .about-text { text-align: center; }
    .credentials { align-items: center; }
    .about-more-toggle { display: flex; justify-content: center; width: 100%; margin: 8px auto 16px; }
    .about-more-content .about-text { text-align: center; }

    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .step { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
    .step-num { margin-bottom: 0; flex-shrink: 0; }

    .highlights { flex-direction: column; align-items: center; gap: 14px; text-align: center; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card  { text-align: center; }
    .service-icon  { display: flex; justify-content: center; }

    .instagram-inner { grid-template-columns: 1fr; gap: 40px; }
    .instagram-info .section-label,
    .instagram-info .section-title { text-align: center; }
    .instagram-text { text-align: center; }
    .instagram-btn  { width: 100%; justify-content: center; }
    .ig-grid { grid-template-columns: repeat(2, 1fr); }

    .slide-inner { padding: 32px 24px; }
    .slide-text  { max-height: 180px; }

    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-info .section-label,
    .contact-info .section-title { text-align: center; }
    .contact-text  { text-align: center; }
    .contact-links { align-items: center; }
    .contact-cards { gap: 10px; align-items: center; }
    .contact-card  { width: 100%; }
    .form-wrap { padding: 28px 20px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px 40px; }
    .footer-brand { grid-column: auto; }
    .footer-desc  { max-width: 100%; }
    .footer-bottom-row { flex-direction: column; text-align: center; }

    .wapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ---------------------------------------------------------
   MOVIMENTO REDUZIDO
   --------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    html.js .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
    .wapp-float { animation: none; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
