/* Design System & Variables */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --primary-light: #e0e7ff;
    --primary-glow: rgba(99, 102, 241, 0.15);
    
    --secondary: #7c3aed;
    --secondary-hover: #6d28d9;
    
    --success: #10b981;
    --success-hover: #059669;
    --success-light: #d1fae5;
    
    --danger: #f43f5e;
    --danger-hover: #e11d48;
    --danger-light: #ffe4e6;
    
    --accent: #f59e0b;
    --accent-light: #fef3c7;
    
    /* Neutrals */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Layout */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(99, 102, 241, 0.05), 0 4px 6px -2px rgba(99, 102, 241, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --shadow-primary: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
}

.text-center { text-align: center; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--text-muted); }

/* Buttons & Interactive Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    display: flex;
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(99, 102, 241, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--bg-main);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
}

/* Badges & Tags */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.badge-rating {
    background-color: #fffbeb;
    color: #b45309;
    border-color: #fde68a;
}

.badge-social {
    background-color: #f0fdf4;
    color: #15803d;
    border-color: #bbf7d0;
}

.section-tagline {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.tag-accent {
    background-color: var(--primary-light);
    color: var(--primary);
}

.tag-danger {
    background-color: var(--danger-light);
    color: var(--danger);
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.navbar.scrolled .navbar-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    -webkit-text-fill-color: initial;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 550;
    color: var(--text-muted);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    width: 100%;
}

.hero-features-list {
    display: flex;
    gap: 24px;
}

.h-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.icon-success { color: var(--success); fill: rgba(16, 185, 129, 0.1); }
.icon-accent { color: var(--accent); fill: rgba(245, 158, 11, 0.1); }
.icon-star { color: #f59e0b; fill: #f59e0b; }

.hero-visual {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.7);
    overflow: visible;
}

.hero-img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    left: -20px;
}

.badge-2 {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

.fb-title {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.fb-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}

/* Background Glow elements */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary-glow);
    top: -50px;
    right: -100px;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background-color: rgba(124, 58, 237, 0.1);
    bottom: -50px;
    left: -100px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Section Common Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 64px auto;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* Pain / Problema Section */
.pain-section {
    padding: 100px 0;
    background-color: #fffcfc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pain-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(244, 63, 94, 0.3);
}

.pain-icon-wrapper {
    margin-bottom: 20px;
}

.emoji-icon {
    font-size: 32px;
}

.pain-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pain-card-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* Transition Section */
.transition-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.transition-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.transition-text {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    font-size: 32px;
}

