/* standard.css — clean copy of styles.css for the frontend-only standard page */

/* More Sugar Font */
@font-face {
    font-family: 'More Sugar';
    src: url('fonts/MoreSugar-Regular.woff2') format('woff2'),
        url('fonts/MoreSugar-Regular.woff') format('woff'),
        url('fonts/MoreSugar-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.payment-disabled-banner {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 12px 0;
}

.hidden {
    display: none !important;
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rose palette (shared with Admin) */
    --rose-25: #fff9fb;
    --rose-50: #fff5f7;
    --rose-100: #ffe9ef;
    --rose-200: #ffd9e3;
    --rose-300: #ffb8cb;
    --rose-400: #ff8fb0;
    --rose-500: #f56b98;
    --rose-600: #e85486;
    --rose-700: #d44273;
    --gray-25: #fcfcfd;
    --gray-50: #f8fafc;
    --gray-100: #f2f4f7;
    --gray-200: #e4e7ec;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 12px 24px rgba(16, 24, 40, 0.08);
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Lilac & Beige additions */
    --lilac-300: #d8bfff;
    --lilac-400: #caa8ff;
    --lilac-500: #b589ff;
    --beige-50: #fff7f0;
    --beige-100: #fdf2e9;
    --beige-200: #faeadc;

    /* Legacy variables mapped to new palette for compatibility */
    --color-primary: var(--rose-600);
    --color-primary-alt: var(--lilac-400);
    --color-bg1: var(--rose-50);
    --color-bg2: var(--lilac-300);
    --color-bg3: var(--rose-100);
    --color-text: var(--gray-700);
    --color-text-soft: var(--gray-600);
    --color-text-muted: var(--gray-500);
    --gradient-bg: linear-gradient(135deg, var(--color-bg1) 0%, var(--color-bg2) 50%, var(--color-bg3) 100%);
    --gradient-primary: linear-gradient(135deg, var(--rose-600), var(--lilac-400));
    --gradient-primary-soft: linear-gradient(135deg, var(--beige-50), var(--rose-25));
    --color-surface-alt: var(--beige-50);
    --color-surface: var(--beige-100);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--gradient-bg);
    min-height: 100vh;
}

/* Acessibilidade: link para pular conteúdo */
.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: #dc143c;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    z-index: 2000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(253, 242, 233, 0.92);
    /* beige-100 with alpha */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    height: 64px;
    width: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 4px 8px rgba(212, 66, 115, 0.15));
    animation: logo-float 7s ease-in-out infinite;
    will-change: transform;
}

.logo-img:hover {
    transform: translateY(-2px) scale(1.06) rotate(-1deg);
    filter: drop-shadow(0 10px 18px rgba(212, 66, 115, 0.25)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.logo-img:active {
    transform: scale(0.98);
}

@keyframes logo-float {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }

    100% {
        transform: translateY(0)
    }
}

.nav {
    display: flex;
    gap: 6px;
    /* was 8px */
    background: var(--rose-100);
    border: 1px solid var(--rose-200);
    border-radius: 999px;
    padding: 4px;
    /* was 6px */
}

.nav-toggle {
    display: none;
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    padding: 10px 14px;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}


.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    transition: all .2s ease;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--rose-700);
    background: var(--rose-200);
}

.admin-link {
    background: linear-gradient(135deg, #dc143c, #d8bfd8);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Hero Section */
.hero {
    padding: 110px 0 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg1) 0%, var(--color-bg2) 50%, var(--color-bg3) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23g)"/><circle cx="80" cy="40" r="1.5" fill="url(%23g)"/><circle cx="40" cy="80" r="1" fill="url(%23g)"/><circle cx="90" cy="90" r="2.5" fill="url(%23g)"/><circle cx="10" cy="60" r="1.2" fill="url(%23g)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--rose-600), var(--rose-400), var(--rose-600));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
    margin: 0;
    /* spacing handled by the row container */
    text-shadow: 0 2px 10px rgba(212, 66, 115, 0.12);
}

