/* ============================================
   DRA. CLARA ARGOLO - PREMIUM WEBSITE v4.0
   Design: Vibrante, Sofisticado, Alto Contraste
   Fontes: Cormorant Garamond + Montserrat
   ============================================ */

/* ============================================
   GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Belleza&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Gold Palette - Sutil, como toque elegante */
    --gold-50: #fdfbf9;
    --gold-100: #f8f5f0;
    --gold-200: #f0e8dd;
    --gold-300: #e2d4c2;
    --gold-400: #d4c4a8;
    --gold-500: #c9b896;
    --gold-600: #b8a882;
    --gold-700: #a89872;
    --gold-800: #8a7d5f;
    --gold-900: #6e644c;
    
    /* Rose/Nude Palette - Predominante (#DDCCC9 como referência) */
    --rose-50: #f9f6f5;
    --rose-100: #f2ebe9;
    --rose-200: #e8ddd9;
    --rose-300: #DDCCC9;
    --rose-400: #d0bbb6;
    --rose-500: #c4aaa3;
    --rose-600: #b09690;
    --rose-700: #9a817b;
    --rose-800: #7d6862;
    --rose-900: #5a4a44;
    
    /* Maroon/Wine (para seção procedimentos) */
    --maroon-50: #f9f5f5;
    --maroon-100: #f0e8e8;
    --maroon-200: #dcc8c8;
    --maroon-300: #c4a0a0;
    --maroon-400: #a67575;
    --maroon-500: #8b5555;
    --maroon-600: #6b3a3a;
    --maroon-700: #5a2e2e;
    --maroon-800: #4a2626;
    --maroon-900: #3d1f1f;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #faf9f7;
    --cream: #f5f3ef;
    --light-gray: #e8e6e3;
    --medium-gray: #9a9590;
    --dark-gray: #4a4744;
    --charcoal: #2d2a28;
    --black: #1a1817;
    --pure-black: #000000;
    
    /* Semantic */
    --color-primary: var(--rose-500);
    --color-primary-dark: var(--gold-700);
    --color-text: var(--charcoal);
    --color-text-light: var(--medium-gray);
    --color-text-muted: #6b6560;
    --color-border: var(--gold-300);
    --color-border-light: var(--gold-200);
    
    /* Typography */
    --font-display: 'Belleza', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    
    /* Title Color */
    --title-color: rgb(56, 48, 48);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --space-6xl: 10rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 200ms var(--ease-out);
    --transition-base: 400ms var(--ease-out);
    --transition-slow: 600ms var(--ease-out);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@media (max-width: 767px) {
    body {
        font-size: 17px;
        font-weight: 400;
    }
}

::selection {
    background: var(--gold-300);
    color: var(--black);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--title-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 50px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

@media (max-width: 767px) {
    h1 { font-size: 2.25rem; line-height: 1.2; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

p {
    margin-bottom: 1.25rem;
}

.lead {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .lead {
        font-size: 1.125rem;
    }
}

.text-accent {
    font-style: italic;
    color: var(--rose-500);
}

.text-accent-light {
    font-style: italic;
    color: var(--rose-400);
}

.text-light {
    font-weight: 300;
    color: var(--color-text-light);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only { display: inline; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rose-500);
    margin-bottom: var(--space-lg);
}

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

.section-title {
    margin-bottom: var(--space-lg);
}

.section-title span {
    font-style: italic;
}

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

.section-description {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.8;
}

.section-header {
    margin-bottom: var(--space-4xl);
}

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

.section-header.center .section-description {
    text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-base);
}

.btn-primary {
    background: #363636;
    color: var(--white);
    border: 2px solid #363636;
}

.btn-primary:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-outline {
    background: transparent;
    color: #363636;
    border: 2px solid #363636;
}

.btn-outline:hover {
    background: #363636;
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    padding: 0.875rem 2rem;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    width: 120px;
    height: 1px;
    background: var(--light-gray);
    overflow: hidden;
}

.preloader-line {
    width: 40%;
    height: 100%;
    background: var(--rose-500);
    animation: preloader 1.2s ease-in-out infinite;
}

@keyframes preloader {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled::before {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: var(--space-md) 0;
}

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

.nav-logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    transition: all var(--transition-base);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

/* ============================================
   MOBILE MENU - Estilo Premium
   ============================================ */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
    z-index: 1001;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: flex-end;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--black);
    transition: all var(--transition-base);
    transform-origin: right center;
}

.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }

