/* ========================================================================
   Fortunari Odontologia Integrada
   Estetica: Ultra-minimalista, tipografia elegante, espaco generoso
   v3 - Homepage aprofundada
   ======================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #b8944f;
    --gold-light: #c9a96e;
    --gold-subtle: rgba(184, 148, 79, 0.08);

    --dark: #141414;
    --dark-soft: #1c1c1c;
    --dark-medium: #1a1a1a;

    --cream: #f8f5f0;
    --cream-dark: #f0ece4;
    --white: #fdfcfa;

    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --text-inverse: #f0ece6;
    --text-inverse-muted: rgba(240, 236, 230, 0.45);

    --border: #e8e3db;
    --border-dark: rgba(255, 255, 255, 0.06);

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-quote: 'Cormorant Garamond', 'Georgia', serif;

    --section-gap: clamp(6rem, 12vw, 10rem);
    --container-max: 1100px;
    --container-wide: 1280px;
    --container-pad: clamp(1.5rem, 5vw, 3rem);

    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-inverse);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-top: 1.5rem;
    font-weight: 400;
}

.preloader-line {
    width: 48px;
    height: 1px;
    background: rgba(184, 148, 79, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: preloaderSlide 1.4s var(--ease) infinite;
}

@keyframes preloaderSlide {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* --- Top Bar --- */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.45rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.4s var(--ease);
}

.top-bar-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-inverse-muted);
    letter-spacing: 0.03em;
}

.top-bar-item svg {
    width: 13px;
    height: 13px;
    opacity: 0.6;
    flex-shrink: 0;
}

.top-bar-item a {
    color: var(--text-inverse-muted);
    transition: color 0.3s var(--ease);
}

.top-bar-item a:hover {
    color: var(--gold-light);
}

.header.scrolled ~ .top-bar,
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 1.85rem;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s var(--ease);
}

.header.scrolled {
    top: 0;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.875rem 0;
}

.header-page {
    top: 1.85rem;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.header-page.scrolled {
    top: 0;
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { z-index: 1001; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-inverse);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-text .logo-name {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.logo-text .logo-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.28em;
    color: var(--gold-light);
    margin-top: 0.1rem;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-inverse-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-inverse);
}

/* --- Nav Dropdown (Tratamentos) --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-body);
}

.nav-dropdown-toggle svg {
    transition: transform 0.3s var(--ease);
    opacity: 0.5;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.aberto .nav-dropdown-toggle svg {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1.25rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-dark);
    padding: 0.75rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
    z-index: 1002;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.aberto .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1.25rem;
    left: 0;
    right: 0;
    height: 1.25rem;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    letter-spacing: 0.03em;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    color: var(--text-inverse);
    background: rgba(184, 148, 79, 0.08);
    padding-left: 1.75rem;
}

.btn-header {
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(240, 236, 230, 0.2);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-inverse);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.btn-header:hover {
    border-color: var(--text-inverse);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

.menu-bar {
    width: 22px;
    height: 1px;
    background: var(--text-inverse);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.menu-toggle.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(2.5px, 2.5px);
}

.menu-toggle.active .menu-bar:nth-child(2) {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5rem 0 3rem;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-inverse);
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-link:hover { color: var(--gold-light); }

/* --- Mobile Nav Group (submenu tratamentos) --- */
.mobile-nav-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    font-family: var(--font-display);
}

.mobile-nav-toggle svg {
    transition: transform 0.3s var(--ease);
    opacity: 0.5;
}

.mobile-nav-toggle.ativo svg {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), margin 0.3s var(--ease);
    margin-top: 0;
}

.mobile-nav-submenu.aberto {
    max-height: 500px;
    margin-top: 1.25rem;
}

.mobile-nav-sublink {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink:active {
    color: var(--gold-light);
}

.mobile-menu-footer {
    margin-top: 3.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out) 0.35s;
}

.mobile-menu.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.btn-mobile-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(240, 236, 230, 0.2);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-inverse);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}

.btn-mobile-cta:hover {
    border-color: var(--text-inverse);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--dark);
    overflow: hidden;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 22rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.04em;
}

.hero-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--container-pad);
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
}

.hero-left-inner {
    max-width: 520px;
}

.hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-inverse-muted);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.75rem;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text-inverse);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextReveal 0.8s var(--ease-out) forwards;
}

.hero-title-line em {
    font-style: italic;
    color: var(--gold-light);
    font-size: clamp(3rem, 6.5vw, 5.5rem);
}

