/*
 * Safira - detalhe de perfil/servico
 * Layout premium para paginas internas. Nao altera a Home.
 * Cores centralizadas em variaveis para futura edicao pelo Vipmin.
 */

.vip-detail-service {
    --vds-primary: #d62870;
    --vds-primary-dark: #9f184f;
    --vds-primary-soft: rgba(214, 40, 112, .16);
    --vds-gold: #d8ad68;
    --vds-gold-2: #b98537;
    --vds-dark: #070708;
    --vds-dark-2: #111113;
    --vds-dark-3: #1b1b1f;
    --vds-panel: #202024;
    --vds-card: #17171a;
    --vds-card-2: #222228;
    --vds-text: #f7f3eb;
    --vds-text-dark: #17171b;
    --vds-muted: #b9b2a8;
    --vds-muted-dark: #747071;
    --vds-line: rgba(255,255,255,.10);
    --vds-line-strong: rgba(216,173,104,.34);
    --vds-shadow: 0 30px 90px rgba(0,0,0,.38);
    --vds-radius: 26px;
    background: var(--vds-dark);
    color: var(--vds-text);
    overflow: hidden;
}

.vip-detail-service *,
.vip-detail-service *:before,
.vip-detail-service *:after {
    box-sizing: border-box;
}

.vip-detail-service a {
    transition: .24s ease;
}

.vip-detail-service .container {
    position: relative;
}

/* Busca superior isolada */
.vds-search-wrap {
    position: relative;
    z-index: 30;
    background:
        radial-gradient(circle at 18% 0%, rgba(214, 40, 112, .18), transparent 36%),
        linear-gradient(180deg, #16161b 0%, #0b0b0f 100%);
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 16px 42px rgba(0,0,0,.34);
}

.vds-search-wrap .caldera-grid,
.vds-search-wrap .vds-filter-modern {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

.vds-search-wrap .vds-filter-panel {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
}

.vds-search-wrap .vds-filter-field {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.vds-search-wrap .vds-filter-state,
.vds-search-wrap .vds-filter-city {
    flex-basis: 260px;
}

.vds-search-wrap .vds-filter-category {
    flex-basis: 250px;
}

.vds-search-wrap .vds-filter-neighborhood {
    flex-basis: 220px;
}

.vds-search-wrap .vds-filter-submit {
    flex: 0 0 170px;
}

.vds-search-wrap .vds-filter-field label {
    display: block;
    margin: 0 0 7px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vds-search-wrap .vds-filter-control {
    position: relative;
}

.vds-search-wrap .vds-filter-control i {
    position: absolute;
    left: 17px;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    color: var(--vds-gold);
    font-size: 15px;
    pointer-events: none;
}

.vds-search-wrap .form-control {
    width: 100%;
    height: 58px;
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(216,173,104,.26);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,236,230,.96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 38px rgba(0,0,0,.24);
    color: #222228;
    font-size: 14px;
    font-weight: 700;
    padding: 0 44px 0 45px;
    outline: none;
    transition: .22s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vds-search-wrap select.form-control {
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #7b6f65 50%),
        linear-gradient(135deg, #7b6f65 50%, transparent 50%),
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,236,230,.96));
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%,
        0 0;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    background-repeat: no-repeat;
}

.vds-search-wrap .form-control:focus {
    border-color: rgba(214,40,112,.56);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 0 0 4px rgba(214,40,112,.16), 0 20px 44px rgba(0,0,0,.32);
}

.vds-search-wrap .form-control:disabled {
    cursor: not-allowed;
    opacity: .68;
    color: #8b8580;
}

.vds-search-wrap #btn-search {
    width: 100%;
    height: 58px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--vds-primary), var(--vds-primary-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0,0,0,.25);
    box-shadow: 0 18px 38px rgba(214, 40, 112, .32), inset 0 1px 0 rgba(255,255,255,.18);
}

.vds-search-wrap #btn-search i {
    font-size: 15px;
}

.vds-search-wrap #btn-search:hover,
.vds-search-wrap #btn-search:focus {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: 0 24px 48px rgba(214, 40, 112, .38), inset 0 1px 0 rgba(255,255,255,.22);
}

.vds-search-wrap #btn-search:active {
    transform: translateY(0);
}


/* Ajuste solicitado: remove navegacao lateral anterior/proximo e CTA duplicado do hero.
   O contato principal permanece na barra fixa inferior e nos blocos internos. */
.vip-detail-service .vds-nav-adjacent,
.vip-detail-service .vds-hero .vds-cta-row {
    display: none !important;
}

/* Hero premium */
.vds-hero {
    position: relative;
    min-height: 680px;
    padding: 28px 0 115px;
    background-color: var(--vds-dark);
    background-image: linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.48) 45%, rgba(0,0,0,.08) 100%), var(--vds-hero-image), radial-gradient(circle at 15% 30%, rgba(216,173,104,.18), transparent 31%), linear-gradient(135deg, #060607 0%, #15151a 100%);
    background-size: cover;
    background-position: center;
    color: var(--vds-text);
}

.vds-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.06) 54%, rgba(7,7,8,.94) 100%),
        radial-gradient(circle at 24% 22%, rgba(214, 40, 112, .10), transparent 31%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 80px);
}

.vds-hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(180deg, rgba(7,7,8,0), rgba(7,7,8,.96));
    pointer-events: none;
}

.vds-breadcrumb-wrap {
    position: relative;
    z-index: 3;
}

.vds-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 auto 44px;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 800;
}

.vds-breadcrumb a,
.vds-breadcrumb span,
.vds-breadcrumb strong {
    color: inherit;
    text-decoration: none !important;
}

.vds-breadcrumb a:hover {
    color: var(--vds-gold);
}

.vds-breadcrumb span:before,
.vds-breadcrumb strong:before {
    content: ">";
    margin-right: 9px;
    color: var(--vds-gold);
}

.vds-breadcrumb strong {
    color: var(--vds-gold);
}

.vds-hero-inner {
    position: relative;
    z-index: 3;
}

.vds-profile-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 46px;
    align-items: end;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.vds-profile-media {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border: 10px solid rgba(255,255,255,.92);
    border-radius: 4px;
    background: #18181d;
    box-shadow: 0 34px 80px rgba(0,0,0,.56);
    transform: translateY(70px);
}

.vds-profile-media:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(216,173,104,.38);
    pointer-events: none;
}

.vds-profile-media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.04);
}

.vds-profile-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    color: rgba(255,255,255,.42);
    font-size: 64px;
}

.vds-profile-info {
    max-width: 760px;
    padding: 70px 0 26px;
}

.vds-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 11px 15px;
    border: 1px solid rgba(216,173,104,.34);
    border-radius: 999px;
    background: rgba(0,0,0,.34);
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.vds-eyebrow:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--vds-gold);
    box-shadow: 0 0 0 5px rgba(216,173,104,.18);
}

.vds-profile-info h1 {
    display: inline-block;
    margin: 0;
    padding: 12px 18px 14px;
    color: #fff;
    background: rgba(0,0,0,.78);
    font-size: clamp(42px, 5.5vw, 74px);
    line-height: .94;
    font-weight: 950;
    letter-spacing: -.055em;
    text-transform: none;
    box-shadow: 0 18px 46px rgba(0,0,0,.36);
}

.vds-summary {
    display: block;
    width: fit-content;
    max-width: 760px;
    margin: 0;
    padding: 13px 18px;
    background: linear-gradient(135deg, rgba(216,173,104,.96), rgba(185,133,55,.96));
    color: #fff;
    font-size: 21px;
    line-height: 1.42;
    font-weight: 900;
    text-shadow: 0 1px 0 rgba(0,0,0,.16);
}

