/* 
    Matthepaper - Estética Mural
    Design System & Base Styles
*/

:root {
    --bg-color: #FAF9F6;
    --primary-color: #1A1A1A;
    --accent-color: #B68D6A; /* Matthepaper Accent */
    --accent-alt: #948269;   /* Legacy DePapel Accent */
    --text-color: #333333;
    --white: #FFFFFF;
    --success-color: #27AE60;
    --warning-bg: #FFF9F0;
    --warning-text: #7A6348;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Background Pattern shared between pages */
.has-bg-pattern {
    background-image: linear-gradient(rgba(250, 249, 246, 0.94), rgba(250, 249, 246, 0.96)), url('../images/bg-pattern.jpg');
    background-repeat: repeat;
    background-size: 500px;
}

.container {
    width: 100%;
    max-width: 480px;
    background-color: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

.container.with-pattern {
    background-image: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.91)), url('../images/bg-pattern.jpg');
    background-size: 600px;
    background-repeat: repeat;
}

/* Typography */
h1, h2, .serif {
    font-family: 'Lora', serif;
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* Components */
.btn {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn:hover, .btn:active {
    transform: scale(1.02);
    background: #000;
}

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

/* --- Index Page Specific --- */
.header-image {
    height: 180px;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.header-image h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.content {
    padding: 60px 30px 40px 30px;
}

.client-section {
    margin-bottom: 40px;
    text-align: center;
}

.service-box {
    background: rgba(248, 248, 248, 0.7);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.service-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.price-section {
    text-align: center;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(182, 141, 106, 0.3); /* Linha mais sutil */
    border-bottom: 1px solid rgba(182, 141, 106, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.total-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 400;
}

.total-value {
    font-family: 'Lora', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.disclaimer {
    margin-top: 40px;
    padding: 25px;
    background: var(--warning-bg);
    border-radius: 24px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--warning-text);
    text-align: center;
}

/* --- Payment Page Specific --- */
.payment-box {
    background: #F8F8F8;
    border-radius: 24px;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.pix-key-container {
    background: white;
    border: 1px dashed #DDD;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.pix-key-container:hover {
    border-color: var(--accent-color);
}

.pix-key {
    font-family: monospace;
    font-size: 0.85rem;
    color: #333;
    word-break: break-all;
    display: block;
}

.availability-box {
    text-align: left;
    background: var(--warning-bg);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
    border-left: 4px solid #E67E22;
}

.payment-terms {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(182, 141, 106, 0.2);
    padding-top: 40px;
}

.payment-terms p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #555;
}

.btn-container {
    margin-top: 60px;
}

.footer-note, .footer {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 40px;
    font-size: 0.75rem;
    color: #AAA;
    text-transform: uppercase;
    letter-spacing: 1px;
}