.hero-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero-actions .btn-primary {
    background: #ffffff;
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.08em;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-actions .btn-primary:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(184, 148, 79, 0.3), 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.hero-separator {
    width: 1px;
    height: 20px;
    background: rgba(240, 236, 230, 0.15);
}

.hero-phone {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-inverse);
    letter-spacing: 0.06em;
    transition: all 0.3s var(--ease);
    border: 1px solid rgba(240, 236, 230, 0.25);
    padding: 0.6rem 1.25rem;
    white-space: nowrap;
}

.hero-phone:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 2rem;
}

.hero-image {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 0.25rem;
    aspect-ratio: 3 / 4;
}

.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.05) brightness(0.9);
    transition: transform 1.2s var(--ease-out), filter 1.2s var(--ease);
}

.hero-image:hover img,
.hero-image:hover video {
    transform: scale(1.03);
    filter: grayscale(10%) contrast(1.02) brightness(0.95);
}

.hero-image-caption {
    position: absolute;
    bottom: 2rem;
    right: -0.5rem;
    writing-mode: vertical-rl;
    display: flex;
    gap: 1rem;
}

.hero-image-caption span {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-inverse-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Hero Marquee */
.hero-marquee {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    overflow: hidden;
}

.hero-marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.hero-marquee-track span {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0 2rem;
    position: relative;
}

.hero-marquee-track span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    min-height: 48px;
    background: var(--gold);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

/* --- Section Shared --- */
.section-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-label-light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-title-light { color: var(--text-inverse); }
.section-title-light em { color: var(--gold-light); }

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-tertiary);
    margin-top: 1rem;
    line-height: 1.7;
}

.section-subtitle-light { color: var(--text-inverse-muted); }

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

/* --- Sobre --- */
.sobre {
    padding: var(--section-gap) 0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.sobre-visual {
    position: relative;
}

.sobre-image-frame {
    overflow: hidden;
}

.sobre-image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(20%) contrast(1.02);
    transition: transform 1s var(--ease-out);
}

.sobre-image-frame:hover img {
    transform: scale(1.02);
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: -1px;
    border-top: 1px solid var(--border);
}

.sobre-stat {
    padding: 1.75rem 0;
    text-align: center;
    position: relative;
}

.sobre-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 1px;
    background: var(--border);
}

.sobre-stat-numero {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.sobre-stat-sufixo {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--gold);
}

.sobre-stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.sobre-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-top: 1.75rem;
}

.sobre-highlights {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sobre-highlight {
    padding-left: 1.25rem;
    border-left: 1px solid var(--border);
    transition: border-color 0.3s var(--ease), padding-left 0.3s var(--ease), background 0.3s var(--ease);
}

.sobre-highlight:hover {
    border-color: var(--gold);
}

.sobre-highlight strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.sobre-highlight span {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-tertiary);
}

/* --- Filosofia --- */
.filosofia {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--cream);
    position: relative;
}

.filosofia-inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.filosofia-inner::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 3rem;
}

.filosofia-quote {
    font-family: var(--font-quote);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.filosofia-autor {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    font-style: normal;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2.5rem;
}

/* --- Tratamentos --- */
.tratamentos {
    padding: var(--section-gap) 0;
    background: var(--dark);
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-dark);
}

.tratamento-card {
    background: var(--dark);
    padding: 2.5rem 2rem;
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.tratamento-card:hover {
    background: var(--dark-soft);
}

.tratamento-numero {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.5;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: block;
}

.tratamento-card:hover .tratamento-numero {
    opacity: 1;
}

.tratamento-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-inverse);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.tratamento-card-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.tratamento-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap 0.3s var(--ease);
}

.tratamento-card-link:hover {
    gap: 0.65rem;
}

/* --- Diferenciais --- */
.diferenciais {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.diferenciais-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.diferenciais-header {
    max-width: 500px;
}

.diferenciais-intro {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.diferencial-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    transition: background 0.3s var(--ease), transform 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.diferencial-card:hover {
    background: var(--cream);
}

.diferencial-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}

.diferencial-card:hover .diferencial-icon {
    opacity: 1;
}

.diferencial-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.diferencial-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-tertiary);
    line-height: 1.75;
}

/* --- Depoimentos --- */
.depoimentos {
    padding: var(--section-gap) 0;
    background: var(--dark);
}

/* Carousel layout */
.depoimentos-carousel {
    position: relative;
    overflow: hidden;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s var(--ease-out);
    gap: 1px;
}

