/* Sections CSS - Tailwind-like utilities and custom styles */

/* Design System Variables - Matching cadastro_empresa.php styles */
:root {
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #2563eb);
    --gradient-indigo: linear-gradient(135deg, #6366f1, #4f46e5);
    --gradient-purple: linear-gradient(135deg, #8b5cf6, #7c3aed);
    --shadow-elegant: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 25px rgba(0, 0, 0, 0.08), 0 20px 40px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 4px 6px rgba(0, 0, 0, 0.07), 0 20px 40px rgba(0, 0, 0, 0.12), 0 40px 80px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -1px rgb(0 0 0 / 0.06);
}

/* Animation keyframes */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

/* Tailwind-like utilities */
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.mb-24 { margin-bottom: 6rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-1 { margin-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.pb-1 { padding-bottom: 0.25rem; }

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 768px; }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
    .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:gap-16 { gap: 4rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:justify-start { justify-content: flex-start; }
}

@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-12 { gap: 3rem; }

.items-center { align-items: center; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-start: flex-start; }
.space-x-2 > * + * { margin-left: 0.5rem; }

/* Backgrounds */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-blue-50 { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); }
.via-indigo-50 { --tw-gradient-via: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(238, 242, 255, 0)); }
.to-purple-50 { --tw-gradient-to: #faf5ff; }
.from-indigo-100 { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); }
.to-purple-100 { --tw-gradient-to: #f3e8ff; }
.from-indigo-600 { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.from-indigo-500 { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); }
.to-purple-500 { --tw-gradient-to: #a855f7; }
.from-yellow-50 { --tw-gradient-from: #fefce8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 252, 232, 0)); }
.to-orange-50 { --tw-gradient-to: #fff7ed; }
.from-yellow-400 { --tw-gradient-from: #facc15; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 204, 21, 0)); }
.to-orange-500 { --tw-gradient-to: #f97316; }
.from-purple-400 { --tw-gradient-from: #c084fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 132, 252, 0)); }
.to-pink-400 { --tw-gradient-to: #f472b6; }
.from-blue-400 { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); }
.to-indigo-400 { --tw-gradient-to: #818cf8; }

.bg-white { background-color: #ffffff; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-indigo-500 { background-color: #6366f1; }
.bg-purple-500 { background-color: #a855f7; }
.bg-indigo-600 { background-color: #4f46e5; }

.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }

/* Text colors */
.text-white { color: #ffffff; }
.text-indigo-700 { color: #4338ca; }
.text-slate-800 { color: #1e293b; }
.text-slate-600 { color: #475569; }
.text-indigo-600 { color: #4f46e5; }
.text-gray-800 { color: #1f2937; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-900 { color: #111827; }
.text-blue-400 { color: #60a5fa; }
.text-blue-600 { color: #2563eb; }

.hover\:text-blue-400:hover { color: #60a5fa; }
.hover\:text-red-500:hover { color: #ef4444; }

/* Background clip */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Borders */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-gray-200 { border-color: #e5e7e7; }
.border-gray-100 { border-color: #f3f4f6; }
.border-yellow-200 { border-color: #fef08a; }
.border-blue-400 { border-color: #60a5fa; }
.border-transparent { border-color: transparent; }
.border-indigo-200 { border-color: #c7d2fe; }

/* Border radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Width/Height */
.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3 { width: 0.75rem; }
.h-3 { height: 0.75rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-full { width: 100%; }

.max-w-xl { max-width: 36rem; }
.max-w-sm { max-width: 24rem; }
.max-h-32 { max-height: 8rem; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }

/* Object fit */
.object-contain { object-fit: contain; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Backdrop */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Hover states */
.hover\:bg-indigo-700:hover { background-color: #4338ca; }
.hover\:bg-indigo-50:hover { background-color: #eef2ff; }
.hover\:bg-gray-700:hover { background-color: #374151; }
.hover\:bg-red-50:hover { background-color: #fef2f2; }

/* Mockup Container Styles */
.modal-mockup-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.modal-mockup-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.modal-mockup-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.floating-element.blue {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.floating-element.green {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #34d399, #10b981);
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.floating-element.yellow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1023px) {
    .modal-mockup-wrapper {
        transform: none;
    }
}

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* Mx-auto */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/* Modal Agendamento Styles - Modern & Elegant */
.modal-agendamento-mockup {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    box-shadow: var(--shadow-elegant);
    overflow: hidden;
    max-width: 420px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-agendamento-mockup:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.modal-agendamento-header {
    background: var(--gradient-blue);
    color: white;
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-agendamento-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.modal-agendamento-title {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    gap: 0.5rem;
}

.modal-agendamento-icon {
    font-size: 1.5rem;
}

.modal-agendamento-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.modal-agendamento-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-professional-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(219, 234, 254, 0.9));
    border-bottom: 1px solid rgba(224, 231, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modal-professional-card:hover {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95), rgba(191, 219, 254, 0.9));
}

.modal-professional-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-professional-info {
    flex: 1;
}

.modal-professional-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
}

.modal-professional-role {
    font-size: 0.8125rem;
    color: #6b7280;
}

.modal-change-btn {
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.modal-change-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.modal-calendar-section {
    padding: 1.5rem;
}

.modal-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-calendar-month {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.modal-calendar-nav {
    background: transparent;
    border: none;
    color: #3b82f6;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s;
}

.modal-calendar-nav:hover {
    background: #eff6ff;
}

.modal-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.modal-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    background: #f3f4f6;
    color: #6b7280;
}

.modal-calendar-day:hover {
    background: #eff6ff;
    color: #3b82f6;
}

.modal-time-periods {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.modal-time-period {
    flex: 1;
    padding: 0.625rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-time-period:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #3b82f6;
}

.modal-time-period.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #2563eb;
    color: white;
}

.modal-time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.modal-time-slot {
    padding: 0.75rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-time-slot:hover:not(.disabled) {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #3b82f6;
}

.modal-time-slot.selected {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-color: #2563eb;
    color: white;
}

.modal-time-slot.disabled {
    background: #f9fafb;
    color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
}

.modal-service-details {
    padding: 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.modal-service-details-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.modal-service-details-icon {
    font-size: 1.25rem;
}

.modal-service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-service-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.modal-service-duration {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.modal-service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.modal-agendamento-footer {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
}

.modal-footer-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.modal-footer-btn.cancel {
    background: #f3f4f6;
    color: #6b7280;
}

.modal-footer-btn.cancel:hover {
    background: #e5e7eb;
}

.modal-footer-btn.primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.modal-footer-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modal-footer-btn.primary:hover::before {
    left: 100%;
}

.modal-footer-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.modal-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.modal-floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.modal-floating-element.blue {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.modal-floating-element.indigo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #818cf8, #6366f1);
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.modal-floating-element.purple {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

/* Additional text colors */
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.from-blue-100 { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); }
.to-indigo-100 { --tw-gradient-to: #e0e7ff; }
.from-blue-600 { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); }
.to-indigo-600 { --tw-gradient-to: #4f46e5; }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-indigo-500 { --tw-gradient-to: #6366f1; }

/* Sistema Financeiro */
.financeiro-hero-section { background: linear-gradient(135deg, #f0fdf4, #dcfce7); padding: 4rem 0; }
.financeiro-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #15803d; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; }
.financeiro-title { font-size: 2.25rem; font-weight: 700; color: #1f2937; line-height: 1.25; }
.financeiro-title-highlight { display: block; background: linear-gradient(135deg, #16a34a, #15803d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.financeiro-description { font-size: 1.25rem; color: #475569; line-height: 1.625; }
.financeiro-description strong { color: #16a34a; }
.financeiro-benefits { display: flex; flex-direction: column; gap: 1rem; }
.financeiro-benefit { display: flex; align-items: center; gap: 0.75rem; color: #475569; }
.financeiro-benefit-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; }
.financeiro-benefit-dot-1 { background: #16a34a; }
.financeiro-benefit-dot-2 { background: #22c55e; }
.financeiro-benefit-dot-3 { background: #4ade80; }
.financeiro-benefit-dot-4 { background: #86efac; }
.financeiro-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.financeiro-stat-card { background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid #bbf7d0; border-radius: 1rem; padding: 1.5rem; text-align: center; }
.financeiro-stat-number { font-size: 2.5rem; font-weight: 700; color: #16a34a; margin-bottom: 0.5rem; }
.financeiro-stat-title { font-size: 1.125rem; font-weight: 600; color: #1f2937; margin-bottom: 0.75rem; }
.financeiro-stat-description { font-size: 0.875rem; color: #6b7280; line-height: 1.5; }
.financeiro-stat-description strong { color: #16a34a; }
.financeiro-mockup-container { position: relative; max-width: 650px; margin: 0 auto; }
.financeiro-mockup-wrapper { position: relative; }
.financeiro-mockup-screen { background: white; border-radius: 16px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); overflow: hidden; position: relative; }
.financeiro-status-indicator { position: absolute; top: 1rem; right: 1rem; width: 12px; height: 12px; background: #22c55e; border-radius: 50%; border: 2px solid white; z-index: 10; animation: pulse 2s infinite; }
.financeiro-mockup-header { padding: 1.5rem; background: linear-gradient(135deg, #f0fdf4, #dcfce7); border-bottom: 1px solid #bbf7d0; }
.financeiro-mockup-title-section { margin-bottom: 1rem; }
.financeiro-mockup-title { display: flex; align-items: center; gap: 0.75rem; font-size: 1.25rem; font-weight: 700; color: #1f2937; margin-bottom: 0.5rem; }
.financeiro-title-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #16a34a, #15803d); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; }
.financeiro-mockup-subtitle { font-size: 0.875rem; color: #6b7280; margin-bottom: 0.5rem; }
.financeiro-mockup-last-update { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #9ca3af; }
.financeiro-mockup-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.financeiro-mockup-btn { padding: 0.5rem 1rem; background: linear-gradient(135deg, #16a34a, #15803d); color: white; border: none; border-radius: 8px; font-size: 0.75rem; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.financeiro-mockup-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3); }
.financeiro-dashboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.5rem; }
.financeiro-card { border-radius: 12px; padding: 1.25rem; color: white; position: relative; overflow: hidden; }
.financeiro-card::before { content: ''; position: absolute; top: -50%; right: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); }
.gradient-receita { background: linear-gradient(135deg, #16a34a, #15803d); }
.gradient-despesa { background: linear-gradient(135deg, #dc2626, #991b1b); }
.gradient-saldo { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.financeiro-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.financeiro-stats-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.financeiro-card-badge { display: flex; flex-direction: column; align-items: flex-end; font-size: 0.625rem; opacity: 0.9; }
.financeiro-card-title { font-size: 0.875rem; opacity: 0.9; margin-bottom: 0.5rem; }
.financeiro-card-value { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem; }
.financeiro-card-info { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; opacity: 0.8; }
.financeiro-table-section { margin: 1.5rem; background: white; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.financeiro-table-header { padding: 1.25rem; border-bottom: 1px solid #f3f4f6; display: flex; justify-content: space-between; align-items: center; }
.financeiro-table-title { font-size: 1.125rem; font-weight: 600; color: #1f2937; }
.financeiro-add-btn { padding: 0.5rem 1rem; background: linear-gradient(135deg, #16a34a, #15803d); color: white; border: none; border-radius: 8px; font-size: 0.875rem; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 0.25rem; }
.financeiro-table { width: 100%; }
.financeiro-table th { padding: 0.75rem 1.25rem; text-align: left; font-size: 0.75rem; font-weight: 600; color: #6b7280; text-transform: uppercase; background: #f9fafb; }
.financeiro-table-row { border-bottom: 1px solid #f3f4f6; transition: background 0.2s; }
.financeiro-table-row:hover { background: #f9fafb; }
.financeiro-table-row td { padding: 1rem 1.25rem; font-size: 0.875rem; }
.financeiro-table-type { padding: 0.25rem 0.75rem; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
.financeiro-table-type.receita { background: #d1fae5; color: #059669; }
.financeiro-table-type.despesa { background: #fee2e2; color: #dc2626; }
.financeiro-table-description { color: #1f2937; font-weight: 500; }
.financeiro-table-value { font-weight: 600; }
.financeiro-table-value.receita { color: #059669; }
.financeiro-table-value.despesa { color: #dc2626; }
.financeiro-table-date { color: #6b7280; }
@media (max-width: 768px) {
    .financeiro-dashboard { grid-template-columns: 1fr; }
    .financeiro-stats { grid-template-columns: 1fr; }
    .financeiro-mockup-buttons { flex-direction: column; }
    .financeiro-table { font-size: 0.75rem; }
    .financeiro-table th, .financeiro-table-row td { padding: 0.5rem; }
}