/* Title + Logo row */
.hero-title-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-logo {
    height: 96px;
    width: auto;
    filter: drop-shadow(0 10px 18px rgba(212, 66, 115, 0.18)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
    animation: hero-float 4.5s ease-in-out infinite;
    will-change: transform;
}

.hero-logo:hover {
    transform: translateY(-2px) scale(1.03);
}

@keyframes hero-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(-2deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(232, 84, 134, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

/* Form Section */
.form-section {
    padding: 20px 0 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--rose-600), var(--rose-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.form-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Carrinho Flutuante */
.cart-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    min-width: 280px;
    max-width: 320px;
    transition: all 0.3s ease;
}

.cart-header {
    background: var(--rose-600);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cart-widget.collapsed .cart-toggle {
    transform: rotate(-90deg);
}

.cart-content {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.cart-widget.collapsed .cart-content {
    display: none;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

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

.cart-item-name {
    flex: 1;
    color: var(--color-text);
}

.cart-item-price {
    color: #dc143c;
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    color: var(--color-text-subtle);
    font-style: italic;
    padding: 20px 0;
}

.cart-total {
    text-align: center;
    font-size: 1.2rem;
    color: var(--rose-700);
    margin-bottom: 20px;
    padding: 15px;
    background: var(--rose-50);
    border-radius: var(--radius-md);
}

.checkout-btn {
    width: 100%;
    background: var(--rose-600);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.checkout-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 84, 134, 0.3);
}

/* Form Container - Flexbox para permitir reordenação dinâmica */
.video-form {
    display: flex;
    flex-direction: column;
}

/* Form Cards */
.form-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--gray-100);
}

.form-card:hover {
    background: var(--beige-50);
    box-shadow: var(--shadow-lg);
}

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

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
}

.required {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.optional {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
    font-style: italic;
}

.price-info {
    color: var(--gray-600);
    font-size: .9rem;
    background: var(--rose-50);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--rose-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

@media (max-width: 720px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.checkbox-item {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-surface);
    border-radius: 12px;
    transition: all .18s ease;
    cursor: pointer;
    border: 1px solid var(--gray-200);
    box-shadow: 0 6px 14px rgba(16, 24, 40, 0.04);
    min-height: 56px;
}

.checkbox-item:hover {
    background: var(--rose-50);
    border-color: var(--rose-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.checkbox-item.selected {
    background: var(--rose-50);
    border-color: var(--rose-600);
    box-shadow: var(--shadow-md);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    background: var(--rose-50);
    border-color: var(--rose-600);
    box-shadow: var(--shadow-md);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--rose-600);
    cursor: pointer;
    border-radius: 4px;
}

.checkbox-label {
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.4;
    justify-self: start;
}

.checkbox-price {
    color: var(--rose-700);
    font-weight: 700;
    font-size: 0.9rem;
    background: #fff;
    border: 1px solid var(--rose-200);
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
    justify-self: end;
    box-shadow: 0 2px 6px rgba(212, 66, 115, 0.06);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--color-surface);
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    width: 90%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    padding: 24px 30px;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.modal-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.close {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close svg {
    width: 20px;
    height: 20px;
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.modal-body {
    padding: 32px 28px 40px 28px;
}

.checkout-summary {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 100%);
    padding: 28px 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.08);
    border: 2px solid rgba(236, 72, 153, 0.1);
}

.checkout-summary h4 {
    margin-bottom: 16px;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ensure cart-item markup created by JS matches the checkout visual */
.checkout-summary .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.08);
    transition: all 0.2s ease;
}

.checkout-summary .cart-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
}

.checkout-summary .cart-item:nth-child(even) {
    background: rgba(255, 255, 255, 0.6);
}

.checkout-summary .cart-item:last-child {
    margin-bottom: 0;
}

.checkout-summary .cart-item-name {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
}

.checkout-summary .cart-item-price {
    color: var(--rose-700);
    font-weight: 700;
    font-size: 1rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 8px;
    background: white;
    border: 1px solid rgba(236, 72, 153, 0.08);
    transition: all 0.2s ease;
}

.checkout-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
}

.checkout-item:last-child {
    margin-bottom: 0;
}

.checkout-observations {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 2px dashed rgba(236, 72, 153, 0.2);
}

.checkout-observations .observations-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--rose-700);
}

