@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0b0d;
    --bg-card: #12141c;
    --gold-primary: #d4af37;
    --gold-dark: #aa771c;
    --gold-glow: rgba(212, 175, 55, 0.08);
    --gold-glow-strong: rgba(212, 175, 55, 0.25);
    --text-primary: #f5f6f8;
    --text-secondary: #9fa4b0;
    --border-color: rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(18, 20, 28, 0.7);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background texture effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(170, 119, 28, 0.04) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 11, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    background: linear-gradient(135deg, #fff 30%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    flex-direction: column;
}

.logo span {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

nav a:hover, nav a.active {
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--gold-glow-strong);
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(135deg, var(--gold-primary) 30%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold-primary);
}

/* Image Graphic Side */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--gold-glow);
    transition: var(--transition-fast);
}

.hero-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow-strong);
}

/* Section Common Styles */
section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 50%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Oraculo Section */
.oraculo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.oraculo-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
}

.oraculo-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.oraculo-interactive {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.oraculo-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
}

.opele-sim {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.opon-interactive-area {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px double var(--gold-primary);
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle, #1a1c24 0%, #0c0d12 100%);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.opon-interactive-area:hover {
    box-shadow: 0 0 25px var(--gold-glow-strong);
    transform: scale(1.02);
}

.opon-interactive-area span {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    text-align: center;
}

.interactive-response {
    min-height: 60px;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
}

/* Odus Section */
.odus-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: var(--text-secondary);
}

.odus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.odu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.odu-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.odu-pattern {
    font-family: monospace;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 5px;
    display: flex;
    justify-content: center;
    height: 60px;
    align-items: center;
}

.odu-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-align: center;
    color: var(--text-primary);
}

.odu-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

.odu-detail-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 13, 0.95);
    z-index: 1100;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.odu-modal {
    background: var(--bg-card);
    border: 1px solid var(--gold-primary);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 40px var(--gold-glow);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--gold-primary);
}

.odu-modal h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

/* About / Ronald Section */
.bio-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 35px rgba(0,0,0,0.5);
}

.bio-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
    filter: grayscale(15%);
}

.bio-image-wrapper:hover .bio-image {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.bio-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.bio-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.bio-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.badge-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.8rem 1.5rem;
    text-align: center;
}

.badge-item strong {
    display: block;
    color: var(--gold-primary);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.badge-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Livro Section */
.livro-wrapper {
    background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 40%), var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.livro-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.book-cover-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);
    transition: var(--transition-fast);
}

.book-cover-img:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.3);
}

.livro-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.livro-tagline {
    color: var(--gold-primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.livro-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.livro-features {
    list-style: none;
    margin-bottom: 2rem;
}

.livro-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.livro-features li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: bold;
}

.price-box {
    margin-bottom: 2rem;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.price-new {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    display: block;
    margin-top: -5px;
}

/* Services / Atendimento Section */
.atendimento-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.atend-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
}

.atend-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--text-secondary);
    transition: var(--transition-fast);
}

.atend-card.premium::after {
    background: var(--gold-primary);
}

.atend-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.atend-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}

.atend-card.premium h3 {
    color: var(--gold-primary);
}

.atend-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.atend-card ul li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.atend-card ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* Contact / Scheduling Form */
.scheduling-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 35px rgba(0,0,0,0.5);
}

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

.form-group label {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold-primary);
    outline: none;
    box-shadow: 0 0 10px var(--gold-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

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

.form-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    background: #050608;
    padding: 4rem 2rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive Design Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-graphic {
        order: -1;
    }
    
    .oraculo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .bio-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .livro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    
    .livro-visual {
        order: -1;
    }
    
    .atendimento-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 73px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: var(--bg-dark);
        border-top: 1px solid var(--border-color);
        transition: var(--transition-fast);
        padding: 3rem 2rem;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Payment Section */
.payment-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.payment-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-flag {
    font-size: 1.8rem;
}

.payment-card-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold-primary);
}

.pix-qr-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pix-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 8px;
    background: #fff;
}

.pix-key-area {
    margin-bottom: 1.5rem;
}

.pix-key-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pix-key-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pix-key {
    flex: 1;
    font-size: 0.85rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    word-break: break-all;
}

.btn-copy {
    background: var(--gold-primary);
    color: var(--bg-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.btn-copy:hover {
    background: var(--gold-dark);
    box-shadow: 0 0 10px var(--gold-glow-strong);
}

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

.pix-values-title {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pix-values-list {
    list-style: none;
}

.pix-values-list li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pix-values-list li strong {
    color: var(--gold-primary);
}

.payment-info {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.payment-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.stripe-qr-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.stripe-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 8px;
    background: #fff;
}

.stripe-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.whatsapp-confirm {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-top: 1rem;
}

.whatsapp-confirm-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
}

.whatsapp-confirm-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }

    .pix-qr {
        width: 160px;
        height: 160px;
    }

    .pix-key-row {
        flex-direction: column;
    }

    .btn-copy {
        width: 100%;
    }
}
