@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --brand-blue: #1456d9;
    --brand-blue-dark: #0d3d96;
    --brand-blue-soft: #edf3ff;
    --brand-blue-soft-strong: #dfeaff;
    --brand-green: #1f9d59;
    --brand-gold: #f3b63d;
    --brand-red: #c53b34;
    --neutral-0: #ffffff;
    --neutral-25: #fcfdff;
    --neutral-50: #f6f8fc;
    --neutral-100: #edf2f8;
    --neutral-150: #e4eaf3;
    --neutral-200: #d7e0ec;
    --neutral-300: #b9c5d6;
    --neutral-500: #61708a;
    --neutral-700: #243246;
    --neutral-900: #0f1728;
    --shadow-soft: 0 18px 42px rgba(12, 36, 87, 0.08);
    --shadow-medium: 0 24px 60px rgba(11, 34, 82, 0.12);
    --radius-xs: 12px;
    --radius-sm: 16px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --max-content: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(20, 86, 217, 0.06), transparent 28%),
        linear-gradient(180deg, #f9fbff 0%, #eef3f9 100%);
    color: var(--neutral-900);
    line-height: 1.65;
    padding-top: 84px;
    min-height: 100vh;
}

main {
    overflow: clip;
}

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

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--brand-blue-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-900);
    font-weight: 700;
    line-height: 1.15;
    margin-top: 0;
}

h1 {
    letter-spacing: -0.03em;
}

p {
    color: var(--neutral-500);
    margin-top: 0;
}

small,
.small {
    color: var(--neutral-500);
}

strong {
    color: var(--neutral-900);
}

.container {
    max-width: var(--max-content);
}

.eyebrow,
.card-kicker {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 0.8rem;
}

.text-muted {
    color: var(--neutral-500) !important;
}

.bg-light {
    background: linear-gradient(180deg, var(--neutral-50), #f0f4fa) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border-width: 2px;
    min-height: 52px;
    padding: 0.82rem 1.45rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.form-check-input:focus-visible,
.page-link:focus-visible,
.favorite-toggle:focus-visible,
.suggestion-item:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.28rem rgba(20, 86, 217, 0.14);
}

.btn-primary {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--neutral-0);
    box-shadow: 0 14px 28px rgba(20, 86, 217, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    color: var(--neutral-0);
}

.btn-outline-primary {
    background: transparent;
    border-color: rgba(20, 86, 217, 0.4);
    color: var(--brand-blue);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--neutral-0);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--neutral-0);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--neutral-0);
    color: var(--brand-blue-dark);
}

.btn-sm {
    min-height: 42px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neutral-200);
    background: var(--neutral-0);
    color: var(--neutral-900);
    padding: 0.92rem 1rem;
    box-shadow: none;
}

.form-control::placeholder,
textarea::placeholder {
    color: #8a98ad;
    opacity: 1;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(20, 86, 217, 0.35);
    box-shadow: 0 0 0 0.25rem rgba(20, 86, 217, 0.08);
}

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

.form-label,
.form-field label {
    color: var(--neutral-700);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-check {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
    border-radius: var(--radius-sm);
    padding: 0.95rem 1rem 0.95rem 2.6rem;
    margin-bottom: 0.75rem;
}

.form-check-input {
    margin-top: 0.28rem;
}

.form-check-input:checked {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.input-group > .form-control,
.input-group > .form-select {
    min-width: 0;
}

.badge {
    font-weight: 700;
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
}

.badge.bg-secondary {
    background: var(--brand-blue-soft) !important;
    color: var(--brand-blue-dark);
}

.alert {
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(215, 224, 236, 0.8);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--neutral-500);
}

.breadcrumb-item.active {
    color: var(--neutral-900);
}

.breadcrumb-compact {
    background: transparent;
    backdrop-filter: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    gap: 0.45rem;
    align-items: center;
}

.breadcrumb-compact .breadcrumb-item,
.breadcrumb-compact .breadcrumb-item a {
    font-size: 0.98rem;
    color: var(--neutral-500);
}

.breadcrumb-compact .breadcrumb-item + .breadcrumb-item::before {
    color: var(--neutral-300);
    padding-right: 0.45rem;
}

.blog-breadcrumb-wrap {
    overflow: hidden;
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    max-width: 100%;
}

.blog-breadcrumb .breadcrumb-item:last-child {
    min-width: 0;
    flex: 0 1 auto;
}

.blog-breadcrumb .breadcrumb-item.active {
    color: var(--neutral-900);
    max-width: min(54vw, 680px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.pagination {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.page-link {
    border: 1px solid var(--neutral-200);
    color: var(--neutral-700);
    border-radius: 14px;
    min-width: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-0);
    box-shadow: none;
}

.page-item.active .page-link,
.page-link:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--neutral-0);
}

.list-group {
    gap: 0.5rem;
}

.list-group-item {
    border: 1px solid var(--neutral-150);
    border-radius: var(--radius-sm) !important;
    padding: 0.95rem 1rem;
    background: var(--neutral-0);
}

.table {
    margin-bottom: 0;
    color: var(--neutral-700);
}

.table thead th {
    border-bottom: 1px solid var(--neutral-200);
    color: var(--neutral-500);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.95rem 1rem;
    background: transparent;
    white-space: nowrap;
}

.table tbody td {
    padding: 1rem;
    border-color: var(--neutral-150);
    vertical-align: middle;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: rgba(20, 86, 217, 0.03);
}

.card,
.category-card,
.feature-card,
.step,
.article-card,
.service-card,
.service-hero-card,
.provider-card,
.service-offer-card,
.provider-result-card,
.dashboard-card,
.metric-card,
.favorite-card,
.empty-state-card,
.filters-card,
.detail-card,
.booking-card,
.checkout-card,
.checkout-service-card,
.auth-card,
.function-block,
.timeline-step,
.guideline-card,
.newsletter {
    background: var(--neutral-0);
    border: 1px solid rgba(215, 224, 236, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.card-header,
.card-footer {
    background: transparent;
    border-color: var(--neutral-150);
    padding: 1.1rem 1.35rem;
}

.card-header.bg-primary {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)) !important;
    border-color: transparent;
}

.card-header.bg-primary h1,
.card-header.bg-primary h2,
.card-header.bg-primary h3,
.card-header.bg-primary h4,
.card-header.bg-primary h5,
.card-header.bg-primary h6,
.card-header.bg-primary p,
.card-header.bg-primary span {
    color: var(--neutral-0) !important;
}

.card-body {
    padding: 1.35rem;
}

.card-footer {
    color: var(--neutral-500);
}

.navbar {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(215, 224, 236, 0.7);
}

.navbar-shell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-brand img {
    height: 48px;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    padding: 0;
}

.navbar-mobile-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(20, 86, 217, 0.14);
    background: linear-gradient(180deg, #ffffff, #f5f8ff);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.22rem;
    flex-direction: column;
}

.navbar-mobile-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--neutral-900);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.navbar-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.navbar-collapse {
    flex-grow: 1;
}

.navbar-nav-shell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
}

.navbar-menu-group,
.navbar-actions-group {
    display: contents;
}

.navbar-mobile-heading {
    display: none;
    margin: 0;
}

.navbar-menu,
.navbar-actions {
    align-items: center;
    gap: 0.25rem;
}

.navbar-actions {
    flex-direction: row;
    justify-content: flex-end;
    margin-left: 0.4rem;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.58rem 0.62rem;
    border-radius: 999px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
}

.navbar-user-dropdown .dropdown-menu {
    border-radius: 18px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    box-shadow: 0 18px 40px rgba(9, 34, 88, 0.12);
    padding: 0.45rem;
}

.navbar-user-dropdown .dropdown-item {
    border-radius: 12px;
    padding: 0.72rem 0.9rem;
    font-weight: 600;
}

.prestadores-index-layout {
    grid-template-columns: minmax(280px, 320px) 1fr;
}

.prestadores-index-filters {
    top: 104px;
}

.nav-cta {
    gap: 0.45rem;
    min-width: 108px;
    min-height: 40px;
    padding-inline: 0.88rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.nav-cta-outline {
    border: 1px solid rgba(20, 86, 217, 0.22);
    color: var(--neutral-700);
    background: rgba(255, 255, 255, 0.92);
}

.nav-cta-outline:hover {
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
}

.nav-cta-primary {
    background: linear-gradient(135deg, #2f6af2, #1456d9);
    border-color: #1456d9;
    color: var(--neutral-0);
    box-shadow: 0 14px 28px rgba(20, 86, 217, 0.28);
}

.nav-cta-primary:hover,
.nav-cta-primary:focus {
    background: var(--brand-blue-dark);
    border-color: var(--brand-blue-dark);
    color: var(--neutral-0);
}

.nav-cta-announce {
    min-width: 122px;
}

.nav-cta-register {
    min-width: 116px;
}

.nav-cta-login {
    min-width: 100px;
}

.hero,
.prestador-hero {
    position: relative;
    margin-top: -84px;
    padding: 132px 0 84px;
    overflow: hidden;
}

.hero-home {
    background:
        radial-gradient(circle at top right, rgba(112, 163, 255, 0.2), transparent 28%),
        linear-gradient(124deg, rgba(10, 29, 68, 0.96), rgba(28, 79, 186, 0.9)),
        url('../images/oficina-uautos.png') center/cover no-repeat;
    min-height: 500px;
    max-height: 500px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto -10% -24% auto;
    width: 44vw;
    height: 44vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
    pointer-events: none;
}

.hero .container,
.prestador-hero .container {
    position: relative;
    z-index: 1;
}

.hero h1,
.prestador-hero h1 {
    font-size: clamp(2.45rem, 4.4vw, 4.35rem);
    color: var(--neutral-0);
    max-width: 720px;
    margin-bottom: 0.85rem;
    text-wrap: balance;
}

.hero p,
.prestador-hero p {
    color: rgba(255, 255, 255, 0.84);
}

.hero-subtitle {
    max-width: 600px;
    font-size: 1.04rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.hero-home-grid {
    align-items: center;
    min-height: 300px;
    height: 100%;
}

.hero-copy-shell {
    display: grid;
    gap: 0.45rem;
    max-width: 560px;
}

.hero-search-form {
    position: relative;
    max-width: 640px;
    margin-top: 0.8rem;
}

.hero-location-search-form {
    max-width: 640px;
}

.hero-location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}

.hero-search-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 0.45rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 28px rgba(6, 18, 43, 0.18);
}

.hero-search-shell-location {
    grid-template-columns: 1fr;
}

.hero-search-shell .form-control {
    border: none;
    background: var(--neutral-0);
    border-radius: 20px;
    min-height: 60px;
    padding-inline: 1.1rem;
    font-size: 1rem;
}

.hero-search-shell .btn {
    min-width: 160px;
    min-height: 48px;
    border-radius: 16px;
    padding-inline: 1rem;
    box-shadow: none;
    font-weight: 700;
    font-size: 0.98rem;
}

.hero-location-grid .form-select,
.hero-location-grid .form-control {
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(15, 39, 84, 0.12);
    box-shadow: 0 10px 24px rgba(10, 30, 74, 0.1);
    font-size: 0.95rem;
    color: var(--neutral-900);
}

.hero-location-grid .form-field label {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.hero-home .eyebrow {
    margin-bottom: 0.15rem;
}

.hero-home h1 {
    font-size: clamp(1.9rem, 3.4vw, 3.05rem);
    line-height: 0.98;
    max-width: 520px;
    margin-bottom: 0.1rem;
}

.hero-home .hero-subtitle {
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
}

.search-suggestions {
    position: absolute;
    inset: calc(100% + 10px) 0 auto 0;
    background: var(--neutral-0);
    border: 1px solid rgba(215, 224, 236, 0.9);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    padding: 0.45rem;
    display: none;
    z-index: 40;
}

.search-suggestions.is-visible {
    display: block;
}

.suggestion-item {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--neutral-900);
    text-align: left;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
}

.suggestion-item:hover,
.suggestion-item:focus {
    background: var(--brand-blue-soft);
}

.suggestion-item span {
    color: var(--neutral-500);
    font-size: 0.92rem;
}

.hero-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    padding: 1rem 1.05rem;
    box-shadow: 0 18px 32px rgba(8, 23, 54, 0.16);
}

