/* ===== PROFILE CARD ===== */
.profile-card {
    background: #28343c;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 380px;
    position: relative;
    width: 100%;
    min-height: fit-content;
}

.profile-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-out;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.main-photo.swipe-left {
    transform: translateX(-100%);
}

.main-photo.swipe-right {
    transform: translateX(100%);
}

.main-photo.swipe-reset {
    transform: translateX(0);
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.photo-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.photo-nav.prev {
    left: 12px;
}

.photo-nav.next {
    right: 12px;
}

.photo-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== PROFILE CONTENT ===== */
.profile-content {
    padding: 12px;
    color: white;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.online-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}

/* ===== AUDIO PLAYER - ESTILO WHATSAPP ===== */
.audio-section {
    margin-bottom: 10px;
}

#audioElement {
    display: none;
}

.audio-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 85, 85, 0.1);
    border: 1px solid rgba(255, 85, 85, 0.2);
    padding: 8px 12px;
    border-radius: 20px;
    margin-bottom: 6px;
    backdrop-filter: blur(10px);
}

.play-btn {
    width: 20px;
    height: 20px;
    border: none;
    background: #FF5555;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    background: #ef4444;
    transform: scale(1.05);
}

.play-btn svg {
    width: 10px;
    height: 10px;
}

.audio-waves {
    display: flex;
    align-items: center;
    gap: 1px;
    flex: 1;
    height: 20px;
    justify-content: space-between;
    min-width: 0;
    padding: 0 4px;
}

.wave {
    width: 2px;
    background: rgba(255, 85, 85, 0.3);
    border-radius: 1px;
    transition: all 0.2s ease;
    height: 4px;
    flex: 1;
    max-width: 3px;
    min-height: 3px;
}

.wave:nth-child(odd) { height: 6px; }
.wave:nth-child(even) { height: 8px; }
.wave:nth-child(3n) { height: 10px; }
.wave:nth-child(5n) { height: 12px; }
.wave:nth-child(7n) { height: 8px; }

.wave.playing {
    animation: waveFlow 1.2s ease-in-out infinite;
    background: #FF5555;
}

.wave:nth-child(1).playing { animation-delay: 0.1s; }
.wave:nth-child(2).playing { animation-delay: 0.2s; }
.wave:nth-child(3).playing { animation-delay: 0.3s; }
.wave:nth-child(4).playing { animation-delay: 0.4s; }
.wave:nth-child(5).playing { animation-delay: 0.5s; }
.wave:nth-child(6).playing { animation-delay: 0.6s; }
.wave:nth-child(7).playing { animation-delay: 0.7s; }
.wave:nth-child(8).playing { animation-delay: 0.8s; }
.wave:nth-child(9).playing { animation-delay: 0.9s; }
.wave:nth-child(10).playing { animation-delay: 1.0s; }
.wave:nth-child(11).playing { animation-delay: 0.2s; }
.wave:nth-child(12).playing { animation-delay: 0.4s; }
.wave:nth-child(13).playing { animation-delay: 0.6s; }
.wave:nth-child(14).playing { animation-delay: 0.8s; }
.wave:nth-child(15).playing { animation-delay: 1.0s; }

@keyframes waveFlow {
    0%, 100% { height: 4px; opacity: 0.6; }
    50% { height: 14px; opacity: 1; }
}

.audio-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 35px;
    font-weight: 600;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== PROFILE SECTIONS ===== */
.profile-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 10px;
    font-style: italic;
    font-weight: 500;
}

/* ===== VALUES SECTION ===== */
.values-section {
    margin-bottom: 10px;
    position: relative;
}

.values-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 6px;
}

.main-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    padding: 4px 0;
    transition: all 0.2s ease;
}

.main-value:hover {
    color: #FF5555;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.main-value.active .dropdown-arrow {
    transform: rotate(180deg);
}

