﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #e2c46f; /* Dourado claro */
    --primary-hover: #b38b2d;
    --primary-strong: #c79a3a;
    --text-dark: #111111;
    --text-light: #5f5f5f;
    --text-on-dark: rgba(255,255,255,0.92);
    --muted-on-dark: rgba(255,255,255,0.72);
    --bg-color: #ffffff;
    --bg-light: #fbf8f0;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f4efe3 100%);
    --bg-cream: #f6f1e6;
    --bg-rose: #f0eadc;
    --bg-sand: #ece2cf;
    --gradient-btn: linear-gradient(90deg, #f5df93 0%, #c79a3a 100%);
    --glass-bg: rgba(255, 255, 255, 0.35);
    --shadow-gold: 0 10px 30px rgba(226,196,111,0.28);
    --shadow-dark: 0 20px 50px rgba(0,0,0,0.35);
    --dark-900: #0b0b0b;
    --dark-800: #121212;
    --dark-700: #171717;
    --border-gold-soft: rgba(226,196,111,0.18);
    --border-white-soft: rgba(255,255,255,0.08);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 14px;
    --transition: 0.3s ease;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background:
        radial-gradient(900px 400px at 8% -10%, rgba(226,196,111,0.18) 0%, rgba(226,196,111,0) 60%),
        linear-gradient(180deg, #ffffff 0%, #f5f1e6 50%, #ffffff 100%);
    overflow-x: hidden;
}

/* Text helpers */
.section-lead {
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    color: rgba(255,255,255,0.80);
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.text-highlight {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
}
.text-highlight-2 {
    color: var(--primary-hover);
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.section-title {
    letter-spacing: -0.01em;
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* UTILITIES */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-large {
    max-width: 1320px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5df93 0%, #c79a3a 100%);
    margin: 20px 0;
}

/* SECTION BASE */
section {
    position: relative;
    overflow: hidden;
}
section::before,
section::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    background: var(--gradient-btn);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(226,196,111,0.35);
}

.header-btn {
    background: transparent;
    color: var(--primary-hover);
    border: 1.2px solid var(--primary-hover);
    border-radius: 50px;
    padding: 9px 22px;
    box-shadow: none;
    font-weight: 500;
}
.header-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: none;
}

.btn-large {
    background: var(--gradient-btn);
    color: white;
    border: none;
    box-shadow: var(--shadow-gold);
}
.btn-large:hover {
    background: var(--gradient-btn);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(226,196,111,0.4);
}

.btn-hero {
    font-size: 1.1rem;
    padding: 15px 35px;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-outline-hero {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}
.btn-outline-hero:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* ANIMATIONS & SCROLL EFFECTS */
.scroll-bottom, .scroll-left, .scroll-right, .anim-scale, .anim-up {
    opacity: 0;
    visibility: hidden;
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-bottom {
    transform: translateY(50px);
}
.scroll-bottom.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-left {
    transform: translateX(-50px);
}
.scroll-left.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.anim-up {
    transform: translateY(36px);
}
.anim-up.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.anim-scale {
    transform: scale(0.8);
}
.anim-scale.ativo {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* HEADER */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1140px;
    background-color: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(226,196,111, 0.25);
    border-radius: 60px;
    z-index: 1000;
    box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(226,196,111,0.35);
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.hero-kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(226,196,111,0.18);
    color: rgba(255,255,255,0.88);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
    width: fit-content;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 18px;
    color: rgba(255,255,255,0.78);
    font-family: var(--font-heading);
    font-size: 0.95rem;
}
.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-highlights li strong {
    color: rgba(240,216,137,0.95);
    font-weight: 700;
}

.site-header.scrolled {
    top: 10px;
    padding: 10px 34px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    margin-left: -12px;
}
.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: none;
    transition: opacity 0.3s ease;
}
.logo-img:hover {
    opacity: 0.82;
}
.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.logo-mark img {
    height: 48px;
    width: auto;
}
.logo-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    color: #f5f5f5;
    letter-spacing: 0.01em;
}
.logo-subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    color: #c7c7c7;
}

.nav-list {
    display: flex;
    gap: 22px;
}
.nav-list a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    padding: 5px 0;
    color: #e3e3e3;
}
.nav-list a:hover, .nav-list a.active {
    color: var(--primary-hover);
}
.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}
.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.nav-list a:focus-visible,
.menu-toggle:focus-visible,
.header-btn:focus-visible,
.logo:focus-visible {
    outline: 2px solid rgba(226,196,111,0.9);
    outline-offset: 4px;
    border-radius: 999px;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 900;
}
.nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