.depoimento-card {
    flex: 0 0 calc(33.333% - 1px);
    background: var(--dark);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: background 0.4s var(--ease);
    position: relative;
    min-width: 0;
}

.depoimento-card:hover {
    background: var(--dark-soft);
}

.depoimento-stars {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

/* Carousel navigation */
.depoimentos-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.depoimentos-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.depoimentos-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.depoimentos-dots {
    display: flex;
    gap: 0.5rem;
}

.depoimentos-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.depoimentos-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.depoimento-aspas {
    font-family: var(--font-quote);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.depoimento-texto {
    font-family: var(--font-quote);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-inverse-muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 2rem;
}

.depoimento-autor {
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
}

.depoimento-autor-info strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-inverse);
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
}

.depoimento-autor-info span {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- CTA --- */
.cta-section {
    position: relative;
    padding: clamp(6rem, 14vw, 10rem) 0;
    background: var(--dark-medium);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 148, 79, 0.03) 0%, transparent 50%, rgba(184, 148, 79, 0.02) 100%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    color: var(--text-inverse);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-title em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.btn-primary-cta {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary-cta:hover {
    background: var(--gold-light);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.cta-phone {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    letter-spacing: 0.03em;
    transition: color 0.3s var(--ease);
}

.cta-phone:hover {
    color: var(--text-inverse);
}

/* --- Contato --- */
.contato {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.contato-items {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contato-item-icon {
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contato-item-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.contato-item-text span,
.contato-item-text a {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contato-item-text a:hover {
    color: var(--gold);
}

.contato-social {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contato-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.3s var(--ease);
}

.contato-social-link:hover {
    color: var(--gold);
}

.contato-social-link svg {
    color: var(--gold);
    opacity: 0.6;
}

.contato-map-frame {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.contato-map-frame iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.05);
    transition: filter 0.8s var(--ease);
}

.contato-map-frame:hover iframe {
    filter: grayscale(30%) contrast(1.02);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    padding: 3.5rem 0 0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-inverse);
    letter-spacing: 0.06em;
}

.footer-tagline {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-inverse-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    transition: color 0.3s var(--ease);
}

.footer-nav a:hover { color: var(--text-inverse); }

.footer-contact {
    text-align: right;
}

.footer-contact a {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    line-height: 1.8;
    transition: color 0.3s var(--ease);
}

.footer-contact a:hover { color: var(--text-inverse); }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(240, 236, 230, 0.2);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* --- Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .tratamentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .depoimento-card {
        flex: 0 0 calc(50% - 1px);
    }

    .nav-desktop { display: none; }
    .btn-header { display: none; }
    .menu-toggle { display: flex; }

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-contact { text-align: left; }
}

@media (max-width: 768px) {
    .hero-body {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 7rem 0 3rem;
    }

    .hero-right {
        padding: 0 0 0;
        height: 50vh;
        min-height: 320px;
    }

    .hero-image {
        aspect-ratio: auto;
        max-height: none;
        height: 100%;
        border-radius: 0;
    }

    .hero-image-caption {
        display: none;
    }

    .hero-watermark {
        font-size: 6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .hero-separator { display: none; }

    .hero-marquee-track span {
        font-size: 0.6rem;
        padding: 0 1.25rem;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sobre-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .diferenciais-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-map-frame {
        height: 320px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-nav a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.35rem;
    }

    .contato-item:hover {
        transform: none;
    }

    .top-bar {
        padding: 0.35rem 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 0.25rem;
    }

    .top-bar-item {
        font-size: 0.62rem;
    }

    .header,
    .header-page {
        top: 2.6rem;
    }

    .header.scrolled,
    .header-page.scrolled {
        top: 0;
    }

    .logo-text .logo-name {
        font-size: 1.2rem;
    }

    .logo-text .logo-subtitle {
        font-size: 0.45rem;
        letter-spacing: 0.2em;
    }

    .hero-phone {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        text-align: center;
        display: inline-block;
        white-space: nowrap;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(240, 236, 230, 0.4);
    }
}

@media (max-width: 480px) {
    .tratamentos-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .depoimento-card {
        flex: 0 0 100%;
        padding: 2rem 1.5rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sobre-stat:not(:last-child)::after {
        display: none;
    }

    .sobre-stat {
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--border);
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 44px;
        height: 44px;
    }

    .filosofia-quote {
        font-size: 1.15rem;
    }

    .depoimento-card {
        padding: 2rem 1.5rem;
    }

    .tratamento-card {
        padding: 2rem 1.5rem;
    }

    .diferencial-card {
        padding: 2rem 1.5rem;
    }

    .hero-left {
        padding: 6.5rem 0 2.5rem;
    }

    .hero-right {
        height: 40vh;
        min-height: 280px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.85rem;
    }

    .footer-col-nav a {
        padding: 0.25rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-col-contact a,
    .footer-col-contact span {
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .contato-social-link {
        min-height: 44px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary {
        min-height: 50px;
    }

    .contato-item {
        padding: 0.5rem;
        margin: -0.5rem;
    }
}

@media (max-width: 360px) {
    :root {
        --container-pad: 1.25rem;
    }

    .hero-left {
        padding: 6rem 0 2rem;
    }

    .hero-right {
        height: 35vh;
        min-height: 240px;
    }

    .hero-title-line {
        font-size: 2rem;
    }

    .hero-title-line em {
        font-size: 2.4rem;
    }

    .hero-desc {
        font-size: 0.82rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.82rem;
    }

    .mobile-nav-link {
        font-size: 1.5rem;
    }

    .mobile-nav {
        gap: 1.75rem;
    }

    .tratamento-card,
    .diferencial-card,
    .depoimento-card {
        padding: 1.75rem 1.25rem;
    }

    .filosofia-quote {
        font-size: 1.05rem;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .sobre-stat-label {
        font-size: 0.65rem;
    }

    .contato-item-text span,
    .contato-item-text a {
        font-size: 0.82rem;
    }

    .footer-bottom p {
        font-size: 0.65rem;
    }
}

/* --- Footer Expandido (multi-pagina) --- */
.footer-inner-expanded {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.footer-col {
    min-width: 0;
}

.footer-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    color: var(--text-inverse-muted);
    transition: color 0.3s var(--ease);
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-col-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-nav a {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    transition: color 0.3s var(--ease);
}

.footer-col-nav a:hover {
    color: var(--text-inverse);
}

.footer-col-contact a,
.footer-col-contact span {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-inverse-muted);
    line-height: 1.8;
}

.footer-col-contact a {
    transition: color 0.3s var(--ease);
}

.footer-col-contact a:hover {
    color: var(--text-inverse);
}

@media (max-width: 1024px) {
    .footer-inner-expanded {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-inner-expanded {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================================================
   EFEITOS DINAMICOS - Homepage
   ======================================================================== */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    z-index: 1100;
    transition: width 0.05s linear;
    pointer-events: none;
}

/* --- Hero Gradient Orbs --- */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 148, 79, 0.08) 0%, transparent 70%);
    top: 10%;
    right: 15%;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 148, 79, 0.05) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-15px, 15px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-20px, 25px); }
    66% { transform: translate(20px, -10px); }
}

/* --- Hero Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.hero-scroll-text {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--text-inverse-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(184, 148, 79, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLineSlide 2s var(--ease) infinite;
}

@keyframes scrollLineSlide {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* --- Hero Title Stagger Animation --- */
/* Hero title stagger: animation properties added to existing rule above */
.hero-title-line:nth-child(1) { animation-delay: 0.8s; }
.hero-title-line:nth-child(2) { animation-delay: 1s; }
.hero-title-line:nth-child(3) { animation-delay: 1.2s; }

@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Tratamento Cards - Enhanced Hover --- */
.tratamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.5s var(--ease);
}

.tratamento-card:hover::before {
    width: 100%;
}

.tratamento-card:hover {
    transform: translateY(-4px);
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.tratamento-numero {
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}

.tratamento-card:hover .tratamento-numero {
    transform: translateY(-2px) scale(1.1);
}

.tratamento-card-link svg {
    transition: transform 0.3s var(--ease);
}

.tratamento-card:hover .tratamento-card-link svg {
    transform: translate(3px, -3px);
}

/* --- Diferencial Cards - Enhanced Hover --- */
.diferencial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.diferencial-card:hover::after {
    width: 100%;
}

.diferencial-card:hover {
    transform: translateY(-3px);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.15);
}

/* --- Depoimento Cards - Enhanced Hover --- */
.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--gold);
    transition: height 0.5s var(--ease);
}

.depoimento-card:hover::before {
    height: 100%;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.depoimento-aspas {
    transition: color 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.depoimento-card:hover .depoimento-aspas {
    color: var(--gold-light);
    opacity: 0.6;
    transform: scale(1.1);
}

/* --- CTA Enhancements --- */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.cta-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 148, 79, 0.06) 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation: orbFloat1 14s ease-in-out infinite;
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(184, 148, 79, 0.04) 0%, transparent 70%);
    bottom: -10%;
    left: 15%;
    animation: orbFloat2 18s ease-in-out infinite;
}

/* --- Button Shimmer Effect --- */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s var(--ease);
}

.btn-primary:hover::after {
    left: 100%;
}

/* --- Sobre Highlights Enhanced --- */
.sobre-highlight:hover {
    padding-left: 1.5rem;
    background: var(--gold-subtle);
    border-radius: 0 4px 4px 0;
}

/* --- Sobre Stats Shimmer --- */
.sobre-stat {
    transition: background 0.3s var(--ease);
}

.sobre-stat:hover {
    background: var(--gold-subtle);
}

.sobre-stat-numero {
    transition: color 0.3s var(--ease);
}

.sobre-stat:hover .sobre-stat-numero {
    color: var(--gold);
}

/* --- Filosofia Enhanced --- */
.filosofia {
    position: relative;
    overflow: hidden;
}

.filosofia-inner::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 3rem auto 0;
    transition: width 1.2s var(--ease-out);
}