.vds-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.vds-chip-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 10px 13px;
    border-radius: 0;
    background: rgba(23,23,26,.78);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.94);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(0,0,0,.20);
}

.vds-chip-list i {
    color: var(--vds-gold);
}

.vds-cta-row,
.vds-action-tabs,
.vds-quick-actions-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.vds-cta-row {
    margin-top: 26px;
}

.vds-whatsapp-btn,
.vds-secondary-btn,
.vds-tab-btn,
.vds-phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 15px 22px;
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 900;
}

.vds-whatsapp-btn {
    border: 0;
    background: linear-gradient(135deg, #22c960, #0bb54f);
    color: #fff !important;
    box-shadow: 0 18px 38px rgba(34,201,96,.28);
}

.vds-whatsapp-btn:hover,
.vds-whatsapp-btn:focus {
    color: #fff !important;
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.vds-whatsapp-btn i {
    font-size: 20px;
}

.vds-tab-btn,
.vds-secondary-btn,
.vds-phone-link {
    border: 1px solid rgba(216,173,104,.28);
    background: rgba(0,0,0,.36);
    color: #fff !important;
    backdrop-filter: blur(10px);
}

.vds-tab-btn:hover,
.vds-secondary-btn:hover,
.vds-phone-link:hover {
    background: var(--vds-gold);
    color: #121214 !important;
    transform: translateY(-1px);
}

.vds-action-tabs {
    margin-top: 18px;
}

.vds-tab-btn {
    min-height: 45px;
    padding: 12px 15px;
    font-size: 13px;
}

.vds-verified {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(0,0,0,.38);
    border: 1px solid rgba(216,173,104,.34);
    color: #fff;
    font-weight: 900;
}

.vds-verified img {
    max-width: 32px;
    height: auto;
}

/* Navegacao anterior/proximo */
.vds-nav-adjacent {
    position: absolute;
    top: 52%;
    left: 18px;
    right: 18px;
    z-index: 4;
    transform: translateY(-50%);
    pointer-events: none;
}

.vds-adjacent-card {
    position: absolute;
    width: 188px;
    padding: 16px;
    border-radius: 0;
    border: 1px solid rgba(216,173,104,.28);
    background: rgba(0,0,0,.58);
    color: #fff !important;
    text-decoration: none !important;
    backdrop-filter: blur(12px);
    pointer-events: auto;
}

.vds-adjacent-card:hover {
    background: var(--vds-gold);
    color: #111 !important;
    transform: translateY(-2px);
}

.vds-adjacent-prev {
    left: 0;
}

.vds-adjacent-next {
    right: 0;
    text-align: right;
}

.vds-adjacent-kicker,
.vds-adjacent-card small {
    display: block;
    color: inherit;
    opacity: .76;
    font-size: 12px;
}

.vds-adjacent-card strong {
    display: block;
    margin: 4px 0;
    font-size: 16px;
    line-height: 1.2;
}

/* Acoes extras */
.vds-quick-actions {
    position: relative;
    z-index: 5;
    margin-top: -46px;
    padding-bottom: 18px;
}

.vds-quick-actions-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 17px;
    border-radius: 0;
    background: linear-gradient(135deg, #1c1c20, #101012);
    border: 1px solid rgba(216,173,104,.20);
    box-shadow: 0 20px 52px rgba(0,0,0,.34);
}

/* Secoes */
.vds-gallery-section,
.vds-info-section,
.vds-stories-section,
.vds-comments-section {
    position: relative;
    z-index: 2;
    padding: 70px 0;
}

.vds-section-head {
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

.vds-section-head span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(216,173,104,.12);
    border: 1px solid rgba(216,173,104,.28);
    color: var(--vds-gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.vds-section-head h2,
.vds-info-card h2 {
    margin: 0;
    color: var(--vds-text);
    font-weight: 950;
    letter-spacing: -.035em;
}

.vds-section-head h2 {
    font-size: clamp(32px, 4vw, 52px);
}

.vds-section-head p {
    margin: 12px auto 0;
    color: var(--vds-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* Galeria */
.vds-gallery-section {
    background: var(--vds-dark);
}

.vds-gallery-shell {
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border: 1px solid rgba(216,173,104,.18);
    box-shadow: var(--vds-shadow);
}

.vds-gallery-grid,
.vip-detail-service .models-gallery.thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.vip-detail-service .model-gallery-container,
.vip-detail-service .model-gallery-container .grid,
.vip-detail-service .model-gallery-container figure {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.vip-detail-service .model-gallery-container figure {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #111;
    box-shadow: 0 20px 46px rgba(0,0,0,.28);
}

.vip-detail-service .model-gallery-container figure:after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(216,173,104,.22);
    pointer-events: none;
}

.vip-detail-service .model-gallery-container:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.vip-detail-service .model-gallery-container figure a,
.vip-detail-service .model-gallery-container figure img {
    display: block;
    width: 100%;
}

.vip-detail-service .model-gallery-container figure img {
    height: 250px;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .28s ease, filter .28s ease;
}

.vip-detail-service .model-gallery-container:first-child figure img {
    height: 514px;
}

.vip-detail-service .model-gallery-container figure:hover img {
    transform: scale(1.045);
    filter: brightness(1.08) saturate(1.04);
}

.vip-detail-service .effect-bubba figcaption,
.vip-detail-service .effect-bubba figcaption::before,
.vip-detail-service .effect-bubba figcaption::after {
    display: none !important;
}

.vds-video-area {
    padding: 18px;
    border-radius: 0;
    background: #111114;
    color: #fff;
}

.vds-video-area video,
.vds-video-area iframe {
    max-width: 100%;
    border-radius: 0;
    overflow: hidden;
}

/* Cards de informacoes */
.vds-info-section {
    padding-top: 40px;
    background:
        radial-gradient(circle at 10% 0%, rgba(216,173,104,.10), transparent 26%),
        linear-gradient(180deg, #070708 0%, #121214 100%);
}

.vds-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
}

.vds-info-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 0;
    background: linear-gradient(145deg, rgba(32,32,36,.96), rgba(18,18,21,.96));
    border: 1px solid rgba(216,173,104,.18);
    box-shadow: 0 24px 64px rgba(0,0,0,.30);
}

.vds-info-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vds-gold), var(--vds-primary), transparent);
}

.vds-info-card:after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(216,173,104,.09);
    pointer-events: none;
}

.vds-about-card {
    min-height: 300px;
}

.vds-contact-card {
    background: linear-gradient(145deg, #111114, #232328);
}

.vds-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: rgba(216,173,104,.13);
    border: 1px solid rgba(216,173,104,.26);
    color: var(--vds-gold);
    font-size: 20px;
}

.vds-card-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    color: currentColor;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vds-card-icon svg path,
.vds-card-icon svg rect,
.vds-card-icon svg circle {
    vector-effect: non-scaling-stroke;
}

.vds-info-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    font-size: 32px;
}

.vds-card-intro {
    margin-top: -5px !important;
    margin-bottom: 20px !important;
}

.vds-text-content,
.vds-text-content p,
.vds-info-card p {
    position: relative;
    z-index: 1;
    color: rgba(247,243,235,.82);
    font-size: 16px;
    line-height: 1.82;
}

.vds-muted {
    color: var(--vds-muted) !important;
}

