css.btn-cadastro {
    /* Cores e fundo */
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    
    /* Dimensões e espaçamento */
    padding: 18px 40px;
    
    /* Tipografia */
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    
    /* Formato */
    border-radius: 50px;
    border: none;
    
    /* Efeitos */
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    
    /* Display */
    display: inline-block;
    cursor: pointer;
}

.btn-cadastro:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.btn-cadastro:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.highlight {
    color: #6366f1; /* Azul/roxo vibrante igual ao botão */
}

/* SEÇÃO DO MAPA - SEM ANIMAÇÕES */
.map-and-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

/* Mapa de fundo */
.map-background {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 100%;
}

/* Container principal */
.containerMap {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Card unificado */
.unified-card {
    background: rgba(22, 0, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Header do card */
.card-header {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

/* INFO BADGE - Contador de Parceiros */
.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(74, 60, 245, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(74, 60, 245, 0.3);
    margin-top: 20px;
}

.info-badge .icon {
    font-size: 22px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(74, 60, 245, 0.2);
    flex-shrink: 0;
}

.info-badge div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-badge strong,
.info-badge #partner-count-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.3;
}

.info-badge .distance,
.info-badge #partner-distance {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Estados do contador */
.info-badge.success {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.info-badge.success .icon {
    background: rgba(40, 167, 69, 0.2);
}

.info-badge.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.info-badge.warning .icon {
    background: rgba(255, 193, 7, 0.2);
}

.info-badge.error {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
}

.info-badge.error .icon {
    background: rgba(220, 53, 69, 0.2);
}

/* Conteúdo do formulário */
.form-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Form Groups */
.form-group {
    background: rgba(74, 60, 245, 0.05);
    border: 1px solid rgba(74, 60, 245, 0.2);
    border-radius: 14px;
    padding: 18px;
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Location Display */
.location-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(74, 60, 245, 0.08);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
}

.location-display .icon {
    font-size: 18px;
    color: #4a3cf5;
}

/* SKU Container */
.sku-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sku-input {
    width: 70px;
    background: rgba(74, 60, 245, 0.08);
    border: 1px solid rgba(74, 60, 245, 0.25);
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.sku-input:focus {
    outline: none;
    border-color: #4a3cf5;
    background: rgba(74, 60, 245, 0.15);
    box-shadow: 0 0 0 3px rgba(74, 60, 245, 0.1);
}

.sku-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(74, 60, 245, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
}

/* Service Selection */
.service-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.service-original {
    background: rgba(74, 60, 245, 0.15);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(74, 60, 245, 0.25);
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: line-through;
}

.service-bar-container {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: visible;
}

.service-bar {
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #4a3cf5, #6c5ce7);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(74, 60, 245, 0.3);
}

.service-tag {
    position: absolute;
    right: 0;
    top: -32px;
    background: linear-gradient(135deg, #4a3cf5, #6c5ce7);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(74, 60, 245, 0.4);
}

/* Textarea */
.form-textarea {
    width: 100%;
    min-height: 80px;
    background: rgba(74, 60, 245, 0.08);
    border: 1px solid rgba(74, 60, 245, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #4a3cf5;
    background: rgba(74, 60, 245, 0.15);
    box-shadow: 0 0 0 3px rgba(74, 60, 245, 0.1);
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.cta-button {
    background: rgba(74, 60, 245, 0.1);
    color: #ffffff;
    border: 1px solid rgba(74, 60, 245, 0.3);
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
}

.confirm-btn {
    background: linear-gradient(135deg, #4a3cf5, #6c5ce7);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(74, 60, 245, 0.4);
}

/* Remove input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