body.nav-open {
    overflow: hidden;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease;
}
.menu-toggle:hover {
    color: var(--primary-hover);
    transform: translateY(-1px);
}
.menu-toggle.open {
    transform: rotate(90deg);
}

.hero {
    padding-top: 160px;
    padding-bottom: 130px; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/hero-image.jpg') left center/cover no-repeat;
    z-index: -2;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.88) 40%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.25) 78%, rgba(10,10,10,0) 88%);
    z-index: -1;
}
.hero-strap {
    position: absolute;
    width: 220px;
    height: 170%;
    background-color: #fff;
    transform: rotate(23deg);
    right: 32%;
    top: -35%;
    z-index: 1;
    pointer-events: none;
}
.hero-strap-2 {
    position: absolute;
    width: 300px;
    height: 170%;
    background-color: #fff;
    transform: rotate(23deg);
    right: -14%;
    top: -35%;
    z-index: 1;
    pointer-events: none;
}
.hero-container {
    position: relative;
    z-index: 2;
    padding-left: 26px;
}
.hero-content {
    max-width: 720px;
    padding-left: 0;
    margin-top: 6px;
}
.hero-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}
.hero-actions {
    margin-top: 18px;
}
.hero-title {
    font-size: 3.45rem;
    margin-bottom: 22px;
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}
.hero-desc {
    font-size: 1.02rem;
    margin-bottom: 32px;
    color: #e1e1e1;
    max-width: 560px;
    line-height: 1.8;
    font-family: var(--font-heading);
}

/* HERO TRANSITION */
.hero-transition {
    position: relative;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 32px 0;
    margin-top: 0;
    overflow: hidden;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 12px;
}
.transition-band {
    position: relative;
    left: 50%;
    width: 120vw;
    height: 46px;
    transform: translateX(-50%) rotate(0deg);
    background: linear-gradient(90deg, #f0d889 0%, #c69a3a 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.transition-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0), rgba(255,255,255,0.18));
    opacity: 0.5;
    pointer-events: none;
}
.transition-band + .transition-band {
    margin-top: 0;
}
.band-bottom {
    transform: translateX(-50%) rotate(0deg);
    background: linear-gradient(90deg, #141414 0%, #242424 100%);
}
.band-bottom .band-track {
    color: rgba(240, 216, 137, 0.95);
}
.band-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    gap: 36px;
    padding: 0 32px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}
.band-left {
    animation: band-scroll-left 22s linear infinite;
}
.band-right {
    animation: band-scroll-right 22s linear infinite;
}
@keyframes band-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes band-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* MARQUEE SECTION */
.marquee-section {
    position: relative;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-section.reverse {
    border-top: none;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
}
.marquee-content h2 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    padding-right: 50px;
}

.scroll-left-infinite {
    animation: scroll-left-anim 40s linear infinite;
}
.scroll-right-infinite {
    animation: scroll-right-anim 40s linear infinite;
}

@keyframes scroll-left-anim {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes scroll-right-anim {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* SOBRE SECTION */
.sobre {
    padding: var(--spacing-xl) 0;
    background: radial-gradient(1200px 600px at -10% -20%, rgba(226,196,111,0.18) 0%, rgba(226,196,111,0) 60%),
        linear-gradient(135deg, #ffffff 0%, #f0e3c4 100%);
}
.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.sobre-images {
    position: relative;
}
.sobre-images .main-image {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 6px solid rgba(255,255,255,0.9);
}
.sobre-images .badge-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    z-index: 2;
    background: #ffffff;
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.sobre-content .section-title {
    margin-bottom: 25px;
    line-height: 1.1;
}
.sobre-content .section-title .title-main {
    display: block;
    font-size: 3.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

/* SOBRE —" placeholder de foto */
.sobre-photo {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 480px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 6px solid rgba(255,255,255,0.9);
    object-fit: cover;
}
.sobre-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 480px;
    border-radius: var(--border-radius);
    background: #efe5d2;
    border: 2px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-hover);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.sobre-content .section-title .title-sub {
    display: block;
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.3;
}
.sobre-content .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #2a2a2a;
    font-weight: 500;
    font-family: var(--font-heading);
}
.sobre-content .section-subtitle .text-highlight-2 {
    color: inherit !important;
    font-weight: inherit;
}
.sobre-text p {
    margin-bottom: 15px;
    color: #3a3a3a;
    font-family: var(--font-heading);
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}
.stat-card {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(226,196,111,0.22);
    border-radius: 16px;
    padding: 14px 14px 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(17,17,17,0.58);
    font-family: var(--font-heading);
    margin-bottom: 6px;
}
.stat-value {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-bottom: 4px;
}
.stat-note {
    display: block;
    font-size: 0.9rem;
    color: rgba(17,17,17,0.68);
    font-family: var(--font-heading);
}
.sobre .divider {
    background: var(--primary-color);
}

.sobre::after {
    right: -180px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(176,141,42,0.10) 0%, rgba(176,141,42,0) 70%);
}

/* INVISALIGN SECTION */
.invisalign {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0b0b0b 0%, #161616 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.invisalign-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f0f0f;
    background: linear-gradient(90deg, #f0d889 0%, #c69a3a 100%);
    margin-bottom: 12px;
}
.invisalign .section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}
.invisalign-lead {
    font-size: 1.05rem;
    color: #e5e5e5;
    margin-bottom: 20px;
}
.invisalign-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 22px;
}
.point-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(226,196,111,0.18);
    padding: 16px 14px 18px;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}