.checkout-observations .observations-header svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.checkout-observations .observations-header strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.checkout-observations p {
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.checkout-total {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    border-radius: 14px;
    border: 2px solid rgba(236, 72, 153, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.checkout-total-icon {
    width: 24px;
    height: 24px;
    color: var(--rose-600);
}

/* Emphasized total label */
.checkout-total strong {
    display: block;
    font-size: 1.5rem;
    color: var(--rose-700);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Modal form inputs styling to match the provided mock */
.modal-body .form-group {
    margin-bottom: 24px;
    position: relative;
}

.modal-body .form-group label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.modal-body .form-group label .input-icon {
    width: 18px;
    height: 18px;
    color: var(--rose-600);
    stroke-width: 2.5;
}

.modal-body .form-group input,
.modal-body .form-group textarea,
.modal-body .form-group select {
    padding: 16px 18px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: white;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    font-family: inherit;
}

.modal-body .form-group input:focus,
.modal-body .form-group textarea:focus,
.modal-body .form-group select:focus {
    outline: none;
    border-color: var(--rose-500);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
    transform: translateY(-2px);
}

.modal-body .form-group input::placeholder {
    color: #9ca3af;
}

.modal-body .pay-button {
    margin-top: 28px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.modal-body .pay-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.modal-body .pay-button:hover::before {
    width: 400px;
    height: 400px;
}

.modal-body .pay-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #db2777 0%, #9f1239 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-body .pay-button:hover::after {
    opacity: 1;
}

.modal-body .pay-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.modal-body .pay-button span {
    position: relative;
    z-index: 2;
}

.modal-body .pay-button:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(236, 72, 153, 0.5), 0 0 30px rgba(236, 72, 153, 0.3);
}

.modal-body .pay-button:hover:not(:disabled) svg {
    transform: translateX(5px);
}

.modal-body .pay-button:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.4);
}

.modal-body .pay-button:disabled {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

/* Hide payment selection area entirely for the standard page per user's request */
#paymentMethodSection,
#paymentMethodSection .payment-options,
#pixDisplay {
    display: none !important;
}

/* Payment embed inside success box */
.payment-embed {
    margin-top: 18px;
}

.payment-embed iframe {
    width: 100%;
    height: 520px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.payment-embed .payment-fallback {
    margin-top: 10px;
    font-size: .95rem;
}

.payment-embed .payment-fallback a {
    color: var(--rose-700);
    font-weight: 600;
    text-decoration: none;
}

.payment-embed .payment-fallback a:hover {
    text-decoration: underline;
}

.checkout-form .form-group {
    margin-bottom: 25px;
}

.payment-methods {
    margin: 30px 0;
}

.payment-methods h4 {
    margin-bottom: 20px;
    color: #333;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
    accent-color: var(--color-primary);
}

.payment-option input[type="radio"]:checked+.payment-label {
    color: var(--color-primary);
}

.payment-option:has(input[type="radio"]:checked) {
    background: var(--gradient-primary-soft);
    border-color: var(--rose-600);
    box-shadow: 0 5px 15px rgba(232, 84, 134, 0.2);
}

.payment-label {
    flex: 1;
}

.payment-label small {
    display: block;
    color: var(--color-text-soft);
    font-size: 0.85rem;
    margin-top: 5px;
}

.pay-button {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 32px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.about-section {
    padding: 48px 0;
    background: var(--color-surface);
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin-bottom: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.feature {
    text-align: center;
    padding: 20px 16px;
    background: var(--gradient-primary-soft);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.feature-icon-img {
    height: 36px;
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.feature p {
    color: var(--color-text-soft);
    line-height: 1.5;
    font-size: .95rem;
}


/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: none;
}

.footer-text p {
    color: var(--lilac-500);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}


/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        min-height: 70px;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 50px;
    }

    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        z-index: 1002;
        background: white;
        border: 1px solid var(--gray-300);
        padding: 10px;
        cursor: pointer;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--gray-700);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav {
        position: fixed;
        top: 82px;
        right: 20px;
        background: white !important;
        flex-direction: column;
        padding: 0 !important;
        border-radius: 12px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        display: none !important;
        border: 1px solid var(--gray-200) !important;
        z-index: 1001;
        min-width: 200px;
        gap: 0 !important;
    }

    .nav.open {
        display: flex !important;
    }

    .nav-link {
        padding: 16px 20px;
        text-align: left;
        width: 100%;
        border-radius: 0;
        display: block;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1rem;
        font-weight: 600;
        color: var(--gray-700);
        background: white;
    }

    .nav-link:first-child {
        border-radius: 12px 12px 0 0;
    }

    .nav-link:last-child {
        border-bottom: none;
        border-radius: 0 0 12px 12px;
    }

    .nav-link:hover,
    .nav-link:active {
        background: var(--rose-50);
        color: var(--rose-700);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-logo {
        height: 72px;
    }

    .hero-title-row {
        gap: 10px;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .payment-options {
        gap: 10px;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .modal-body {
        padding: 20px;
    }

    .about-section {
        padding: 36px 0;
    }

    .features {
        gap: 20px;
        margin-top: 22px;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 20px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-section {
        padding: 28px 0;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Skeleton Loading */
.skeleton-group {
    display: grid;
    gap: 15px;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #e3e3e3;
    border-radius: 10px;
    height: 52px;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* standard.css — clean copy of styles.css for the frontend-only standard page */
.payment-disabled-banner {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 12px 0;
}

.hidden {
    display: none !important;
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rose palette (shared with Admin) */
    --rose-25: #fff9fb;
    --rose-50: #fff5f7;
    --rose-100: #ffe9ef;
    --rose-200: #ffd9e3;
    --rose-300: #ffb8cb;
    --rose-400: #ff8fb0;
    --rose-500: #f56b98;
    --rose-600: #e85486;
    --rose-700: #d44273;
    --gray-25: #fcfcfd;
    --gray-50: #f8fafc;
    --gray-100: #f2f4f7;
    --gray-200: #e4e7ec;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;

}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.form-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Carrinho Flutuante */
.cart-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    min-width: 280px;
    max-width: 320px;
    transition: all 0.3s ease;
}

.cart-header {
    background: var(--rose-600);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cart-widget.collapsed .cart-toggle {
    transform: rotate(-90deg);
}

.cart-content {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.cart-widget.collapsed .cart-content {
    display: none;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

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

.cart-item-name {
    flex: 1;
    color: var(--color-text);
}

.cart-item-price {
    color: #dc143c;
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    color: var(--color-text-subtle);
    font-style: italic;
    padding: 20px 0;
}

.cart-total {
    text-align: center;
    font-size: 1.2rem;
    color: var(--rose-700);
    margin-bottom: 20px;
    padding: 15px;
    background: var(--rose-50);
    border-radius: var(--radius-md);
}

.checkout-btn {
    width: 100%;
    background: var(--rose-600);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.checkout-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 84, 134, 0.3);
}

/* Form Container - Flexbox para permitir reordenação dinâmica */
.video-form {
    display: flex;
    flex-direction: column;
}

/* Form Cards */
.form-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--gray-100);
}

.form-card:hover {
    background: var(--beige-50);
    box-shadow: var(--shadow-lg);
}

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

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text);
}

.required {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.optional {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
    font-style: italic;
}

.price-info {
    color: var(--gray-600);
    font-size: .9rem;
    background: var(--rose-50);
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--rose-200);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-surface);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--rose-600);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.checkout-summary {
    background: var(--beige-50);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.checkout-summary h4 {
    margin-bottom: 15px;
    color: #333;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.checkout-total {
    text-align: center;
    font-size: 1.3rem;
    color: var(--rose-700);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--rose-600);
}

/* Payment embed inside success box */
.payment-embed {
    margin-top: 18px;
}

.payment-embed iframe {
    width: 100%;
    height: 520px;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.payment-embed .payment-fallback {
    margin-top: 10px;
    font-size: .95rem;
}

.payment-embed .payment-fallback a {
    color: var(--rose-700);
    font-weight: 600;
    text-decoration: none;
}

.payment-embed .payment-fallback a:hover {
    text-decoration: underline;
}

.checkout-form .form-group {
    margin-bottom: 25px;
}

.payment-methods {
    margin: 30px 0;
}

.payment-methods h4 {
    margin-bottom: 20px;
    color: #333;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
    accent-color: var(--color-primary);
}

.payment-option input[type="radio"]:checked+.payment-label {
    color: var(--color-primary);
}

.payment-option:has(input[type="radio"]:checked) {
    background: var(--gradient-primary-soft);
    border-color: var(--rose-600);
    box-shadow: 0 5px 15px rgba(232, 84, 134, 0.2);
}

.payment-label {
    flex: 1;
}

.payment-label small {
    display: block;
    color: var(--color-text-soft);
    font-size: 0.85rem;
    margin-top: 5px;
}

.pay-button {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pay-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.about-section {
    padding: 48px 0;
    background: var(--color-surface);
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    margin-bottom: 16px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.feature {
    text-align: center;
    padding: 20px 16px;
    background: var(--gradient-primary-soft);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
}

.feature-icon-img {
    height: 36px;
    width: auto;
    vertical-align: middle;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.feature p {
    color: var(--color-text-soft);
    line-height: 1.5;
    font-size: .95rem;
}


/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    filter: none;
}

.footer-text p {
    color: var(--lilac-500);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}


/* Responsive Design */

@media (max-width: 480px) {
    .form-card {
        padding: 20px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-section {
        padding: 28px 0;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Skeleton Loading */
.skeleton-group {
    display: grid;
    gap: 15px;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #e3e3e3;
    border-radius: 10px;
    height: 52px;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* Copied from styles.css to create an editable frontend-only stylesheet for standard.html */
.payment-disabled-banner {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 12px 0;
}

.hidden {
    display: none !important;
}

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rose palette (shared with Admin) */
    --rose-25: #fff9fb;
    --rose-50: #fff5f7;
    --rose-100: #ffe9ef;
    --rose-200: #ffd9e3;
    --rose-300: #ffb8cb;
    --rose-400: #ff8fb0;
    --rose-500: #f56b98;
    --rose-600: #e85486;
    --rose-700: #d44273;
    --gray-25: #fcfcfd;
    --gray-50: #f8fafc;
    --gray-100: #f2f4f7;
    --gray-200: #e4e7ec;
    --gray-300: #d0d5dd;
    --gray-400: #98a2b3;
    --gray-500: #667085;
    --gray-600: #475467;
    --gray-700: #344054;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 12px 24px rgba(16, 24, 40, 0.08);
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Lilac & Beige additions */
    --lilac-300: #d8bfff;
    --lilac-400: #caa8ff;
    --lilac-500: #b589ff;
    --beige-50: #fff7f0;
    --beige-100: #fdf2e9;
    --beige-200: #faeadc;

    /* Legacy variables mapped to new palette for compatibility */
    --color-primary: var(--rose-600);
    --color-primary-alt: var(--lilac-400);
    --color-bg1: var(--rose-50);
    --color-bg2: var(--lilac-300);
    --color-bg3: var(--rose-100);
    --color-text: var(--gray-700);
    --color-text-soft: var(--gray-600);
    --color-text-muted: var(--gray-500);
    --gradient-bg: linear-gradient(135deg, var(--color-bg1) 0%, var(--color-bg2) 50%, var(--color-bg3) 100%);
    --gradient-primary: linear-gradient(135deg, var(--rose-600), var(--lilac-400));
    --gradient-primary-soft: linear-gradient(135deg, var(--beige-50), var(--rose-25));
    --color-surface-alt: var(--beige-50);
    --color-surface: var(--beige-100);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--gradient-bg);
    min-height: 100vh;
}

/* Acessibilidade: link para pular conteúdo */
.skip-link {
    position: absolute;
    top: -40px;
    left: 10px;
    background: #dc143c;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    z-index: 2000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(253, 242, 233, 0.92);
    /* beige-100 with alpha */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-img {
    height: 64px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 6px;
    /* was 8px */
    background: var(--rose-100);
    border: 1px solid var(--rose-200);
    border-radius: 999px;
    padding: 4px;
    /* was 6px */
}

.nav-toggle {
    display: none;
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    padding: 10px 14px;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    transition: all .2s ease;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--rose-700);
    background: var(--rose-200);
}

.admin-link {
    background: linear-gradient(135deg, #dc143c, #d8bfd8);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg1) 0%, var(--color-bg2) 50%, var(--color-bg3) 100%);
    position: relative;
    overflow: hidden;
}

/* ============================================
   PIX Payment Screen Styles
   ============================================ */

.pix-payment-screen {
    background: linear-gradient(180deg, #f8f4ff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.pix-logo {
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pix-logo-img {
    display: block;
    width: 50%;
    height: auto;
}

.pix-total-section {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 12px;
    padding: 16px 28px;
    margin: 0 0 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pix-total-label {
    display: inline;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.pix-total-value {
    display: inline;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: scaleIn 0.5s ease-out;
    letter-spacing: -0.5px;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 6px 24px rgba(139, 92, 246, 0.5);
        transform: scale(1.02);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pix-title {
    font-size: 28px;
    font-weight: 600;
    color: #8b5cf6;
    margin: 0 0 8px;
}

.pix-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 24px;
}

.pix-qr-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 320px;
}

.pix-qr-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.pix-info-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin: 0 0 16px;
    text-align: left;
}

.pix-info-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.pix-info-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pix-info-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pix-info-value {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    word-break: break-all;
    line-height: 1.4;
}

.pix-code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pix-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 10px;
}

.pix-code-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #374151;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.pix-code-input:focus {
    outline: none;
}

.pix-copy-mini-btn {
    flex-shrink: 0;
    background: #8b5cf6;
    border: none;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
}

.pix-copy-mini-btn:hover {
    background: #7c3aed;
    transform: scale(1.05);
}

.pix-copy-mini-btn:active {
    transform: scale(0.95);
}

.pix-copy-mini-btn svg {
    display: block;
}

.pix-copy-button {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.pix-copy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.pix-copy-button:active {
    transform: translateY(0);
}

.pix-expiration-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff3cd;
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
    color: #856404;
}

.pix-expiration-timer.expired {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.pix-expiration-timer svg {
    flex-shrink: 0;
}

.pix-expiration-timer strong {
    font-weight: 700;
    color: #ff6b9d;
    font-family: 'Courier New', monospace;
    font-size: 15px;
}

.pix-confirm-payment-button {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    margin: 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pix-confirm-payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.pix-confirm-payment-button:active {
    transform: translateY(0);
}

.pix-confirm-payment-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.pix-footer-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef3f8;
    border: 1px solid #fde0ed;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
    text-align: left;
}

.pix-footer-message svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pix-footer-message span {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   ORDER SUCCESS SCREEN STYLES
   ============================================ */

.order-success-screen {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Animation */
.success-animation {
    margin-bottom: 24px;
}

.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.check-icon {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #10b981;
}

.icon-line {
    height: 5px;
    background-color: #10b981;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: animateLineTip 0.75s;
}

.icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: animateLineLong 0.75s;
}

.icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(16, 185, 129, 0.2);
}

.icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #f0fdf4;
}

@keyframes animateLineTip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes animateLineLong {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 24px;
}

.success-order-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.order-number {
    font-size: 32px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.success-details {
    background: white;
    border: 2px solid #d1fae5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    font-size: 16px;
    color: #1f2937;
    font-weight: 600;
}

.status-pending {
    color: #f59e0b;
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.success-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.success-message p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.success-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.success-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .order-success-screen {
        padding: 32px 20px;
    }

    .success-checkmark {
        width: 80px;
        height: 80px;
    }

    .check-icon {
        width: 80px;
        height: 80px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .success-title {
        font-size: 24px;
    }

    .order-number {
        font-size: 28px;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .pix-payment-screen {
        padding: 24px 16px;
    }

    .pix-total-section {
        padding: 14px 20px;
        gap: 10px;
    }

    .pix-total-label {
        font-size: 11px;
    }

    .pix-total-value {
        font-size: 24px;
    }

    .pix-title {
        font-size: 24px;
    }

    .pix-qr-container {
        max-width: 280px;
        padding: 16px;
    }

    .pix-info-value {
        font-size: 12px;
    }

    .pix-code-input {
        font-size: 11px;
    }

    .pix-copy-button {
        font-size: 15px;
        padding: 14px 20px;
    }
}

/* Observações: meta e contador discreto */
.input-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 6px;
}

.input-meta .counter {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-align: right;
}

.mini-btn {
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 0.85rem;
    padding: 4px 8px;
    cursor: pointer;
}

.mini-btn:hover {
    color: var(--gray-600);
}

.hero-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid var(--rose-200);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    animation: heroCardFloat 9s ease-in-out infinite;
    max-width: 820px;
    margin: 0 auto;
}

@keyframes heroCardFloat {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }

    100% {
        transform: translateY(0)
    }
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 8px;
}

.hero-description {
    margin: 0 0 16px 0;
}

.hero-card .cta-button {
    margin-top: 6px;
}

/* ========================================
   LANGUAGE SELECTOR
   ======================================== */

.language-selector {
    position: relative;
    margin-left: 8px;
}

.language-btn {
    background: transparent;
    border: 2px solid var(--rose-400);
    color: var(--rose-600);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.language-btn:hover {
    background: var(--rose-50);
    border-color: var(--rose-600);
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid var(--rose-400);
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 140px;
    overflow: hidden;
}

.language-dropdown.show {
    display: block;
    animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.language-option:hover {
    background: var(--rose-50);
}

.language-option.active {
    background: var(--rose-600);
    color: white;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }

    .language-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .language-dropdown {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* ===========================================
   ROYAL PURPLE PALETTE - MODAL OVERRIDE
   Premium checkout modal styling for Standard page
   =========================================== */

/* Royal Purple Color Variables */
:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7c3aed;
    --purple-800: #6b21a8;
    --purple-900: #581c87;
    --purple-accent: #7c3aed;
    --purple-success: #10b981;
    --purple-text: #1f2937;
    --purple-text-muted: #6b7280;
}

/* Modal Header - Royal Purple */
.modal-header {
    background: linear-gradient(135deg, #7c3aed 0%, #6b21a8 100%) !important;
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3) !important;
}

/* Checkout Summary Card */
.checkout-summary {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--purple-100) 100%) !important;
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.08) !important;
    border: 2px solid rgba(124, 58, 237, 0.15) !important;
}

.checkout-summary h4 {
    color: var(--purple-800) !important;
}

/* Cart Items in Modal */
.checkout-summary .cart-item {
    border: 1px solid rgba(124, 58, 237, 0.1) !important;
}

.checkout-summary .cart-item:hover {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.12) !important;
    border-color: rgba(124, 58, 237, 0.25) !important;
}

.checkout-summary .cart-item-name {
    color: var(--purple-text) !important;
}

.checkout-summary .cart-item-price {
    color: var(--purple-700) !important;
}

/* Checkout Total Box */
.checkout-total {
    background: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-200) 100%) !important;
    border: 2px solid rgba(124, 58, 237, 0.25) !important;
}

.checkout-total-icon {
    color: var(--purple-600) !important;
}

.checkout-total strong {
    color: var(--purple-800) !important;
}

/* Observations Box */
.checkout-observations {
    border: 2px dashed rgba(124, 58, 237, 0.25) !important;
}

.checkout-observations .observations-header {
    color: var(--purple-700) !important;
}

.checkout-observations p {
    color: var(--purple-text) !important;
}

/* Form Labels in Modal */
.modal-body .form-group label {
    color: var(--purple-text) !important;
}

.modal-body .form-group label .input-icon {
    color: var(--purple-600) !important;
}

/* Input Fields Focus State */
.modal-body .form-group input:focus,
.modal-body .form-group textarea:focus,
.modal-body .form-group select:focus {
    border-color: var(--purple-500) !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15) !important;
}

/* Pay Button - Royal Purple */
.modal-body .pay-button {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 100%) !important;
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.35) !important;
}

.modal-body .pay-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%) !important;
    box-shadow: 0 12px 32px rgba(107, 33, 168, 0.45) !important;
}

/* PIX Payment Section */
.pix-section,
.pix-container {
    background: var(--purple-50) !important;
}

.pix-total-banner {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 100%) !important;
}

.pix-title {
    color: var(--purple-700) !important;
}

.pix-instructions {
    color: var(--purple-text) !important;
}

.pix-code-container {
    background: white !important;
    border: 2px solid var(--purple-200) !important;
}

.pix-code-text,
.copy-code-text {
    color: var(--purple-text) !important;
}

.copy-code-btn {
    background: var(--purple-100) !important;
    color: var(--purple-700) !important;
    border: 1px solid var(--purple-200) !important;
}

.copy-code-btn:hover {
    background: var(--purple-200) !important;
}

/* Timer and warnings */
.pix-timer {
    background: var(--purple-100) !important;
    color: var(--purple-700) !important;
}

.pix-timer-text {
    color: var(--purple-700) !important;
}

/* Confirm Payment Button */
.confirm-payment-btn,
.pix-confirm-btn {
    background: linear-gradient(135deg, var(--purple-success) 0%, #059669 100%) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
}

.confirm-payment-btn:hover,
.pix-confirm-btn:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45) !important;
}

