*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --rose: #C8375A;
    --rose-light: #E8768C;
    --rose-pale: #FDF0F3;
    --rose-mist: #F9DDE4;
    --gold: #C9A84C;
    --gold-light: #EDD891;
    --ink: #1C1F2E;
    --slate: #4A5568;
    --mist: #F7F8FC;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-rose: 0 24px 60px -12px rgba(200, 55, 90, 0.2);
    --shadow-soft: 0 20px 60px -10px rgba(28, 31, 46, 0.08);
    --shadow-card: 0 8px 32px rgba(28, 31, 46, 0.06);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
}
.reveal-left.visible {
    opacity: 1;
    transform: none;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
}
.reveal-right.visible {
    opacity: 1;
    transform: none;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: all 0.4s ease;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(200, 55, 90, 0.1), 0 8px 32px rgba(28, 31, 46, 0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
    max-width: 1280px;
    margin: 0 auto;
}
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.logo span {
    color: var(--rose);
    font-style: italic;
    font-weight: 400;
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--rose);
    transition: width 0.3s cubic-bezier(.22, 1, .36, 1);
}
.nav-links a:hover {
    color: var(--rose);
}
.nav-links a:hover::after {
    width: 100%;
}
.btn-nav {
    background: var(--rose);
    color: white;
    border: none;
    padding: 11px 26px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(200, 55, 90, 0.3);
    cursor: none;
}
.btn-nav:hover {
    background: #A82C4A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 55, 90, 0.4);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink);
    cursor: none;
}
.hero {
    min-height: 100vh;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.5;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #F9A8BD 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float1 12s ease-in-out infinite;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #EDD891 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation: float2 16s ease-in-out infinite;
}
.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #C8375A33 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation: float3 10s ease-in-out infinite;
}
@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }
    50% {
        transform: translate(-30px, 40px) scale(1.05)
    }
}
@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(20px, -30px) scale(1.08)
    }
}
@keyframes float3 {
    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95)
    }
}
.hero-badge {
    position: absolute;
    top: 140px;
    right: 120px;
    width: 100px;
    height: 100px;
    animation: spin-slow 20s linear infinite;
    opacity: 0.12;
    z-index: 0;
}
.hero-badge svg {
    width: 100%;
    height: 100%;
}
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--rose-mist);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--rose);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(200, 55, 90, 0.08);
    animation: fadeSlideDown 0.7s ease both;
}
.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4)
    }
}
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.8s 0.15s ease both;
}
h1 em {
    color: var(--rose);
    font-style: italic;
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: none
    }
}
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: none
    }
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s 0.3s ease both;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s 0.45s ease both;
}
.btn-primary {
    background: var(--rose);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(.22, 1, .36, 1);
    box-shadow: 0 8px 28px rgba(200, 55, 90, 0.35);
    cursor: none;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(200, 55, 90, 0.45);
}
.btn-primary:hover::after {
    opacity: 1;
}
.btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(28, 31, 46, 0.2);
    color: var(--ink);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: none;
}
.btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose);
    transform: translateY(-2px);
}
.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
    animation: fadeSlideUp 0.8s 0.6s ease both;
}
.trust-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate);
}
.trust-pill i {
    color: var(--rose);
    font-size: 1rem;
}
.hero-visual {
    position: relative;
    animation: fadeSlideUp 0.9s 0.2s ease both;
}
.hero-photo {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 48px;
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    box-shadow: var(--shadow-rose);
    border: 6px solid var(--white);
    position: relative;
    z-index: 1;
}
.hero-float-card {
    position: absolute;
    bottom: 48px;
    left: -48px;
    z-index: 2;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 20px 26px;
    box-shadow: 0 20px 60px rgba(28, 31, 46, 0.12);
    animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
    0%,
    100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}