.point-card:hover {
    transform: translateY(-4px);
    border-color: rgba(226,196,111,0.6);
    box-shadow: 0 18px 36px rgba(0,0,0,0.55), 0 0 24px rgba(226,196,111,0.35);
}
.point-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(140px 80px at 15% 0%, rgba(226,196,111,0.18) 0%, rgba(226,196,111,0) 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.point-card:hover::after {
    opacity: 1;
}
.point-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(226,196,111,0.2) 0%, rgba(226,196,111,0.05) 100%);
    border: 1px solid rgba(226,196,111,0.4);
    color: var(--primary-color);
    box-shadow: 0 8px 18px rgba(226,196,111,0.18);
}
.point-card span {
    display: inline-block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 1rem;
}
.point-card p {
    color: #e1e1e1;
    font-size: 0.82rem !important;
    line-height: 1.5;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.invisalign-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.invisalign-cta .btn-outline {
    color: #f5f5f5;
    border-color: var(--primary-color);
}
.invisalign-content p {
    font-size: 1.1rem;
    color: #d9d9d9;
    margin-bottom: 30px;
}
/* Media placeholders (para trocar por imagens depois) */
.media-placeholder {
    width: 100%;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px dashed rgba(226,196,111,0.55);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
}
.media-placeholder span {
    color: rgba(240,216,137,0.95);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
.media-placeholder--tall {
    aspect-ratio: 4/5;
}
.media-placeholder--medal {
    aspect-ratio: 1 / 1.2;
}
.invisalign-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    border: 1px solid rgba(226,196,111,0.28);
}
.invisalign-card {
    margin-top: 18px;
    background: linear-gradient(135deg, rgba(240,216,137,0.18) 0%, rgba(198,154,58,0.08) 100%);
    border: 1px solid rgba(240,216,137,0.3);
    border-radius: 16px;
    padding: 18px 20px;
    color: #f5f5f5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.invisalign-card h3 {
    margin-bottom: 6px;
    color: var(--primary-color);
}
.invisalign::after {
    right: -160px;
    top: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(226,196,111,0.14) 0%, rgba(226,196,111,0) 70%);
}