.vds-data-list {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vds-data-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.vds-data-list li:last-child {
    border-bottom: 0;
}

.vds-data-list strong {
    min-width: 128px;
    color: var(--vds-gold);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.vds-data-list span {
    color: rgba(247,243,235,.84);
    text-align: right;
    line-height: 1.5;
}

.vds-data-list-lines li {
    display: block;
}

.vds-data-list-lines strong,
.vds-data-list-lines span {
    display: block;
    text-align: left;
}

.vds-data-list-lines span {
    margin-top: 7px;
}

.vds-whatsapp-btn-full {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 24px;
}

.vds-share-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.vds-share-box > span {
    color: var(--vds-muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Valores premium */
.vds-price-panel {
    grid-column: span 1;
}

.vds-price-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vds-price-card {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,.28);
    border: 1px solid rgba(216,173,104,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.vds-price-card-wide {
    grid-column: span 2;
    min-height: 108px;
}

.vds-price-card span {
    display: block;
    margin-bottom: 11px;
    color: var(--vds-gold);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.vds-price-card strong {
    display: block;
    color: #fff;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -.03em;
}

.vds-price-card-wide strong {
    font-size: 18px;
    line-height: 1.45;
}

/* Mapa */
.vds-map-section {
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto 48px;
    border: 1px solid rgba(216,173,104,.18);
    box-shadow: 0 24px 64px rgba(0,0,0,.34);
}

.vds-map-section iframe {
    display: block;
    filter: grayscale(.25) contrast(1.05);
}

/* Stories e depoimentos */
.vds-stories-section {
    background: #151518;
    color: #fff;
    border-top: 1px solid rgba(216,173,104,.12);
    border-bottom: 1px solid rgba(216,173,104,.12);
}

.vds-stories-section h4,
.vds-comments-section h2,
.vds-comments-section h3 {
    color: inherit;
}

.vds-stories-section .signature-style {
    color: #fff !important;
    font-size: 34px;
    font-weight: 950;
    letter-spacing: -.03em;
}

.vds-stories-section .hrt-spacer,
.vds-comments-section .hrt-spacer {
    opacity: .36;
}

.vds-stories-section .container,
.vds-comments-section .container {
    max-width: 1120px;
}

.vds-stories-section .grid_bru {
    padding: 0;
}

.vds-stories-section .grid_bru li figure {
    overflow: hidden;
    border-radius: 0;
    background: #111;
    border: 1px solid rgba(216,173,104,.18);
    box-shadow: 0 16px 42px rgba(0,0,0,.24);
}

.vds-stories-section .grid_bru li figure img {
    display: block;
    width: 100%;
    border-radius: 0;
}

.vds-comments-section {
    background:
        radial-gradient(circle at 80% 10%, rgba(214,40,112,.10), transparent 27%),
        #09090a;
    color: #fff;
}

.vip-detail-service .model-pro-rev {
    background: transparent !important;
    padding: 0 !important;
}

.vip-detail-service .pro-rev-top,
.vip-detail-service #comments {
    background: transparent !important;
}

.vip-detail-service .custom-comments-title,
.vip-detail-service .comment-list,
.vip-detail-service .comment-body,
.vip-detail-service .leaverevbutton {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.vip-detail-service .custom-comments-title .round {
    border-radius: 0;
    background: linear-gradient(145deg, #202024, #141416);
    color: #fff;
    border: 1px solid rgba(216,173,104,.18);
    box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.vip-detail-service .buttonanim,
.vip-detail-service .buttonanim-small {
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--vds-primary), var(--vds-primary-dark)) !important;
    color: #fff !important;
    border: 0 !important;
    box-shadow: 0 16px 32px rgba(214,40,112,.25) !important;
}

.vip-detail-service .buttonanim:hover,
.vip-detail-service .buttonanim-small:hover {
    filter: brightness(1.06);
}

/* CTA fixo discreto */
.vds-sticky-contact {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 9999;
    width: min(680px, calc(100% - 28px));
    transform: translateX(-50%);
    pointer-events: none;
}

.vds-sticky-contact-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4px 18px;
    padding: 12px 14px 12px 20px;
    border-radius: 999px;
    background: rgba(13,13,15,.90);
    border: 1px solid rgba(216,173,104,.24);
    box-shadow: 0 20px 54px rgba(0,0,0,.40);
    backdrop-filter: blur(14px);
    pointer-events: auto;
}

.vds-sticky-contact-inner strong {
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
}

.vds-sticky-contact-inner span {
    color: var(--vds-muted);
    font-size: 12px;
    line-height: 1.1;
}

.vds-sticky-contact-inner a {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c960, #0bb54f);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900;
}

.vds-sticky-contact-inner a:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
}



/* Modal moderno para zoom das imagens da galeria */
body.vds-photo-modal-open {
    overflow: hidden;
}

.vds-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.vds-photo-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.vds-photo-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 25%, rgba(216,173,104,.16), transparent 34%),
        rgba(0,0,0,.88);
    backdrop-filter: blur(12px);
}

.vds-photo-modal-dialog {
    position: relative;
    width: min(1040px, 94vw);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(18px) scale(.96);
    opacity: 0;
    transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .24s ease;
}

.vds-photo-modal.is-active .vds-photo-modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.vds-photo-modal-media {
    position: relative;
    width: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid rgba(216,173,104,.30);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
    box-shadow: 0 38px 110px rgba(0,0,0,.68);
}

.vds-photo-modal-media:before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.07);
    pointer-events: none;
}

.vds-photo-modal-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(92vh - 125px);
    object-fit: contain;
    border-radius: 16px;
    opacity: 0;
    transition: opacity .22s ease, transform .22s ease;
    box-shadow: 0 20px 70px rgba(0,0,0,.48);
}

.vds-photo-modal.is-loading .vds-photo-modal-media:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,.18);
    border-top-color: var(--vds-gold);
    animation: vdsPhotoSpin .85s linear infinite;
}

@keyframes vdsPhotoSpin {
    to { transform: rotate(360deg); }
}