.hero-float-card .fc-top {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 8px;
}
.hero-float-card .fc-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
}
.hero-float-card .fc-sub {
    font-size: 0.8rem;
    color: var(--slate);
    margin-top: 4px;
}
.hero-float-rating {
    position: absolute;
    top: 40px;
    right: -32px;
    z-index: 2;
    background: var(--white);
    border-radius: 20px;
    padding: 14px 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--rose-mist);
    animation: float-card 8s 2s ease-in-out infinite;
}
.stars-row {
    color: #F59E0B;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.stars-label {
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 4px;
    text-align: center;
}
.dot-grid {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    opacity: 0.3;
}
.dot-grid span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose);
    display: block;
}
.trust-bar {
    background: var(--ink);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
}
.trust-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.tb-item {
    text-align: center;
}
.tb-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--rose-light);
    display: block;
    line-height: 1;
}
.tb-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}
.tb-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}
.section {
    padding: 100px 0;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rose);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--rose);
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-title em {
    color: var(--rose);
    font-style: italic;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 500px;
    line-height: 1.7;
}
.section-head {
    margin-bottom: 60px;
}
#especialidades {
    background: var(--mist);
}
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.spec-card {
    background: var(--white);
    border-radius: 32px;
    padding: 40px 32px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
    overflow: hidden;
    cursor: none;
}
.spec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose-pale), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 32px;
}
.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-rose);
    border-color: rgba(200, 55, 90, 0.15);
}
.spec-card:hover::before {
    opacity: 1;
}
.spec-card:hover .spec-icon {
    background: var(--rose);
}
.spec-card:hover .spec-icon i {
    color: white;
}
.spec-card:hover .spec-num {
    color: rgba(200, 55, 90, 0.08);
}
.spec-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(28, 31, 46, 0.04);
    line-height: 1;
    transition: color 0.4s;
    pointer-events: none;
}
.spec-icon {
    width: 72px;
    height: 72px;
    background: var(--rose-pale);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}
.spec-icon i {
    font-size: 2rem;
    color: var(--rose);
    transition: color 0.3s;
}
.spec-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}
.spec-card p {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.spec-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rose);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: gap 0.3s;
}
.spec-link:hover {
    gap: 14px;
}
.steps-section {
    background: var(--white);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(12.5% + 38px);
    right: calc(12.5% + 38px);
    height: 2px;
    background: linear-gradient(90deg, var(--rose-mist), var(--rose-light), var(--rose-mist));
    z-index: 0;
}
.step-card {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 76px;
    height: 76px;
    background: var(--white);
    border: 2px solid var(--rose-mist);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose);
    transition: all 0.3s;
    box-shadow: 0 0 0 8px var(--rose-pale);
}
.step-card:hover .step-num {
    background: var(--rose);
    color: white;
    border-color: var(--rose);
    transform: scale(1.1);
}
.step-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}
.gallery-section {
    background: var(--mist);
}
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}
.gal-item {
    border-radius: 28px;
    overflow: hidden;
    background: #e0e7ef;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
    border: 4px solid var(--white);
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    position: relative;
}
.gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(200, 55, 90, 0.6), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}
.gal-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-rose);
    border-color: rgba(200, 55, 90, 0.3);
}
.gal-item:hover::after {
    opacity: 1;
}
.gal-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    aspect-ratio: 4/5;
}
.gal-item:nth-child(2) {
    aspect-ratio: 3/2;
}
.gal-item:nth-child(3) {
    aspect-ratio: 3/2;
}
.gal-item:nth-child(4) {
    aspect-ratio: 3/2;
}
.gal-item:nth-child(5) {
    aspect-ratio: 3/2;
}
.gal-item:nth-child(6) {
    aspect-ratio: 3/2;
}
.gallery-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.gallery-note i {
    color: var(--rose);
}
.testimonials-section {
    background: var(--ink);
    padding: 100px 0;
}
.testimonials-section .section-title {
    color: var(--white);
}
.testimonials-section .section-sub {
    color: rgba(255, 255, 255, 0.5);
}
.testimonials-section .section-tag {
    color: var(--rose-light);
}
.testimonials-section .section-tag::before {
    background: var(--rose-light);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    cursor: none;
    backdrop-filter: blur(10px);
}
.testi-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(200, 55, 90, 0.4);
    transform: translateY(-8px);
}
.testi-stars {
    color: var(--gold-light);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--rose-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}