.hero-panel-header {
    display: grid;
    gap: 0.2rem;
    margin-bottom: 0.45rem;
}

.hero-panel-header h2 {
    font-size: 1rem;
    line-height: 1.22;
    margin-bottom: 0;
}

.hero-panel-step {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 0.7rem;
    margin-bottom: 0;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(215, 224, 236, 0.72);
}

.hero-panel-step:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.hero-panel-step strong {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-size: 0.92rem;
}

.hero-panel-step h2,
.hero-panel-step h3 {
    font-size: 0.92rem;
    margin-bottom: 0.08rem;
}

.hero-panel-step p {
    color: var(--neutral-500);
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.32;
}

.hero-panel-cta {
    width: 100%;
    margin-top: 0.55rem;
    min-height: 44px;
    border-radius: 16px;
    font-size: 0.95rem;
}

.page-section {
    padding: 4.5rem 0;
}

.page-hero {
    position: relative;
    padding: 2.2rem 0 3rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 86, 217, 0.04), transparent 80%);
    pointer-events: none;
}

.page-hero-compact {
    padding-top: 1.5rem;
}

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

.page-hero h1 {
    font-size: clamp(2.15rem, 4vw, 3.35rem);
    max-width: 820px;
    margin-bottom: 0.8rem;
}

.section-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-bottom: 0.4rem;
}

.section-subtitle {
    max-width: 720px;
}

.categorias-index-intro {
    margin-bottom: 2rem;
}

.categorias-index-intro h1 {
    font-size: clamp(2.1rem, 3.5vw, 3.1rem);
    margin-bottom: 0.55rem;
}

.category-grid,
.blog-grid,
.steps,
.feature-grid,
.provider-services-grid,
.provider-results-grid,
.favorites-grid,
.dashboard-metrics-grid,
.timeline {
    display: grid;
    gap: 1.45rem;
}

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

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.steps {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.provider-services-grid,
.favorites-grid,
.dashboard-metrics-grid,
.timeline {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.provider-results-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.category-card,
.service-offer-card,
.provider-result-card,
.article-card,
.service-card,
.provider-card {
    overflow: hidden;
}

.category-card-media,
.service-offer-media,
.provider-result-media {
    position: relative;
    min-height: 220px;
}

.category-card-media-link,
.provider-result-media-link,
.service-card-media-link,
.blog-thumb-link {
    display: block;
    color: inherit;
}

.category-card-media img,
.service-offer-media img,
.provider-result-media img,
.service-card-img,
.service-hero-img,
.provider-card-media img,
.checkout-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-media img,
.service-offer-media img,
.provider-result-media img,
.checkout-service-media img {
    position: absolute;
    inset: 0;
}

.category-card-media::after,
.service-offer-media::after,
.provider-result-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 17, 35, 0) 28%, rgba(8, 17, 35, 0.56) 100%);
}

.category-label,
.service-offer-tag,
.provider-result-badge,
.provider-card-tag {
    position: absolute;
    left: 1rem;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
}

.category-label {
    bottom: 1rem;
    color: var(--neutral-0);
}

.service-offer-tag,
.provider-result-badge,
.provider-card-tag {
    top: 1rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-blue-dark);
}

.provider-result-badge-inline {
    position: static;
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.4rem;
    padding: 0.3rem 0.75rem;
    background: rgba(20, 86, 217, 0.08);
    color: var(--brand-blue-dark);
}

.provider-featured-badge {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7c948, #f59e0b);
    color: #5a3400;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
}

.provider-featured-badge-inline {
    position: static;
    margin-bottom: 0.45rem;
}

.provider-result-card.is-featured,
.provider-card.is-featured {
    border-color: rgba(245, 158, 11, 0.32);
    box-shadow: 0 24px 52px rgba(15, 43, 112, 0.14), 0 0 0 1px rgba(245, 158, 11, 0.16);
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.11), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 240, 0.98));
}

.provider-result-card.is-featured .provider-result-body,
.provider-card.is-featured .provider-card-body {
    background: transparent;
}

.category-card-body,
.article-card,
.service-offer-body,
.provider-result-body,
.provider-card-body,
.filters-card,
.detail-card,
.booking-card,
.checkout-card,
.checkout-service-body,
.auth-card,
.metric-card,
.favorite-card,
.function-block,
.timeline-step,
.guideline-card,
.newsletter,
.empty-state-card {
    padding: 1.6rem;
}

.article-card,
.service-offer-body,
.provider-result-body,
.provider-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.category-card-body h3 a,
.article-card h3 a,
.article-card h2 a,
.service-card .card-title a,
.provider-result-body h3 a,
.provider-result-body .card-kicker a,
.provider-result-meta a {
    color: inherit;
    text-decoration: none;
}

.category-card-body h3 a:hover,
.article-card h3 a:hover,
.article-card h2 a:hover,
.service-card .card-title a:hover,
.provider-result-body h3 a:hover,
.provider-result-body .card-kicker a:hover,
.provider-result-meta a:hover {
    color: var(--brand-blue-dark);
}

.provider-result-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.provider-result-services a,
.provider-result-services span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.08);
    color: var(--brand-blue-dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
}

.provider-result-services a:hover {
    background: rgba(20, 86, 217, 0.14);
}

.blog-thumb,
.blog-hero-media,
.featured-upload-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-thumb {
    border-radius: 18px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
}

.blog-thumb-list {
    border-radius: 24px 24px 0 0;
    border: 0;
    border-bottom: 1px solid var(--neutral-150);
}

.blog-thumb-related {
    border-radius: 24px 24px 0 0;
    border: 0;
    border-bottom: 1px solid var(--neutral-150);
}

.blog-thumb-home {
    margin-bottom: 0.2rem;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
    padding: 0;
    border-radius: 28px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 255, 0.98));
    box-shadow: 0 20px 44px rgba(9, 34, 88, 0.1);
}

.home-blog-card .blog-thumb-home {
    margin-bottom: 0;
    border-radius: 28px 28px 0 0;
    border: 0;
    border-bottom: 1px solid var(--neutral-150);
}

.home-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.5rem 1.6rem 1.6rem;
}

.home-blog-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.home-blog-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.08);
    color: var(--brand-blue-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.home-blog-date {
    color: var(--neutral-500);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.home-blog-title {
    margin-bottom: 0;
    line-height: 1.2;
}

.home-blog-summary {
    margin-bottom: 0;
    color: var(--neutral-700);
    line-height: 1.75;
}

.home-blog-card-footer {
    margin-top: auto;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(215, 224, 236, 0.72);
}

.home-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-blue-dark);
    font-weight: 700;
    text-decoration: none;
}

.home-blog-link span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.home-blog-link:hover {
    color: var(--brand-blue);
}

.home-blog-link:hover span {
    transform: translateX(3px);
    background: rgba(20, 86, 217, 0.14);
}

.blog-thumb-image,
.blog-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-hero-media {
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
    box-shadow: var(--shadow-soft);
}

.blog-landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 1.5rem;
    align-items: stretch;
}

.blog-landing-copy {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 255, 0.98));
    border: 1px solid rgba(215, 224, 236, 0.92);
    border-radius: 30px;
    padding: 2rem 2.1rem;
    box-shadow: var(--shadow-soft);
}

.blog-landing-copy p:last-child {
    max-width: 760px;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.blog-index-intro {
    margin-bottom: 1.6rem;
    padding: 0.35rem 0 0.2rem;
}

.blog-index-title {
    margin-bottom: 0.65rem;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    line-height: 1.08;
}

.blog-index-description {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--neutral-700);
    font-size: 1.02rem;
    line-height: 1.8;
}

.blog-landing-summary,
.blog-sidebar,
.blog-post-stack,
.blog-share-grid,
.blog-newsletter-form {
    display: grid;
    gap: 1rem;
}

.blog-index-section,
.blog-post-page {
    padding-top: 0.35rem;
}

.blog-stat-card,
.blog-sidebar-card,
.blog-list-card,
.blog-related-card {
    border-radius: 24px;
}

.blog-stat-card {
    background: linear-gradient(135deg, #0f2d70, #1456d9);
    color: var(--neutral-0);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(15, 43, 112, 0.2);
    padding: 1.35rem 1.4rem;
}

.blog-stat-card span,
.blog-stat-card small {
    color: rgba(255, 255, 255, 0.78);
}

.blog-stat-card span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.blog-stat-card strong {
    display: block;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.55rem;
}

.blog-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.blog-section-kicker {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-blue);
}

.blog-article-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue-dark);
    padding: 0.55rem 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.blog-list-card {
    overflow: hidden;
    border-radius: 26px;
}

