/* Fábrica Pizzaria - Cardápio Digital */
/* Design: Warm Authentic Pizza - Laranja queimado, branco, responsivo */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #EA580C;
    --primary-dark: #C2410C;
    --primary-light: #FDBA74;
    --bg: #FAFAF9;
    --card-bg: #FFFFFF;
    --text: #1C1917;
    --text-muted: #78716C;
    --border: #E7E5E4;
    --success: #166534;
    --danger: #991B1B;
    --promo-red: #DC2626;
    --promo-bg: #FEF2F2;
    --radius: 0.75rem;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

/* HEADER */
.header-top {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
}

.header-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.header-nav a:hover, .header-nav a.active {
    background: rgba(255,255,255,0.2);
}

.header-nav a.active {
    background: rgba(255,255,255,0.3);
    border: 2px solid white;
}

/* HERO BANNER */
.hero-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    height: 80px;
}

/* INFO BAR */
.info-bar {
    background: var(--primary-dark);
    color: white;
    padding: 0.75rem 1rem;
}

.info-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-bar-left img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
}

.info-bar-left h1 {
    font-size: 1.25rem;
    font-weight: 700;
}

.info-bar-left .status {
    color: #86EFAC;
    font-size: 0.875rem;
    font-weight: 500;
}

.info-bar-left .location {
    font-size: 0.8rem;
    opacity: 0.9;
}

.info-btn {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.info-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* MAIN LAYOUT */
.main-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr 340px;
    }
}