.nav-toggle:hover span:nth-child(2) {
    width: 24px;
}

.nav-toggle.active span {
    background: var(--black);
}

.nav-toggle.active span:nth-child(1) {
    width: 24px;
    transform: rotate(-45deg) translate(2px, 2px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.nav-toggle.active span:nth-child(3) {
    width: 24px;
    transform: rotate(45deg) translate(2px, -2px);
}

/* Mobile Menu Fullscreen */
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 120px var(--space-xl) var(--space-2xl);
    overflow-y: auto;
    z-index: 1000;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.nav-menu li:first-child {
    border-top: 1px solid var(--light-gray);
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.nav-link::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--medium-gray);
    border-bottom: 1.5px solid var(--medium-gray);
    transform: rotate(-45deg);
    transition: all var(--transition-fast);
}

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

.nav-link:hover::after {
    border-color: var(--gold-600);
    transform: rotate(-45deg) translate(2px, 2px);
}

.nav-link-cta {
    background: transparent;
    border: none;
    color: var(--gold-600);
    font-weight: 600;
}

.nav-link-cta::after {
    border-color: var(--gold-600);
}

/* Desktop Menu */
@media (min-width: 992px) {
    .nav-toggle { display: none; }
    
    .nav-menu {
        display: flex;
        position: static;
        background: transparent;
        flex-direction: row;
        padding: 0;
        gap: var(--space-2xl);
        overflow: visible;
        align-items: center;
    }
    
    .nav-menu li {
        border: none;
        display: flex;
        align-items: center;
    }
    
    .nav-menu li:first-child {
        border: none;
    }
    
    .nav-link {
        font-size: 0.8125rem;
        padding: 0;
        display: flex;
        align-items: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold-600);
        transition: width var(--transition-base);
    }
    
    .nav-link {
        position: relative;
    }
    
    .nav-link:hover::before {
        width: 100%;
    }

    .nav-link-cta {
        padding: 0.75rem 1.5rem;
        border: 1.5px solid var(--black);
        color: var(--black);
    }
    
    .nav-link-cta::before {
        display: none;
    }
    
    .nav-link-cta:hover {
        background: var(--black);
        color: var(--white);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.avif') center center / cover no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 40%,
        rgba(255, 255, 255, 0.65) 70%,
        rgba(255, 255, 255, 0.4) 100%
    );
}

.hero-pattern {
    display: none;
}

.hero-content {
    position: relative;
    padding: var(--space-5xl) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-logo {
    display: none;
}

.hero-text {
    max-width: 650px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--space-xl);
    color: var(--black);
}

.hero-title .text-accent {
    display: inline;
    font-style: italic;
    color: var(--gold-600);
}

.hero-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    line-height: 1.9;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 576px) {
    .hero-cta {
        flex-direction: row;
        gap: var(--space-lg);
    }
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero-scroll span {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.hero-curve {
    display: block;
    width: 100%;
    height: 80px;
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) forwards;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

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

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

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre {
    position: relative;
    padding: var(--space-6xl) 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-5xl);
    }
}

.sobre-image-wrapper {
    position: relative;
}

.sobre-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cream);
}

.sobre-foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-slow);
}

.sobre-image:hover .sobre-foto {
    transform: scale(1.03);
}