.blog-list-card .card-body,
.blog-related-card .card-body {
    display: grid;
    gap: 0.85rem;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.blog-card-meta span {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.blog-sidebar {
    position: sticky;
    top: 104px;
}

.blog-sidebar-card {
    overflow: hidden;
}

.blog-sidebar-card .card-header {
    padding-bottom: 0.95rem;
}

.blog-sidebar-card .card-body {
    padding: 1.45rem;
}

.blog-category-list .list-group-item {
    padding-inline: 0;
    border: 0;
    border-bottom: 1px solid var(--neutral-150);
    border-radius: 0 !important;
    background: transparent;
}

.blog-category-list .list-group-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.blog-newsletter-card {
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
}

.blog-newsletter-form .btn,
.blog-share-grid .btn {
    width: 100%;
}

.blog-pagination-wrap {
    margin-top: 2rem;
}

.blog-post-header {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.blog-post-header h1 {
    font-size: clamp(2.25rem, 4vw, 3.45rem);
    line-height: 1.04;
    max-width: 920px;
}

.blog-post-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--neutral-700);
    max-width: 860px;
    margin-bottom: 0;
}

.blog-post-author-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.blog-post-author-chip {
    display: grid;
    gap: 0.12rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: var(--neutral-0);
    border: 1px solid var(--neutral-150);
    box-shadow: var(--shadow-soft);
}

.blog-post-author-chip span {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.blog-content-card {
    padding: 2.1rem;
}

.blog-related-section {
    padding-top: 0.4rem;
}

.blog-share-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-link {
    font-weight: 700;
}

.category-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
    color: var(--neutral-500);
    font-size: 0.92rem;
}

.category-card-meta strong,
.service-card-price {
    color: var(--neutral-900);
    font-weight: 700;
}

.service-card-price {
    margin-top: 0.15rem;
    margin-bottom: 0.85rem;
    font-size: 0.98rem;
}

.feature-card,
.step,
.timeline-step,
.guideline-card {
    padding: 1.7rem;
}

.step-number,
.timeline-step span,
.feature-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 1.05rem;
}

.cta-split,
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.8rem;
    color: var(--neutral-0);
    border-radius: 32px;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 24px 56px rgba(8, 26, 65, 0.24);
}

.cta-split {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, #1147b4, #0a2d78);
}

.footer-cta {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(135deg, #1147b4, #0b2c73);
    margin-bottom: 2.8rem;
}

.cta-split h2,
.cta-split h3,
.cta-split p,
.footer-cta h2,
.footer-cta h3,
.footer-cta p {
    color: var(--neutral-0);
}

.cta-split-copy,
.footer-cta > div:first-child {
    flex: 1;
    min-width: 0;
}

.cta-split-copy h3,
.footer-cta h2 {
    max-width: 760px;
    margin-bottom: 0.7rem;
}

.cta-split-copy p,
.footer-cta p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cta-split-actions,
.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.cta-split-actions .btn,
.footer-cta-btn {
    min-width: 176px;
    min-height: 58px;
    padding-inline: 1.35rem;
    line-height: 1.15;
}

.listing-layout,
.detail-layout,
.checkout-grid,
.dashboard-shell,
.function-split {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.listing-layout {
    grid-template-columns: minmax(280px, 320px) 1fr;
}

.services-filters-wrap {
    margin-bottom: 1.25rem;
}

.listing-mobile-toolbar {
    display: none;
    margin-bottom: 1rem;
}

.listing-filters-toggle {
    width: 100%;
}

.services-filters-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 44px;
    border-radius: 14px;
}

.services-filters-toggle::after {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.services-filters-toggle[aria-expanded="true"]::after {
    transform: rotate(-135deg) translateY(-1px);
}

.detail-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.checkout-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.dashboard-shell {
    grid-template-columns: 280px 1fr;
    gap: 1.8rem;
}

.function-split {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.filters-card,
.booking-card,
.checkout-card,
.dashboard-sidebar {
    position: sticky;
    top: 104px;
}

.filters-card-horizontal {
    position: static;
    top: auto;
    padding: 0.95rem 1rem;
    border-radius: 24px;
}

.filters-card-horizontal .filters-card-header {
    margin-bottom: 0.75rem;
}

.filters-card-horizontal .filters-card-header h2 {
    font-size: 1.05rem;
    margin-bottom: 0.18rem;
}

.filters-card-horizontal .filters-card-header p {
    font-size: 0.96rem;
    margin-bottom: 0;
}

.filters-form-horizontal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: end;
    gap: 0.65rem 0.8rem;
}

.filters-form-horizontal .form-field {
    margin-bottom: 0;
}

.filters-form-horizontal .form-field label {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.filters-form-horizontal .form-control,
.filters-form-horizontal .form-select {
    min-height: 40px;
    padding: 0.6rem 0.9rem;
    border-radius: 16px;
    font-size: 0.98rem;
}

.filters-form-horizontal .filters-price-grid {
    grid-column: span 2;
    gap: 0.65rem 0.8rem;
}

.filters-actions {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    justify-content: flex-start;
    align-self: end;
}

.filters-actions .btn {
    min-height: 40px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    line-height: 1.1;
}

.listing-results-full {
    width: 100%;
}

.services-catalog-layout {
    display: grid;
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.services-catalog-sidebar {
    min-width: 0;
}

.services-catalog-results {
    min-width: 0;
}

.services-filters-card {
    position: sticky;
    top: 104px;
    padding: 1.1rem;
    border-radius: 22px;
    border: 1px solid rgba(15, 39, 84, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(12, 28, 61, 0.07);
    backdrop-filter: blur(10px);
}

.services-filters-header {
    margin-bottom: 1rem;
}

.services-filters-header .card-kicker {
    margin-bottom: 0.35rem;
    color: rgba(15, 39, 84, 0.56);
}

.services-filters-header h2 {
    font-size: 1.18rem;
    margin-bottom: 0.3rem;
}

.services-filters-header p {
    margin-bottom: 0;
    font-size: 0.93rem;
    color: rgba(15, 39, 84, 0.72);
    line-height: 1.55;
}

.services-filters-form {
    display: grid;
    gap: 0.8rem;
}

.services-filters-form .form-field {
    margin-bottom: 0;
}

.services-filters-form .form-field label {
    margin-bottom: 0.38rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(15, 39, 84, 0.62);
}

.services-filters-form .form-control,
.services-filters-form .form-select {
    min-height: 44px;
    padding: 0.72rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 39, 84, 0.1);
    background: rgba(248, 250, 252, 0.92);
    box-shadow: none;
    font-size: 0.95rem;
}

.services-filters-form .form-control:focus,
.services-filters-form .form-select:focus {
    border-color: rgba(15, 77, 182, 0.3);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 77, 182, 0.08);
}

.services-filters-price-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.services-filters-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding-top: 0.25rem;
}

.services-filters-actions .btn {
    width: 100%;
    min-height: 42px;
    border-radius: 14px;
}

.services-listing-toolbar {
    margin-bottom: 1.15rem;
    padding: 0.35rem 0 0.75rem;
    border-bottom: 1px solid rgba(15, 39, 84, 0.08);
}

.services-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.provider-results-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.filters-card-header h2,
.listing-toolbar h2,
.detail-card h2,
.booking-card h2,
.checkout-card h2,
.auth-card h2 {
    font-size: 1.42rem;
    margin-bottom: 0.42rem;
}

.filters-form,
.auth-form {
    display: grid;
    gap: 1rem;
}

.filters-price-grid,
.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.listing-toolbar,
.provider-result-top,
.provider-card-header,
.provider-result-footer,
.provider-result-actions,
.dashboard-card-header,
.review-card-head,
.checkout-total-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.listing-toolbar,
.dashboard-card-header {
    align-items: end;
    margin-bottom: 1.3rem;
}

.listing-count {
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.sort-form {
    min-width: 220px;
}

.listing-sort-label {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.07);
    color: var(--brand-blue-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.provider-card-header {
    align-items: center;
}

.provider-card-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
    flex-shrink: 0;
}

.provider-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-result-description {
    margin: 0.1rem 0 0.25rem;
}

.provider-result-meta,
.service-offer-meta,
.checkout-info-list,
.detail-highlight-grid,
.footer-grid,
.footer-meta,
.footer-column ul,
.footer-social,
.footer-legal-links,
.dashboard-content,
.detail-main,
.detail-sidebar,
.checkout-summary,
.checkout-sidebar,
.review-list {
    display: grid;
    gap: 0.85rem;
}

.dashboard-content {
    gap: 1.2rem;
}

.provider-result-footer,
.provider-result-actions {
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.provider-result-actions .btn {
    flex: 1 1 150px;
}

.provider-result-meta span,
.service-offer-meta span,
.checkout-info-list span,
.detail-highlight-grid span {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.provider-price {
    display: block;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.provider-rating {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    color: var(--brand-blue-dark);
    flex-wrap: wrap;
}

.favorite-toggle {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--neutral-200);
    background: var(--neutral-0);
    color: var(--neutral-500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    transition: all 0.2s ease;
}

.favorite-toggle:hover {
    border-color: rgba(214, 46, 109, 0.25);
    color: #d62e6d;
}

.favorite-toggle.is-active {
    color: #d62e6d;
    border-color: rgba(214, 46, 109, 0.25);
    background: rgba(214, 46, 109, 0.08);
}

.service-hero-card {
    padding: 1.5rem;
}

.service-card-img,
.service-hero-img,
.provider-card-media img {
    height: 220px;
}

.provider-card-actions,
.service-offer-actions {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
}

.prestador-profile-header-section {
    padding-top: 1.4rem;
}

.prestador-profile-header-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: 0 14px 36px rgba(9, 34, 88, 0.06);
}

.prestador-profile-header-main {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

.prestador-profile-header-brand {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.prestador-profile-header-logo {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(20, 86, 217, 0.1);
    background: linear-gradient(180deg, #ffffff, #eef4ff);
}

.prestador-profile-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestador-profile-header-copy {
    min-width: 0;
}

.prestador-profile-header-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.45rem;
}

.prestador-profile-header-topline p {
    margin: 0;
    color: var(--neutral-500);
    font-size: 0.92rem;
    font-weight: 600;
}

.prestador-profile-header-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.08);
    color: var(--brand-blue-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prestador-profile-header-copy h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.prestador-profile-header-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.prestador-profile-header-stat {
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(20, 86, 217, 0.04);
    border: 1px solid rgba(20, 86, 217, 0.08);
}

.prestador-profile-header-stat span {
    color: var(--neutral-500);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.prestador-profile-header-stat strong {
    color: var(--neutral-900);
    font-size: 0.98rem;
    line-height: 1.35;
}

.prestador-profile-header-actions {
    display: grid;
    gap: 0.7rem;
    width: min(220px, 100%);
}

.prestador-profile-header-actions .btn {
    width: 100%;
    min-height: 48px;
}

.prestador-profile-hero-wrap {
    position: relative;
    padding: 2rem 0 0.75rem;
}

.prestador-profile-hero {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-radius: 32px;
    background:
        linear-gradient(120deg, rgba(6, 18, 43, 0.82), rgba(11, 41, 101, 0.68)),
        var(--prestador-cover) center/cover no-repeat;
    box-shadow: 0 24px 56px rgba(9, 34, 88, 0.16);
}

.prestador-profile-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(68, 188, 149, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12), transparent 32%);
}

.prestador-profile-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(300px, 356px);
    gap: 1.15rem;
    align-items: stretch;
    padding: 1.35rem;
}

.prestador-profile-hero-main,
.prestador-profile-hero-panel {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.prestador-profile-hero-main {
    padding: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
}

.prestador-profile-hero-panel {
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.09));
    box-shadow: 0 18px 44px rgba(4, 15, 36, 0.18);
    display: grid;
    align-content: start;
    gap: 0.95rem;
}

.prestador-profile-brand-topline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.95rem;
}

.prestador-profile-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.4rem 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--neutral-0);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prestador-profile-brand {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.prestador-profile-logo {
    width: 112px;
    height: 112px;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 38px rgba(5, 20, 54, 0.24);
    background: rgba(255, 255, 255, 0.1);
}

.prestador-profile-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestador-profile-brand-copy {
    min-width: 0;
}

.prestador-profile-hero h1,
.prestador-profile-hero h2,
.prestador-profile-hero p,
.prestador-profile-hero span,
.prestador-profile-hero strong {
    color: var(--neutral-0);
}

.prestador-profile-location {
    margin: 0;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72) !important;
}

.prestador-profile-brand-copy h1 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.prestador-profile-hero-copy {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 58ch;
}

.prestador-profile-proofbar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
}

.prestador-profile-proof-item,
.prestador-profile-hero-note span {
    display: grid;
    gap: 0.18rem;
    padding: 0.8rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prestador-profile-proof-item span {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.prestador-profile-proof-item strong {
    line-height: 1.35;
    font-size: 0.98rem;
}

.prestador-profile-hero-actions {
    display: grid;
    gap: 0.65rem;
}

.prestador-profile-hero-actions .btn {
    width: 100%;
    min-height: 50px;
}

.prestador-profile-hero-actions .favorite-toggle {
    width: 100%;
    min-width: 0;
    justify-content: center;
    gap: 0.55rem;
    font-size: 1rem;
}

.prestador-profile-hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.prestador-profile-page .detail-layout {
    align-items: start;
    gap: 1.35rem;
}

.prestador-section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1rem;
}

.prestador-section-head h2 {
    margin-bottom: 0;
    font-size: clamp(1.55rem, 2.8vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.prestador-section-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue-dark);
    font-weight: 700;
    white-space: nowrap;
}

.service-offer-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(215, 224, 236, 0.9);
    background: linear-gradient(180deg, #ffffff, #fbfcff);
    box-shadow: 0 12px 28px rgba(9, 34, 88, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.prestador-profile-story-card,
.prestador-profile-hours-card,
.prestador-services-card,
.prestador-reviews-card,
.prestador-booking-card {
    border-radius: 26px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: 0 14px 36px rgba(9, 34, 88, 0.06);
}

.prestador-services-card .provider-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.prestador-lead-copy {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--neutral-700);
}

.prestador-profile-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    align-items: start;
}

.prestador-profile-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.prestador-profile-fact {
    display: grid;
    gap: 0.45rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(20, 86, 217, 0.04);
    border: 1px solid rgba(20, 86, 217, 0.08);
}

.prestador-profile-fact span {
    color: var(--neutral-500);
}

.prestador-profile-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.prestador-contact-card {
    text-align: center;
}

.prestador-contact-card .checkout-info-list {
    gap: 0.65rem;
}

.prestador-contact-card .checkout-info-list div {
    text-align: center;
}

.prestador-sidebar-hours-card {
    padding: 1.15rem 1.2rem;
}

.prestador-sidebar-hours-head {
    margin-bottom: 0.85rem;
    align-items: center;
}

.prestador-sidebar-hours-head h2 {
    font-size: 1.15rem;
}

.prestador-sidebar-hours-list {
    display: grid;
    gap: 0.55rem;
}

.prestador-sidebar-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    border: 1px solid rgba(20, 86, 217, 0.08);
    background: rgba(20, 86, 217, 0.04);
}

.prestador-sidebar-hour-item span {
    color: var(--neutral-500);
}

.prestador-sidebar-hour-item strong {
    font-size: 0.95rem;
}

.prestador-sidebar-hour-item.is-closed {
    background: rgba(109, 126, 153, 0.07);
    border-color: rgba(109, 126, 153, 0.12);
}

.prestador-sidebar-hour-item.is-closed strong {
    color: var(--neutral-500);
}

.utility-hero {
    position: relative;
    overflow: hidden;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.utility-card {
    border-radius: 26px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: 0 14px 36px rgba(9, 34, 88, 0.06);
    padding: 1.5rem;
}

.utility-card h2 {
    margin-bottom: 0.8rem;
}

.utility-card p {
    color: var(--neutral-600);
}

.utility-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1rem 0 1.2rem;
}

.utility-card-meta span {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.06);
    border: 1px solid rgba(20, 86, 217, 0.08);
    color: var(--neutral-700);
    font-weight: 600;
    font-size: 0.92rem;
}