.filosofia-inner.visible::after {
    width: 40px;
}

.filosofia-quote {
    transition: transform 0.8s var(--ease-out);
}

/* --- Contato Items Enhanced --- */
.contato-item {
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
    padding: 0.75rem;
    margin: -0.75rem;
    border-radius: 8px;
}

.contato-item:hover {
    transform: translateX(6px);
    background: rgba(184, 148, 79, 0.04);
}

.contato-item-icon {
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.contato-item:hover .contato-item-icon {
    opacity: 1;
    transform: scale(1.15);
}

/* --- Section Label Animation --- */
.section-label {
    position: relative;
    overflow: hidden;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.8s var(--ease-out);
}

.reveal.visible .section-label::after,
.reveal-left.visible .section-label::after,
.section-header.visible .section-label::after {
    width: 100%;
}

/* --- Footer Links Hover Effect --- */
.footer-col-nav a {
    position: relative;
}

.footer-col-nav a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.footer-col-nav a:hover::after {
    width: 100%;
}

/* --- Responsive adjustments for effects --- */
@media (max-width: 768px) {
    .hero-orb-1 { width: 250px; height: 250px; }
    .hero-orb-2 { width: 180px; height: 180px; }
    .hero-scroll-indicator { display: none; }
    .cta-orb { display: none; }
}

@media (max-width: 480px) {
    .hero-orb { display: none; }
    .scroll-progress { height: 1.5px; }
}

/* --- Touch Device Optimizations --- */
@media (hover: none) {
    /* Desabilitar transforms que "grudam" em dispositivos touch */
    .tratamento-card:hover {
        transform: none;
    }

    .tratamento-card::before {
        display: none;
    }

    .tratamento-card:hover .tratamento-numero {
        transform: none;
    }

    .tratamento-card:hover .tratamento-card-link svg {
        transform: none;
    }

    .diferencial-card:hover {
        transform: none;
    }

    .diferencial-card::after {
        display: none;
    }

    .diferencial-card:hover .diferencial-icon {
        transform: none;
    }

    .depoimento-card:hover {
        transform: none;
        box-shadow: none;
    }

    .depoimento-card::before {
        display: none;
    }

    .depoimento-card:hover .depoimento-aspas {
        transform: none;
    }

    .contato-item:hover {
        transform: none;
    }

    .contato-item:hover .contato-item-icon {
        transform: none;
    }

    .sobre-highlight:hover {
        padding-left: 1.25rem;
        background: transparent;
    }

    .btn-primary::after {
        display: none;
    }

    .hero-image:hover img {
        transform: none;
    }

    .sobre-image-frame:hover img {
        transform: none;
    }

    .footer-col-nav a::after {
        display: none;
    }
}

/* --- Focus States (acessibilidade) --- */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn-primary:focus-visible {
    outline-offset: 3px;
    box-shadow: 0 0 0 4px rgba(184, 148, 79, 0.25);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }

    .hero-title-line {
        opacity: 1;
        transform: none;
    }

    .hero-orb,
    .cta-orb,
    .hero-scroll-indicator {
        display: none;
    }

    .scroll-progress {
        display: none;
    }
}

/* --- Selection --- */
::selection {
    background: var(--gold);
    color: var(--dark);
}

::-moz-selection {
    background: var(--gold);
    color: var(--dark);
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
