/* RESET E CORES DA IDENTIDADE - BASEADO NO STITCH */
:root {
    --marsala: #3a1d21;
    --marsala-light: #52292f;
    --dourado: #c5a065;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --roundness: 8px;
    --roundness-large: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* FUNDO LISO PARA IFRAME */
body {
    background-color: transparent;
    color: var(--text-dark);
    line-height: 1.5;
}

.widget-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.alert-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--roundness);
    padding: 16px;
    font-size: 0.85rem;
    color: #92400e;
    line-height: 1.5;
}
