@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: #D4AF37; /* Gold/Dourado */
    --primary-hover: #b5952f;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #fdfdfd;
    --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f9f6e8 100%);
    --bg-cream: #fbf9f4;
    --bg-rose: #fcf9f2;
    --bg-sand: #faf6ea;
    --gradient-btn: linear-gradient(90deg, #e8c65a 0%, #D4AF37 100%);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --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: 8px;
    --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: linear-gradient(180deg, #ffffff 0%, #faf8f7 50%, #ffffff 100%);
    overflow-x: hidden;
}

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-hover);
    font-style: italic;
    font-weight: 600;
}
.text-highlight-2 {
    color: var(--primary-color);
    font-weight: 700;
}

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

.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: var(--primary-color);
    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: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-btn);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(212,175,55, 0.2);
}
.btn-primary:hover {
    background: var(--gradient-btn);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55, 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: 0 8px 20px rgba(212,175,55, 0.28);
}
.btn-large:hover {
    background: var(--gradient-btn);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212,175,55, 0.4);
}

.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(255, 255, 255, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 60px;
    z-index: 1000;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.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;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    margin-left: -28px;
}
.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: var(--text-dark);
    letter-spacing: 0.01em;
}
.logo-subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    color: #8f8f8f;
}

.nav-list {
    display: flex;
    gap: 28px;
}
.nav-list a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.96rem;
    position: relative;
    padding: 5px 0;
    color: #7d7d7d;
}
.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%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    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: 95px; 
    min-height: 90vh;
    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(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 30%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.35) 72%, rgba(255,255,255,0) 85%);
    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-title {
    font-size: 3.45rem;
    margin-bottom: 22px;
    line-height: 1.14;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}
.hero-desc {
    font-size: 1.02rem;
    margin-bottom: 32px;
    color: #7c7c7c;
    max-width: 560px;
    line-height: 1.8;
    font-family: var(--font-heading);
}

/* HERO TRANSITION */
.hero-transition {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f0 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, #d9b64a 0%, #cfa939 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, #c6a33b 0%, #b8942f 100%);
}
.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-color: white;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.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(212,175,55,0.18) 0%, rgba(212,175,55,0) 60%),
        linear-gradient(135deg, #fbf7ef 0%, #f3ead5 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-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: var(--text-dark);
}
.sobre-content .section-subtitle .text-highlight-2 {
    color: var(--primary-hover) !important;
}
.sobre-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}
.sobre .divider {
    background: var(--primary-color);
}

.sobre::after {
    right: -180px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0) 70%);
}

/* PROCEDIMENTOS SECTION */
.procedimentos {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-sand) 100%);
}
.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(212,175,55,0.06) 0%, rgba(212,175,55,0) 70%);
}
.procedimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.proc-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform var(--transition);
    border-top: 4px solid var(--primary-color);
    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: var(--text-dark);
}
.proc-item p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* IMPLANTES SECTION */
.implantes {
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    background: #ffffff;
}
.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(212,175,55,0.07) 0%, rgba(212,175,55,0) 70%);
}

/* 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: var(--bg-cream);
}
.equipe-header {
    margin-bottom: 40px;
}

.equipe::after {
    right: -220px;
    bottom: -260px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, rgba(212,175,55,0) 70%);
}
.equipe-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.equipe-header p {
    color: var(--text-light);
}
.equipe-doutora {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.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(212,175,55,0.12);
    margin-left: auto;
    margin-right: auto;
}
.equipe-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.divider-small {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin: 10px 0 16px;
}
.equipe-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.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(212,175,55,0.07) 0%, rgba(212,175,55,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(212,175,55,0.06) 0%, rgba(212,175,55,0) 70%);
}
.feedback-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
    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 {
    flex-grow: 1;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}
.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);
}

/* 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(212,175,55,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: var(--bg-rose);
    padding: var(--spacing-xl) 0 30px;
    border-top: 1px solid #eee;
}
.site-footer .section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    justify-items: center;
}
.footer-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.footer-contact {
    text-align: center;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    justify-content: center;
}
.contact-list a:hover {
    color: var(--primary-color);
}
.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.footer-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.location-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}
.location-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.location-link {
    display: flex;
    padding: 25px 20px;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    color: var(--text-dark);
}
.location-link:hover {
    background-color: #fdfdfd;
    box-shadow: inset 0 0 0 2px var(--primary-color);
}
.location-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.view-map {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}
.icon-wrapper {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-social {
    padding-top: 50px;
}
.social-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-btn);
    border-radius: 12px;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(212,175,55, 0.2);
    transition: var(--transition);
}
.social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212,175,55, 0.4);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .sobre-container, 
    .implantes-container,
    .ambientes-container,
    .footer-grid,
    .equipe-doutora {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .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;
    }
}

@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(255,255,255,0.92);
        border: 1px solid rgba(0,0,0,0.05);
        border-radius: 22px;
        padding: 18px 16px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.18);
        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: #3b3b3b;
        background: rgba(212,175,55,0.06);
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .nav-list a:hover {
        background: rgba(212,175,55,0.14);
        color: #2f2f2f;
        transform: translateY(-1px);
    }
    .nav-list a.active {
        background: rgba(212,175,55,0.18);
        color: #2a2a2a;
    }
    
    .hero {
        padding-top: 110px;
        padding-bottom: 40px;
        min-height: 100vh;
        align-items: flex-end;
    }

    .hero::before {
        background-image: url('assets/hero-image-mobile.png');
        background-position: center;
    }

    .hero::after {
        background: linear-gradient(180deg,
            rgba(255,255,255,0) 20%,
            rgba(255,255,255,0.5) 55%,
            rgba(255,255,255,0.85) 75%,
            rgba(255,255,255,0.98) 100%);
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 0;
        padding: 155px 6px 8px;
        background: transparent;
        box-shadow: none;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
        color: #8a5f10;
        margin-bottom: 12px;
        text-shadow: 0 2px 10px rgba(255,255,255,0.7);
    }

    .hero-desc {
        color: #616161;
        font-size: 0.85rem;
        line-height: 1.5;
        margin-top: 8px;
        margin-bottom: 20px;
    }

    .hero .btn-large {
        padding: 12px 26px;
        font-size: 1rem;
    }
    
    
    
    .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: 2.1rem;
        margin-bottom: 8px;
    }
    .sobre-content .section-title .title-sub {
        font-size: 1.2rem;
    }
    
    .sobre-content .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .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;
    }
}