/* PROCEDIMENTOS SECTION */
.procedimentos {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--dark-900) 0%, var(--dark-700) 100%);
}
.procedimentos .section-lead {
    color: rgba(255,255,255,0.78);
    margin-bottom: 26px;
}
.procedimentos .section-title {
    color: #f5f5f5;
}
.procedimentos .section-title .text-highlight {
    color: var(--primary-color);
}
.procedimentos .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.procedimentos .btn-outline:hover {
    background: var(--primary-color);
    color: #111;
}
.procedimentos .proc-item img {
    border: 1px solid rgba(255,255,255,0.08);
}
.procedimentos .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.procedimentos::after {
    left: -220px;
    top: 120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(176,141,42,0.06) 0%, rgba(176,141,42,0) 70%);
}
.procedimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.procedimentos-note {
    margin-top: 26px;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-heading);
}

.proc-featured {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--dark-800);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
    border: 1px solid var(--border-gold-soft);
}
.proc-featured-content {
    flex: 1;
}
.proc-featured-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f5f5f5;
}
.proc-featured-content p {
    color: #d0d0d0;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}
.proc-featured-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.proc-featured-media img {
    border-radius: 15px;
    max-height: 300px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-white-soft);
}
.proc-item {
    background: var(--dark-800);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform var(--transition);
    border-top: 4px solid var(--primary-color);
    border: 1px solid var(--border-gold-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.proc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.proc-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f5f5f5;
}
.proc-item p {
    color: #d0d0d0;
    margin-bottom: 25px;
}

.proc-item > img {
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
    width: 100%;
    border: 1px solid var(--border-white-soft);
}

/* IMPLANTES SECTION */
.implantes {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f0e3c4 100%);
}
.harmonizacao {
    background: linear-gradient(135deg, #ffffff 0%, #f0e3c4 100%);
}
.implantes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}
.implantes-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.implantes-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.implantes-images {
    position: relative;
}
.implantes-images .main-image {
    border-radius: var(--border-radius);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.implantes-images .selo-image {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.implantes-bg-logo {
    position: absolute;
    right: -100px;
    bottom: -150px;
    opacity: 0.03;
    width: 800px;
    pointer-events: none;
    z-index: -1;
}
.implantes::before {
    right: -260px;
    top: -140px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(176,141,42,0.07) 0%, rgba(176,141,42,0) 70%);
}

/* CTA SECTION */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0e3c4 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    right: -220px;
    top: -260px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(176,141,42,0.10) 0%, rgba(176,141,42,0) 70%);
    pointer-events: none;
}
.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cta-content .section-tag {
    margin-bottom: 14px;
}
.cta-section .section-title {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.cta-lead {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 60ch;
    margin-bottom: 22px;
    font-family: var(--font-heading);
}
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cta-section .btn-outline {
    color: var(--text-dark);
    border-color: rgba(17,17,17,0.65);
}
.cta-section .btn-outline:hover {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}
.cta-card {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(226,196,111,0.25);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.14), 0 0 0 1px rgba(226,196,111,0.14);
    padding: 22px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.cta-card-inner {
    display: grid;
    gap: 14px;
}
.cta-metric {
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(17,17,17,0.08);
}
.cta-metric-title {
    display: block;
    color: rgba(17,17,17,0.60);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.cta-metric-value {
    display: block;
    color: var(--primary-strong);
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    font-family: var(--font-heading);
}

/* SECTION BREAK */
.section-break {
    position: relative;
    height: 70px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
.section-break::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 3px;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    border-radius: 999px;
    opacity: 0.6;
}

/* EQUIPE SECTION */
.equipe {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #191919 100%);
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}
.equipe .section-title,
.equipe-header p,
.equipe-text h3,
.equipe-text p {
    color: #f5f5f5;
}
.equipe .divider-small {
    background: var(--primary-color);
}
.equipe-header {
    margin-bottom: 40px;
}

.equipe::after {
    right: -220px;
    bottom: -260px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(176,141,42,0.07) 0%, rgba(176,141,42,0) 70%);
}
.equipe::before {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: 0;
    height: 220px;
    background: radial-gradient(1200px 220px at 50% 0%,
        rgba(226,196,111,0.22) 0%,
        rgba(226,196,111,0.10) 45%,
        rgba(226,196,111,0) 75%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}
.equipe > .container {
    position: relative;
    z-index: 1;
}

/* EQUIPE —" placeholders seguem a mesma largura das fotos */
.equipe-photos .media-placeholder {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 12px 28px rgba(0,0,0,0.5), 0 0 0 8px rgba(226,196,111,0.12);
}
.equipe-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.equipe-header p {
    color: #d8d8d8;
}
.equipe-doutora {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.equipe-photos {
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipe-carousel {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid rgba(226,196,111,0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 8px rgba(176,141,42,0.12);
}
.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease;
}
.carousel-slide.is-active {
    opacity: 1;
}
.equipe-photo,
.equipe-photo img {
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08), 0 0 0 8px rgba(176,141,42,0.12);
    margin-left: auto;
    margin-right: auto;
}
.equipe-photo--medal {
    aspect-ratio: 1 / 1.2;
}
.equipe-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.divider-small {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #f5df93 0%, #c79a3a 100%);
    margin: 10px 0 16px;
}
.equipe-text p {
    font-size: 1rem;
    color: #d8d8d8;
    margin-bottom: 14px;
}

.credentials-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    color: rgba(255,255,255,0.80);
    font-family: var(--font-heading);
}
.credentials-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(226,196,111,0.18);
    box-shadow: 0 10px 26px rgba(0,0,0,0.35);
}
.credentials-list li strong {
    color: rgba(240,216,137,0.95);
    font-weight: 700;
}

.swiper-controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}
.swiper-button-prev, .swiper-button-next {
    position: static !important;
    margin: 0 !important;
    width: 45px !important;
    height: 45px !important;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: var(--primary-color) !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold;
}
.swiper-pagination {
    position: static !important;
    width: auto !important;
    font-weight: 600;
    color: var(--text-light);
}