.values-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3a4650;
    border-radius: 8px;
    overflow: hidden;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.values-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.value-option {
    padding: 12px 16px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.value-option:last-child {
    border-bottom: none;
}

.value-option:hover {
    background: rgba(255, 85, 85, 0.1);
}

.discount-tag {
    display: block;
    font-size: 0.7rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 2px;
}

/* ===== PROFILE STATS ===== */
.profile-stats {
    margin-bottom: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-item.underline {
    text-decoration: underline;
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-row .stat-item {
    margin-bottom: 0;
}

.stat-item svg {
    color: #fbbf24;
    width: 16px;
    height: 16px;
}

/* ===== PROFILE LOCATION ===== */
.profile-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 10px;
}

.profile-location svg {
    width: 16px;
    height: 16px;
}

/* ===== PROFILE DESCRIPTION ===== */
.profile-description {
    margin-bottom: 12px;
    position: relative;
}

.profile-description p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #d1d5db;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.profile-description p.collapsed {
    max-height: 4.5em; /* 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.profile-description p.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(transparent, #28343c);
    pointer-events: none;
}

.read-more-btn {
    background: none;
    border: none;
    color: #FF5555;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    padding: 4px 0;
    transition: all 0.2s ease;
    display: none;
}

.read-more-btn.show {
    display: inline-block;
}

.read-more-btn:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    width: 100%;
    background: #FF5555;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 85, 0.3);
}

.cta-button.highlight {
    animation: highlightPulse 2s ease-in-out 3;
    box-shadow: 0 0 20px rgba(255, 85, 85, 0.6);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

/* ===== MODAL BASE ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem 0.5rem;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    z-index: 10;
    font-size: 0.8rem;
}

.modal-close:hover {
    background: #e5e5e5;
}

/* ===== LOCATION MODAL ===== */
.location-modal {
    padding: 2rem;
    text-align: center;
    max-width: 360px;
}

.location-icon {
    margin-bottom: 1.5rem;
    color: #666;
}

.location-modal h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.location-modal p {
    color: #666;
    margin-bottom: 1.5rem;
}

.detected-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* ===== BOOKING MODAL ===== */
.booking-modal {
    padding: 1rem;
    max-width: 380px;
    max-height: 85vh;
    overflow-y: auto;
}

/* ===== STEP INDICATOR ===== */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.375rem;
}

.step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step.active {
    background: #FF5555;
    color: white;
}

.step.completed {
    background: #FF5555;
    color: white;
}

.step-line {
    width: 20px;
    height: 2px;
    background: #e5e7eb;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.step-line.active {
    background: #FF5555;
}

/* ===== STEP CONTENT ===== */
.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.step-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

/* ===== FORM GROUPS IN MODAL ===== */
.booking-form .form-group {
    margin-bottom: 0.75rem;
}

.booking-form .form-group:last-of-type {
    margin-bottom: 1rem;
}

.booking-form .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.booking-form .form-group label svg {
    width: 14px;
    height: 14px;
    color: #6b7280;
}

.booking-form .continue-btn {
    margin-top: 1rem;
    padding: 0.75rem;
    font-size: 0.875rem;
    width: 100%;
}

/* ===== SECTION SPACING ===== */
.booking-form .form-group[data-section="datetime"] {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.booking-form .form-group[data-section="datetime"]:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ===== DATE AND TIME SELECTORS PROFISSIONAIS ===== */
.date-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-height: 180px;
    overflow-y: auto;
    padding: 0.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.date-option {
    padding: 0.75rem 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.date-option:hover {
    border-color: #FF5555;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 85, 85, 0.15);
}

.date-option.selected {
    border-color: #FF5555;
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.1) 0%, rgba(255, 85, 85, 0.05) 100%);
    box-shadow: 0 4px 12px rgba(255, 85, 85, 0.2);
    transform: translateY(-1px);
}

.date-option.today {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.date-option.today.selected {
    border-color: #FF5555;
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.1) 0%, rgba(255, 85, 85, 0.05) 100%);
}

.date-option.today::before {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 2px white;
}

.date-day {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
    text-transform: capitalize;
}

.date-label {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}