.sobre-image-decoration {
    position: absolute;
    top: -16px;
    right: -16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border: 1px solid var(--gold-400);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.sobre-content {
    padding: var(--space-lg) 0;
}

.sobre-text {
    margin-bottom: var(--space-2xl);
}

.sobre-text p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.sobre-text .lead {
    padding-left: var(--space-lg);
    border-left: 2px solid var(--gold-500);
    margin-bottom: var(--space-xl);
}

.sobre-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.credential:hover {
    background: var(--rose-200);
    transform: translateY(-2px);
}

.credential-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-600);
    border-radius: 50%;
}

.credential-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    stroke-width: 2;
}

.credential-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text);
}

.sobre-decoration {
    display: none;
}

/* ============================================
   ESPECIALIDADES SECTION
   ============================================ */
.especialidades {
    position: relative;
    padding: var(--space-6xl) 0;
    background: var(--rose-100);
}

.especialidades-bg {
    display: none;
}

.especialidades-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .especialidades-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   SPECIALTY CARDS
   ============================================ */
.especialidade-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.especialidade-card:hover {
    border-color: var(--rose-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Card Destaque - Rinoplastia */
.especialidade-featured {
    background: #363636;
    border-color: #363636;
    color: var(--white);
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .especialidade-featured {
        grid-column: span 1;
    }
}

.especialidade-featured:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

.especialidade-featured .card-title,
.especialidade-featured .card-description {
    color: var(--white);
}

.especialidade-featured .card-description {
    opacity: 0.8;
}

.especialidade-featured .card-icon svg {
    stroke: var(--rose-300);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--rose-600);
    stroke-width: 1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--black);
}

.card-description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.card-tag {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--gold-600);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.card-tag-secondary {
    display: inline-block;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--cream);
    color: var(--gold-700);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================
   PROCEDIMENTOS SECTION - Design Criativo
   ============================================ */
.procedimentos {
    position: relative;
    padding: var(--space-6xl) 0;
    background: #B2976D;
    overflow: hidden;
}

/* Padrões decorativos de fundo */
.procedimentos::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg width='300' height='300' viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M150 30 C160 80 180 120 150 150 C120 180 80 160 30 150' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.08'/%3E%3Cpath d='M150 50 C155 90 170 120 150 145 C130 170 90 155 50 145' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E") right center no-repeat,
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E") right 100px top 50% no-repeat;
    background-size: 400px, 300px;
    pointer-events: none;
    opacity: 0.5;
}

.procedimentos .container {
    position: relative;
    z-index: 1;
}

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

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

.procedimentos .section-title .text-light {
    color: rgba(255, 255, 255, 0.7);
}

.procedimentos-wrapper {
    display: grid;
    gap: var(--space-4xl);
}

@media (min-width: 768px) {
    .procedimentos-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5xl);
    }
}

.procedimentos-col {
    position: relative;
}

.procedimentos-subtitle {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.subtitle-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.subtitle-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-400);
    stroke-width: 1.5;
}

.procedimentos-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.procedimentos-list li {
    position: relative;
    padding: var(--space-md) 0;
    padding-left: var(--space-lg);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.procedimentos-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--gold-500);
    transition: all var(--transition-fast);
}

.procedimentos-list li:hover {
    color: var(--white);
    padding-left: calc(var(--space-lg) + 6px);
    background: rgba(255, 255, 255, 0.03);
}

.procedimentos-list li:hover::before {
    width: 12px;
    background: var(--gold-400);
}

.procedimentos-note {
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.procedimentos-note p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.procedimentos-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.wave-decoration {
    display: block;
    width: 100%;
    height: 80px;
    color: var(--off-white);
}

/* Usar curva igual ao hero */
.procedimentos .wave-decoration {
    height: 80px;
}

.procedimentos .wave-decoration path {
    d: path("M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z");
}

/* CTA Button na seção procedimentos */
.procedimentos-cta {
    margin-top: var(--space-3xl);
    text-align: center;
}

@media (min-width: 768px) {
    .procedimentos-cta {
        grid-column: 1 / -1;
    }
}

/* ============================================
   LOCAIS SECTION
   ============================================ */
.locais {
    position: relative;
    padding: var(--space-6xl) 0;
    background: var(--rose-50);
}

.locais-grid {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 768px) {
    .locais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.local-card {
    background: var(--white);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.local-card:hover {
    border-color: var(--rose-400);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.local-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-200);
    border-radius: var(--radius-lg);
}

.local-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--rose-600);
    stroke-width: 1.2;
}