/* AMBIENTES SECTION */
.ambientes {
    padding: var(--spacing-xl) 0;
    background: var(--bg-cream);
}
.ambientes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ambientes-images {
    position: relative;
}
.ambientes-images .main-image {
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.ambientes-images .badge-icon {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 140px;
}
.ambientes-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
}
.ambientes-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.ambientes::after {
    left: -200px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(176,141,42,0.07) 0%, rgba(176,141,42,0) 70%);
}

/* FEEDBACK SECTION */
.feedback {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--bg-sand) 0%, #ffffff 100%);
}
.feedback .section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.feedback::after {
    right: -240px;
    top: 80px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(176,141,42,0.06) 0%, rgba(176,141,42,0) 70%);
}

/* Feedback —" placeholder de foto do autor */
.author-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #efe5d2;
    border: 2px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}
.feedback-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.google-icon {
    width: 60px;
    margin-bottom: 20px;
}
.feedback-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}
.feedback-swiper .swiper-slide {
    height: auto;
}
.feedback-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info .stars {
    height: 18px;
    margin-bottom: 5px;
}
.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
}
.feedback-swiper .swiper-pagination {
    margin-top: 40px;
}
.feedback-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* LOGO PLACEHOLDER */
.logo-placeholder {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    background: rgba(176,141,42,0.08);
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 8px 18px;
    letter-spacing: 0.04em;
}