.time-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
    gap: 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    padding: 0.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.time-option {
    padding: 0.5rem 0.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 0.75rem;
    font-weight: 600;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.time-option:hover {
    border-color: #FF5555;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 85, 85, 0.15);
}

.time-option.selected {
    border-color: #FF5555;
    background: linear-gradient(135deg, #FF5555 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 85, 85, 0.3);
    transform: scale(1.02);
}

.time-option.disabled {
    background: #f8fafc;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #e2e8f0;
    opacity: 0.6;
}

.time-option.disabled:hover {
    border-color: #e2e8f0;
    transform: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ===== STEP 1 LAYOUT PROFISSIONAL ===== */
.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form .form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.booking-form .form-group label svg {
    width: 18px;
    height: 18px;
    color: #FF5555;
}

.booking-form .continue-btn {
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    background: linear-gradient(135deg, #FF5555 0%, #ef4444 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 85, 85, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form .continue-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 85, 85, 0.4);
}

.booking-form .continue-btn:disabled {
    background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
    color: #6b7280;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== PLAN CARDS ===== */
.plans-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.plan-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-card:hover {
    border-color: #FF5555;
}

.plan-card.selected {
    border-color: #FF5555;
    background: rgba(255, 85, 85, 0.05);
}

.plan-card.popular {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 1rem;
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.plan-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.plan-info p {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.savings {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
}

.plan-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FF5555;
}

.plan-prices {
    text-align: right;
}

.old-price {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: line-through;
    display: block;
}

.new-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #10b981;
}

/* ===== BOOKING SUMMARY ===== */
.booking-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.booking-summary h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.summary-row span:first-child {
    color: #6b7280;
}

.summary-row span:last-child {
    font-weight: 500;
    color: #111827;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.5rem;
    margin-top: 0.75rem;
}

/* ===== PAYMENT INFO ===== */
.payment-info {
    display: flex;
    gap: 0.75rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.payment-icon {
    color: #3b82f6;
    flex-shrink: 0;
}

.payment-details h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.payment-details p {
    font-size: 0.75rem;
    color: #1e40af;
    line-height: 1.4;
}

/* ===== PIX PAYMENT ===== */
.pix-container {
    text-align: center;
}

.pix-value {
    margin-bottom: 1rem;
}

.pix-value .label {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FF5555;
    margin-bottom: 0.25rem;
}

.total {
    font-size: 0.875rem;
    color: #6b7280;
}

.pix-instructions {
    margin-bottom: 1rem;
}

.pix-instructions p {
    color: #6b7280;
    font-size: 0.875rem;
}

.pix-code-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pix-code {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.75rem;
    font-family: monospace;
    word-break: break-all;
    color: #111827;
    text-align: left;
}

.copy-btn {
    background: #f58673;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: #f56551;
}

/* ===== PAYMENT STATUS ===== */
.payment-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.status-spinner {
    color: #3b82f6;
    animation: spin 1s linear infinite;
}

.status-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.status-text p {
    font-size: 0.75rem;
    color: #1e40af;
}

/* ===== PAYMENT INSTRUCTIONS BOX ===== */
.payment-instructions-box {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 0.75rem;
    text-align: left;
}

.payment-instructions-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.payment-instructions-box ol {
    list-style: none;
    counter-reset: step-counter;
    margin: 0;
    padding: 0;
}

.payment-instructions-box li {
    counter-increment: step-counter;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #92400e;
    padding-left: 1.5rem;
    position: relative;
}

.payment-instructions-box li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== SUCCESS STEP ===== */
.success-container {
    text-align: center;
    padding: 1.5rem;
}

.success-icon {
    margin-bottom: 1rem;
}

.success-container h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.75rem;
}

.success-container p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    margin: 0 auto;
    transition: background 0.2s ease;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

/* ===== SCROLLBAR STYLING ===== */
.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.date-selector::-webkit-scrollbar,
.time-selector::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.date-selector::-webkit-scrollbar-track,
.time-selector::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 2px;
}

.date-selector::-webkit-scrollbar-thumb,
.time-selector::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

/* ===== MODAL TOUCH IMPROVEMENTS ===== */
.modal-content {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    will-change: transform;
}

.date-selector,
.time-selector {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    will-change: scroll-position;
}

/* ===== OPTIMIZATIONS FOR MOBILE ===== */
.date-option,
.time-option {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 85, 85, 0.1);
}

.step,
.continue-btn,
.back-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 85, 85, 0.1);
}