/* Info/Warning boxes */
.pix-info,
.payment-info {
    background: var(--purple-50) !important;
    border: 1px solid var(--purple-200) !important;
    color: var(--purple-text) !important;
}

.pix-info-icon {
    color: var(--purple-600) !important;
}

/* Customer info display */
.customer-info-row {
    color: var(--purple-text) !important;
}

.customer-info-label {
    color: var(--purple-text-muted) !important;
}

.customer-info-value {
    color: var(--purple-text) !important;
}

/* Success state */
.payment-success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%) !important;
    border: 2px solid var(--purple-success) !important;
}

.payment-success h4 {
    color: #065f46 !important;
}

/* Footer Cart - Purple accent */
.footer-cart .footer-checkout-btn {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 100%) !important;
}

.footer-cart .footer-checkout-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--purple-700) 0%, var(--purple-800) 100%) !important;
}

/* PIX Screen - Fix text visibility */
.pix-payment-screen {
    background: white !important;
}

.pix-subtitle {
    color: var(--purple-text) !important;
}

.pix-info-section {
    background: var(--purple-50) !important;
    border: 1px solid var(--purple-200) !important;
}

.pix-info-label {
    color: var(--purple-600) !important;
}

.pix-info-value {
    color: var(--purple-text) !important;
}

