/* ========================================
   VÓLOS - CSS Classes Utilitárias (Extraídas de CSS Inline)
   ======================================== */

/* Classes de Layout Flex */
.flex-center-gap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flex-center-gap-sm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flex-wrap-gap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Classes de Grid */
.grid-gap-lg {
    display: grid;
    gap: 1.5rem;
}

.grid-gap-md {
    display: grid;
    gap: 1rem;
}

.grid-gap-sm {
    display: grid;
    gap: 0.5rem;
}

.grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

/* Classes de Texto */
.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.font-weight-500 {
    font-weight: 500;
}

.font-size-sm {
    font-size: 1rem;
}

/* Classes de Espaçamento */
.p-1 {
    padding: 1rem;
}

.p-1-5 {
    padding: 1.5rem;
}

.p-2 {
    padding: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.m-0 {
    margin: 0;
}

/* Classes de Card Header */
.card-header-row {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

/* Classes de Alert/Error */
.alert-error-box {
    padding: 1rem;
    margin-bottom: 1rem;
    background: hsl(0 84% 60% / 0.1);
    border: 1px solid hsl(0 84% 60% / 0.3);
    border-radius: var(--radius);
    color: var(--destructive);
}

.alert-error-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Classes de Container */
.container-padding {
    padding: 2rem 1rem;
}

/* Classes de Card Content */
.card-content-center {
    padding: 2rem;
    text-align: center;
}

.card-content-padding {
    padding: 1rem;
}

.card-content-padding-lg {
    padding: 1.5rem;
}

/* Classes de Table */
.table-no-margin {
    margin: 0;
}

/* Classes de Form */
.form-max-width {
    max-width: 800px;
}

@media (max-width: 991px) {
  .form-max-width {
    max-width: 100%;
  }
}

/* Classes de Grid 2 colunas iguais */
.grid-cols-2-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Classes de Flex com justify-content */
.flex-end {
    display: flex;
    justify-content: flex-end;
}

.flex-end-gap {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Classes de Flex */
.flex-1 {
    flex: 1;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Classes de Margin específicas */
.mb-0-5 {
    margin-bottom: 0.5rem;
}

.m-0-mb-0-5 {
    margin: 0 0 0.5rem 0;
}

/* Classes de Min Width */
.min-w-300 {
    min-width: 300px;
}

@media (max-width: 320px) {
  .min-w-300 {
    min-width: 0;
  }
}

/* Classes de Row */
.row-flex {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Classes de Card Content específicas */
.card-content-no-padding {
    padding: 0;
}

/* Classes de Width */
.w-full {
    width: 100%;
}

/* Classes de Margin Top e Padding Top com Border */
.mt-1-pt-1-border-top {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Classes de Form Group */
.form-group-mb {
    margin-bottom: 1rem;
}

/* Classes de Row com gap menor */
.row-flex-gap-sm {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Classes de Min Width menor */
.min-w-200 {
    min-width: 200px;
}

/* Classes de Justify Content */
.justify-end {
    justify-content: flex-end;
}

.d-inline {
    display: inline;
}

.d-inline-flex-1 {
    display: inline;
    flex: 1;
}

/* Classes para rating stars (cores dinâmicas podem permanecer inline quando necessário) */
.rating-star {
    cursor: pointer;
    color: var(--muted);
}

/* Classes de Flex Column */
.flex-column-gap-sm {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Classes para textarea monospace */
.monospace-textarea {
    font-family: monospace;
    font-size: 0.875rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-0-5 {
    margin-bottom: 0.5rem;
}

.p-0 {
    padding: 0;
}

.flex-1 {
    flex: 1;
}

.min-width-300 {
    min-width: 300px;
}

.row-flex {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ========================================
   VÓLOS
   ======================================== */

/* Google Fonts - Inter (igual ao projeto) */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ========================================
   CSS Variables - Idêntico ao index.css
   ======================================== */
:root {
  /* Cores principais - HSL exato do projeto */
  --background: hsl(209, 40%, 96%);
  --foreground: hsl(222, 47%, 11%);
  
  --card: hsl(210, 40%, 98%);
  --card-foreground: hsl(222, 47%, 11%);
  
  --popover: hsl(214, 31%, 91%);
  --popover-foreground: hsl(222, 47%, 11%);
  
  --primary: hsl(200, 98%, 39%);
  --primary-foreground: hsl(204, 100%, 97%);
  
  --secondary: hsl(215, 24%, 26%);
  --secondary-foreground: hsl(210, 40%, 98%);
  
  --muted: hsl(215, 20%, 65%);
  --muted-foreground: hsl(222, 47%, 11%);
  
  --accent: hsl(210, 40%, 98%);
  --accent-foreground: hsl(215, 19%, 34%);
  
  --destructive: hsl(0, 72%, 50%);
  --destructive-foreground: hsl(0, 85%, 97%);
  
  --border: hsl(212, 26%, 83%);
  --input: hsl(212, 26%, 83%);
  --ring: hsl(200, 98%, 39%);
  
  --radius: 0.5rem;
  
  /* Shadows - igual ao projeto */
  --shadow-sm: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow: 0 1px 3px 0px hsl(0 0% 0% / 0.1), 0 1px 2px -1px hsl(0 0% 0% / 0.1);
  --shadow-md: 0 4px 6px -1px hsl(0 0% 0% / 0.1), 0 2px 4px -2px hsl(0 0% 0% / 0.1);
  --shadow-lg: 0 10px 15px -3px hsl(0 0% 0% / 0.1), 0 4px 6px -4px hsl(0 0% 0% / 0.1);
  --shadow-xl: 0 20px 25px -5px hsl(0 0% 0% / 0.1), 0 8px 10px -6px hsl(0 0% 0% / 0.1);
  --shadow-2xl: 0 25px 50px -12px hsl(0 0% 0% / 0.25);
  
  /* Cores extras para badges e estados */
  --emerald-600: hsl(160, 84%, 39%);
  --yellow-400: hsl(45, 93%, 47%);
  --yellow-500: hsl(38, 92%, 50%);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--foreground);
}

.text-foreground { color: var(--foreground); }
.text-muted-foreground, .text-muted { color: var(--muted-foreground); opacity: 0.7; }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   BUTTONS - Idêntico ao shadcn/ui
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.btn:hover { text-decoration: none; }
.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Default/Primary Button */
.btn-primary, .btn-default {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.btn-primary:hover, .btn-default:hover {
  background-color: hsl(200, 98%, 35%);
}

/* Hero Button - igual ao button.tsx hero variant */
.btn-hero {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-lg);
  transition: all 0.2s;
}
.btn-hero:hover {
  background-color: hsl(200, 98%, 35%);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

/* Hero Outline Button */
.btn-hero-outline {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}
.btn-hero-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Secondary Button */
.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}
.btn-secondary:hover {
  background-color: hsl(215, 24%, 20%);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  border: 1px solid var(--input);
  color: var(--foreground);
  box-shadow: none;
}
.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* Ghost Button */
.btn-ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--foreground);
  box-shadow: none;
}
.btn-ghost:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* Destructive Button */
.btn-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
}
.btn-destructive:hover {
  background-color: hsl(0, 72%, 45%);
}

/* Success Button */
.btn-success {
  background-color: var(--emerald-600);
  color: white;
}
.btn-success:hover {
  background-color: hsl(160, 84%, 35%);
}

/* Button Sizes */
.btn-sm {
  padding: 0.375rem 0.75rem;
  height: 2.25rem;
  font-size: 0.875rem;
  border-radius: calc(var(--radius) - 2px);
}
.btn-lg {
  padding: 0.5rem 2rem;
  height: 2.75rem;
  font-size: 1rem;
}
.btn-xl {
  padding: 0.75rem 2.5rem;
  height: 3rem;
  font-size: 1rem;
}
.btn-icon {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
}

/* ========================================
   CARDS - Idêntico ao shadcn/ui
   ======================================== */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--foreground);
  margin: 0;
}

.card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.card-content {
  padding: 1.5rem;
  padding-top: 0;
}

.card-footer {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  padding-top: 0;
}

/* ========================================
   BADGES - Idêntico ao shadcn/ui
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid transparent;
}

.badge-default, .badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.badge-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.badge-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.badge-success {
  background-color: var(--emerald-600);
  color: white;
}

.badge-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
}

.badge-warning {
  background-color: var(--yellow-500);
  color: white;
}

/* ========================================
   FORMS - Idêntico ao shadcn/ui
   ======================================== */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  display: flex;
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid var(--input);
  border-radius: var(--radius);
  background-color: transparent;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px hsl(200 98% 39% / 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 80px;
  height: auto;
  resize: vertical;
}

/* ========================================
   TABS - Idêntico ao shadcn/ui
   ======================================== */
.tabs-list {
  display: inline-flex;
  background-color: var(--muted);
  border-radius: var(--radius);
  padding: 0.25rem;
}

.tab-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-trigger:hover {
  color: var(--foreground);
}

.tab-trigger.active {
  background-color: var(--background);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
}

/* ========================================
   HEADER - Navegação principal
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background-color: hsl(210 40% 98% / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}
.logo:hover {
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: calc(var(--radius) - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: bold;
  font-size: 1.125rem;
}

.logo-img {
  width: 100%;
  height: 100%;
  max-height: 40px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--foreground);
  text-decoration: none;
}

.nav-link.mobile-only {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--border);
  background-color: var(--card);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: var(--foreground);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--card), var(--background));
  padding: 2rem 0 6rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: hsl(200 98% 39% / 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust-item svg {
  color: var(--primary);
}

.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.section {
  padding: 2rem 0;
}
.section-bg {
  background-color: var(--card);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.section-description {
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: calc(var(--radius) + 2px);
  background-color: hsl(200 98% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}
.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
  color: var(--yellow-400);
}
.testimonial-text {
  color: var(--foreground);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: hsl(200 98% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}
.testimonial-name {
  font-weight: 500;
  color: var(--foreground);
}
.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
  background-color: var(--primary);
  padding: 2rem 0;
  text-align: center;
}
.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}
.cta-description {
  color: hsl(204 100% 97% / 0.8);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.cta .btn {
  background-color: var(--card);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
}
.cta .btn:hover {
  background-color: hsl(210 40% 95%);
}

/* ========================================
   LOGIN PAGE
   ======================================== */
.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--background);
}

.login-header {
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
}
.login-header .container {
  height: 64px;
  display: flex;
  align-items: center;
}

.login-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.login-back:hover {
  color: var(--foreground);
  text-decoration: none;
}

.login-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.login-card {
  width: 100%;
  max-width: 400px;
}

.login-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ========================================
   MARKETPLACE
   ======================================== */
.marketplace-hero {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}

.marketplace-hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.search-bar {
  display: flex;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
.search-bar .form-input {
  flex: 1;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
}

.search-input-with-icon {
  padding-left: 2.5rem;
}

.search-location-wrapper {
  position: relative;
  width: 12rem;
  min-width: 0;
}

.search-location-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
}

.badge-xs {
  font-size: 0.625rem;
}

.categories-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  background-color: hsl(210 40% 98% / 0.5);
}
.categories-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.providers-section {
  padding: 2rem 0;
}
.providers-count {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.provider-card {
  overflow: hidden;
}
.provider-header {
  padding: 1.5rem;
}
.provider-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.provider-avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background-color: hsl(200 98% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.provider-name {
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.25rem;
}
.provider-category {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}
.provider-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.provider-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.provider-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
}
.provider-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.provider-rating .star {
  color: var(--yellow-400);
}
.provider-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  background-color: hsl(215 20% 65% / 0.1);
  display: flex;
  gap: 0.75rem;
}
.provider-footer .btn {
  flex: 1;
}

/* ========================================
   PROFILE PAGE
   ======================================== */
.profile-header {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.profile-header-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.profile-avatar {
  width: 128px;
  height: 128px;
  border-radius: 0.75rem;
  background-color: hsl(200 98% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 2.5rem;
  flex-shrink: 0;
}
.profile-info {
  flex: 1;
}
.profile-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.profile-category {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.profile-meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.profile-stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--yellow-400);
}
.profile-stars svg {
  width: 16px;
  height: 16px;
}
.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 16rem;
}

/* Professional Page Layout */
.professional-breadcrumb {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
}

.professional-breadcrumb-container {
  padding: 0.75rem 1rem;
}

.professional-content-section {
  padding: 2rem 0;
}

.professional-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
}

