/* ==========================================================================
   CSS Variables - Premium Aesthetic Clinic Theme
   ========================================================================== */
:root {
    /* Colors - Premium Palette */
    --background: hsl(30, 25%, 98%);
    --foreground: hsl(25, 15%, 20%);
    
    --primary: hsl(15, 35%, 75%);
    --primary-foreground: hsl(25, 15%, 15%);
    
    --secondary: hsl(35, 25%, 93%);
    --secondary-foreground: hsl(25, 15%, 25%);
    
    --accent: hsl(40, 55%, 55%);
    --accent-foreground: hsl(40, 60%, 20%);
    
    --muted: hsl(30, 10%, 90%);
    --muted-foreground: hsl(25, 10%, 45%);
    
    --border: hsl(30, 20%, 88%);
    --input: hsl(30, 20%, 88%);
    --ring: hsl(15, 35%, 70%);
    
    /* Custom Colors */
    --nude-rose: hsl(15, 40%, 88%);
    --nude-rose-dark: hsl(15, 35%, 75%);
    --warm-beige: hsl(35, 30%, 95%);
    --warm-gray: hsl(25, 8%, 55%);
    --soft-gold: hsl(40, 55%, 55%);
    --soft-gold-light: hsl(40, 50%, 75%);
    --cream: hsl(40, 30%, 97%);
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(35, 30%, 97%) 0%, hsl(15, 40%, 94%) 50%, hsl(35, 25%, 95%) 100%);
    --gradient-card: linear-gradient(180deg, hsl(30, 25%, 99%) 0%, hsl(35, 20%, 96%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(40, 55%, 60%) 0%, hsl(35, 50%, 70%) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(25, 15%, 20%, 0.08);
    --shadow-card: 0 8px 30px -8px hsla(25, 15%, 20%, 0.1);
    --shadow-elevated: 0 20px 50px -15px hsla(25, 15%, 20%, 0.15);
    --shadow-glow: 0 0 40px hsla(40, 55%, 55%, 0.2);
    
    /* Borders */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 90px;
}


/* ==========================================================================
   Images Responsive
   ========================================================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
}

.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--secondary);
}

/* ==========================================================================
   MODERN NAVBAR - CORRIGIDA E FUNCIONAL
   ========================================================================== */
.header.modern-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 0;
    background: transparent;
    backdrop-filter: none;
    transition: var(--transition-smooth);
}

.navbar.modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.navbar.modern .logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    z-index: 10001;
}

.navbar.modern .logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-foreground);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 169, 114, 0.3);
}

.navbar.modern .logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(198, 169, 114, 0.4);
}

/* Menu Desktop */
.nav-menu.modern {
    display: flex;
    align-items: center;
    gap: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link.modern {
    position: relative;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--foreground);
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 25px;
    white-space: nowrap;
}

.nav-link.modern:hover {
    opacity: 1;
    color: var(--foreground);
    background: rgba(198, 169, 114, 0.1);
}

.nav-link.modern.active {
    opacity: 1;
    color: var(--accent);
    font-weight: 600;
    background: rgba(198, 169, 114, 0.15);
}

/* CTA Button */
.nav-cta.modern {
    flex: 0 0 auto;
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(198, 169, 114, 0.3);
    white-space: nowrap;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10001;
}

.nav-cta.modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(198, 169, 114, 0.4);
}

/* ==========================================================================
   MOBILE MENU - FUNCIONAL 100%
   ========================================================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--foreground);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    background-color: var(--foreground);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--foreground);
}

/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(30px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 100px 30px 50px;
    overflow-y: auto;
}

.mobile-nav-link {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--foreground);
    padding: 20px 0;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.8;
    display: block;
}

.mobile-menu.active .mobile-nav-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    opacity: 1;
    color: var(--accent);
    transform: translateX(10px);
}

.mobile-nav-cta {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    padding: 20px 40px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 8px 25px rgba(198, 169, 114, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(198, 169, 114, 0.4);
}

/* Overlay de fundo */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.deco-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
}

.deco-1 {
    width: 256px;
    height: 256px;
    background-color: var(--primary);
    top: 20%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.deco-2 {
    width: 384px;
    height: 384px;
    background-color: var(--accent);
    bottom: 20%;
    left: 10%;
    animation: float 5s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 40px;
}

.hero-badge i {
    color: var(--accent);
    font-size: 0.9rem;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
    opacity: 0.7;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--foreground);
}

.underline-svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 12px;
    color: var(--accent);
    opacity: 0.4;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--foreground);
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--foreground);
    opacity: 0.4;
    font-size: 0.95rem;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1.5s infinite;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--foreground);
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.scroll-link:hover {
    opacity: 0.6;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.gold-line {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin: 0 auto 30px;
}

.gold-line-left {
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin-bottom: 30px;
}

/* ==========================================================================
   About Section - IMAGEM IGUAL AO TEXTO
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--secondary);
}

/* Grid com altura igual */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* Garante que as colunas tenham a mesma altura */
    min-height: 600px; /* Altura mínima para desktop */
}

/* Coluna da Imagem - altura total */
.about-image-col {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
}

/* Imagem ajustada para preencher toda a coluna */
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    display: block;
}

/* Floating Card ajustado */
.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--background);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    max-width: 300px;
    z-index: 2;
}

.floating-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-foreground);
    font-size: 1.2rem;
}

.floating-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.floating-subtitle {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* Coluna de Conteúdo - mesma altura */
.about-content-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Stats */
.milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    flex-shrink: 0;
}

