/* =========================================================
   REIKILIBRIUM — Stylesheet
   Paleta inspirada no logo: roxos profundos, lavanda, creme
   ========================================================= */

:root {
    --color-purple-900: #2a1d4a;
    --color-purple-800: #3b2670;
    --color-purple-700: #503090;
    --color-purple-600: #6a43b5;
    --color-purple-500: #8566cc;
    --color-purple-400: #a88cdd;
    --color-purple-300: #c9b5ea;
    --color-purple-200: #e4d8f5;
    --color-purple-100: #f3edfa;
    --color-lavender: #f8f4fc;
    --color-cream: #fbf8f3;
    --color-ivory: #fefcf8;
    --color-gold: #c9a87a;
    --color-gold-soft: #e7d3b1;
    --color-ink: #1a1230;
    --color-text: #2e2548;
    --color-muted: #6b5f85;
    --color-line: #e8e0f0;
    --color-white: #ffffff;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Dancing Script', cursive;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    --shadow-sm: 0 4px 16px rgba(58, 36, 112, 0.08);
    --shadow-md: 0 12px 32px rgba(58, 36, 112, 0.12);
    --shadow-lg: 0 24px 60px rgba(58, 36, 112, 0.18);
    --shadow-xl: 0 32px 80px rgba(58, 36, 112, 0.22);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1200px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { cursor: pointer; border: 0; background: none; font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.5em; font-family: var(--font-serif); font-weight: 500; line-height: 1.2; color: var(--color-ink); }
p { margin: 0 0 1em; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   TIPOGRAFIA REUSÁVEL
   ========================= */
.script { font-family: var(--font-script); font-weight: 700; color: var(--color-purple-600); font-style: italic; }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--color-muted); }

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-purple-600);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 6px 14px;
    background: var(--color-purple-100);
    border-radius: 50px;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-lead {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
}
.section-intro { margin-bottom: 3.5rem; }
.section-intro.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-intro.center .section-lead { margin-left: auto; margin-right: auto; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* =========================
   BOTÕES
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    transition: all var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--color-purple-700), var(--color-purple-500));
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(80, 48, 144, 0.32);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(80, 48, 144, 0.42);
}
.btn-ghost {
    background: transparent;
    color: var(--color-purple-700);
    border-color: var(--color-purple-300);
}
.btn-ghost:hover { background: var(--color-purple-100); border-color: var(--color-purple-500); }
.btn-outline {
    background: transparent;
    color: var(--color-purple-700);
    border-color: var(--color-purple-600);
}
.btn-outline:hover { background: var(--color-purple-700); color: var(--color-white); }
.btn-block { display: flex; width: 100%; }