/* GALERIA SECTION */
.galeria {
    padding: var(--spacing-xl) 0;
    background: #ffffff;
}
.galeria .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.galeria-swiper .swiper-slide img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
}
.swiper-controls-wrapper-galeria {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}
.galeria-prev, .galeria-next {
    position: static !important;
    margin: 0 !important;
    width: 45px !important;
    height: 45px !important;
    background: var(--primary-color) !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(176,141,42,0.3);
    color: #fff !important;
}
.galeria-prev::after, .galeria-next::after {
    font-size: 16px !important;
    font-weight: bold;
}
.swiper-controls-wrapper-galeria .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 5px;
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #0b0b0b 0%, #151515 100%);
    padding: 70px 0 36px;
    border-top: 1px solid rgba(226,196,111,0.2);
    color: #e6e6e6;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    align-items: start;
}
.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 14px;
}
.footer-desc {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 34ch;
}
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: #f5f5f5;
}
.footer-links ul {
    display: grid;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
}
.footer-links a:hover {
    color: var(--primary-color);
}
.footer-list {
    display: grid;
    gap: 12px;
}
.footer-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}
.footer-list i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 1.1rem;
}
.footer-list a {
    color: inherit;
}
.footer-list a:hover {
    color: var(--primary-color);
}
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-social .social-icons {
    justify-content: flex-start;
    gap: 12px;
}
.footer-social .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--primary-color);
    box-shadow: none;
}
.footer-social .social-icons a:hover {
    transform: translateY(-2px);
    background: rgba(226,196,111,0.18);
}
.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .sobre-container, 
    .invisalign-container,
    .implantes-container,
    .ambientes-container,
    .equipe-doutora {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }



    .equipe-photos {
        grid-template-columns: 1fr;
    }

    .invisalign-points {
        grid-template-columns: 1fr;
    }
    
    .proc-featured {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .badge-icon {
        width: 100px !important;
        right: -10px !important;
        left: auto !important;
    }
    
    .footer-locations {
        grid-template-columns: 1fr;
    }

    .implantes-images .selo-image {
        width: 100px;
        top: -20px;
        right: -20px;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        justify-items: center;
    }
    .cta-lead {
        margin-left: auto;
        margin-right: auto;
    }
    .cta-actions {
        justify-content: center;
    }
    .sobre-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        width: min(92vw, 520px);
        background: rgba(10,10,10,0.95);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 22px;
        padding: 18px 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.45);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
    
    .nav-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 6px;
        text-align: left;
    }

    .nav-list a {
        font-size: 1.02rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        color: rgba(255,255,255,0.92);
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(226,196,111,0.10);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    }
    .nav-list a:hover {
        background: rgba(226,196,111,0.12);
        border-color: rgba(226,196,111,0.35);
        color: #ffffff;
        transform: translateY(-1px);
    }
    .nav-list a.active {
        background: rgba(226,196,111,0.16);
        border-color: rgba(226,196,111,0.55);
        color: #ffffff;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 44px;
        min-height: 96vh;
        align-items: center;
    }

    .hero::before {
        background-image: url('assets/hero-image.jpg');
        background-position: center;
    }

    .hero::after {
        background: rgba(0,0,0,0.78);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 10px;
        text-align: center;
    }

    .hero-card {
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .hero-actions {
        margin-top: 18px;
    }

    .hero-title {
        font-size: 2.7rem;
        line-height: 1.05;
        color: var(--primary-color);
        margin-bottom: 18px;
        text-shadow: 0 14px 30px rgba(0,0,0,0.8);
    }

    .hero-desc {
        color: #e5e5e5;
        font-size: 0.98rem;
        line-height: 1.55;
        margin-top: 6px;
        margin-bottom: 30px;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .hero-highlights {
        justify-content: center;
    }

    .hero .btn-large {
        padding: 14px 26px;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        padding: 16px;
        border-radius: 16px;
    }

    .cta-card-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cta-metric {
        padding: 10px 8px;
        border-radius: 12px;
    }

    .cta-metric-title {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
        margin-bottom: 4px;
    }

    .cta-metric-value {
        font-size: 0.95rem;
    }
    
    
    
    .section-title, .sobre-content .section-title, .implantes-content .section-title, .ambientes-content .section-title {
        font-size: 1.6rem !important;
        line-height: 1.25;
    }
    .sobre-content .section-title .title-main {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    .sobre-content .section-title .title-sub {
        font-size: 1.05rem;
    }
    
    .sobre-content .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .sobre-text p {
        font-size: 0.92rem;
        line-height: 1.5;
    }
    
    .marquee-content h2 {
        font-size: 1.35rem;
    }

    .hero-transition {
        padding: 16px 0 12px;
        margin-top: 0;
    }
    .transition-band {
        width: 140vw;
        height: 36px;
    }
    .band-track {
        font-size: 0.9rem;
        gap: 18px;
        letter-spacing: 0.08em;
    }

    :root {
        --spacing-xl: 4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .scroll-bottom, .scroll-left, .scroll-right, .anim-scale, .anim-up {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}