.milestone {
    text-align: center;
    padding: 30px 20px;
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.milestone.animated {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.4s ease-out forwards;
}

.milestone.animated:nth-child(1) {
    animation-delay: 0.1s;
}

.milestone.animated:nth-child(2) {
    animation-delay: 0.2s;
}

.milestone.animated:nth-child(3) {
    animation-delay: 0.3s;
}

.milestone h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.milestone p {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    flex-grow: 1;
}

.value-card {
    background-color: var(--background);
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    height: fit-content;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-foreground);
    font-size: 1.2rem;
}

.value-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--foreground);
}

.value-description {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ==========================================================================
   Procedures Preview
   ========================================================================== */
.procedures-preview {
    padding: 100px 0;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.procedure-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.procedure-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elevated);
}

.procedure-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--primary-foreground);
}

.procedure-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--foreground);
}

.procedure-description {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.6;
}

.procedure-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
}

.procedure-link:hover {
    gap: 12px;
}

/* ==========================================================================
   Results Preview
   ========================================================================== */
.results-preview {
    padding: 100px 0;
    background-color: var(--background);
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--accent);
    padding: 20px;
    border-radius: var(--radius);
    max-width: 700px;
    margin: 0 auto 50px;
}

.disclaimer-box i {
    color: var(--accent-foreground);
    font-size: 1.2rem;
    margin-top: 4px;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: var(--accent-foreground);
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.result-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.before-after {
    display: flex;
    height: 100%;
}

.before, .after {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.result-label {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    z-index: 2;
}

.before .result-label {
    left: 15px;
}

.after .result-label {
    right: 15px;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 24px;
    color: var(--background);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.result-card:hover .result-overlay {
    transform: translateY(0);
}

.result-procedure {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.result-area {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--foreground);
    opacity: 0.5;
}

.results-cta-text {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 30px;
}

/* ==========================================================================
   Testimonials Preview
   ========================================================================== */
.testimonials-preview {
    padding: 100px 0;
    background-color: var(--secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 24px;
    quotes: "«" "»" "‹" "›";
}

.testimonial-text::before {
    content: open-quote;
}

.testimonial-text::after {
    content: close-quote;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.author-procedure {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

.rating-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: var(--secondary);
    padding: 40px;
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
}

.rating-item {
    text-align: center;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.stars i {
    color: var(--accent);
    font-size: 1.2rem;
}

.rating-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

.rating-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-hero);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--foreground);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 40px;
    line-height: 1.6;
}

.urgency-note {
    background-color: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    margin: 30px 0;
}

.urgency-note p {
    font-size: 0.95rem;
    color: var(--foreground);
    margin: 0;
}

.urgency-note strong {
    color: var(--accent);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--foreground);
    color: var(--background);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--foreground);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--background);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--background);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--background);
    opacity: 0.7;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-list a:hover {
    opacity: 1;
    color: var(--accent);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--background);
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 0.9rem;
    color: var(--background);
    opacity: 0.5;
    margin: 0;
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -8px);
    }
    60% {
        transform: translate(-50%, -4px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* ==========================================================================
   Responsive Styles - About Section Específica
   ========================================================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1024px) and (min-width: 769px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    /* About Section Tablet */
    .about-grid {
        gap: 40px;
        min-height: 500px;
    }
    
    .image-container {
        min-height: 450px;
    }
    
    .procedures-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile (768px-) */
@media (max-width: 768px) {
    body {
        padding-top: 80px !important;
    }
    
    .header.modern-navbar {
        padding: 10px 0 !important;
    }
    
    .navbar.modern {
        padding: 8px 15px !important;
        max-width: 95% !important;
    }
    
    /* Esconde menu desktop em mobile */
    .nav-menu.modern {
        display: none !important;
    }
    
    /* Mostra hamburger */
    .menu-toggle {
        display: flex !important;
    }
    
    /* Ajusta CTA para mobile */
    .nav-cta.modern {
        padding: 10px !important;
        width: 44px !important;
        height: 44px !important;
        justify-content: center !important;
    }
    
    .nav-cta.modern span {
        display: none !important;
    }
    
    .nav-cta.modern i {
        margin: 0 !important;
        font-size: 1.1rem !important;
    }
    
    /* Ajusta logo */
    .navbar.modern .logo-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.5rem !important;
    }
    
    /* Layout Responsive */
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* About Section Responsive - MUDANÇA CRÍTICA */
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .about-image-col {
        order: -1;
        height: 400px; /* Altura fixa para mobile */
    }
    
    .image-container {
        height: 100%;
    }
    
    .about-image {
        height: 100%;
        object-fit: cover;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .about-content-col {
        height: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Procedures Responsive */
    .procedures-preview {
        padding: 60px 0;
    }
    
    .procedures-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .procedure-card {
        padding: 30px 20px;
    }
    
    /* Results Responsive */
    .results-preview {
        padding: 60px 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-card {
        aspect-ratio: 4/3;
    }
    
    /* Testimonials Responsive */
    .testimonials-preview {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rating-banner {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }
    
    .rating-divider {
        width: 60px;
        height: 1px;
    }
    
    /* CTA Responsive */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 15px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Milestones Responsive */
    .milestones {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 30px 0;
    }
    
    .milestone {
        padding: 20px 15px;
    }
    
    .milestone h3 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        min-height: calc(100vh - 80px) !important;
    }
}

/* Small Mobile (480px-) */
@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* About Section - Mobile pequeno */
    .about-image-col {
        height: 350px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    /* Trust Badges */
    .trust-badges {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    /* Milestones smaller */
    .milestones {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .milestone {
        padding: 15px 10px;
    }
    
    .milestone h3 {
        font-size: 1.5rem;
    }
    
    .milestone p {
        font-size: 0.85rem;
    }
    
    /* Values Grid mobile */
    .values-grid {
        gap: 15px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .hero-ctas .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* Rating banner */
    .rating-banner {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .rating-divider {
        width: 60px;
        height: 1px;
    }
    
    /* WhatsApp float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}