<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Frontend CSS - Expresso Mapeamento SAP
 * 
 * Estilos para mapeamento de gateways e validaÃ§Ã£o de CEP
 * 
 * @package ExpressoMapeamentoSAP
 * @version 1.0.0
 */

/* ========================================
   Gateway Mapping Styles
   ======================================== */

/* Mapped field animation */
.expresso-mapped-field {
    transition: all 0.3s ease;
    border-color: #28a745 !important;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3) !important;
    background-color: rgba(40, 167, 69, 0.05) !important;
}

/* Gateway mapping feedback */
.expresso-mapping-feedback {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 0 0 4px 4px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.expresso-mapping-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* Gateway field container */
.expresso-gateway-field {
    position: relative;
}

/* ========================================
   CEP Validation Styles
   ======================================== */

/* CEP field states */
.expresso-validating {
    background-image: url('data:image/svg+xml;charset=utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"&gt;&lt;circle cx="25" cy="25" r="20" fill="none" stroke="%23007cba" stroke-width="4" stroke-dasharray="31.416" stroke-dashoffset="31.416" stroke-linecap="round"&gt;&lt;animate attributeName="stroke-dasharray" dur="2s" values="0 31.416;15.708 15.708;0 31.416" repeatCount="indefinite"/&gt;&lt;animate attributeName="stroke-dashoffset" dur="2s" values="0;-15.708;-31.416" repeatCount="indefinite"/&gt;&lt;/circle&gt;&lt;/svg&gt;') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 16px 16px !important;
    padding-right: 35px !important;
}

.expresso-valid {
    border-color: #28a745 !important;
    background-image: url('data:image/svg+xml;charset=utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"&gt;&lt;path fill="%2328a745" d="M13.485 1.508a.5.5 0 0 1 .707 0l.646.647a.5.5 0 0 1 0 .707L6.207 11.5a.5.5 0 0 1-.707 0l-3.646-3.647a.5.5 0 0 1 0-.707l.646-.647a.5.5 0 0 1 .707 0L5.5 8.293l7.985-6.785z"/&gt;&lt;/svg&gt;') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 16px 16px !important;
    padding-right: 35px !important;
}

.expresso-invalid {
    border-color: #dc3545 !important;
    background-image: url('data:image/svg+xml;charset=utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"&gt;&lt;path fill="%23dc3545" d="M8 16A8 8 0 1 1 8 0a8 8 0 0 1 0 16zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z"/&gt;&lt;/svg&gt;') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 16px 16px !important;
    padding-right: 35px !important;
}

/* Auto-filled address feedback */
.expresso-auto-filled {
    background-color: rgba(40, 167, 69, 0.1) !important;
    border-color: #28a745 !important;
    transition: all 0.5s ease;
}

/* Validation messages */
.expresso-validation-message {
    display: block;
    margin-top: 5px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.3;
}

.expresso-validation-message--loading {
    background-color: #e9ecef;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.expresso-validation-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.expresso-validation-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Auto-fill feedback */
.expresso-autofill-feedback {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #17a2b8;
    color: white;
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 0 0 4px 4px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.expresso-autofill-feedback.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Field Container Enhancements
   ======================================== */

/* Enhanced field containers */
.expresso-field-container {
    position: relative;
}

/* Field icons */
.expresso-field-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 5;
}

/* ========================================
   Loading States
   ======================================== */

/* Loading overlay for payment section */
.expresso-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.expresso-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: expresso-spin 1s linear infinite;
}

@keyframes expresso-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Animations
   ======================================== */

/* Fade in animation */
@keyframes expresso-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide in animation */
@keyframes expresso-slide-in {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation for success states */
@keyframes expresso-pulse-success {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Apply pulse to validated fields */
.expresso-valid {
    animation: expresso-pulse-success 1s ease-out;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Mobile optimizations */
@media (max-width: 768px) {
    .expresso-validation-message {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .expresso-mapping-feedback,
    .expresso-autofill-feedback {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .expresso-field-icon {
        width: 14px;
        height: 14px;
        right: 8px;
    }
    
    .expresso-validating,
    .expresso-valid,
    .expresso-invalid {
        padding-right: 30px !important;
        background-size: 14px 14px !important;
    }
}

/* ========================================
   Accessibility
   ======================================== */

/* Focus states */
.expresso-mapped-field:focus,
.expresso-auto-filled:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .expresso-mapped-field {
        border-width: 2px !important;
    }
    
    .expresso-validation-message {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .expresso-mapped-field,
    .expresso-auto-filled,
    .expresso-mapping-feedback,
    .expresso-autofill-feedback,
    .expresso-spinner {
        transition: none !important;
        animation: none !important;
    }
}


/* ========================================
   Integration with WooCommerce
   ======================================== */

/* WooCommerce form compatibility */
.woocommerce form .form-row .expresso-validation-message {
    margin-top: 5px;
    margin-bottom: 0;
}

.woocommerce form .form-row.expresso-field-container {
    position: relative;
}

/* WooCommerce checkout compatibility */
.woocommerce-checkout .expresso-mapped-field,
.woocommerce-checkout .expresso-auto-filled {
    transition: all 0.3s ease;
}

/* Payment method section enhancements */
.wc_payment_method .expresso-mapped-field {
    background-color: rgba(40, 167, 69, 0.02) !important;
}

/* ========================================
   Theme Compatibility
   ======================================== */

/* Storefront theme compatibility */
.storefront .expresso-validation-message {
    border-radius: 5px;
}

/* Astra theme compatibility */
.astra-theme .expresso-mapped-field {
    border-radius: 3px !important;
}

/* OceanWP theme compatibility */
.oceanwp-theme .expresso-auto-filled {
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.3) !important;
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .expresso-validation-message,
    .expresso-mapping-feedback,
    .expresso-autofill-feedback,
    .expresso-loading-overlay {
        display: none !important;
    }
    
    .expresso-mapped-field,
    .expresso-auto-filled,
    .expresso-valid {
        background: none !important;
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}</pre></body></html>