.utility-calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1.2rem;
    align-items: start;
}

.utility-section-head {
    margin-bottom: 1rem;
}

.utility-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.utility-form-span-2 {
    grid-column: 1 / -1;
}

.utility-form-actions {
    margin-top: 1rem;
}

.utility-results-grid {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.15rem;
}

.utility-result-item {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(20, 86, 217, 0.05);
    border: 1px solid rgba(20, 86, 217, 0.08);
    display: grid;
    gap: 0.35rem;
}

.utility-result-item span {
    color: var(--neutral-500);
}

.utility-result-item strong {
    font-size: 1.45rem;
    color: var(--neutral-900);
}

.utility-result-note {
    margin-top: 1rem;
    color: var(--neutral-500);
}

.utility-routes-card {
    margin-top: 1.2rem;
}

.utility-routes-list {
    display: grid;
    gap: 0.9rem;
}

.utility-route-item {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(20, 86, 217, 0.04);
    border: 1px solid rgba(20, 86, 217, 0.08);
}

.utility-route-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.utility-route-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    color: var(--neutral-600);
}

.utility-empty-state,
.utility-attribution {
    color: var(--neutral-500);
}

.utility-attribution {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.prestador-profile-hour-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--neutral-150);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.prestador-profile-hour-item span {
    color: var(--neutral-500);
    font-weight: 600;
}

.prestador-profile-hour-item strong {
    text-align: right;
}

.prestador-profile-hour-item.is-open {
    border-color: rgba(20, 86, 217, 0.14);
}

.prestador-profile-hour-item.is-closed {
    background: linear-gradient(180deg, #fbfcfe, #f5f7fb);
}

.prestador-profile-hour-item.is-closed strong {
    color: var(--neutral-500);
}

.prestador-profile-main {
    display: grid;
    gap: 1.15rem;
}

.service-offer-media {
    position: relative;
}

.service-offer-media-link {
    display: block;
    color: inherit;
}

.service-offer-media img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-offer-body {
    display: grid;
    gap: 1rem;
    padding: 1.35rem 1.4rem 1.4rem;
    flex: 1;
    align-content: start;
    min-height: 100%;
}

.service-offer-body h3 {
    margin-bottom: 0;
    font-size: 1.55rem;
    line-height: 1.15;
    min-height: 2.3em;
    letter-spacing: -0.02em;
}

.service-offer-body h3 a {
    color: inherit;
    text-decoration: none;
}

.service-offer-body h3 a:hover {
    color: var(--brand-blue-dark);
}

.service-offer-head {
    display: block;
}

.service-offer-copy {
    margin-top: 0.35rem;
    color: var(--neutral-600);
    line-height: 1.7;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.7em * 3);
}

.service-offer-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
    align-items: center;
}

.service-offer-category {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.5rem 0.9rem;
    border-radius: 18px;
    background: rgba(20, 86, 217, 0.08);
    color: var(--brand-blue-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    max-width: min(68%, 320px);
    line-height: 1.3;
}

.service-offer-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.45rem 0.95rem;
    border-radius: 16px;
    background: var(--neutral-0);
    border: 1px solid rgba(20, 86, 217, 0.14);
    color: var(--brand-blue-dark);
    white-space: nowrap;
    font-size: 0.94rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.service-offer-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.service-offer-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 40, 0.04);
    border: 1px solid rgba(15, 23, 40, 0.06);
    color: var(--neutral-600);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-offer-body p {
    margin-bottom: 0;
}

.service-offer-actions {
    margin-top: auto;
}

.service-offer-actions .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 1.2rem;
    line-height: 1.1;
    font-size: 1rem;
}

.service-offer-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.8rem;
    padding-top: 0.2rem;
}

.booking-card {
    border-radius: 28px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    box-shadow: 0 20px 50px rgba(9, 34, 88, 0.1);
}

.booking-summary-points {
    display: grid;
    gap: 0.75rem;
    margin: 1rem 0 1.2rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    border: 1px solid var(--neutral-150);
}

.booking-summary-points div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
}

.booking-summary-points span {
    color: var(--neutral-500);
    font-size: 0.9rem;
}

.booking-summary-points strong {
    color: var(--neutral-900);
    text-align: right;
}

.booking-available-days {
    display: grid;
    gap: 0.8rem;
    margin: 0 0 1.2rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    border: 1px solid var(--neutral-150);
}

.booking-available-days strong {
    color: var(--neutral-900);
}

.booking-available-days-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.booking-available-days-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.08);
    border: 1px solid rgba(20, 86, 217, 0.12);
    color: var(--brand-blue-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.review-card {
    padding: 1.25rem 1.3rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    border: 1px solid var(--neutral-150);
}

.review-card {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-sm);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
}