.vds-photo-modal-close,
.vds-photo-modal-nav {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(216,173,104,.36);
    background: rgba(12,12,14,.82);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.vds-photo-modal-close:hover,
.vds-photo-modal-nav:hover,
.vds-photo-modal-close:focus,
.vds-photo-modal-nav:focus {
    transform: translateY(-1px) scale(1.04);
    background: var(--vds-gold);
    border-color: var(--vds-gold);
    color: #111;
    outline: none;
}

.vds-photo-modal-close {
    top: -18px;
    right: -18px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
}

.vds-photo-modal-nav {
    top: 50%;
    width: 64px;
    height: 76px;
    margin-top: -38px;
    border-radius: 999px;
    font-size: 0;
}

.vds-photo-modal-arrow {
    display: block;
    width: 34px;
    height: 34px;
    overflow: visible;
}

.vds-photo-modal-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vds-photo-modal-prev {
    left: -82px;
}

.vds-photo-modal-next {
    right: -82px;
}

.vds-photo-modal-single .vds-photo-modal-nav {
    display: none;
}

.vds-photo-modal-footer {
    width: min(760px, 86vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    padding: 12px 16px;
    border: 1px solid rgba(216,173,104,.22);
    border-radius: 999px;
    background: rgba(0,0,0,.58);
    color: rgba(255,255,255,.80);
    box-shadow: 0 18px 45px rgba(0,0,0,.30);
    backdrop-filter: blur(10px);
}

.vds-photo-modal-footer span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 800;
}

.vds-photo-modal-footer strong {
    flex: 0 0 auto;
    color: var(--vds-gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.vip-detail-service .vds-gallery-grid a {
    cursor: zoom-in;
}

.vip-detail-service .vds-gallery-grid figure:before {
    content: "\f00e";
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0,0,0,.62);
    border: 1px solid rgba(216,173,104,.32);
    color: #fff;
    font-family: FontAwesome;
    font-size: 15px;
    opacity: 0;
    transform: translateY(8px) scale(.94);
    transition: .22s ease;
    pointer-events: none;
}

.vip-detail-service .vds-gallery-grid figure:hover:before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1199px) {
    .vds-nav-adjacent {
        display: none;
    }
}

@media (max-width: 991px) {
    .vds-search-wrap .vds-filter-panel {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vds-search-wrap .vds-filter-field {
        flex: 1 1 calc(50% - 12px);
    }

    .vds-search-wrap .vds-filter-submit {
        flex: 1 1 calc(50% - 12px);
    }

    .vds-hero {
        min-height: auto;
        padding-bottom: 96px;
    }

    .vds-profile-card {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .vds-profile-media {
        max-width: 430px;
        min-height: 460px;
        transform: none;
    }

    .vds-profile-media img,
    .vds-profile-placeholder {
        min-height: 460px;
    }

    .vds-profile-info {
        padding: 0;
    }

    .vds-info-grid {
        grid-template-columns: 1fr;
    }

    .vds-gallery-grid,
    .vip-detail-service .models-gallery.thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vip-detail-service .model-gallery-container:first-child {
        grid-column: span 2;
    }

    .vip-detail-service .model-gallery-container figure img,
    .vip-detail-service .model-gallery-container:first-child figure img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .vip-detail-service {
        background: #080809;
        padding-bottom: 82px;
    }

    .vds-search-wrap {
        padding: 14px 0;
    }

    .vds-search-wrap .caldera-grid,
    .vds-search-wrap .vds-filter-modern {
        padding: 0 14px;
    }

    .vds-search-wrap .vds-filter-panel {
        gap: 11px;
    }

    .vds-search-wrap .vds-filter-field,
    .vds-search-wrap .vds-filter-submit {
        flex: 1 1 100%;
    }

    .vds-search-wrap .vds-filter-field label {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .vds-search-wrap .form-control,
    .vds-search-wrap #btn-search {
        height: 52px;
        min-height: 52px;
        border-radius: 15px;
    }

    .vds-hero {
        padding: 18px 0 70px;
        background-position: center top;
    }

    .vds-breadcrumb {
        justify-content: flex-start;
        margin-bottom: 22px;
        font-size: 12px;
    }

    .vds-profile-card {
        gap: 18px;
    }

    .vds-profile-media {
        width: 100%;
        max-width: none;
        min-height: auto;
        border-width: 6px;
    }

    .vds-profile-media img,
    .vds-profile-placeholder {
        min-height: auto;
        height: auto;
        max-height: none;
    }

    .vds-profile-media img {
        aspect-ratio: 4 / 5;
    }

    .vds-profile-info h1 {
        display: block;
        width: fit-content;
        max-width: 100%;
        font-size: 38px;
        line-height: 1;
        padding: 10px 13px 12px;
    }

    .vds-summary {
        width: auto;
        font-size: 16px;
        padding: 11px 13px;
    }

    .vds-chip-list span,
    .vds-whatsapp-btn,
    .vds-secondary-btn,
    .vds-tab-btn {
        width: 100%;
    }

    .vds-action-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .vds-action-tabs .vds-tab-btn {
        width: auto;
    }

    .vds-quick-actions {
        margin-top: -40px;
    }

    .vds-quick-actions-inner {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vds-gallery-section,
    .vds-info-section,
    .vds-stories-section,
    .vds-comments-section {
        padding: 42px 0;
    }

    .vds-gallery-shell {
        padding: 10px;
    }

    .vds-gallery-grid,
    .vip-detail-service .models-gallery.thumbs {
        grid-template-columns: 1fr;
    }

    .vip-detail-service .model-gallery-container:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .vip-detail-service .model-gallery-container figure,
    .vip-detail-service .model-gallery-container figure img,
    .vip-detail-service .model-gallery-container:first-child figure img {
        height: auto;
        min-height: auto;
    }

    .vip-detail-service .model-gallery-container figure img {
        aspect-ratio: 4 / 5;
    }

    .vds-info-card {
        padding: 26px;
    }

    .vds-info-card h2 {
        font-size: 28px;
    }

    .vds-data-list li {
        display: block;
    }

    .vds-data-list span {
        display: block;
        margin-top: 6px;
        text-align: left;
    }

    .vds-section-head {
        text-align: left;
    }

    .vds-section-head h2 {
        font-size: 32px;
    }

    .vds-price-grid {
        grid-template-columns: 1fr;
    }

    .vds-price-card-wide {
        grid-column: span 1;
    }

    .vds-sticky-contact {
        bottom: 10px;
        width: calc(100% - 18px);
    }

    .vds-sticky-contact-inner {
        grid-template-columns: 1fr 50px;
        border-radius: 20px;
        padding: 10px 10px 10px 14px;
    }

    .vds-sticky-contact-inner a {
        width: 50px;
        min-width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
        white-space: nowrap;
        text-indent: -999px;
        position: relative;
    }

    .vds-sticky-contact-inner a i {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        text-indent: 0;
        font-size: 24px;
    }
}

@media (max-width: 420px) {
    .vds-profile-info h1 {
        font-size: 32px;
    }

    .vds-info-card h2 {
        font-size: 25px;
    }

    .vds-action-tabs {
        grid-template-columns: 1fr;
    }
}

/* Ajustes solicitados: hero com imagem mais visivel e sem selo/botoes secundarios no topo */
.vip-detail-service .vds-eyebrow {
    display: none !important;
}

.vip-detail-service .vds-profile-info {
    padding-top: 58px;
}

.vip-detail-service .vds-profile-info h1 {
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(4px);
}

.vip-detail-service .vds-summary {
    background: linear-gradient(135deg, rgba(216,173,104,.88), rgba(185,133,55,.88));
}

@media (max-width: 900px) {
    .vds-photo-modal {
        padding: 14px;
    }

    .vds-photo-modal-dialog {
        width: 100%;
        max-height: 94vh;
    }

    .vds-photo-modal-media {
        padding: 9px;
        border-radius: 18px;
    }

    .vds-photo-modal-media:before {
        inset: 9px;
        border-radius: 13px;
    }

    .vds-photo-modal-media img {
        max-height: calc(94vh - 116px);
        border-radius: 12px;
    }

    .vds-photo-modal-close {
        top: 8px;
        right: 8px;
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,.72);
    }

    .vds-photo-modal-nav {
        width: 44px;
        height: 58px;
        margin-top: -29px;
        font-size: 28px;
        background: rgba(0,0,0,.66);
    }

    .vds-photo-modal-prev {
        left: 8px;
    }

    .vds-photo-modal-next {
        right: 8px;
    }

    .vds-photo-modal-footer {
        width: 100%;
        border-radius: 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}


@media (max-width: 767px) {
    .vds-photo-modal-nav {
        width: 48px;
        height: 58px;
        margin-top: -29px;
    }

    .vds-photo-modal-arrow {
        width: 27px;
        height: 27px;
    }

    .vds-photo-modal-prev {
        left: 8px;
    }

    .vds-photo-modal-next {
        right: 8px;
    }
}

/* Stories usando o mesmo modal/slide das fotos principais */
.vip-detail-service .vds-stories-container {
    max-width: 1120px;
}

.vip-detail-service .vds-stories-head {
    margin-bottom: 34px;
}

.vip-detail-service .vds-stories-shell {
    position: relative;
}

.vip-detail-service .vds-stories-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.vip-detail-service .vds-story-card,
.vip-detail-service .vds-story-card .grid,
.vip-detail-service .vds-story-card figure {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.vip-detail-service .vds-story-card figure {
    position: relative;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(216,173,104,.22);
    box-shadow: 0 20px 46px rgba(0,0,0,.28);
}

.vip-detail-service .vds-story-card figure a,
.vip-detail-service .vds-story-card figure img {
    display: block;
    width: 100%;
}

.vip-detail-service .vds-story-card figure img {
    height: 250px;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .28s ease, filter .28s ease;
}

.vip-detail-service .vds-stories-grid .vds-story-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.vip-detail-service .vds-stories-grid .vds-story-card:first-child figure img {
    height: 514px;
}

.vip-detail-service .vds-story-card figure:hover img {
    transform: scale(1.045);
    filter: brightness(1.08) saturate(1.04);
}

.vip-detail-service .vds-story-card figcaption {
    display: none !important;
}

.vip-detail-service .vds-story-zoom {
    cursor: zoom-in;
}

@media (max-width: 991px) {
    .vip-detail-service .vds-stories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vip-detail-service .vds-stories-grid .vds-story-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .vip-detail-service .vds-story-card figure img,
    .vip-detail-service .vds-stories-grid .vds-story-card:first-child figure img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .vip-detail-service .vds-stories-grid {
        grid-template-columns: 1fr;
    }

    .vip-detail-service .vds-stories-grid .vds-story-card:first-child {
        grid-column: span 1;
    }

    .vip-detail-service .vds-story-card figure img,
    .vip-detail-service .vds-stories-grid .vds-story-card:first-child figure img {
        height: auto;
        aspect-ratio: 4 / 5;
    }
}



/* =========================================================
   Bloco de depoimentos - redesign premium
   ========================================================= */
.vip-detail-service .model-pro-rev {
    position: relative;
    padding: 42px 0 88px;
    background:
        radial-gradient(circle at 15% 10%, rgba(214,40,112,.09), transparent 28%),
        radial-gradient(circle at 85% 0%, rgba(216,173,104,.12), transparent 30%),
        linear-gradient(180deg, rgba(8,8,10,.97) 0%, rgba(12,12,15,.99) 100%);
}

.vip-detail-service .vds-reviews-shell {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 34px 38px;
    border-radius: 30px;
    border: 1px solid rgba(216,173,104,.22);
    background: linear-gradient(180deg, rgba(26,26,31,.96), rgba(10,10,13,.98));
    box-shadow: 0 34px 80px rgba(0,0,0,.44), inset 0 1px 0 rgba(255,255,255,.03);
    overflow: hidden;
}

.vip-detail-service .vds-reviews-shell:before,
.vip-detail-service .vds-reviews-shell:after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.vip-detail-service .vds-reviews-shell:before {
    width: 230px;
    height: 230px;
    top: -90px;
    right: -70px;
    background: radial-gradient(circle, rgba(216,173,104,.12), rgba(216,173,104,0));
}

.vip-detail-service .vds-reviews-shell:after {
    width: 260px;
    height: 260px;
    bottom: -140px;
    left: -80px;
    background: radial-gradient(circle, rgba(214,40,112,.10), rgba(214,40,112,0));
}

.vip-detail-service .vds-reviews-head-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.vip-detail-service .vds-reviews-heading {
    max-width: 700px;
}

.vip-detail-service .vds-reviews-heading .vds-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    border: 1px solid rgba(216,173,104,.28);
    background: rgba(216,173,104,.08);
    color: var(--vds-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vip-detail-service .vds-reviews-heading h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.03;
}

.vip-detail-service .vds-reviews-heading p {
    margin: 0;
    max-width: 660px;
    color: rgba(247,243,235,.78);
    font-size: 16px;
    line-height: 1.75;
}

.vip-detail-service .vds-reviews-score-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 150px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(216,173,104,.22);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.vip-detail-service .vds-score-badge {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    border: 1px solid rgba(216,173,104,.34);
    background: linear-gradient(180deg, rgba(216,173,104,.18), rgba(216,173,104,.06));
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.vip-detail-service .vds-score-content strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
}

.vip-detail-service .vds-score-meta {
    display: block;
    margin-top: 10px;
    color: rgba(247,243,235,.64);
    font-size: 13px;
    line-height: 1.55;
}

.vip-detail-service .vds-comments-area {
    position: relative;
    z-index: 2;
}

.vip-detail-service .vds-comment-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-detail-service .vds-comment-item {
    margin: 0;
}

.vip-detail-service .vds-comment-card {
    height: 100%;
    padding: 24px 22px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.vip-detail-service .vds-comment-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.vip-detail-service .vds-comment-card .review-title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.vip-detail-service .vds-comment-card .authortime {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(247,243,235,.62);
    font-size: 13px;
    line-height: 1.6;
}

.vip-detail-service .vds-comment-card .authortime .fn {
    color: var(--vds-gold);
    font-weight: 700;
}

.vip-detail-service .vds-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.26);
}

.vip-detail-service .vds-comment-content p {
    margin: 0;
    color: rgba(247,243,235,.90);
    font-size: 15px;
    line-height: 1.9;
}

.vip-detail-service .vds-reviews-empty {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px;
    border-radius: 26px;
    border: 1px dashed rgba(216,173,104,.28);
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}

.vip-detail-service .vds-reviews-empty-icon {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(216,173,104,.10);
    color: var(--vds-gold);
    font-size: 34px;
    font-weight: 700;
}

.vip-detail-service .vds-reviews-empty-text h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.vip-detail-service .vds-reviews-empty-text p {
    margin: 0;
    color: rgba(247,243,235,.74);
    font-size: 15px;
    line-height: 1.8;
}

.vip-detail-service .vds-review-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.vip-detail-service .vds-review-cta,
.vip-detail-service .leaverevbutton .buttonanim {
    min-width: min(100%, 560px);
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vds-primary), var(--vds-primary-dark));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 22px 42px rgba(214, 40, 112, .30), inset 0 1px 0 rgba(255,255,255,.16);
}

.vip-detail-service .vds-review-cta:hover,
.vip-detail-service .leaverevbutton .buttonanim:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.vip-detail-service .model-pro-rev .rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-detail-service .model-pro-rev .rating li {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: 0 !important;
    background: transparent !important;
    cursor: default;
}

.vip-detail-service .model-pro-rev .rating li .l,
.vip-detail-service .model-pro-rev .rating li .r {
    display: none !important;
}

.vip-detail-service .model-pro-rev .rating li:before {
    content: "★";
    color: rgba(255,255,255,.18);
    font-size: 20px;
    line-height: 1;
}

.vip-detail-service .model-pro-rev .rating li.whole:before {
    color: var(--vds-gold);
    text-shadow: 0 0 18px rgba(216,173,104,.22);
}

.vip-detail-service .model-pro-rev .form-rating li {
    cursor: pointer;
}

.vip-detail-service .vds-review-modal .modal-dialog {
    max-width: 760px;
    width: calc(100% - 32px);
}

.vip-detail-service .vds-review-modal .modal-content {
    border: 1px solid rgba(216,173,104,.22);
    border-radius: 28px;
    background: linear-gradient(180deg, #16161a, #0c0c10);
    color: var(--vds-text);
    box-shadow: 0 34px 90px rgba(0,0,0,.44);
}

.vip-detail-service .vds-review-modal .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.vip-detail-service .vds-review-modal .modal-title {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
}

.vip-detail-service .vds-review-modal .modal-review-model {
    color: var(--vds-gold);
}

.vip-detail-service .vds-review-modal .close {
    opacity: 1;
    color: #fff;
    text-shadow: none;
}

.vip-detail-service .vds-review-modal .modal-body {
    padding: 24px;
}

.vip-detail-service .vds-review-modal .comment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vip-detail-service .vds-review-modal .comment-form > p,
.vip-detail-service .vds-review-modal .comment-form > div,
.vip-detail-service .vds-review-modal .comment-form .form-submit {
    margin: 0;
}

.vip-detail-service .vds-review-modal .comment-form .comment-notes,
.vip-detail-service .vds-review-modal .comment-form .comment-form-comment,
.vip-detail-service .vds-review-modal .comment-form .starsrating,
.vip-detail-service .vds-review-modal .comment-form .form-rating,
.vip-detail-service .vds-review-modal .comment-form .form-submit {
    grid-column: 1 / -1;
}

.vip-detail-service .vds-review-modal label {
    display: block;
    margin-bottom: 8px;
    color: rgba(247,243,235,.82);
    font-size: 13px;
    font-weight: 700;
}

.vip-detail-service .vds-review-modal input[type="text"],
.vip-detail-service .vds-review-modal input[type="email"],
.vip-detail-service .vds-review-modal textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(216,173,104,.22);
    background: rgba(255,255,255,.04);
    color: #fff;
    outline: none;
}

.vip-detail-service .vds-review-modal input[type="text"]:focus,
.vip-detail-service .vds-review-modal input[type="email"]:focus,
.vip-detail-service .vds-review-modal textarea:focus {
    border-color: rgba(214,40,112,.5);
    box-shadow: 0 0 0 4px rgba(214,40,112,.14);
}

.vip-detail-service .vds-review-modal textarea {
    min-height: 150px;
    resize: vertical;
}

.vip-detail-service .vds-review-modal .starsrating,
.vip-detail-service .vds-review-modal .comment-notes {
    color: rgba(247,243,235,.7);
}

.vip-detail-service .vds-review-modal .submit {
    min-height: 56px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vds-primary), var(--vds-primary-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    box-shadow: 0 18px 36px rgba(214, 40, 112, .28);
}

@media (max-width: 991px) {
    .vip-detail-service .vds-reviews-shell {
        padding: 34px 22px 28px;
        border-radius: 24px;
    }

    .vip-detail-service .vds-reviews-head-grid,
    .vip-detail-service .vds-comment-list,
    .vip-detail-service .vds-review-modal .comment-form {
        grid-template-columns: 1fr;
    }

    .vip-detail-service .vds-score-content strong {
        font-size: 20px;
    }

    .vip-detail-service .vds-reviews-empty {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .vip-detail-service .model-pro-rev {
        padding: 34px 0 64px;
    }

    .vip-detail-service .vds-reviews-shell {
        padding: 28px 16px 22px;
    }

    .vip-detail-service .vds-reviews-heading .vds-section-kicker {
        padding: 9px 14px;
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: .14em;
    }

    .vip-detail-service .vds-reviews-heading h2 {
        font-size: 30px;
    }

    .vip-detail-service .vds-reviews-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vip-detail-service .vds-reviews-score-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
    }

    .vip-detail-service .vds-score-badge {
        width: 70px;
        height: 70px;
        flex-basis: 70px;
        font-size: 24px;
    }

    .vip-detail-service .vds-score-content strong,
    .vip-detail-service .vds-reviews-empty-text h3 {
        font-size: 19px;
    }

    .vip-detail-service .vds-comment-card {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .vip-detail-service .vds-comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .vip-detail-service .vds-comment-card .review-title {
        font-size: 18px;
    }

    .vip-detail-service .vds-reviews-empty {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
    }

    .vip-detail-service .vds-review-cta,
    .vip-detail-service .leaverevbutton .buttonanim {
        min-width: 100%;
        font-size: 13px;
        padding: 0 18px;
    }

    .vip-detail-service .vds-review-modal .modal-header,
    .vip-detail-service .vds-review-modal .modal-body {
        padding: 18px 16px;
    }

    .vip-detail-service .vds-review-modal .modal-title {
        font-size: 20px;
        line-height: 1.35;
        padding-right: 24px;
    }
}


/* =========================================================
   Ajuste final: WhatsApp flutuante mais clean
   Remove o efeito de barra gigante no rodap da tela.
   ========================================================= */
.vip-detail-service .vds-sticky-contact,
.vds-sticky-contact {
    left: auto !important;
    right: 24px !important;
    bottom: 24px !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    pointer-events: none !important;
    z-index: 9998 !important;
}

.vip-detail-service .vds-sticky-contact-inner,
.vds-sticky-contact-inner {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    padding: 7px !important;
    border-radius: 999px !important;
    background: rgba(14, 14, 17, .88) !important;
    border: 1px solid rgba(216, 173, 104, .22) !important;
    box-shadow: 0 16px 42px rgba(0,0,0,.30) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    pointer-events: auto !important;
}

.vip-detail-service .vds-sticky-contact-inner > strong,
.vip-detail-service .vds-sticky-contact-inner > span,
.vds-sticky-contact-inner > strong,
.vds-sticky-contact-inner > span {
    display: none !important;
}

.vip-detail-service .vds-sticky-contact-inner a,
.vds-sticky-contact-inner a {
    grid-row: auto !important;
    min-width: 0 !important;
    width: auto !important;
    min-height: 46px !important;
    height: 46px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    overflow: visible !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
    position: relative !important;
    background: linear-gradient(135deg, #1fc761, #10a64d) !important;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    letter-spacing: .01em !important;
    box-shadow: 0 12px 28px rgba(31,199,97,.18) !important;
}

.vip-detail-service .vds-sticky-contact-inner a i,
.vds-sticky-contact-inner a i {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    text-indent: 0 !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.vip-detail-service .vds-sticky-contact-inner a:hover,
.vds-sticky-contact-inner a:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.05) !important;
}

@media (max-width: 767px) {
    .vip-detail-service .vds-sticky-contact,
    .vds-sticky-contact {
        right: 12px !important;
        bottom: 12px !important;
    }

    .vip-detail-service .vds-sticky-contact-inner,
    .vds-sticky-contact-inner {
        padding: 6px !important;
    }

    .vip-detail-service .vds-sticky-contact-inner a,
    .vds-sticky-contact-inner a {
        width: 48px !important;
        min-width: 48px !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        border-radius: 999px !important;
    }

    .vip-detail-service .vds-sticky-contact-inner a span,
    .vds-sticky-contact-inner a span {
        display: none !important;
    }

    .vip-detail-service .vds-sticky-contact-inner a i,
    .vds-sticky-contact-inner a i {
        font-size: 22px !important;
    }
}


/* =========================================================
   Ícone WhatsApp por imagem do skin
   ========================================================= */
.vip-detail-service .vds-zap-img,
.vds-sticky-contact .vds-zap-img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    display: inline-block !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.vip-detail-service .vds-whatsapp-btn .vds-zap-img {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
}

.vip-detail-service .vds-sticky-contact-inner a .vds-zap-img,
.vds-sticky-contact-inner a .vds-zap-img {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
}

@media (max-width: 767px) {
    .vip-detail-service .vds-sticky-contact-inner a .vds-zap-img,
    .vds-sticky-contact-inner a .vds-zap-img {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
    }
}


/* =========================================================
   Ajuste de contraste do botao flutuante do WhatsApp
   ========================================================= */
.vip-detail-service .vds-sticky-contact-inner,
.vds-sticky-contact-inner {
    background: rgba(8, 10, 14, .94) !important;
    border-color: rgba(35, 211, 102, .20) !important;
    box-shadow: 0 14px 36px rgba(0,0,0,.34) !important;
}

.vip-detail-service .vds-sticky-contact-inner a,
.vds-sticky-contact-inner a {
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 20px !important;
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    box-shadow: 0 10px 24px rgba(34,197,94,.18) !important;
}

.vip-detail-service .vds-sticky-contact-inner a span,
.vds-sticky-contact-inner a span {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 0 rgba(0,0,0,.18) !important;
}

.vip-detail-service .vds-sticky-contact-inner a .vds-zap-img,
.vds-sticky-contact-inner a .vds-zap-img {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
}

@media (max-width: 767px) {
    .vip-detail-service .vds-sticky-contact-inner a,
    .vds-sticky-contact-inner a {
        width: auto !important;
        min-width: 48px !important;
        max-width: calc(100vw - 48px) !important;
        padding: 0 16px !important;
    }

    .vip-detail-service .vds-sticky-contact-inner a span,
    .vds-sticky-contact-inner a span {
        display: inline !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 160px !important;
    }
}


/* =========================================================
   Correção final: botão de pesquisa do filtro apenas com lupa
   ========================================================= */
.vip-detail-service .vds-search-wrap .vds-filter-submit,
.vds-search-wrap .vds-filter-submit {
    flex: 0 0 86px !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
}

.vip-detail-service .vds-search-wrap .vds-filter-submit #btn-search,
.vip-detail-service .vds-search-wrap #btn-search,
.vds-search-wrap .vds-filter-submit #btn-search,
.vds-search-wrap #btn-search {
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    border: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    background: linear-gradient(135deg, var(--vds-primary), var(--vds-primary-dark)) !important;
    color: #ffffff !important;
    text-indent: 0 !important;
    overflow: visible !important;
    box-shadow: 0 18px 38px rgba(214, 40, 112, .32), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

.vip-detail-service .vds-search-wrap #btn-search .vds-search-icon,
.vds-search-wrap #btn-search .vds-search-icon {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    color: #ffffff !important;
    stroke-width: 2.4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
}

.vip-detail-service .vds-search-wrap #btn-search .vds-search-icon circle,
.vip-detail-service .vds-search-wrap #btn-search .vds-search-icon path,
.vds-search-wrap #btn-search .vds-search-icon circle,
.vds-search-wrap #btn-search .vds-search-icon path {
    fill: none !important;
    stroke: currentColor !important;
}

.vip-detail-service .vds-search-wrap #btn-search span,
.vds-search-wrap #btn-search span {
    display: none !important;
}