.testi-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}
.testi-proc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}
.about-section {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: url('https://images.unsplash.com/photo-1681939278218-a755fb2bf2d3?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0') center/cover;
    border-radius: 60px 60px 60px 20px;
    box-shadow: var(--shadow-rose);
    border: 6px solid var(--white);
}
.about-years {
    position: absolute;
    bottom: 60px;
    right: -32px;
    background: var(--rose);
    color: white;
    border-radius: 24px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(200, 55, 90, 0.4);
}
.about-years .yr-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}
.about-years .yr-label {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 4px;
}
.about-decoration {
    position: absolute;
    top: -24px;
    left: -24px;
    z-index: -1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--rose-mist);
    opacity: 0.6;
}
.cro-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose-pale);
    border: 1px solid var(--rose-mist);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--rose);
    font-weight: 500;
    margin: 20px 0 28px;
}
.cro-tag i {
    font-size: 0.9rem;
}
.about-text p {
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 20px;
}
.clinic-shots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}
.clinic-shot {
    aspect-ratio: 1;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
    cursor: none;
}
.clinic-shot:hover {
    transform: scale(1.05);
}
.clinic-shot span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 10px 8px;
    background: linear-gradient(0deg, rgba(200, 55, 90, 0.9), transparent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
}
.faq-section {
    background: var(--mist);
}
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}
.faq-item.active {
    border-color: rgba(200, 55, 90, 0.2);
    box-shadow: 0 8px 32px rgba(200, 55, 90, 0.1);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    transition: color 0.3s;
}
.faq-q:hover {
    color: var(--rose);
}
.faq-item.active .faq-q {
    color: var(--rose);
}
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rose-pale);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s;
    cursor: none;
}
.faq-item.active .faq-icon {
    background: var(--rose);
    color: white;
    transform: rotate(180deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(.22, 1, .36, 1), padding 0.3s;
    color: var(--slate);
    line-height: 1.7;
    padding: 0 28px;
    font-size: 0.97rem;
}
.faq-item.active .faq-a {
    max-height: 200px;
    padding-bottom: 24px;
}
.contact-section {
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .info-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}
.info-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--rose-pale);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 1.3rem;
}
.info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--rose);
    font-weight: 600;
    margin-bottom: 4px;
}
.info-val {
    color: var(--ink);
    font-size: 0.97rem;
    line-height: 1.5;
}
.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--white);
    margin: 32px 0;
}
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.contact-form-wrap {
    background: var(--mist);
    border-radius: 36px;
    padding: 40px;
}
.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 28px;
    line-height: 1.2;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid rgba(28, 31, 46, 0.1);
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.97rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: all 0.3s;
    -webkit-appearance: none;
    cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(200, 55, 90, 0.08);
}
.form-group textarea {
    border-radius: 18px;
    resize: none;
}
.btn-submit {
    width: 100%;
    background: var(--rose);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: none;
    box-shadow: 0 8px 24px rgba(200, 55, 90, 0.3);
}
.btn-submit:hover {
    background: #A82C4A;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(200, 55, 90, 0.4);
}
footer {
    background: var(--ink);
    padding: 80px 0 40px;
    border-radius: 60px 60px 0 0;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.footer-logo span {
    color: var(--rose-light);
    font-style: italic;
}
.footer-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 20px;
}
.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover {
    color: var(--rose-light);
    transform: translateX(6px);
}
.footer-contact-list p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.footer-contact-list i {
    color: var(--rose-light);
    flex-shrink: 0;
    margin-top: 2px;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.socials a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: none;
}
.socials a:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
    transform: translateY(-3px);
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletter-form input {
    padding: 13px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
    cursor: none;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.newsletter-form input:focus {
    border-color: var(--rose);
    background: rgba(255, 255, 255, 0.1);
}
.newsletter-form button {
    padding: 13px;
    border-radius: 12px;
    border: none;
    background: var(--rose);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: none;
    transition: all 0.3s;
}
.newsletter-form button:hover {
    background: #A82C4A;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: gap;
    gap: 16px;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}
.whatsapp-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(200, 55, 90, 0.5);
    transition: all 0.3s;
    cursor: none;
    animation: fab-pulse 3s ease-in-out infinite;
}
@keyframes fab-pulse {
    0%,
    100% {
        box-shadow: 0 12px 40px rgba(200, 55, 90, 0.5)
    }
    50% {
        box-shadow: 0 16px 50px rgba(200, 55, 90, 0.7)
    }
}
.whatsapp-fab:hover {
    transform: scale(1.1) rotate(-5deg);
}
.cta-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: var(--rose);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(200, 55, 90, 0.5);
    z-index: 89;
}
.portfolio-notice {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: rgba(28, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.78rem;
    z-index: 91;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(200, 55, 90, 0.3);
    max-width: 380px;
    pointer-events: none;
}
.portfolio-notice i {
    color: var(--rose);
    flex-shrink: 0;
}
.portfolio-notice strong {
    color: var(--rose-light);
}
@media (max-width: 1024px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .steps-grid::before {
        display: none;
    }
}
@media (max-width: 800px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px 32px;
        box-shadow: 0 20px 60px rgba(28, 31, 46, 0.12);
        gap: 20px;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        gap: 16px;
    }
    .btn-nav {
        width: fit-content;
    }
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-float-card {
        left: 16px;
        bottom: 24px;
    }
    .hero-float-rating {
        right: 16px;
        top: 24px;
    }
    .whatsapp-fab {
        display: none;
    }
    .cta-mobile {
        display: block;
    }
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .spec-grid {
        grid-template-columns: 1fr;
    }
    .gal-item:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-mosaic .gal-item {
        aspect-ratio: 1;
    }
}
@media (max-width: 600px) {
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .clinic-shots {
        grid-template-columns: repeat(3, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .portfolio-notice {
        left: 12px;
        right: 12px;
        bottom: 90px;
    }
}