/* ── BASE ─────────────────────────────────────────── */
.dp-hero,
.dp-form-section,
.dp-btn {
    box-sizing: border-box;
}

/* ── HERO ─────────────────────────────────────────── */
.dp-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 60px 0 50px;
    background: transparent;
    overflow: hidden;
}

.dp-hero__inner {
    position: relative;
    z-index: 1;
}

.dp-hero__pill,
.dp-form-info__kicker,
.dp-formCard__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(158, 129, 73, 0.22);
    border-radius: 999px;
    background: linear-gradient(to left, #9e8149 5%, #ccba78 60%, #dfd69e 69%, #ccba78 75%, #9e8149 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.dp-hero__pill {
    padding: 8px 16px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}

.dp-hero__pill i {
    color: #fff;
    font-size: 11px;
}

.dp-hero__titulo {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.dp-hero__titulo-leve {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
}

.dp-hero__sub {
    margin-bottom: 0;
    color: var(--cor-site-1);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
}

/* ── BOTÕES ─────────────────────────────────────── */
.dp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.dp-btn--primary {
    border: 1.5px solid #ccba78;
    background: linear-gradient(135deg, #ccba78 20%, #e7e4d2 35%, #9e8149 70%, #ccba78 100%);
    box-shadow: 0 8px 22px rgba(204, 186, 120, 0.32);
    color: #181818 !important;
}

.dp-btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left .4s ease;
}

.dp-btn--primary:hover::after {
    left: 100%;
}

.dp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(204, 186, 120, 0.45);
    color: #181818 !important;
    text-decoration: none;
}

/* ── SEÇÃO DO FORMULÁRIO ─────────────────────────── */
.dp-form-section {
    background: transparent;
}

.dp-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.dp-form-info {
    padding: 60px 0;
}

.dp-form-info__kicker {
    margin-bottom: 18px;
}

.dp-formCard__kicker {
    gap: 6px;
    padding: 6px 14px;
    margin-bottom: 10px;
}

.dp-form-info__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(22px, 2.4vw, 36px);
    font-weight: 900;
    line-height: 1.1;
}

.dp-form-info__title span {
    color: var(--cor-site-1);
    font-weight: 400;
}

.dp-form-info__sub {
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 1.72;
}

.dp-form-info__itens {
    display: flex;
    gap: 18px;
}

.dp-form-info__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dp-form-info__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 40px;
    border: 1px solid rgba(204, 186, 120, 0.18);
    border-radius: 10px;
    background: rgba(204, 186, 120, 0.10);
    color: #d3bb70;
    font-size: 16px;
}

.dp-form-info__item strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.dp-form-info__item span {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    line-height: 1.5;
}

/* ── CARD DO FORMULÁRIO ─────────────────────────── */
.dp-formCard {
    position: relative;
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    background: transparent;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 20px 54px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.dp-formCard::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204, 186, 120, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.dp-formCard__head {
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
}

.dp-formCard__title {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 900;
}

.dp-formCard__sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

/* ── FORMULÁRIO ─────────────────────────────────── */
.dp-form {
    position: relative;
    z-index: 1;
}

.dp-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dp-form__grid--full {
    grid-column: 1 / -1;
}

.dp-form__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.dp-form__label {
    display: block;
    margin: 0 0 6px;
    color: var(--cor-site-1);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.dp-form__input,
.dp-form__textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    appearance: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    backdrop-filter: blur(4px);
}

.dp-form__textarea {
    min-height: 130px;
    resize: vertical;
}

.dp-form__input::placeholder,
.dp-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.dp-form__input:focus,
.dp-form__textarea:focus {
    outline: none;
    border-color: rgba(204, 186, 120, 0.55);
    box-shadow: 0 0 0 4px rgba(204, 186, 120, 0.10);
    background: rgba(255, 255, 255, 0.08);
}

.dp-form__submit {
    min-width: 220px;
    height: 50px;
    font-size: 15px;
}

/* ── BADGES DE CONFIANÇA ────────────────────────── */
.dp-formCard__trust {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dp-formCard__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.dp-formCard__trust i {
    color: #d3bb70;
    font-size: 11px;
}

/* ── UPLOAD DE ARQUIVO ──────────────────────────── */
.dp-file-upload {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1.5px dashed rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.dp-file-upload:hover {
    border-color: rgba(204, 186, 120, 0.40);
    background: rgba(204, 186, 120, 0.04);
}

.dp-file-upload__input {
    display: none;
}

.dp-file-upload__preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-width: 54px;
    height: 54px;
    border: 1.5px solid rgba(204, 186, 120, 0.22);
    border-radius: 50%;
    background: rgba(204, 186, 120, 0.10);
    color: rgba(204, 186, 120, 0.60);
    font-size: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.dp-file-upload__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dp-file-upload__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dp-file-upload__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 7px 14px;
    border: 1px solid rgba(204, 186, 120, 0.22);
    border-radius: 8px;
    background: rgba(204, 186, 120, 0.12);
    color: #ccba78;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease;
}

.dp-file-upload:hover .dp-file-upload__btn {
    background: rgba(204, 186, 120, 0.20);
}

.dp-file-upload__name {
    color: rgba(255, 255, 255, .50);
    font-size: 13px;
    font-weight: 500;
}

.dp-file-upload__hint {
    color: rgba(255, 255, 255, .30);
    font-size: 11px;
    font-weight: 500;
}

/* ── DEPOIMENTOS / CARROSSEL ────────────────────── */
.depo-section {
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
}

.depo-header {
    margin: 0 auto 40px;
    text-align: start;
}

.depo-label {
    display: block;
    margin-bottom: 10px;
    color: rgba(231, 228, 210, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.depo-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    line-height: 1.2;
}

.depo-subtitle {
    margin: 0;
    color: rgba(231, 228, 210, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

/* Wrapper do carrossel */
.depo-carousel-wrapper {
    position: relative;
}

.depo-carousel-track-outer {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.depo-carousel-track-outer:active {
    cursor: grabbing;
}

.depo-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
    will-change: transform;
}

/* Cards */
.depo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 48px) / 3);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.depo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
}

.depo-quote {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #181818;
    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.depo-stars {
    margin-bottom: 14px;
    color: #ffb800;
    font-size: 15px;
    letter-spacing: 1px;
}

.depo-text {
    margin-bottom: 22px;
    color: #000;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;
}

.depo-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f0f1f3;
}

.depo-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #181818 0%, #252525 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.depo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.depo-name {
    color: #111827;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.depo-detail {
    margin-top: 2px;
    color: #9ca3af;
    font-size: 12px;
}

/* Navegação */
.depo-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    color: #374151;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s, box-shadow .2s, opacity .2s;
}