.review-card-polished {
    padding: 1.3rem 1.35rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(215, 224, 236, 0.92);
}

.business-hours-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.business-hours-head span {
    color: var(--neutral-500);
    font-size: 0.88rem;
    font-weight: 600;
}

.review-stars {
    color: var(--brand-gold);
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.function-steps {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.function-steps li {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
    border-radius: var(--radius-sm);
    padding: 1rem 1rem 0.95rem;
}

.guideline-card ul {
    margin: 1rem 0 0;
    padding-left: 1rem;
}

.guideline-card li {
    margin-bottom: 0.5rem;
    color: var(--neutral-500);
}

.checkout-service-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
}

.checkout-service-media {
    position: relative;
    min-height: 100%;
}

.checkout-info-list,
.detail-highlight-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 1.2rem;
}

.checkout-info-list strong,
.detail-highlight-grid strong,
.checkout-total-row strong {
    color: var(--neutral-900);
}

.checkout-total-row {
    align-items: baseline;
    padding: 0.4rem 0;
}

.checkout-divider {
    height: 1px;
    background: var(--neutral-150);
    margin: 1rem 0 1.2rem;
}

.checkout-disclaimer {
    margin-top: 1rem;
    font-size: 0.92rem;
}

.auth-shell {
    display: flex;
    justify-content: center;
}

.auth-register-shell {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: min(100%, 540px);
}