.pix-code-box {
    background: white !important;
    border: 2px solid var(--purple-300) !important;
}

.pix-code-input {
    color: var(--purple-text) !important;
    background: transparent !important;
}

.pix-code-wrapper .pix-info-label {
    color: var(--purple-600) !important;
}

/* Footer message (warning box) */
.pix-footer-message {
    background: #fef3c7 !important;
    border: 1px solid #fcd34d !important;
    color: #92400e !important;
}

.pix-footer-message svg {
    color: #f59e0b !important;
}

.pix-footer-message span {
    color: #78350f !important;
}

/* Expiration timer */
.pix-expiration-timer {
    background: var(--purple-100) !important;
    border: 1px solid var(--purple-200) !important;
}

.pix-expiration-timer svg {
    color: var(--purple-600) !important;
}

.pix-expiration-timer span,
.pix-expiration-timer strong {
    color: var(--purple-700) !important;
}

/* Total section banner */
.pix-total-section {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-700) 100%) !important;
}

.pix-total-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.pix-total-value {
    color: white !important;
}

/* ===========================================
   ORDER CONFIRMATION SCREEN - Royal Purple
   =========================================== */

/* Container */
.success-screen {
    background: white !important;
}

/* Order number box - keep green for success feel */
.success-order-number {
    background: linear-gradient(135deg, var(--purple-success) 0%, #059669 100%) !important;
}

/* Details section */
.success-details {
    background: var(--purple-50) !important;
    border: 2px solid var(--purple-200) !important;
}

.detail-row {
    border-bottom: 1px dashed var(--purple-200) !important;
}

.detail-label {
    color: var(--purple-text) !important;
    font-weight: 600 !important;
}

.detail-value {
    color: var(--purple-800) !important;
}

/* Status badge */
.status-pending {
    color: #92400e !important;
    background: #fef3c7 !important;
    border: 1px solid #fcd34d !important;
}

/* Info message box */
.success-message {
    background: var(--purple-50) !important;
    border: 1px solid var(--purple-200) !important;
}

.success-message svg {
    color: var(--purple-600) !important;
}

.success-message p {
    color: var(--purple-text) !important;
}

/* Success button - keep green */
.success-btn {
    background: linear-gradient(135deg, var(--purple-success) 0%, #059669 100%) !important;
}

.success-btn:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4) !important;
}
/* ============================================
   PAYMENT METHODS (Ported from payment-modal.css)
   ============================================ */

.payment-methods {
    margin: 24px 0 16px;
}

.payment-methods h4 {
    margin-bottom: 14px;
    color: var(--purple-text);
    font-size: 1rem;
    font-weight: 600;
}

.payment-options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.payment-option-card {
    position: relative;
    background: white;
    border: 2px solid var(--purple-200);
    border-radius: 14px;
    padding: 18px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.payment-option-card:hover {
    background: var(--purple-50);
    border-color: var(--purple-accent);
}

.payment-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-option-card:has(input:checked) {
    border-color: var(--purple-accent);
    background: var(--purple-50);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.payment-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.payment-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.payment-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.payment-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-text);
}

.payment-description {
    font-size: 0.8rem;
    color: var(--purple-text-muted);
    text-align: center;
}

.payment-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: var(--purple-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.payment-option-card:has(input:checked) .payment-check {
    opacity: 1;
}
