/* ============================================
   DERMACOR – Main Stylesheet
   Design: Luxury Medical / Feminine Minimalism
   ============================================ */

:root {
    --color-primary: #C76E80;
    --color-primary-dark: #a85a6a;
    --color-rose: #BF8A80;
    --color-rose-light: #DF9993;
    --color-gold: #C9A96E;
    --color-gold-light: #d4bb8a;
    --color-dark: #1a1a1a;
    --color-darker: #0d0d0d;
    --color-text: #555555;
    --color-text-light: #888888;
    --color-white: #ffffff;
    --color-offwhite: #f8f6f4;
    --color-border: #e8e0dc;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Raleway', sans-serif;

    --nav-height: 80px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ---- Typography ---- */
.section-subtitle {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.section-description {
    font-size: 15px;
    color: var(--color-text);
    max-width: 600px;
    line-height: 1.9;
}

/* ---- Buttons ---- */
.btn-dermacor {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 45px;
    border: 1px solid var(--color-dark);
    background: transparent;
    color: var(--color-dark);
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
}

.btn-dermacor:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-dermacor-light {
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-dermacor-light:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-dermacor-filled {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-dermacor-filled:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 2px;
    transition: var(--transition);
}

.navbar.scrolled .brand-text {
    color: var(--color-dark);
}

.navbar .nav-link {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px !important;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--color-text);
}

.navbar .nav-link:hover,
.navbar.scrolled .nav-link:hover {
    color: var(--color-primary);
}

.navbar .btn-nav {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 28px !important;
    margin-left: 10px;
}

.navbar.scrolled .btn-nav {
    border-color: var(--color-dark);
    color: var(--color-dark);
}

.navbar.scrolled .btn-nav:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-darker);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 110px);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
    font-style: italic;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 28px auto;
    opacity: 0;
    animation: fadeUp 1s 0.7s forwards;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.8s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 12px;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

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

/* ============================================
   SECTION: PROCEDIMENTOS (4 Quadros)
   ============================================ */
.procedures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 550px;
}

.procedure-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 550px;
}

.procedure-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.procedure-card:hover .procedure-card-bg {
    transform: scale(1.08);
}

.procedure-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.1) 60%
    );
    transition: var(--transition);
}

.procedure-card:hover .procedure-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.25) 60%
    );
}

.procedure-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
}

.procedure-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    position: absolute;
    right: 30px;
    bottom: 60px;
}

.procedure-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0;
    position: relative;
}

.procedure-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.5s ease;
    line-height: 1.7;
}

.procedure-card:hover .procedure-card-text {
    max-height: 120px;
    margin-top: 12px;
}

/* ============================================
   SECTION: CORPO CLÍNICO (Carrossel)
   ============================================ */
.section-clinico {
    padding: 120px 0;
    background: var(--color-offwhite);
}

.clinico-header {
    text-align: center;
    margin-bottom: 70px;
}

.clinico-slide {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.clinico-slide-img {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: var(--color-border);
    min-height: 500px;
}

.clinico-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.clinico-slide-img .img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 300;
}

.clinico-slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--color-white);
}

.clinico-crm {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.clinico-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 6px;
    line-height: 1.2;
}

.clinico-specialty {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.clinico-description {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 36px;
}

.swiper-clinico {
    position: relative;
}

.swiper-clinico .swiper-pagination {
    position: relative;
    margin-top: 40px;
    text-align: center;
}

.swiper-clinico .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    border-radius: 0;
    background: var(--color-border);
    opacity: 1;
    transition: var(--transition);
}

.swiper-clinico .swiper-pagination-bullet-active {
    width: 50px;
    background: var(--color-primary);
}

.swiper-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    color: var(--color-dark);
}

.swiper-nav-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.swiper-nav-wrapper {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}

/* ============================================
   SECTION: CIRURGIAS (Cards estilo ref)
   ============================================ */
.section-cirurgias {
    padding: 120px 0;
    background: var(--color-dark);
}

.cirurgias-header {
    text-align: center;
    margin-bottom: 70px;
}

.cirurgias-header .section-subtitle {
    color: var(--color-rose-light);
}

.cirurgias-header .section-title {
    color: var(--color-white);
}

.cirurgias-header .section-description {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.cirurgia-card {
    position: relative;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cirurgia-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.cirurgia-card:hover .cirurgia-card-bg {
    transform: scale(1.06);
}

.cirurgia-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.cirurgia-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
}

.cirurgia-card-label {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-rose-light);
    margin-bottom: 10px;
}

.cirurgia-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.cirurgia-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin 0.5s ease;
}

.cirurgia-card:hover .cirurgia-card-desc {
    max-height: 150px;
}

.cirurgia-card-link {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    transition: var(--transition);
}

.cirurgia-card-link:hover {
    border-color: var(--color-primary);
    color: var(--color-rose-light);
}

/* ============================================
   SECTION: TRATAMENTOS & ESTÉTICA
   ============================================ */
.section-tratamentos {
    padding: 120px 0;
    background: var(--color-white);
}

.tratamentos-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 600px;
}

.tratamentos-img {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    background: var(--color-offwhite);
}

.tratamentos-img .antes-depois {
    position: absolute;
    inset: 0;
    display: flex;
}