.depo-nav:hover {
    background: #181818;
    box-shadow: 0 4px 16px rgba(37, 99, 235, .25);
    color: #fff;
}

.depo-nav:disabled {
    opacity: .3;
    cursor: default;
    pointer-events: none;
}

.depo-nav svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.depo-nav-prev { left: -22px; }
.depo-nav-next { right: -22px; }

/* Dots */
.depo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.depo-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: #d1d5db;
    cursor: pointer;
    transition: background .25s, width .25s;
}

.depo-dot.active {
    width: 24px;
    background: #181818;
}

/* ── DROPDOWN CUSTOMIZADO DE NOTA ───────────────── */
.dp-rating-dropdown {
    position: relative;
    width: 100%;
}

.dp-rating-dropdown__trigger {
    width: 100%;
    height: 48px;
    padding: 0 46px 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    backdrop-filter: blur(4px);
}

.dp-rating-dropdown__trigger:hover {
    border-color: rgba(204, 186, 120, 0.40);
    background: rgba(255, 255, 255, 0.04);
}

.dp-rating-dropdown.is-open .dp-rating-dropdown__trigger,
.dp-rating-dropdown__trigger:focus {
    outline: none;
    border-color: rgba(204, 186, 120, 0.55);
    box-shadow: 0 0 0 4px rgba(204, 186, 120, 0.10);
    background: rgba(255, 255, 255, 0.08);
}

.dp-rating-dropdown__text {
    display: block;
    overflow: hidden;
    color: #cccccc;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dp-rating-dropdown__icon {
    position: absolute;
    top: 50%;
    right: 14px;
    color: #ccba78;
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: transform .2s ease, color .2s ease;
}

.dp-rating-dropdown.is-open .dp-rating-dropdown__icon {
    transform: translateY(-50%) rotate(180deg);
}

.dp-rating-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    width: 100%;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dp-rating-dropdown.is-open .dp-rating-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dp-rating-dropdown__option {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    color: #1f2937;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.dp-rating-dropdown__option:hover,
.dp-rating-dropdown__option:focus {
    outline: none;
    background: #e7d79a;
    color: #3b2d0b;
}

.dp-rating-dropdown__option.is-selected {
    background: #ccba78;
    color: #ffffff;
}

.dp-rating-dropdown__option.is-selected:hover,
.dp-rating-dropdown__option.is-selected:focus {
    background: #ccba78;
    color: #ffffff;
}

/* ── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 992px) {
    .dp-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .dp-hero {
        padding: 82px 0 44px;
    }

    .dp-hero__titulo {
        font-size: 2.2rem;
    }

    .dp-hero__sub {
        font-size: .98rem;
    }

    .dp-formCard {
        padding: 28px 20px;
    }

    .dp-form__grid {
        grid-template-columns: 1fr;
    }

    .dp-form__submit {
        width: 100%;
        justify-content: center;
    }

    .dp-form-info__itens {
        flex-direction: column !important;
    }
}

@media (max-width: 576px) {
    .dp-hero {
        padding: 74px 0 36px;
    }
}

@media (max-width: 1100px) {
    .depo-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 700px) {
    .depo-card {
      flex: 0 0 100%;
    }

    .depo-nav-prev { left: -10px; }
    .depo-nav-next { right: -10px; }
}

@media (max-width: 530px) {
    .depo-section {
        padding: 0 15px 60px;
    }
}