.auth-register-card {
    width: min(100%, 1040px);
    background: var(--neutral-0);
    border: 1px solid rgba(215, 224, 236, 0.9);
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.auth-card-intro {
    margin-bottom: 1.2rem;
}

.auth-register-intro {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.75rem 1.9rem 1.25rem;
    border-bottom: 1px solid var(--neutral-150);
    background: linear-gradient(180deg, #ffffff, #f7faff);
}

.auth-register-intro p:last-child {
    max-width: 760px;
    margin-bottom: 0;
}

.auth-register-form {
    display: grid;
    gap: 1.4rem;
    padding: 1.5rem 1.9rem 1.9rem;
}

.auth-register-section {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--neutral-150);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.auth-section-heading {
    display: grid;
    gap: 0.25rem;
}

.auth-section-heading h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.auth-section-heading p {
    margin-bottom: 0;
}

.account-choice-grid,
.auth-form-grid {
    display: grid;
    gap: 1rem;
}

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

.account-choice {
    position: relative;
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem 1.25rem;
    border-radius: 24px;
    border: 1px solid var(--neutral-150);
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.account-choice:hover {
    transform: translateY(-1px);
    border-color: rgba(20, 86, 217, 0.24);
    box-shadow: var(--shadow-soft);
}

.account-choice.is-active {
    border-color: rgba(20, 86, 217, 0.36);
    box-shadow: 0 18px 38px rgba(20, 86, 217, 0.1);
    background: linear-gradient(180deg, #ffffff, #eef4ff);
}

.account-choice-input {
    position: absolute;
    inset: 1.15rem 1.15rem auto auto;
}

.account-choice-title {
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.account-choice-text {
    color: var(--neutral-500);
}

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

.auth-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.auth-form-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auth-grid-span-2 {
    grid-column: span 2;
}

.prestador-register-fields {
    display: grid;
    gap: 1.4rem;
}

.schedule-builder {
    display: grid;
    gap: 1rem;
}

.schedule-builder-body {
    display: grid;
    gap: 0.9rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.35fr);
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border: 1px solid var(--neutral-150);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.schedule-row.is-active {
    border-color: rgba(20, 86, 217, 0.28);
    box-shadow: 0 16px 32px rgba(20, 86, 217, 0.08);
    background: linear-gradient(180deg, #ffffff, #eef4ff);
}

.schedule-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.schedule-row-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.schedule-day-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.schedule-day-toggle input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--brand-blue);
    margin: 0;
}

.schedule-row-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #eef3ff;
    color: var(--brand-blue-dark);
    font-size: 0.84rem;
    font-weight: 700;
}

.schedule-select-wrap {
    width: 100%;
    display: grid;
    gap: 0.35rem;
}

.schedule-select-label {
    margin: 0;
    color: var(--neutral-500);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.schedule-select:disabled {
    opacity: 0.55;
    background: #f3f6fb;
}

.business-hours-card {
    margin-top: 1.4rem;
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    border: 1px solid var(--neutral-150);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.business-hours-card h3 {
    margin-bottom: 0.95rem;
    font-size: 1rem;
}

.business-hours-list {
    display: grid;
    gap: 0.55rem;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid rgba(215, 224, 236, 0.7);
}

.business-hours-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.business-hours-row strong {
    color: var(--neutral-900);
}

.business-hours-row .is-closed {
    color: var(--neutral-500);
    font-weight: 600;
}

.dashboard-business-hours {
    margin-top: 1.25rem;
}

.auth-register-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.auth-register-footer .btn {
    min-width: 240px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.4rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    background: var(--neutral-150);
}

.auth-divider span {
    position: relative;
    background: var(--neutral-0);
    color: var(--neutral-500);
    padding: 0 1rem;
}

.social-login-note {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.dashboard-sidebar {
    background: var(--neutral-0);
    border: 1px solid rgba(215, 224, 236, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1rem;
    display: grid;
    gap: 0.45rem;
}

.dashboard-link {
    padding: 0.92rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--neutral-700);
    font-weight: 600;
}

.dashboard-link:hover,
.dashboard-link.is-active {
    background: var(--brand-blue-soft);
    color: var(--brand-blue-dark);
}

.dashboard-link.logout {
    color: var(--brand-red);
}

.metric-card span {
    color: var(--neutral-500);
}

.metric-card strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 2rem;
}

.dashboard-table {
    overflow-x: auto;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.82rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.status-pendente {
    background: rgba(243, 182, 61, 0.18);
    color: #926000;
}

.status-confirmado {
    background: rgba(31, 157, 89, 0.14);
    color: #16663d;
}

.status-published {
    background: rgba(31, 157, 89, 0.14);
    color: #16663d;
}

.status-concluido {
    background: rgba(20, 86, 217, 0.12);
    color: var(--brand-blue-dark);
}

.status-draft {
    background: rgba(243, 182, 61, 0.18);
    color: #926000;
}

.status-admin {
    background: rgba(15, 23, 40, 0.1);
    color: var(--neutral-900);
}

.status-cliente {
    background: rgba(20, 86, 217, 0.1);
    color: var(--brand-blue-dark);
}

.status-prestador {
    background: rgba(31, 157, 89, 0.14);
    color: #16663d;
}

.status-cancelado {
    background: rgba(197, 59, 52, 0.12);
    color: var(--brand-red);
}

.favorite-card h3 {
    font-size: 1.06rem;
    margin-bottom: 0.2rem;
}

.empty-state-card {
    text-align: center;
    padding: 2.2rem;
}

.newsletter {
    border-radius: var(--radius-xl);
    padding: 2.4rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.newsletter-form .form-control {
    flex: 1;
    min-width: 240px;
}

.footer {
    background: #091a3e;
    color: var(--neutral-0);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer,
.footer p,
.footer span,
.footer li,
.footer a,
.footer h5 {
    color: var(--neutral-0) !important;
}

.footer-cta-actions,
.footer-social,
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-0);
    color: var(--brand-blue-dark) !important;
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    font-weight: 700;
    min-width: 190px;
    box-shadow: 0 12px 22px rgba(8, 26, 65, 0.18);
}

.footer a.footer-cta-btn,
.footer .footer-cta-btn,
.footer .footer-cta-btn:visited {
    color: var(--brand-blue-dark) !important;
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-blue-dark) !important;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-meta,
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-bottom {
    margin-top: 2.6rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-sidebar .dashboard-link {
    font-size: 0.95rem;
}

.admin-page-hero {
    padding-top: 1.15rem;
    padding-bottom: 1.45rem;
}

.admin-page-hero::before {
    background:
        radial-gradient(circle at top left, rgba(20, 86, 217, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(15, 23, 40, 0.02), transparent 80%);
}

.admin-page-section {
    padding-top: 0.25rem;
}

.admin-shell {
    grid-template-columns: 252px minmax(0, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.admin-content {
    gap: 1.1rem;
}

.admin-sidebar {
    background: linear-gradient(180deg, #0f1728 0%, #16233b 100%);
    border: 1px solid rgba(34, 50, 70, 0.9);
    box-shadow: 0 26px 56px rgba(8, 18, 36, 0.34);
    padding: 0.9rem;
    gap: 0.8rem;
    min-height: 0;
    align-self: start;
}

.admin-sidebar-brand {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 0.95rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 700;
}

.admin-sidebar-brand strong {
    color: #fff;
    font-size: 1.15rem;
}

.admin-sidebar-brand small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.admin-nav,
.admin-sidebar-footer {
    display: grid;
    gap: 0.35rem;
}

.admin-sidebar .dashboard-link {
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid transparent;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.72rem 0.95rem;
    border-radius: 16px;
}

.admin-sidebar .dashboard-link:hover,
.admin-sidebar .dashboard-link.is-active {
    background: rgba(20, 86, 217, 0.18);
    border-color: rgba(120, 163, 255, 0.16);
    color: #fff;
}

.admin-sidebar .dashboard-link.logout {
    margin-top: 0.25rem;
    color: #ffb0a8;
}

.admin-sidebar-footer {
    margin-top: 0.35rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-overview-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f7ff 100%);
    border: 1px solid rgba(212, 224, 242, 0.96);
    box-shadow: 0 18px 38px rgba(15, 23, 40, 0.08);
}

.admin-overview-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-blue);
}

.admin-overview-card h2 {
    margin-bottom: 0.3rem;
    font-size: clamp(1.5rem, 2vw, 1.95rem);
}

.admin-overview-card p {
    max-width: 720px;
    margin-bottom: 0;
}

.admin-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.admin-panel-card {
    border-radius: 22px;
    border-color: rgba(214, 224, 238, 0.95);
    box-shadow: 0 16px 32px rgba(15, 23, 40, 0.07);
    padding: 1.05rem 1.1rem 1rem;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.9rem;
    border-bottom: 1px solid var(--neutral-150);
}

.admin-card-header .card-kicker {
    margin-bottom: 0.4rem;
}

.admin-card-header h2 {
    margin-bottom: 0;
    line-height: 1.15;
}

.admin-metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-metric-card {
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    box-shadow: none;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.admin-metric-card span {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--neutral-500);
}

.admin-metric-card strong {
    font-size: 2rem;
}

.admin-action-grid .btn {
    min-height: 52px;
}

.admin-toolbar-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.8fr) minmax(220px, 280px) minmax(120px, 140px);
    align-items: stretch;
}

.admin-toolbar-grid-wide {
    grid-template-columns: minmax(0, 1.7fr) minmax(220px, 280px) minmax(220px, 260px) minmax(120px, 140px);
}

.admin-toolbar-grid .form-control,
.admin-toolbar-grid .form-select,
.admin-toolbar-grid .btn {
    min-height: 54px;
}

.admin-toolbar-grid .btn {
    width: 100%;
}

.admin-table-wrap {
    border: 1px solid var(--neutral-150);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.admin-table thead th {
    background: #f7f9fc;
    color: var(--neutral-500);
    border-bottom: 1px solid var(--neutral-150);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.admin-table tbody tr:hover > * {
    background: rgba(20, 86, 217, 0.035);
}

.admin-table tbody td {
    background: #fff;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.admin-editor-card {
    padding: 0;
}

.admin-editor-card .admin-card-header {
    padding: 1rem 1.15rem 0.85rem;
    margin-bottom: 0;
}

.featured-upload-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0.9rem;
    align-items: center;
    border: 1px solid var(--neutral-150);
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f9fbff);
    padding: 0.85rem;
}

.featured-upload-preview {
    border-radius: 16px;
    overflow: hidden;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
}

.featured-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-upload-meta {
    display: grid;
    gap: 0.35rem;
}

.featured-upload-meta p {
    margin-bottom: 0;
}

.admin-ai-generator-card {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    border: 1px solid rgba(20, 86, 217, 0.14);
    background: linear-gradient(180deg, rgba(245, 248, 255, 0.96), rgba(255, 255, 255, 0.98));
}

.admin-ai-generator-head {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
}

.admin-ai-generator-head h3 {
    margin: 0;
    font-size: 1.05rem;
}

.admin-bulk-toolbar {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.admin-bulk-counters {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-bulk-section-copy {
    margin: 0.35rem 0 0;
    color: var(--neutral-500);
    max-width: 640px;
}

.admin-bulk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.85rem;
}

.admin-bulk-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--neutral-150);
    background: linear-gradient(180deg, #fff, #f9fbff);
    cursor: pointer;
}

.admin-bulk-item.is-complete {
    border-color: rgba(34, 197, 94, 0.28);
    background: linear-gradient(180deg, rgba(240, 253, 244, 0.98), rgba(220, 252, 231, 0.92));
    box-shadow: inset 0 0 0 1px rgba(187, 247, 208, 0.95);
}

.admin-bulk-item.is-complete strong {
    color: #14532d;
}

.admin-bulk-item.is-complete small {
    color: #166534;
}

.admin-bulk-item.is-missing {
    border-color: rgba(20, 86, 217, 0.14);
}

.admin-bulk-item input {
    margin-top: 0.25rem;
}

.admin-bulk-item strong,
.admin-bulk-item small {
    display: block;
}

.admin-bulk-item small {
    color: var(--neutral-500);
    margin-top: 0.2rem;
}

.blog-article-counter-success {
    color: #166534;
    border-color: rgba(34, 197, 94, 0.18);
    background: rgba(240, 253, 244, 0.95);
}

.admin-floating-submit {
    position: sticky;
    bottom: 18px;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(20, 86, 217, 0.16);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(15, 23, 40, 0.12);
}

.admin-floating-submit-copy {
    display: grid;
    gap: 0.18rem;
}

.admin-floating-submit-copy strong {
    color: var(--neutral-900);
}

.admin-floating-submit-copy span {
    color: var(--neutral-500);
}

.admin-metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-action-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.admin-toolbar-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.7fr) auto;
    align-items: center;
}

.admin-inline-actions {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0.85rem;
    margin-top: 0.2rem;
    border-top: 1px solid var(--neutral-150);
}

.admin-inline-actions .btn {
    min-height: 44px;
}

.admin-inline-actions form {
    margin: 0;
}

.admin-list-thumb {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--neutral-150);
    background: var(--neutral-50);
}

.admin-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-form-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.2rem;
}

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

.admin-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-grid-span-2 {
    grid-column: span 2;
}

.form-field-span-2 {
    grid-column: span 2;
}

.admin-empty-state {
    display: grid;
    gap: 0.45rem;
    padding: 2rem;
    text-align: center;
    color: var(--neutral-600);
}

.admin-empty-state h3 {
    margin: 0;
    color: var(--neutral-900);
    font-size: 1.2rem;
}

.admin-conditional-block {
    display: none;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.destaque-admin-card .dashboard-booking-actions form {
    width: 100%;
}

.dashboard-form-stack {
    display: grid;
    gap: 1.4rem;
}

.provider-profile-page {
    position: relative;
}

.provider-profile-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
    gap: 1.4rem;
    padding: 2rem;
    margin-bottom: 1.8rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%),
        linear-gradient(135deg, #081c47 0%, #1456d9 55%, #2c8a68 100%);
    box-shadow: 0 28px 64px rgba(8, 28, 71, 0.24);
    overflow: hidden;
}

.provider-profile-hero::after {
    content: '';
    position: absolute;
    inset: auto -8% -20% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
    pointer-events: none;
}

.provider-profile-hero-copy,
.provider-profile-hero-stats {
    position: relative;
    z-index: 1;
}

.provider-profile-hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.provider-profile-hero h1,
.provider-profile-hero p,
.provider-profile-hero strong,
.provider-profile-hero span,
.provider-profile-hero small {
    color: var(--neutral-0);
}

.provider-profile-hero h1 {
    max-width: 760px;
    margin-bottom: 0.9rem;
    font-size: clamp(2.3rem, 4vw, 3.65rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.provider-profile-hero p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.provider-profile-hero-stats {
    display: grid;
    gap: 0.95rem;
}

.provider-profile-hero-stat {
    display: grid;
    gap: 0.35rem;
    padding: 1.1rem 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.provider-profile-hero-stat span,
.provider-profile-hero-stat small {
    color: rgba(255, 255, 255, 0.74);
}

.provider-profile-hero-stat strong {
    font-size: 1.7rem;
    line-height: 1;
}

.provider-profile-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
}

.provider-profile-sidebar {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 104px;
}

.provider-profile-sidebar-card,
.provider-profile-section-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(215, 224, 236, 0.92);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(9, 34, 88, 0.08);
    backdrop-filter: blur(10px);
}

.provider-profile-sidebar-card {
    padding: 1.2rem;
}

.provider-profile-brand-card {
    display: grid;
    gap: 1.25rem;
}

.provider-profile-brand-head {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 0.95rem;
    align-items: center;
}

.provider-profile-brand-head h2 {
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.provider-profile-brand-head p:last-child {
    margin-bottom: 0;
}

.provider-profile-brand-logo {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #eef4ff);
    border: 1px solid rgba(20, 86, 217, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.provider-profile-brand-logo-user {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1456d9, #2c8a68);
    color: #fff;
    font-size: 1.9rem;
    font-weight: 800;
}

.provider-profile-brand-logo img,
.provider-profile-media-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-profile-progress {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #fbfdff, #f2f7ff);
    border: 1px solid rgba(20, 86, 217, 0.1);
}

.provider-profile-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.provider-profile-progress-head span {
    color: var(--brand-blue-dark);
    font-weight: 700;
}

.provider-profile-progress p {
    margin-bottom: 0;
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.provider-profile-progress-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(20, 86, 217, 0.1);
    overflow: hidden;
}

.provider-profile-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1456d9, #29a36a);
}

.provider-profile-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.provider-profile-checklist li {
    position: relative;
    padding: 0.85rem 0.95rem 0.85rem 2.8rem;
    border-radius: 18px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-150);
    color: var(--neutral-700);
    font-weight: 600;
}

.provider-profile-checklist li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--neutral-200);
    transform: translateY(-50%);
}

.provider-profile-checklist li.is-complete {
    background: linear-gradient(180deg, #ffffff, #eefcf4);
    border-color: rgba(31, 157, 89, 0.16);
}

.provider-profile-checklist li.is-complete::before {
    background: linear-gradient(180deg, #1f9d59, #157046);
    box-shadow: 0 0 0 5px rgba(31, 157, 89, 0.1);
}

.provider-profile-sidebar-actions {
    display: grid;
    gap: 0.75rem;
}

.provider-profile-sidebar-actions .btn {
    width: 100%;
}

.provider-profile-nav-card {
    display: grid;
    gap: 0.45rem;
}

.provider-profile-content,
.provider-profile-form {
    display: grid;
    gap: 1.35rem;
}

.provider-profile-form {
    padding-bottom: 7.5rem;
}

.provider-floating-save {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
}

.provider-floating-save .btn {
    min-width: 220px;
    min-height: 58px;
    box-shadow: 0 22px 44px rgba(8, 28, 71, 0.22);
}

.provider-profile-section-card {
    padding: 1.5rem;
}

.provider-profile-section-heading,
.provider-profile-section-heading-split {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

.provider-profile-section-heading h2,
.provider-profile-section-heading-split h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.provider-profile-section-heading p:last-child,
.provider-profile-section-heading-split p:last-child {
    margin-bottom: 0;
    max-width: 820px;
}

.provider-profile-inline-note {
    min-width: 230px;
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    border: 1px solid var(--neutral-150);
}

.provider-profile-inline-note strong {
    color: var(--neutral-900);
}

.provider-profile-inline-note span {
    color: var(--neutral-500);
    font-size: 0.93rem;
}

.provider-profile-intro-card {
    background:
        radial-gradient(circle at top right, rgba(20, 86, 217, 0.07), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
}

.provider-profile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.provider-profile-highlight-grid {
    margin-bottom: 1rem;
}

.provider-profile-info-tile {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 86, 217, 0.1);
}

.provider-profile-info-tile span,
.provider-profile-info-tile small {
    color: var(--neutral-500);
}

.provider-profile-info-tile strong {
    font-size: 1.15rem;
    color: var(--neutral-900);
}

.provider-profile-media-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.4rem;
}

.provider-profile-media-card {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    border: 1px solid rgba(215, 224, 236, 0.92);
}

.provider-profile-media-card.is-cover {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.provider-profile-media-preview {
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #eef4ff);
    border: 1px solid rgba(20, 86, 217, 0.12);
}

.provider-highlight-form,
.provider-highlight-payment-card {
    margin-top: 1rem;
}

.provider-highlight-payment-card {
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdf8, #fff7ea);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.provider-highlight-payment-qr {
    display: grid;
    place-items: center;
    padding: 0.8rem;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(245, 158, 11, 0.18);
}

.provider-highlight-payment-qr img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

.provider-highlight-payment-content {
    display: grid;
    gap: 0.9rem;
}

.provider-highlight-payment-content h3,
.provider-highlight-payment-content p {
    margin: 0;
}

.provider-profile-media-card.is-cover .provider-profile-media-preview {
    aspect-ratio: 16 / 10;
}

.provider-profile-media-content {
    display: grid;
    gap: 0.75rem;
}

.provider-profile-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.provider-profile-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-profile-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.provider-profile-span-2 {
    grid-column: span 2;
}

.provider-profile-schedule-grid {
    gap: 1rem;
}

.provider-profile-schedule-row {
    border-radius: 24px;
}

.dashboard-form-actions {
    display: flex;
    justify-content: flex-end;
}

.dashboard-booking-list {
    display: grid;
    gap: 1rem;
}

.dashboard-booking-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.15rem;
    border-radius: 24px;
    border: 1px solid rgba(215, 224, 236, 0.92);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.dashboard-booking-main {
    display: grid;
    gap: 0.35rem;
}

.dashboard-booking-topline {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard-booking-label {
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-booking-main h3 {
    margin: 0;
    font-size: 1.12rem;
}

.dashboard-booking-main p {
    margin: 0;
    color: var(--neutral-600);
}

.dashboard-booking-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.dashboard-booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    color: var(--neutral-500);
    font-size: 0.92rem;
}

.dashboard-booking-muted {
    color: var(--neutral-500);
    font-size: 0.92rem;
}

.dashboard-hours-card {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(215, 224, 236, 0.92);
}

.dashboard-hours-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.dashboard-detail-grid {
    margin-bottom: 0;
}

.dashboard-favorites-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dashboard-favorite-card {
    display: grid;
    gap: 1rem;
}

.provider-profile-summary-card,
.provider-save-bar {
    display: grid;
    gap: 1.25rem;
}

.provider-profile-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.provider-profile-summary-copy {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--neutral-600);
}

.provider-profile-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.provider-profile-stat {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--neutral-150);
}

.provider-profile-stat span,
.provider-profile-stat small {
    color: var(--neutral-500);
}

.provider-profile-stat strong {
    color: var(--neutral-900);
    font-size: 1.35rem;
    line-height: 1.1;
}

.provider-logo-upload-card {
    margin-bottom: 1.25rem;
}

.provider-logo-preview {
    aspect-ratio: 1 / 1;
    max-width: 220px;
}

.provider-service-selector {
    display: grid;
    gap: 1.1rem;
    padding: 0 0.2rem;
}

.provider-services-helper {
    margin: 0.45rem 0 0;
    color: var(--neutral-600);
    max-width: 780px;
}

.provider-services-admin-card {
    padding: 1.65rem;
    overflow: hidden;
}

.provider-services-admin-card .dashboard-card-header {
    margin-bottom: 1.5rem;
    padding: 0 0.15rem;
}

.provider-services-admin-card .dashboard-card-header > div {
    width: 100%;
    min-width: 0;
}

.provider-services-admin-card h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1.12;
    text-wrap: balance;
}

.provider-services-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0 0.35rem;
}

.provider-services-admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0 0.35rem;
}

.provider-services-admin-toolbar .form-field {
    flex: 1 1 420px;
}

.provider-services-toolbar .form-field {
    flex: 1 1 420px;
}

.provider-services-toolbar-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
    color: var(--neutral-500);
    font-size: 0.95rem;
}