/* =========================
   NAVBAR
   ========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(254, 252, 248, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(254, 252, 248, 0.95);
    border-bottom-color: var(--color-line);
    box-shadow: 0 4px 24px rgba(58, 36, 112, 0.06);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-logo {
    width: 48px;
    height: 48px;
    transition: transform var(--transition);
}
.nav-brand:hover .nav-logo { transform: rotate(-8deg) scale(1.05); }
.nav-title {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: var(--color-purple-700);
    font-weight: 700;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 6px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple-600);
    transition: width var(--transition);
}
.nav-link:hover { color: var(--color-purple-700); }
.nav-link:hover::after { width: 100%; }
.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--color-purple-700), var(--color-purple-500));
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(80, 48, 144, 0.28);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { transform: translateY(-2px); color: var(--color-white); box-shadow: 0 10px 20px rgba(80, 48, 144, 0.4); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-purple-700);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================
   HERO
   ========================= */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, var(--color-purple-100) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, var(--color-lavender) 0%, transparent 55%),
        linear-gradient(180deg, var(--color-ivory), var(--color-cream));
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.petal {
    position: absolute;
    border-radius: 50% 0 50% 0;
    background: linear-gradient(135deg, var(--color-purple-300), var(--color-purple-400));
    opacity: 0.18;
    filter: blur(1px);
    animation: float 14s ease-in-out infinite;
}
.petal-1 { width: 320px; height: 320px; top: 10%; right: -80px; animation-delay: 0s; }
.petal-2 { width: 220px; height: 220px; bottom: 15%; left: -60px; animation-delay: -4s; background: linear-gradient(135deg, var(--color-gold-soft), var(--color-purple-300)); }
.petal-3 { width: 160px; height: 160px; top: 40%; left: 40%; animation-delay: -8s; opacity: 0.08; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-30px) rotate(20deg); }
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { max-width: 600px; }
.hero-pretitle {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-purple-600);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-left: 40px;
    position: relative;
}
.hero-pretitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--color-purple-500);
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--color-ink);
}
.hero-title .script {
    font-size: 1.1em;
    display: inline-block;
    transform: translateY(6px);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 2.25rem;
    max-width: 520px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 2.5rem;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.badge {
    font-size: 0.82rem;
    padding: 6px 14px;
    background: var(--color-white);
    color: var(--color-purple-700);
    border-radius: 50px;
    border: 1px solid var(--color-purple-200);
    box-shadow: var(--shadow-sm);
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    border-radius: 240px 240px 30px 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.hero-img-ring {
    position: absolute;
    inset: -20px;
    border-radius: 260px 260px 50px 50px;
    border: 2px dashed var(--color-purple-300);
    pointer-events: none;
    animation: slowRotate 60s linear infinite;
    opacity: 0.6;
}
@keyframes slowRotate { to { transform: rotate(360deg); } }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-purple-400);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-indicator span {
    width: 3px;
    height: 8px;
    background: var(--color-purple-500);
    border-radius: 2px;
    animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* =========================
   SOBRE REIKI
   ========================= */
.sobre-reiki { background: var(--color-white); }
.sobre-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}
.sobre-text .lead { font-size: 1.2rem; color: var(--color-text); margin-bottom: 2.5rem; }
.sobre-text .lead strong { color: var(--color-purple-700); font-weight: 600; }

.benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.benefit-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-purple-100), var(--color-purple-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-purple-700);
}
.benefit h4 { font-size: 1.15rem; margin-bottom: 4px; font-family: var(--font-sans); font-weight: 600; color: var(--color-ink); }
.benefit p { margin: 0; color: var(--color-muted); font-size: 0.98rem; }

.sobre-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.sobre-visual::before {
    content: '';
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, var(--color-purple-100), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
.lotus-svg {
    width: 100%;
    max-width: 360px;
    color: var(--color-purple-500);
    position: relative;
    z-index: 1;
    animation: lotusSpin 80s linear infinite;
}
@keyframes lotusSpin { to { transform: rotate(360deg); } }
.sobre-img {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px -20px rgba(103, 64, 166, 0.35);
    position: relative;
    z-index: 1;
}

/* =========================
   ADRIANA
   ========================= */
.adriana {
    background: linear-gradient(180deg, var(--color-ivory), var(--color-lavender));
    position: relative;
}
.adriana-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.adriana-image {
    position: relative;
    max-width: 480px;
    justify-self: center;
}
.adriana-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}
.adriana-img-accent {
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 2px solid var(--color-purple-400);
    border-radius: var(--radius-lg);
    z-index: 1;
}
.adriana-text .lead { margin-bottom: 2rem; }

.credentials {
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--color-purple-400);
    padding-left: 20px;
}
.credentials li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--color-text);
    position: relative;
}
.credentials li strong { color: var(--color-purple-800); font-weight: 600; }

/* =========================
   SERVIÇOS
   ========================= */