@media (max-width: 991px) {
    .vip-detail-service .vds-search-wrap .vds-filter-submit,
    .vds-search-wrap .vds-filter-submit {
        flex: 0 0 86px !important;
    }
}

@media (max-width: 767px) {
    .vip-detail-service .vds-search-wrap .vds-filter-submit,
    .vds-search-wrap .vds-filter-submit {
        flex: 1 1 100% !important;
        justify-content: center !important;
    }

    .vip-detail-service .vds-search-wrap .vds-filter-submit #btn-search,
    .vip-detail-service .vds-search-wrap #btn-search,
    .vds-search-wrap .vds-filter-submit #btn-search,
    .vds-search-wrap #btn-search {
        width: 54px !important;
        min-width: 54px !important;
        max-width: 54px !important;
        height: 54px !important;
        min-height: 54px !important;
        border-radius: 999px !important;
    }
}

/* =========================================================
   Correção dos ícones dos chips do topo do perfil
   ========================================================= */
.vip-detail-service .vds-chip-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vip-detail-service .vds-chip-list .vds-chip-icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
    display: block;
    fill: none;
    stroke: var(--vds-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   Resumo de avaliações no topo do perfil
   ========================================================= */
.vip-detail-service .vds-hero-reviews {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    padding: 13px 14px;
    border-radius: 18px;
    border: 1px solid rgba(216, 173, 104, .20);
    background: linear-gradient(135deg, rgba(12, 12, 16, .72), rgba(24, 24, 30, .54));
    box-shadow: 0 18px 42px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vip-detail-service .vds-hero-review-main {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding-right: 14px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.vip-detail-service .vds-hero-review-number {
    min-width: 54px;
    height: 44px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(216, 173, 104, .34);
    background: rgba(216, 173, 104, .10);
    color: #fff;
    font-size: 21px;
    font-weight: 950;
    line-height: 1;
}

.vip-detail-service .vds-hero-review-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vip-detail-service .vds-hero-review-text strong {
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.2;
    white-space: nowrap;
}

.vip-detail-service .vds-hero-review-text span {
    color: rgba(247,243,235,.66);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.vip-detail-service .vds-hero-review-stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
}

.vip-detail-service .vds-hero-review-stars span {
    color: rgba(255,255,255,.24);
    font-size: 21px;
    line-height: 1;
    text-shadow: none;
}

.vip-detail-service .vds-hero-review-stars span.is-active {
    color: var(--vds-gold);
    text-shadow: 0 0 16px rgba(216,173,104,.26);
}

.vip-detail-service .vds-hero-review-link {
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(216, 173, 104, .26);
    background: rgba(216, 173, 104, .08);
    color: var(--vds-gold) !important;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: .18s ease;
}

.vip-detail-service .vds-hero-review-link svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vip-detail-service .vds-hero-review-link:hover,
.vip-detail-service .vds-hero-review-link:focus {
    background: rgba(216, 173, 104, .16);
    color: #fff !important;
    transform: translateY(-1px);
}

html {
    scroll-behavior: smooth;
}

#depoimentos {
    scroll-margin-top: 92px;
}

@media (max-width: 767px) {
    .vip-detail-service .vds-hero-reviews {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 18px;
    }

    .vip-detail-service .vds-hero-review-main {
        width: 100%;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .vip-detail-service .vds-hero-review-stars {
        justify-content: center;
    }

    .vip-detail-service .vds-hero-review-link {
        width: 100%;
    }
}


/* =========================================================
   Links rápidos do topo do perfil
   ========================================================= */
.vip-detail-service .vds-hero-action-link {
    white-space: nowrap;
}

#galeria,
#destaques-recentes,
#valores,
#depoimentos {
    scroll-margin-top: 96px;
}

@media (max-width: 767px) {
    .vip-detail-service .vds-hero-action-link {
        width: 100%;
    }
}


/* =========================================================
   Atalhos separados abaixo das avaliações
   ========================================================= */
.vip-detail-service .vds-hero-quick-nav {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    padding: 13px 14px;
    border-radius: 18px;
    border: 1px solid rgba(216, 173, 104, .18);
    background: linear-gradient(135deg, rgba(12, 12, 16, .58), rgba(24, 24, 30, .42));
    box-shadow: 0 14px 34px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vip-detail-service .vds-hero-reviews .vds-hero-action-link {
    display: none !important;
}

.vip-detail-service .vds-hero-quick-nav .vds-hero-action-link {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .vip-detail-service .vds-hero-quick-nav {
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-top: 12px;
    }

    .vip-detail-service .vds-hero-quick-nav .vds-hero-action-link {
        width: 100%;
    }
}


/* =========================================================
   Foto principal com orientacao automatica
   - Paisagem: moldura deitada, sem cortar a imagem
   - Retrato: mantem o visual vertical atual
   ========================================================= */
.vip-detail-service .vds-profile-card--landscape {
    grid-template-columns: minmax(500px, 620px) minmax(0, 1fr);
    align-items: center;
    max-width: 1320px;
}

.vip-detail-service .vds-profile-card--landscape .vds-profile-media {
    width: 100%;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    transform: translateY(46px);
    background: #0b0b0f;
}

.vip-detail-service .vds-profile-card--landscape .vds-profile-media img {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #0b0b0f;
}

.vip-detail-service .vds-profile-card--square {
    grid-template-columns: 390px minmax(0, 1fr);
    align-items: center;
}

.vip-detail-service .vds-profile-card--square .vds-profile-media {
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    transform: translateY(54px);
}

.vip-detail-service .vds-profile-card--square .vds-profile-media img {
    min-height: 0 !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .vip-detail-service .vds-profile-card--landscape {
        grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
        gap: 34px;
    }
}

@media (max-width: 991px) {
    .vip-detail-service .vds-profile-card--landscape,
    .vip-detail-service .vds-profile-card--square {
        grid-template-columns: 1fr;
    }

    .vip-detail-service .vds-profile-card--landscape .vds-profile-media,
    .vip-detail-service .vds-profile-card--square .vds-profile-media {
        max-width: 680px;
        margin: 0 auto;
        transform: none;
    }

    .vip-detail-service .vds-profile-card--landscape .vds-profile-media {
        aspect-ratio: 16 / 10;
    }

    .vip-detail-service .vds-profile-card--square .vds-profile-media {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 767px) {
    .vip-detail-service .vds-profile-card--landscape .vds-profile-media,
    .vip-detail-service .vds-profile-card--square .vds-profile-media {
        width: 100%;
        max-width: none;
    }

    .vip-detail-service .vds-profile-card--landscape .vds-profile-media img,
    .vip-detail-service .vds-profile-card--square .vds-profile-media img {
        height: 100% !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
    }
}


/* =========================================================
   Header unico: correção de espaçamento nas páginas internas
   Remove a reserva antiga do layout da home/topbar sem afetar a home.
   ========================================================= */
html body.safira-detail-page,
body.safira-detail-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.safira-detail-page .site-container,
body.safira-detail-page .site-inner.vip-detail-service {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.safira-detail-page .sc-topcats--unified {
    top: 0 !important;
    margin-top: 0 !important;
}

body.safira-detail-page .vds-search-wrap {
    margin-top: 0 !important;
}

/* =========================================================
   Filtro mobile compacto no detalhe do anúncio
   Desktop continua aberto; mobile inicia recolhido para economizar altura.
   ========================================================= */
.safira-detail-page .vds-filter-mobile-toggle {
    display: none;
}

.safira-detail-page .vds-filter-mobile-panel {
    display: block;
}

@media (max-width: 767px) {
    .safira-detail-page .vds-search-wrap.vds-search-wrap--accordion {
        padding: 10px 14px 14px !important;
        background:
            radial-gradient(circle at 16% 0%, rgba(214, 40, 112, .16), transparent 38%),
            linear-gradient(180deg, #131318 0%, #09090d 100%) !important;
    }

    .safira-detail-page .vds-filter-mobile-toggle {
        width: 100%;
        min-height: 48px;
        border: 1px solid rgba(216, 173, 104, .28);
        border-radius: 999px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(180deg, rgba(216, 173, 104, .15), rgba(216, 173, 104, .06));
        color: #d8ad68;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .07em;
        line-height: 1;
        text-transform: uppercase;
        box-shadow: 0 14px 36px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.05);
        cursor: pointer;
        outline: none;
    }

    .safira-detail-page .vds-filter-mobile-toggle:hover,
    .safira-detail-page .vds-filter-mobile-toggle:focus {
        color: #fff;
        border-color: rgba(216, 173, 104, .48);
        background: linear-gradient(180deg, rgba(216, 173, 104, .22), rgba(216, 173, 104, .08));
    }

    .safira-detail-page .vds-filter-mobile-toggle-icon,
    .safira-detail-page .vds-filter-mobile-toggle-chevron {
        width: 17px;
        height: 17px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .safira-detail-page .vds-filter-mobile-toggle-icon svg,
    .safira-detail-page .vds-filter-mobile-toggle-chevron svg {
        width: 17px;
        height: 17px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .safira-detail-page .vds-filter-mobile-toggle-chevron {
        transition: transform .2s ease;
    }

    .safira-detail-page .vds-filter-mobile-toggle.is-open .vds-filter-mobile-toggle-chevron {
        transform: rotate(180deg);
    }

    .safira-detail-page .vds-filter-mobile-panel {
        display: none;
        margin-top: 10px;
        padding: 12px;
        border: 1px solid rgba(216, 173, 104, .14);
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(24,24,28,.92), rgba(10,10,14,.96));
        box-shadow: 0 18px 44px rgba(0,0,0,.32);
    }

    .safira-detail-page .vds-filter-mobile-panel.is-open {
        display: block;
        animation: safiraFilterDrop .18s ease both;
    }

    .safira-detail-page .vds-filter-mobile-panel .caldera-grid,
    .safira-detail-page .vds-filter-mobile-panel .vds-filter-modern {
        padding: 0 !important;
    }

    .safira-detail-page .vds-search-wrap .vds-filter-panel {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        align-items: stretch !important;
        justify-content: stretch !important;
        width: 100% !important;
    }

    .safira-detail-page .vds-search-wrap .vds-filter-field,
    .safira-detail-page .vds-search-wrap .vds-filter-state,
    .safira-detail-page .vds-search-wrap .vds-filter-city,
    .safira-detail-page .vds-search-wrap .vds-filter-category,
    .safira-detail-page .vds-search-wrap .vds-filter-neighborhood,
    .safira-detail-page .vds-search-wrap .vds-filter-submit {
        width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        flex-basis: auto !important;
    }

    .safira-detail-page .vds-search-wrap .vds-filter-field label {
        margin: 0 0 4px !important;
        color: rgba(255,255,255,.68) !important;
        font-size: 9px !important;
        letter-spacing: .12em !important;
    }

    .safira-detail-page .vds-search-wrap .form-control {
        height: 42px !important;
        min-height: 42px !important;
        border-radius: 13px !important;
        font-size: 12px !important;
        padding: 0 38px 0 39px !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 10px 22px rgba(0,0,0,.20) !important;
    }

    .safira-detail-page .vds-search-wrap .vds-filter-control i {
        left: 14px !important;
        font-size: 13px !important;
    }

    .safira-detail-page .vds-search-wrap select.form-control {
        background-position:
            calc(100% - 19px) 50%,
            calc(100% - 13px) 50%,
            0 0 !important;
    }

    .safira-detail-page .vds-search-wrap .vds-filter-submit {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 2px !important;
    }

    .safira-detail-page .vds-search-wrap .vds-filter-submit #btn-search,
    .safira-detail-page .vds-search-wrap #btn-search {
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
        border-radius: 999px !important;
    }

    .safira-detail-page .vds-search-wrap #btn-search .vds-search-icon {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
    }
}

@keyframes safiraFilterDrop {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   Ajuste mobile: menos espaço vazio entre depoimentos e rodapé
   ========================================================= */
@media (max-width: 767px) {
    .vip-detail-service .model-pro-rev {
        padding-bottom: 28px !important;
    }

    .vip-detail-service .vds-reviews-shell {
        padding-bottom: 18px !important;
    }

    .vip-detail-service .vds-review-cta-wrap {
        margin-top: 22px !important;
        margin-bottom: 0 !important;
    }

    .vip-detail-service .vds-reviews-shell:after {
        width: 150px !important;
        height: 150px !important;
        bottom: -95px !important;
        left: -60px !important;
        opacity: .7 !important;
    }
}