.provider-services-toolbar-stats strong {
    color: var(--brand-blue-dark);
}

.provider-service-group {
    border: 1px solid var(--neutral-150);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    overflow: hidden;
    margin: 0;
}

.provider-service-groups {
    display: grid;
    gap: 1rem;
}

.provider-service-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.2rem 0.9rem;
    border-bottom: 1px solid rgba(20, 86, 217, 0.08);
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.provider-service-group-head-copy {
    min-width: 0;
}

.provider-service-group-head h3 {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.provider-service-group-head small {
    display: block;
    margin-top: 0.3rem;
    color: var(--neutral-500);
    font-size: 0.92rem;
}

.provider-service-group.is-open {
    border-color: rgba(20, 86, 217, 0.24);
    box-shadow: 0 18px 40px rgba(20, 86, 217, 0.08);
}

.provider-service-group-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid rgba(20, 86, 217, 0.18);
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
    color: var(--brand-blue);
    padding: 0.72rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.provider-service-group-trigger:hover,
.provider-service-group-trigger:focus {
    background: var(--brand-blue-soft);
    border-color: rgba(20, 86, 217, 0.3);
}

.provider-service-group-trigger-icon {
    width: 11px;
    height: 11px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.provider-service-group.is-open .provider-service-group-trigger-icon {
    transform: rotate(225deg);
}

.provider-service-group-panel {
    display: grid;
    gap: 0.85rem;
    padding: 0 1.2rem 1.2rem;
}

.provider-service-group:not(.is-open) .provider-service-group-panel {
    display: none;
}

.provider-service-group.is-open .provider-service-group-panel {
    display: grid;
}

.provider-service-list {
    gap: 0.9rem;
}

.provider-service-row {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 1.35fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--neutral-150);
    border-radius: 20px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.provider-service-row.is-selected {
    border-color: rgba(20, 86, 217, 0.24);
    box-shadow: 0 14px 32px rgba(20, 86, 217, 0.08);
    background: linear-gradient(180deg, #ffffff, #eef4ff);
}

.provider-service-row-main {
    min-width: 0;
    display: flex;
    align-items: flex-start;
}

.provider-service-toggle {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--neutral-900);
    font-weight: 700;
    line-height: 1.35;
    width: 100%;
}

.provider-service-toggle input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    accent-color: var(--brand-blue);
    flex-shrink: 0;
}

.provider-service-toggle-copy {
    min-width: 0;
    display: grid;
    gap: 0.25rem;
}

.provider-service-toggle-copy strong {
    font-size: 1rem;
    line-height: 1.35;
}

.provider-service-toggle-copy small {
    color: var(--neutral-500);
    font-size: 0.82rem;
    line-height: 1.2;
    word-break: break-word;
}

.provider-service-row-fields {
    display: grid;
    grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
}

.provider-service-row-fields textarea.form-control {
    min-height: 92px;
}

.provider-services-suggestion-card {
    margin-bottom: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(20, 86, 217, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    box-shadow: 0 12px 28px rgba(15, 23, 40, 0.05);
}

.provider-services-suggestion-card .provider-profile-section-heading {
    margin-bottom: 0.9rem;
}

.provider-services-suggestion-card .provider-profile-section-heading h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.08;
}

.provider-service-dependent:disabled {
    opacity: 0.55;
    background: #f3f6fb;
}

.provider-save-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 1.55rem 1.65rem;
}

.provider-save-bar p {
    color: var(--neutral-600);
    max-width: 640px;
}

.provider-save-bar .btn {
    min-width: 380px;
}

.cms-form {
    display: grid;
    gap: 0.9rem;
}

.cms-editor {
    display: grid;
    gap: 0.65rem;
}

.cms-editor-header {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.cms-editor-tabs {
    display: inline-flex;
    gap: 0.25rem;
    padding: 0.25rem;
    background: #eff3fa;
    border: 1px solid var(--neutral-150);
    border-radius: 999px;
}

.cms-editor-tab {
    border: none;
    background: transparent;
    color: var(--neutral-500);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 999px;
    padding: 0.48rem 0.85rem;
}

.cms-editor-tab.is-active {
    background: var(--brand-blue);
    color: var(--neutral-0);
}

.cms-editor-shell {
    border: 1px solid var(--neutral-150);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cms-editor .form-control,
.admin-panel-card .form-control,
.admin-panel-card .form-select {
    border-radius: 14px;
    border-color: #d6dfeb;
    background: #fbfcfe;
    min-height: 50px;
}

.cms-editor .form-control:focus,
.admin-panel-card .form-control:focus,
.admin-panel-card .form-select:focus {
    background: #fff;
}

.admin-editor-card .cms-form {
    padding: 1rem 1.15rem 1.15rem;
}

.admin-panel-card textarea.form-control {
    min-height: 120px;
}

.jodit-container:not(.jodit_inline) {
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: none !important;
}

.jodit-workplace {
    min-height: 540px;
}

.jodit-toolbar__box:not(:empty),
.jodit-status-bar {
    border-color: var(--neutral-150) !important;
    background: linear-gradient(180deg, #f8faff 0%, #f1f5fb 100%) !important;
}

.jodit-toolbar-button__button,
.jodit-ui-button {
    border-radius: 10px !important;
}

.jodit-wysiwyg,
.jodit-source {
    padding: 1rem 1.05rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.75 !important;
    color: var(--neutral-900) !important;
}

.jodit-source {
    font-family: Consolas, Monaco, monospace !important;
    font-size: 0.92rem !important;
}

.content,
.content-page-card {
    color: var(--neutral-700);
}

.content-page-card {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-150);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 1.8rem;
}

.content h2,
.content h3,
.content h4,
.content-page-card h2,
.content-page-card h3,
.content-page-card h4 {
    margin-top: 1.4rem;
    margin-bottom: 0.8rem;
}

.content p,
.content li,
.content-page-card p,
.content-page-card li {
    color: var(--neutral-700);
}

.content ul,
.content ol,
.content-page-card ul,
.content-page-card ol {
    padding-left: 1.2rem;
}

.content blockquote,
.content-page-card blockquote {
    margin: 1.2rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--brand-blue);
    background: var(--brand-blue-soft);
    border-radius: var(--radius-sm);
    color: var(--neutral-700);
}

.content table,
.content-page-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
}

.content table th,
.content table td,
.content-page-card table th,
.content-page-card table td {
    border: 1px solid var(--neutral-150);
    padding: 0.8rem;
}