.servicos { background: var(--color-white); }
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 5rem;
}
.servico-card {
    position: relative;
    padding: 42px 32px;
    background: var(--color-ivory);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.servico-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-purple-300);
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}
.servico-card.featured {
    background: linear-gradient(160deg, var(--color-purple-800), var(--color-purple-600));
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.servico-card.featured h3, .servico-card.featured p { color: var(--color-white); }
.servico-card.featured .servico-icon { background: rgba(255, 255, 255, 0.15); color: var(--color-white); }
.servico-card.featured .servico-cta { color: var(--color-gold-soft); }
.servico-card.featured:hover { transform: translateY(-8px); }

.servico-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--color-purple-100);
    color: var(--color-purple-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.servico-icon svg { width: 38px; height: 38px; }

.servico-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.servico-card p {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}
.servico-card.featured p { color: rgba(255, 255, 255, 0.85); }
.servico-cta {
    font-weight: 600;
    color: var(--color-purple-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform var(--transition);
}
.servico-cta:hover { transform: translateX(6px); }

.servico-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 5px 12px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50px;
}

.pet-highlight {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    padding: 50px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--color-purple-100), var(--color-lavender));
}
.pet-img img {
    width: 100%;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
.pet-text h3 { font-size: 2rem; margin-bottom: 16px; }
.pet-text p { font-size: 1.1rem; color: var(--color-text); line-height: 1.75; }

/* =========================
   CERTIFICADOS
   ========================= */
.certificados {
    background: linear-gradient(180deg, var(--color-lavender), var(--color-ivory));
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cert-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: zoom-in;
    transition: all var(--transition);
    margin: 0;
    border: 1px solid var(--color-line);
}
.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-purple-300);
}
.cert-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, var(--color-cream), var(--color-lavender));
    padding: 16px;
}
.cert-card figcaption {
    padding: 20px 24px 24px;
    text-align: center;
}
.cert-card h4 {
    font-size: 1.2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-ink);
}
.cert-card figcaption p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

/* =========================
   CONTATO
   ========================= */
.contato { background: var(--color-white); }
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}
.contato-info {
    background: linear-gradient(160deg, var(--color-purple-800), var(--color-purple-600));
    padding: 48px;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: var(--shadow-lg);
}
.contato-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.contato-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.contato-item h4 {
    margin: 0 0 4px;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.contato-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}
.contato-link { color: var(--color-gold-soft); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contato-link:hover { color: var(--color-white); }
.contato-info .btn-primary {
    margin-top: auto;
    background: var(--color-white);
    color: var(--color-purple-800);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.contato-info .btn-primary:hover { background: var(--color-gold-soft); color: var(--color-purple-900); }

.contato-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 420px;
}
.contato-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; }

/* =========================
   FOOTER
   ========================= */
.footer {
    background: var(--color-purple-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0 30px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { width: 80px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-tag { font-family: var(--font-script); font-size: 1.4rem; color: var(--color-gold-soft); margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--color-gold-soft); }
.footer-info p { margin: 0 0 6px; font-size: 0.92rem; }
.footer-copy { font-size: 0.82rem !important; color: rgba(255, 255, 255, 0.5) !important; margin-top: 16px !important; }

/* =========================
   WHATSAPP FLUTUANTE
   ========================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* =========================
   LIGHTBOX
   ========================= */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 18, 48, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); transform: rotate(90deg); }

/* =========================
   REVEAL ANIMATIONS
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--color-white);
        padding: 20px 24px 28px;
        box-shadow: 0 20px 40px rgba(58, 36, 112, 0.12);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-bottom: 1px solid var(--color-line);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--color-line);
        width: 100%;
        font-size: 1rem;
    }
    .nav-link.nav-cta {
        margin-top: 12px;
        text-align: center;
        padding: 14px 24px;
        border-bottom: 0;
    }

    .hero-container,
    .sobre-grid,
    .adriana-container,
    .pet-highlight,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-content { order: 2; text-align: center; margin: 0 auto; }
    .hero-pretitle { padding-left: 0; }
    .hero-pretitle::before { display: none; }
    .hero-actions, .hero-badges { justify-content: center; }
    .hero-image { order: 1; }
    .hero-img-wrap { max-width: 340px; }
    .scroll-indicator { display: none; }

    .sobre-visual { max-width: 280px; margin: 0 auto; }

    .servicos-grid {
        grid-template-columns: 1fr;
    }
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pet-highlight { padding: 32px; }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .cert-grid { grid-template-columns: 1fr; }
    .contato-info { padding: 32px 28px; }
    .section { padding: 60px 0; }
    .nav-title { font-size: 1.4rem; }
    .nav-logo { width: 40px; height: 40px; }
    .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
}