.local-name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    font-style: normal;
    color: var(--title-color);
    margin-bottom: var(--space-sm);
}

.local-address {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.local-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-600);
    padding-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
}

.local-link svg {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-fast);
}

.local-link:hover {
    color: var(--gold-700);
}

.local-link:hover svg {
    transform: translate(2px, -2px);
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato {
    position: relative;
    padding: var(--space-6xl) 0;
    background: #363636;
    color: var(--white);
}

.contato-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.contato-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(184, 148, 74, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 80%, rgba(184, 148, 74, 0.05) 0%, transparent 40%);
}

.contato-wrapper {
    position: relative;
    display: grid;
    gap: var(--space-4xl);
}

@media (min-width: 992px) {
    .contato-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-5xl);
        align-items: start;
    }
}

.contato-info {
    padding-right: 0;
}

@media (min-width: 992px) {
    .contato-info {
        padding-right: var(--space-2xl);
    }
}

.contato-description {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-2xl);
    line-height: 1.9;
}

.contato-channels {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.channel-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-item:hover {
    padding-left: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
}

.channel-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.channel-item:hover .channel-icon {
    background: var(--rose-500);
    border-color: var(--rose-500);
}

.channel-icon svg {
    width: 20px;
    height: 20px;
    color: var(--rose-400);
    transition: color var(--transition-fast);
}

.channel-item:hover .channel-icon svg {
    color: var(--white);
}

.channel-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--medium-gray);
}

.channel-value {
    font-size: 0.9375rem;
    color: var(--white);
}

/* ============================================
   CONTACT FORM - Layout Original
   ============================================ */
.contato-form-wrapper {
    background: var(--white);
    padding: var(--space-2xl);
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contato-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-300), var(--rose-400));
}

@media (min-width: 576px) {
    .contato-form-wrapper {
        padding: var(--space-3xl);
    }
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: var(--space-2xl);
    text-align: center;
    position: relative;
    padding-bottom: var(--space-lg);
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--rose-400);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 576px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--black);
    background: var(--rose-50);
    border: 1px solid var(--rose-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--rose-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(221, 204, 201, 0.3);
}

.form-input::placeholder {
    color: var(--medium-gray);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1817' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Loading & Success */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-loading .spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-success {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: var(--radius-md);
    text-align: center;
    color: #155724;
}

.form-success svg {
    color: #28a745;
    margin-bottom: var(--space-sm);
}

.form-success p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-brand { 
        text-align: center;
        justify-content: center;
    }
}

.footer-logo {
    width: 248px;
    height: 213px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg) var(--space-xl);
}

.footer-links a {
    font-size: 0.8125rem;
    color: var(--medium-gray);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--rose-500);
    border-color: var(--rose-500);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    color: var(--medium-gray);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-bottom: var(--space-xs);
}

.footer-disclaimer {
    font-size: 0.6875rem;
    color: var(--dark-gray);
}

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

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

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

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    padding: var(--space-sm) var(--space-md);
    background: var(--black);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--black);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .hero-content {
        padding-top: var(--space-6xl);
        padding-bottom: var(--space-5xl);
    }
    
    .hero-cta {
        margin-bottom: var(--space-3xl);
    }
    
    .whatsapp-float {
        bottom: var(--space-lg);
        right: var(--space-lg);
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .navbar,
    .whatsapp-float,
    .hero-scroll,
    .preloader {
        display: none !important;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-500);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-600);
}