.content img,
.content-page-card img {
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.article-list-card .card-body {
    padding: 1.5rem;
}

@media (max-width: 1200px) {
    .listing-layout,
    .detail-layout,
    .checkout-grid,
    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .prestador-profile-header-card,
    .prestador-profile-header-stats {
        grid-template-columns: 1fr;
    }

    .prestador-profile-hero-shell {
        grid-template-columns: 1fr;
    }

    .provider-profile-hero,
    .provider-profile-layout {
        grid-template-columns: 1fr;
    }

    .filters-card,
    .booking-card,
    .checkout-card,
    .dashboard-sidebar,
    .provider-profile-sidebar,
    .blog-sidebar {
        position: static;
    }

    .prestador-profile-story-grid,
    .prestador-profile-hours-grid {
        grid-template-columns: 1fr;
    }

    .prestador-profile-facts {
        grid-template-columns: 1fr;
    }

    .utility-calculator-layout,
    .utility-form-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 992px) {
    body {
        padding-top: 92px;
    }

    .services-catalog-layout {
        grid-template-columns: 1fr;
    }

    .services-filters-card {
        display: none;
        position: static;
        top: auto;
    }

    .services-filters-card.is-open {
        display: block;
    }

    .services-results-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .prestador-hero {
        margin-top: -92px;
        padding: 110px 0 44px;
    }

    .hero-home {
        min-height: auto;
        max-height: none;
        padding: 104px 0 34px;
    }

    .hero-home-grid {
        min-height: auto;
    }

    .prestador-profile-hero-wrap {
        padding-top: 1.25rem;
    }

    .hero-search-shell,
    .cta-split,
    .footer-cta,
    .listing-toolbar,
    .provider-result-footer,
    .checkout-service-card {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search-shell {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-location-grid {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-search-shell .btn,
    .cta-split-actions .btn,
    .footer-cta-btn {
        width: 100%;
    }

    .listing-mobile-toolbar {
        display: block;
    }

    .filters-card {
        display: none;
        margin-bottom: 1rem;
    }

    .filters-card.is-open {
        display: block;
    }

    .blog-landing-hero {
        grid-template-columns: 1fr;
    }

    .navbar-mobile-toggle {
        display: inline-flex;
    }

    .provider-profile-hero {
        padding: 1.6rem;
    }

    .prestador-profile-header-actions {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .provider-profile-hero-stats,
    .provider-profile-info-grid,
    .provider-profile-grid-4 {
        grid-template-columns: 1fr;
    }

    .provider-profile-media-grid {
        grid-template-columns: 1fr;
    }

    .provider-profile-media-card {
        grid-template-columns: 1fr;
    }

    .dashboard-booking-card {
        grid-template-columns: 1fr;
    }

    .dashboard-booking-actions {
        justify-content: flex-start;
    }

    .prestador-hero-highlights,
    .prestador-profile-highlights {
        grid-template-columns: 1fr;
    }

    .prestador-profile-brand {
        grid-template-columns: 1fr;
    }

    .prestador-profile-logo {
        width: 108px;
        height: 108px;
    }

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

@media (max-width: 768px) {
    .services-listing-toolbar {
        padding-bottom: 0.6rem;
    }

    .category-grid,
    .blog-grid,
    .steps,
    .feature-grid,
    .provider-services-grid,
    .provider-results-grid,
    .favorites-grid,
    .dashboard-metrics-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .prestador-services-card .provider-services-grid {
        grid-template-columns: 1fr;
    }

    .filters-price-grid,
    .booking-grid,
    .checkout-info-list,
    .detail-highlight-grid {
        grid-template-columns: 1fr;
    }

    .filters-form-horizontal {
        grid-template-columns: 1fr;
    }

    .filters-form-horizontal .filters-price-grid {
        grid-column: auto;
    }

    .filters-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .filters-actions .btn {
        width: 100%;
    }

    .section-heading,
    .dashboard-card-header,
    .listing-toolbar {
        align-items: start;
    }

    .provider-result-actions .btn,
    .footer-cta-btn {
        width: 100%;
    }

    .navbar-collapse {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 249, 255, 0.99));
        border-radius: 24px;
        padding: 1rem;
        margin-top: 0.9rem;
        box-shadow: 0 22px 48px rgba(9, 34, 88, 0.12);
        border: 1px solid rgba(215, 224, 236, 0.92);
    }

    .navbar-nav-shell,
    .navbar-menu,
    .navbar-actions {
        align-items: stretch;
        text-align: left;
    }

    .navbar-nav-shell {
        display: grid;
        gap: 0.9rem;
    }

    .navbar-menu-group,
    .navbar-actions-group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .navbar-mobile-heading {
        display: block;
        margin-bottom: 0.45rem;
        padding: 0 0.2rem;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 800;
        color: var(--brand-blue);
        text-align: left;
    }

    .navbar-menu,
    .navbar-actions {
        width: 100%;
        gap: 0.35rem;
        margin: 0;
    }

    .navbar-menu .nav-item,
    .navbar-actions .nav-item {
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.92rem 0.95rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(215, 224, 236, 0.92);
        font-size: 0.97rem;
    }

    .navbar-light .navbar-nav .nav-link::after {
        content: '\203A';
        color: rgba(20, 86, 217, 0.48);
        font-size: 1.1rem;
    }

    .navbar-actions .nav-item,
    .navbar-actions .btn {
        width: 100%;
    }

    .navbar-actions {
        padding-top: 0.8rem;
        margin-top: 0.15rem;
        border-top: 1px solid rgba(215, 224, 236, 0.92);
    }

    .navbar-actions .btn {
        min-height: 48px;
        border-radius: 14px;
        justify-content: center;
    }

    .navbar-user-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        margin-top: 0.6rem !important;
        width: 100%;
    }

    .prestadores-index-layout {
        grid-template-columns: 1fr;
    }

    .blog-listing-header,
    .blog-card-footer {
        align-items: start;
    }

    .home-blog-card-top {
        align-items: flex-start;
    }

    .blog-share-grid {
        grid-template-columns: 1fr;
    }

    .prestador-hero-content,
    .prestador-hero-actions,
    .prestador-section-head,
    .prestador-profile-header-brand,
    .prestador-profile-header-topline,
    .prestador-profile-brand-topline,
    .prestador-profile-hero-actions,
    .prestador-profile-brand,
    .service-offer-topline,
    .service-offer-head,
    .business-hours-head,
    .service-offer-meta,
    .booking-summary-points div {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .prestador-hero-logo,
    .prestador-profile-logo,
    .prestador-profile-header-logo {
        width: 96px;
        height: 96px;
    }

    .prestador-section-count {
        align-self: start;
    }

    .service-offer-category {
        max-width: 100%;
    }

    .account-choice-grid,
    .auth-form-grid-2,
    .auth-form-grid-3,
    .auth-form-grid-4,
    .schedule-row,
    .schedule-row-fields {
        grid-template-columns: 1fr;
    }

    .provider-profile-grid-2,
    .provider-profile-grid-3,
    .provider-profile-grid-4,
    .provider-profile-info-grid,
    .provider-profile-media-card,
    .provider-highlight-payment-card,
    .provider-profile-brand-head,
    .prestador-profile-header-stats,
    .prestador-profile-proofbar,
    .prestador-profile-story-grid,
    .prestador-profile-hours-grid,
    .provider-service-row,
    .provider-service-row-fields {
        grid-template-columns: 1fr;
    }

    .prestador-profile-facts {
        grid-template-columns: 1fr;
    }

    .prestador-profile-header-actions {
        grid-template-columns: 1fr;
    }

    .provider-profile-span-2 {
        grid-column: auto;
    }

    .auth-grid-span-2 {
        grid-column: auto;
    }

    .auth-register-intro,
    .auth-register-form,
    .auth-register-footer {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }

    .admin-toolbar-grid,
    .admin-form-grid,
    .admin-form-grid-2,
    .admin-form-grid-3 {
        grid-template-columns: 1fr;
    }

    .admin-overview-card {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-card-header {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-floating-submit {
        flex-direction: column;
        align-items: stretch;
        bottom: 12px;
    }

    .featured-upload-card {
        grid-template-columns: 1fr;
    }

    .admin-ai-generator-head {
        flex-direction: column;
        align-items: stretch;
    }

    .provider-profile-summary-head,
    .provider-profile-section-heading,
    .provider-profile-section-heading-split,
    .provider-services-toolbar,
    .provider-save-bar {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .provider-services-admin-card {
        padding: 1.3rem;
    }

    .provider-service-group-head {
        flex-direction: column;
        align-items: stretch;
    }

    .provider-service-group-trigger {
        width: 100%;
    }

    .provider-services-admin-card .dashboard-card-header,
    .provider-services-toolbar,
    .provider-service-selector {
        padding-left: 0;
        padding-right: 0;
    }

    .provider-profile-summary-grid,
    .provider-service-row,
    .provider-service-row-fields {
        grid-template-columns: 1fr;
    }

    .provider-profile-section-card,
    .provider-profile-sidebar-card {
        padding: 1.2rem;
    }

    .provider-save-bar .btn {
        min-width: 0;
        width: 100%;
    }

    .cms-editor-header {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .hero h1,
    .prestador-hero h1,
    .provider-profile-hero h1,
    .prestador-profile-hero h1 {
        font-size: 2.2rem;
    }

    .hero-panel,
    .category-card-body,
    .article-card,
    .service-offer-body,
    .provider-result-body,
    .provider-card-body,
    .filters-card,
    .detail-card,
    .booking-card,
    .checkout-card,
    .checkout-service-body,
    .auth-card,
    .favorite-card,
    .metric-card,
    .function-block,
    .timeline-step,
    .guideline-card,
    .newsletter,
    .empty-state-card,
    .card-body,
    .card-header,
    .card-footer {
        padding: 1.2rem;
    }

    .provider-profile-hero,
    .provider-profile-section-card,
    .provider-profile-sidebar-card,
    .provider-services-admin-card {
        padding: 1.1rem;
    }

    .provider-floating-save {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .prestador-profile-hero-shell,
    .prestador-profile-hero-main,
    .prestador-profile-hero-panel {
        padding: 1rem;
    }

    .provider-floating-save .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-tags,
    .prestador-hero-meta,
    .footer-legal-links,
    .footer-social {
        gap: 0.6rem;
    }

    .hero-home h1 {
        font-size: 2.35rem;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }

    .breadcrumb {
        display: flex;
        width: 100%;
    }

    .blog-landing-copy,
    .blog-content-card,
    .blog-sidebar-card .card-body {
        padding: 1.25rem;
    }

    .blog-index-title {
        font-size: 1.85rem;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .auth-register-intro,
    .auth-register-form {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .auth-register-section {
        padding: 1rem;
        border-radius: 20px;
    }
}