/* Solution / Funcionalidades Section */
.solution-section {
    padding: 100px 0;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.solution-item:last-child {
    margin-bottom: 0;
}

.solution-item.alternate {
    direction: rtl;
}

.solution-item.alternate .solution-info,
.solution-item.alternate .solution-visual {
    direction: ltr;
}

.solution-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.solution-item-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.solution-item-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.feature-list li i {
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Mockup Windows (Universal CSS Template) */
.mockup-window {
    background-color: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 540px;
}

.mockup-header {
    background-color: #111827;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 20px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dots span:nth-child(1) { background-color: #ef4444; }
.mockup-dots span:nth-child(2) { background-color: #f59e0b; }
.mockup-dots span:nth-child(3) { background-color: #10b981; }

.mockup-title {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.mockup-body {
    background-color: #0f172a;
    padding: 24px;
    color: #f8fafc;
}

/* Calendar Mockup Styling */
.calendar-mockup {
    font-size: 12px;
}

.calendar-days {
    display: grid;
    grid-template-columns: 50px repeat(5, 1fr);
    text-align: center;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.calendar-days span:first-child {
    visibility: hidden;
}

.calendar-grid {
    display: grid;
    grid-template-columns: 50px repeat(5, 1fr);
    grid-auto-rows: 56px;
    gap: 4px;
    position: relative;
}

.calendar-hour {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 8px;
    color: var(--text-light);
    font-size: 10px;
}

.calendar-slot {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 4px;
    position: relative;
}

.appointment-card {
    border-radius: 4px;
    padding: 6px;
    color: #ffffff;
    font-size: 10px;
    cursor: grab;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.appointment-card:active {
    cursor: grabbing;
}

.appointment-card.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.apt-purple {
    background: linear-gradient(135deg, #818cf8, #6366f1);
    border-left: 3px solid #4f46e5;
}

.apt-blue {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-left: 3px solid #0369a1;
}

.apt-time {
    font-weight: 700;
    font-size: 8px;
    opacity: 0.8;
}

.apt-name {
    font-weight: 700;
    display: block;
    margin: 2px 0;
}

.apt-service {
    font-size: 8px;
    opacity: 0.9;
}

.drop-zone-indicator {
    border: 2px dashed var(--primary);
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.calendar-footer-hint {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-hint {
    color: var(--accent);
    width: 16px;
    height: 16px;
}

/* Finance Mockup Styling */
.finance-mockup {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.kpi-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.kpi-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
}

.kpi-value {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.kpi-trend {
    font-size: 10px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 2px;
}

.kpi-trend i {
    width: 12px;
    height: 12px;
}

.chart-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.chart-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-light);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.current { background-color: var(--primary); }

.svg-chart-wrapper {
    position: relative;
    width: 100%;
}

.svg-chart {
    width: 100%;
    height: auto;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 10px;
    color: var(--text-light);
    padding: 0 10px;
}

/* Patient / Before/After Slider Mockup */
.patient-slider-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.patient-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.patient-avatar {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: white;
}

.patient-meta {
    display: flex;
    flex-direction: column;
}

.p-name {
    font-weight: 700;
    font-size: 13px;
}

.p-treatment {
    font-size: 11px;
    color: var(--text-light);
}

.comparison-slider-container {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    user-select: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    overflow: hidden;
    transition: width 0.05s ease-out;
}

.slider-label {
    position: absolute;
    bottom: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.label-before {
    left: 12px;
}

.label-after {
    right: 12px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #ffffff;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.05s ease-out;
}

.handle-line {
    width: 2px;
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

.handle-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-button i {
    width: 16px;
    height: 16px;
}

.slider-hint {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Permissions Mockup */
.permissions-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.role-selector {
    display: flex;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 4px;
}

.role-btn {
    flex-grow: 1;
    background: none;
    border: none;
    padding: 8px 12px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.role-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.permissions-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.permission-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 6px;
    transition: var(--transition);
    opacity: 0.3;
}

.permission-item.active {
    opacity: 1;
    background-color: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.15);
}

.p-check {
    width: 14px;
    height: 14px;
    color: var(--success);
}

.permission-item:not(.active) .p-check {
    color: var(--text-light);
    display: none;
}

.role-desc {
    font-size: 11px;
    color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
}

/* Testimonials / Casos Reais Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #fbfbfc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
}

.t-rating {
    margin-bottom: 20px;
    font-size: 16px;
}

.t-quote {
    font-size: 15px;
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.t-metric {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 24px;
    padding: 8px 12px;
    background-color: var(--success-light);
    border-radius: 6px;
    width: fit-content;
}

.t-metric i {
    width: 16px;
    height: 16px;
}

.t-metric i.trend-down {
    color: var(--danger);
}

.t-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.t-avatar-1 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.t-avatar-2 { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.t-avatar-3 { background: linear-gradient(135deg, #10b981, #3b82f6); }

.t-meta {
    display: flex;
    flex-direction: column;
}

.t-name {
    font-weight: 700;
    font-size: 14px;
}

.t-clinic {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.t-city {
    font-size: 11px;
    color: var(--text-muted);
}

/* Antes vs Depois Comparison Section */
.comparison-section {
    padding: 100px 0;
}

.comparison-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.comp-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
}

.card-before {
    border-top: 4px solid var(--danger);
    background-color: #fffafb;
}

.card-after {
    border-top: 4px solid var(--success);
    background-color: #fafffb;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(16, 185, 129, 0.05);
}

.comp-card-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.comp-card-header h3 {
    font-size: 20px;
    font-weight: 800;
}

.card-before h3 { color: var(--danger); }
.card-after h3 { color: var(--success); }

.comp-sub {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.comp-time {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px;
    color: var(--text-main);
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.comp-list li i {
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.comp-arrow-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.arrow-circle {
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.arrow-mobile {
    display: none;
}

/* Features Grid (6 colunas 3x2) */
.features-grid-section {
    padding: 100px 0;
    background-color: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.grid-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
}

.gf-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.gf-icon-wrapper i {
    width: 24px;
    height: 24px;
}

.gf-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gf-description {
    font-size: 14px;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.billing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.billing-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.billing-label.text-active {
    color: var(--primary);
}

.discount-badge {
    background-color: #fef3c7;
    color: #d97706;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 4px;
    text-transform: uppercase;
}

.billing-toggle-btn {
    width: 50px;
    height: 26px;
    background-color: var(--primary);
    border-radius: 50px;
    border: none;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.toggle-circle {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: var(--transition);
}

.billing-toggle-btn.yearly .toggle-circle {
    left: 28px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
    margin-top: 56px;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.2);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.pricing-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 16px;
    font-weight: 700;
    margin-right: 4px;
}

.price {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 4px;
}

.yearly-saving-label {
    display: none;
    font-size: 11px;
    color: var(--success);
    font-weight: 700;
    margin-top: 8px;
}

.pricing-card.popular .yearly-saving-label.show {
    display: block;
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 32px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.plan-features li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-footer {
    width: 100%;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 20px auto;
    letter-spacing: -1px;
}

.final-cta-section p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer Styling */
.footer {
    background-color: #0b0f19;
    color: var(--text-light);
    padding: 80px 0 32px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.brand-col .logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.social-links a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-links a i {
    width: 16px;
    height: 16px;
}

.footer-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-col .footer-links {
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.contact-item i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.badge-lgpd {
    background-color: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--success) !important;
    font-weight: 700;
    font-size: 12px;
    width: fit-content;
}

.badge-lgpd i {
    color: var(--success);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.faq-accordion-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 64px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-features-list {
        justify-content: center;
    }
    
    .solution-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .solution-item.alternate {
        direction: ltr;
    }
    
    .solution-visual {
        display: flex;
        justify-content: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 450px;
        margin: 40px auto 0 auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }
    
    .features-6-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: 70px;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-actions .btn {
        display: none; /* Hide primary CTA inside navbar on mobile to avoid overflow */
    }
    
    .comparison-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .comp-arrow-divider {
        padding: 12px 0;
    }
    
    .arrow-desktop { display: none; }
    .arrow-mobile { display: block; }
    
    .features-6-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-badge {
        padding: 8px 12px;
    }
    
    .badge-1 { left: -10px; }
    .badge-2 { right: -10px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .kpi-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-slider-container {
        height: 180px;
    }
}