.tratamentos-img .antes,
.tratamentos-img .depois {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.tratamentos-img .antes::after {
    content: 'Antes';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
}

.tratamentos-img .depois::after {
    content: 'Depois';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
}

.tratamentos-img .img-placeholder-full {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8e0dc 0%, #d4ccc7 100%);
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.tratamentos-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tratamentos-list {
    list-style: none;
    margin-top: 30px;
}

.tratamentos-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.tratamentos-list li:hover {
    padding-left: 10px;
    color: var(--color-primary);
}

.tratamentos-list li span {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    transition: var(--transition);
}

.tratamentos-list li:hover span {
    color: var(--color-primary);
}

.tratamentos-list li i {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.tratamentos-list li:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SECTION: TECNOLOGIAS
   ============================================ */
.section-tecnologias {
    padding: 120px 0;
    background: var(--color-offwhite);
}

.tech-card {
    position: relative;
    overflow: hidden;
    height: 420px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.tech-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.tech-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.tech-card:hover .tech-card-bg {
    transform: scale(1.05);
}

.tech-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.15) 60%
    );
}

.tech-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    z-index: 2;
}

.tech-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 10px;
}

.tech-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.tech-card:hover .tech-card-text {
    max-height: 120px;
}

/* ============================================
   SECTION: EMAGRECIMENTO
   ============================================ */
.section-emagrecimento {
    padding: 120px 0;
    background: var(--color-white);
}

.emag-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    background: var(--color-dark);
    transition: var(--transition);
    cursor: pointer;
}

.emag-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: all 0.8s ease;
}

.emag-card:hover .emag-card-bg {
    opacity: 0.35;
    transform: scale(1.05);
}

.emag-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    z-index: 2;
}

.emag-card-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 8px;
}

.emag-card-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.emag-card:hover .emag-card-text {
    max-height: 100px;
}

/* ============================================
   SECTION: SOBRE A CLÍNICA
   ============================================ */
.section-sobre {
    padding: 120px 0;
    background: var(--color-offwhite);
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sobre-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.sobre-feature:hover {
    border-color: var(--color-primary);
}

.sobre-feature i {
    font-size: 28px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.sobre-feature span {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-dark);
}

/* ============================================
   SECTION: CONTATO
   ============================================ */
.section-contato {
    padding: 120px 0;
    background: var(--color-dark);
}

.contato-header {
    text-align: center;
    margin-bottom: 60px;
}

.contato-header .section-subtitle {
    color: var(--color-rose-light);
}

.contato-header .section-title {
    color: var(--color-white);
}

.contato-header .section-description {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

.contato-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 16px 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.contato-form .form-control:focus {
    box-shadow: none;
    border-color: var(--color-primary);
}

.contato-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contato-form textarea.form-control {
    min-height: 120px;
    resize: none;
}

.contato-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contato-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.contato-info-item i {
    font-size: 22px;
    color: var(--color-primary);
    margin-top: 3px;
}

.contato-info-item h4 {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.contato-info-item p {
    color: var(--color-white);
    font-size: 15px;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 80px 0 40px;
    background: var(--color-darker);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--color-primary);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
}

.footer-disclaimer {
    font-size: 11px !important;
    font-style: italic;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   MEDICO PAGE
   ============================================ */
.medico-hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    background: var(--color-offwhite);
}

.medico-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.medico-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medico-img-wrapper .img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 300;
}

.medico-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
}

.medico-back {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.medico-back:hover {
    color: var(--color-primary);
}

.medico-crm {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.medico-name {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.15;
    margin-bottom: 8px;
}

.medico-specialty {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.medico-text {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .clinico-slide-content {
        padding: 40px 50px;
    }
}

@media (max-width: 991px) {
    .procedures-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .procedure-card {
        min-height: 400px;
    }

    .clinico-slide {
        flex-direction: column;
    }

    .clinico-slide-img {
        flex: none;
        min-height: 350px;
    }

    .clinico-slide-content {
        padding: 40px 30px;
    }

    .tratamentos-wrapper {
        flex-direction: column;
    }

    .tratamentos-img {
        flex: none;
        min-height: 350px;
    }

    .tratamentos-content {
        padding: 50px 30px;
    }

    .medico-info {
        padding: 40px 20px;
    }

    .sobre-features {
        grid-template-columns: 1fr;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        margin-top: 10px;
        backdrop-filter: blur(10px);
    }

    .navbar-collapse .nav-link {
        color: var(--color-text) !important;
    }

    .navbar-collapse .btn-nav {
        border-color: var(--color-dark) !important;
        color: var(--color-dark) !important;
    }
}

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

    .procedure-card {
        min-height: 300px;
    }

    .procedure-card-text {
        max-height: 120px;
        margin-top: 8px;
    }

    .cirurgia-card {
        height: 380px;
    }

    .cirurgia-card-desc {
        max-height: 100px;
    }

    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 28px;
    }

    .clinico-slide-img {
        min-height: 300px;
    }

    .medico-img-wrapper {
        height: 400px;
    }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Page transition */
.page-transition {
    opacity: 0;
    animation: pageIn 0.6s 0.1s forwards;
}

@keyframes pageIn {
    to { opacity: 1; }
}