/* TOOLBAR */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-select {
    padding: 0.625rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
    min-width: 200px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.625rem 1rem;
    flex: 1;
    max-width: 400px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 0.875rem;
    width: 100%;
    margin-left: 0.5rem;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

/* PROMO BANNER */
.promo-banner {
    background: linear-gradient(135deg, var(--promo-red) 0%, var(--primary) 100%);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.promo-banner::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.promo-banner h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.promo-banner p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.promo-banner .promo-price {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

.promo-badge {
    display: inline-block;
    background: #FBBF24;
    color: #92400E;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* CATEGORIES */
.category-section {
    margin-bottom: 2rem;
}

.category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.category-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* PRODUCT CARDS */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.15s;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.product-card-img {
    width: 110px;
    height: 110px;
    border-radius: calc(var(--radius) - 0.25rem);
    overflow: hidden;
    flex-shrink: 0;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.product-card-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

/* SIDEBAR CART */
.sidebar {
    position: sticky;
    top: 1rem;
}

.cart-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.cart-body {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-muted);
}

.cart-empty svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem;
    opacity: 0.4;
}

.cart-items {
    max-height: 350px;
    overflow-y: auto;
    padding: 0.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info h5 {
    font-size: 0.8rem;
    font-weight: 600;
}

.cart-item-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.15s;
}

.cart-item-controls button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cart-item-qty {
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 20px;
    text-align: center;
}

.cart-coupon {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-top: 1px solid var(--border);
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-coupon:hover {
    color: var(--primary);
}

.cart-total {
    padding: 0.75rem;
    border-top: 2px solid var(--primary);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.cart-total-row.total {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.btn-checkout {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-checkout:hover {
    background: var(--primary-dark);
}

.btn-checkout:active {
    transform: scale(0.98);
}

/* MOBILE CART BUTTON */
.mobile-cart-btn {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    z-index: 100;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

@media (max-width: 1023px) {
    .sidebar {
        display: none;
    }
    .mobile-cart-btn {
        display: block;
    }
    .hero-banner {
        height: 150px;
    }
}

/* MODAL */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    overflow: hidden;
    animation: modalIn 0.25s ease-out;
    position: relative;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
}

.modal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.modal-body {
    padding: 1.25rem;
}

.modal-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.modal-body .modal-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.modal-body .modal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* OPTIONS */
.option-group {
    margin-bottom: 1rem;
}

.option-group-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.option-group-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.option-item label {
    font-size: 0.875rem;
    cursor: pointer;
    flex: 1;
}

/* OBSERVATION */
.observation {
    margin-top: 1rem;
}

.observation textarea {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.875rem;
    resize: none;
    height: 60px;
    font-family: inherit;
}

.observation-counter {
    text-align: right;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* QUANTITY + ADD */
.modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
    gap: 1rem;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 0.25rem 0.5rem;
}

.qty-control button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-control span {
    font-weight: 700;
    font-size: 1rem;
    min-width: 24px;
    text-align: center;
}

.btn-add {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-add:hover {
    background: var(--primary-dark);
}

.btn-add:active {
    transform: scale(0.97);
}

.btn-add:disabled {
    background: #D6D3D1;
    cursor: not-allowed;
}

/* CHECKOUT MODAL */
.checkout-modal .modal {
    max-width: 500px;
}

.checkout-steps {
    padding: 1rem;
}

.checkout-step {
    display: none;
}

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

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 0.25rem);
    font-size: 0.875rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* CEP */
.cep-search {
    display: flex;
    gap: 0.5rem;
}

.cep-search input {
    flex: 1;
}

.cep-search button {
    padding: 0.625rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: calc(var(--radius) - 0.25rem);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

/* PAYMENT */
.payment-options {
    display: grid;
    gap: 0.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.payment-option:hover {
    border-color: var(--primary);
    background: #FFF7ED;
}

.payment-option.selected {
    border-color: var(--primary);
    background: #FFF7ED;
}

.payment-option input {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.payment-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* DELIVERY TYPE */
.delivery-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.delivery-option {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.delivery-option:hover {
    border-color: var(--primary);
}

.delivery-option.selected {
    border-color: var(--primary);
    background: #FFF7ED;
}

.delivery-option svg {
    width: 24px;
    height: 24px;
    margin: 0 auto 0.25rem;
    color: var(--primary);
}

.delivery-option span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* REVIEW */
.review-section {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.review-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.review-section p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.review-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 0.75rem;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.625rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border);
    gap: 0.75rem;
}

.review-item:last-child {
    border-bottom: none;
}

.review-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--primary);
    margin-top: 0.5rem;
    color: var(--primary);
}

/* NAV BUTTONS */
.checkout-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.btn-back {
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: var(--radius);
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-back:hover {
    background: var(--bg);
}

.btn-next {
    padding: 0.625rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-next:hover {
    background: var(--primary-dark);
}

.btn-next:active {
    transform: scale(0.98);
}

.btn-next.loading {
    opacity: 0.7;
    cursor: wait;
    pointer-events: none;
}

.btn-whatsapp {
    padding: 0.875rem 1.5rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #1DA851;
}

/* INFO MODAL */
.info-modal .modal {
    max-width: 450px;
}

.info-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.info-tab {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.info-tab:hover {
    color: var(--primary);
}

.info-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.info-content {
    padding: 1.25rem;
}

.info-content-section {
    display: none;
}

.info-content-section.active {
    display: block;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.schedule-row.today {
    font-weight: 600;
    color: var(--primary);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* TOAST */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: var(--success);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 2000;
    animation: toastIn 0.3s ease-out, toastOut 0.3s ease-in 2.5s forwards;
    box-shadow: var(--shadow-lg);
}

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

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

/* PROMO ITEM SPECIAL */
.promo-item-card {
    border: 2px solid var(--promo-red);
    background: var(--promo-bg);
}

.promo-item-card .product-card-price {
    color: var(--promo-red);
}

.promo-tag {
    position: absolute;
    top: -1px;
    left: -1px;
    background: var(--promo-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0 var(--radius) 0 var(--radius);
    text-transform: uppercase;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #D6D3D1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A8A29E;
}
/* ============================================= */
/* PIX PAYMENT STYLES */
/* ============================================= */

/* Promo Payment Warning */
.promo-payment-warning {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #D97706;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.2); }
    50% { box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1); }
}

.promo-payment-warning p {
    font-size: 0.85rem;
    color: #92400E;
    line-height: 1.5;
}

/* PIX Spinner */
.pix-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border: 4px solid #E5E7EB;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* PIX Timer */
.pix-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #FEF2F2;
    border: 2px solid #FECACA;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--danger);
    animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
    0%, 100% { background: #FEF2F2; }
    50% { background: #FEE2E2; }
}

/* PIX Amount */
.pix-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pix-amount span:last-child {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

/* PIX QR Code */
.pix-qrcode-container {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
}

.pix-qr-image {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: calc(var(--radius) - 0.25rem);
}

/* PIX Copy-Paste */
.pix-copypaste {
    margin-bottom: 1rem;
}

.copypaste-box {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.copypaste-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: calc(var(--radius) - 0.25rem);
    font-size: 0.75rem;
    font-family: monospace;
    background: #F5F5F4;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.copypaste-box input:focus {
    border-color: var(--primary);
}

.btn-copy {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: calc(var(--radius) - 0.25rem);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(234, 88, 12, 0.3);
}

.btn-copy:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px -2px rgba(234, 88, 12, 0.4);
}

.btn-copy:active {
    transform: scale(0.97);
}

.btn-copy.copied {
    background: #166534;
    box-shadow: 0 4px 6px -1px rgba(22, 101, 52, 0.3);
    animation: copySuccess 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    30% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* PIX Info */
.pix-info {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
}

.pix-info p {
    color: #166534;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pix-info p::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #166534;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Payment Options */
.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option.disabled:hover {
    border-color: var(--border) !important;
    background: var(--bg) !important;
}