.professional-main {
  min-width: 0;
}

.professional-sidebar {
  min-width: 0;
}

.tabs-list-inline {
  display: flex;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.card-title-sm {
  font-size: 1.125rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: hsl(200 98% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.info-item-label {
  font-size: 0.875rem;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--muted);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: background-color 0.2s;
}

.gallery-item:hover {
  background: hsl(215 20% 65% / 0.3);
}

.gallery-item-icon {
  width: 32px;
  height: 32px;
}

.gallery-item-label {
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.review-card {
  padding: 1.5rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--secondary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  flex-shrink: 0;
}

.quote-form-border {
  border-color: var(--primary);
}

.text-line-height {
  line-height: 1.7;
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 256px;
  background: linear-gradient(180deg, var(--secondary), hsl(215, 24%, 20%));
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 40;
}

.sidebar-admin {
  background: linear-gradient(180deg, hsl(222, 47%, 11%) 0%, hsl(217, 32%, 17%) 100%);
}

.sidebar-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(215 19% 34% / 0.5);
}
.sidebar-header .logo {
  color: var(--secondary-foreground);
}
.sidebar-header .logo-icon {
  background-color: var(--primary);
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.sidebar-section {
  margin-bottom: 1.5rem;
}
.sidebar-section-title {
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(215 20% 65% / 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  color: hsl(210 40% 98% / 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.sidebar-link:hover {
  color: var(--secondary-foreground);
  background-color: hsl(215 20% 65% / 0.1);
  text-decoration: none;
}
.sidebar-link.active {
  color: var(--primary-foreground);
  background-color: var(--primary);
}
.sidebar-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid hsl(215 19% 34% / 0.5);
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sidebar-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
}

.sidebar-user-avatar-admin {
  background-color: var(--destructive);
}
.sidebar-user-name {
  color: var(--secondary-foreground);
  font-weight: 500;
  font-size: 0.875rem;
}
.sidebar-user-email {
  color: hsl(210 40% 98% / 0.6);
  font-size: 0.75rem;
}

.sidebar-logout-btn {
  width: 100%;
  margin-top: 0.75rem;
  color: var(--secondary-foreground);
  border-color: hsl(210 40% 98% / 0.3);
}

/* Main Content */
.dashboard-main {
  flex: 1;
  margin-left: 256px;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.sidebar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.sidebar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: all 0.2s;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}
.dashboard-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}

.dashboard-welcome-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.dashboard-welcome-subtitle {
  margin: 0;
}

.dashboard-content {
  flex: 1;
  padding: 1.5rem;
  background-color: var(--background);
}

@media (max-width: 991px) {
  .dashboard-content {
    padding: 1rem;
  }
}

@media (max-width: 575px) {
  .dashboard-content {
    padding: 0.75rem;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-card .card-content {
  padding: 1rem;
}
.stat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background-color: hsl(200 98% 39% / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.stat-change {
  font-size: 0.75rem;
  font-weight: 500;
}
.stat-change.positive, .text-success {
  color: var(--emerald-600);
}
.stat-change.negative, .text-destructive {
  color: var(--destructive);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dashboard-card-header-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.dashboard-card-title-sm {
  font-size: 1rem;
}

.dashboard-list-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: hsl(215 20% 65% / 0.1);
  color: var(--foreground);
  font-weight: 500;
}

.dashboard-list-item:hover {
  background: hsl(215 20% 65% / 0.15);
  text-decoration: none;
}

/* Alert */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border-left: 4px solid;
}
.alert-warning {
  background-color: hsl(38 92% 50% / 0.1);
  border-color: var(--yellow-500);
}
.alert-info {
  background-color: hsl(200 98% 39% / 0.1);
  border-color: var(--primary);
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}
th {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
td {
  font-size: 0.875rem;
  color: var(--foreground);
}
tr:hover {
  background-color: hsl(215 20% 65% / 0.05);
}

/* ========================================
   CADASTRO PAGE
   ======================================== */
.register-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.register-progress-step {
  width: 64px;
  height: 8px;
  border-radius: 9999px;
  background-color: var(--muted);
  transition: background-color 0.2s;
}
.register-progress-step.active {
  background-color: var(--primary);
}

.user-type-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.user-type-btn {
  height: auto;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
}
.user-type-btn span:first-child {
  font-weight: 600;
}
.user-type-btn span:last-child {
  font-size: 0.75rem;
  opacity: 0.8;
}

.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s;
  cursor: pointer;
}
.upload-area:hover {
  border-color: var(--primary);
}
.upload-area svg {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.upload-area p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}
.upload-area p:last-child {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.summary-box {
  background-color: hsl(215 20% 65% / 0.1);
  border-radius: var(--radius);
  padding: 1rem;
}
.summary-box h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.summary-item {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.summary-item span:first-child {
  color: var(--muted-foreground);
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  background-color: hsl(200 98% 39% / 0.05);
  border: 1px solid hsl(200 98% 39% / 0.2);
}
.info-box svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.info-box h4 {
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.info-box p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.d-flex { display: flex; }
.d-grid { display: grid; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.w-full { width: 100%; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
  .features-grid,
  .testimonials-grid,
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-image {
    order: -1;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .profile-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .profile-meta {
    justify-content: center;
  }
  .profile-actions {
    width: 100%;
    flex-direction: row;
  }
  
  /* Sidebar em tablets - pode precisar de ajustes */
  .dashboard-content {
    padding: 1rem;
  }
  
  /* Professional Layout - Tablets */
  .professional-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .professional-sidebar {
    order: -1;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .header {
    position: relative;
  }
  
  .header-inner {
    position: relative;
  }
  
  .nav, .nav-actions {
    display: none;
  }
  
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 1rem;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
  }
  
  .nav.open .nav-link {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
  
  .nav.open .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav.open .nav-link.mobile-only {
    display: block;
  }
  
  .nav-actions.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    background-color: var(--card);
    border-top: 1px solid var(--border);
    padding: 1rem;
    gap: 0.75rem;
    z-index: 999;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .nav-actions.open .btn {
    width: 100%;
    justify-content: center;
  }
  
  .nav-actions.open .btn-ghost {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
  }
  
  .nav-actions.open .btn-ghost:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .marketplace-hero-title {
    font-size: 1.5rem;
  }
  
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  /* Dashboard Mobile */
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
  }
  .sidebar-toggle {
    display: flex;
  }
  
  .sidebar-overlay.active {
    display: block;
  }
  
  .profile-actions {
    flex-direction: column;
  }
  
  .search-bar {
    flex-direction: column;
  }
  
  .search-location-wrapper {
    width: 100%;
  }
}

/* Mobile/Tablets Médios (577px-767px) - Deve vir depois de max-width: 767px para ter prioridade */
@media (min-width: 577px) and (max-width: 767px) {
  .search-location-wrapper {
    width: 10rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile pequeno (≤576px) */
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .providers-grid {
    grid-template-columns: 1fr;
  }
  
  /* Professional Layout - Mobile */
  .professional-content-section {
    padding: 1.5rem 0;
  }
  
  .professional-layout {
    gap: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-list-inline {
    width: 100%;
    overflow-x: auto;
  }
  
  .profile-actions {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero {
    padding: 2rem 0 3rem;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  
  .marketplace-hero {
    padding: 1.5rem 0;
  }
  
  .marketplace-hero-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  
  .user-type-selector {
    grid-template-columns: 1fr;
  }
}

/* Mobile pequeno (≤320px) */
@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero {
    padding: 1.5rem 0 2rem;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-description {
    font-size: 0.875rem;
  }
  
  .marketplace-hero {
    padding: 1rem 0;
  }
  
  .marketplace-hero-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  .section-title {
    font-size: 1.25rem;
  }
  
  .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .logo-img {
    max-height: 32px;
  }
  
  .search-bar {
    gap: 0.5rem;
  }
  
  /* Professional Layout - Mobile Pequeno */
  .professional-content-section {
    padding: 1rem 0;
  }
  
  .profile-header {
    padding: 1.5rem 0;
  }
  
  .profile-avatar {
    width: 96px;
    height: 96px;
    font-size: 2rem;
  }
  
  .profile-name {
    font-size: 1.25rem;
  }
  
  .card-title-sm {
    font-size: 1rem;
  }
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
}

.modal-body {
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-message {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

.modal-footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.modal-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.modal-btn-primary {
  background-color: #2563eb;
  color: white;
}

.modal-btn-primary:hover {
  background-color: #1d4ed8;
}

@media (max-width: 768px) {
  .modal-container {
    padding: 1.5rem;
    width: 95%;
  }
  
  .modal-title {
    font-size: 1.25rem;
  }
  
  .modal-message {
    font-size: 0.9375rem;
  }
  
  .modal-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
  }
}
