@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
    --brand-dark:    #4A0E13; /* Bordô Profundo */
    --brand-medium:  #F2EDE4; /* Creme/Bege Claro */
    --brand-accent:  #8B2C33; /* Bordô Principal */
    --brand-gold:    #C9A87C;
    --brand-rose:    #A0637A;
    --brand-light:   #FAF8F5; /* Fundo Creme */

    --bg-page:       #FAF8F5;
    --card-bg:       #FFFFFF;
    --card-border:   rgba(139, 44, 51, 0.12);

    --text-primary:  #2D0B0E;
    --text-secondary:#6B4A4D;

    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Jost', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-page);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ---- SILK BG ---- */
.silk-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.55;
}

/* ---- LAYOUT ---- */
.app-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 56px 24px 48px;
    display: flex;
    flex-direction: column;
}

/* ---- HEADER ---- */
.header {
    text-align: center;
    margin-bottom: 36px;
    animation: fadeInDown 0.9s ease both;
}

.brand-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 10px 35px rgba(139, 44, 51, 0.25), 0 0 0 3px white, 0 0 0 6px var(--brand-medium);
}
.brand-avatar img { width: 100%; height: 100%; object-fit: cover; }

.name-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.dual-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 13px;
    border-radius: 99px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.badge-pill.psico {
    background: rgba(139,44,51,0.08);
    color: var(--brand-accent);
    border: 1px solid rgba(139,44,51,0.15);
}
.badge-pill.celeb {
    background: rgba(201,168,124,0.12);
    color: #8B6535;
    border: 1px solid rgba(201,168,124,0.3);
}

.header-bio {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
    font-weight: 400;
}

/* ---- DIVIDER ---- */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0 24px;
}
.divider-line { flex: 1; height: 1px; background: var(--card-border); }
.divider-icon { font-size: 14px; opacity: 0.5; }

/* ---- MAIN BUTTONS ---- */
.main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 12px;
}
.main-btn.rose {
    background: linear-gradient(135deg, var(--brand-accent), #A63D45);
    color: white;
    box-shadow: 0 6px 20px rgba(139, 44, 51, 0.25);
}
.main-btn.rose:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(139,44,51,0.35); }

.main-btn.gold {
    background: linear-gradient(135deg, #C9A87C, #B8946A);
    color: white;
    box-shadow: 0 6px 20px rgba(201, 168, 124, 0.25);
}
.main-btn.gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,124,0.35); }

.main-btn.dark {
    background: var(--brand-dark);
    color: white;
    box-shadow: 0 6px 20px rgba(43, 27, 46, 0.3);
    animation: pulse 2.5s infinite;
}
.main-btn.dark:hover { transform: translateY(-2px); background: #3D2645; }

.main-btn.ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--card-border);
    margin-bottom: 0;
}
.main-btn.ghost:hover { border-color: var(--brand-accent); color: var(--brand-accent); }

/* ---- QUIZ ---- */
.quiz-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.quiz-wrapper.active {
    max-height: 900px;
    opacity: 1;
    margin-top: 4px;
    margin-bottom: 12px;
}
.quiz-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(160,99,122,0.12);
}
.step { display: none; animation: fadeIn 0.4s ease; }
.step.active { display: block; }
.question {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--brand-dark);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}
.options-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.option-btn {
    background: var(--brand-medium);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    padding: 13px 16px;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}
.option-btn:hover {
    background: var(--brand-accent);
    color: white;
    border-color: var(--brand-accent);
    transform: translateY(-2px);
}
.option-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.progress-bar {
    height: 4px;
    width: 100%;
    background: var(--brand-medium);
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-gold));
    border-radius: 4px;
    transition: width 0.4s ease;
}
.result-box {
    margin-top: 16px;
    padding: 18px;
    background: rgba(160,99,122,0.07);
    border-radius: 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.7;
    color: var(--brand-dark);
    border: 1px solid rgba(160,99,122,0.15);
}

/* ---- SECTION ---- */
.section-block {
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.section-header {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-dark);
    letter-spacing: 0.3px;
}
.section-header .section-icon { font-size: 20px; }

/* ---- CREDENTIALS GRID ---- */
.cred-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.cred-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(160,99,122,0.06);
    transition: all 0.3s ease;
}
.cred-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(160,99,122,0.12); }
.cred-card.full { grid-column: 1 / -1; }
.cred-icon { font-size: 28px; margin-bottom: 8px; }
.cred-number {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--brand-accent);
    line-height: 1;
    margin-bottom: 4px;
}
.cred-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- ACCORDION / SERVICES ---- */
.list-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.list-item-wrapper {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
}
.list-item-wrapper:hover:not(.active) {
    background: var(--brand-medium);
    border-color: var(--card-border);
}
.list-item-wrapper.active {
    background: var(--card-bg);
    border-color: var(--card-border);
    box-shadow: 0 8px 28px rgba(160,99,122,0.12);
    margin: 6px 0;
}
.list-item-header {
    display: flex;
    align-items: center;
    padding: 14px;
    gap: 14px;
}
.item-avatar {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background: var(--brand-medium);
    border: 1px solid var(--card-border);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.list-item-wrapper.active .item-avatar {
    background: linear-gradient(135deg, var(--brand-accent), #C27893);
}
.item-info { flex-grow: 1; }
.item-info h4 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}
.item-info p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}
.action-text {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--brand-accent);
    margin-top: 6px;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.list-item-wrapper:hover .action-text { opacity: 1; }
.action-text svg { transition: transform 0.4s ease; display: inline-block; vertical-align: middle; }
.list-item-wrapper.active .action-text svg { transform: rotate(180deg); }
.list-item-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.list-item-wrapper.active .list-item-content {
    max-height: 350px;
    opacity: 1;
}
.content-inner {
    padding: 0 18px 20px 74px;
}
.content-inner p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}
.content-inner .inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, var(--brand-accent), #C27893);
    color: white;
    box-shadow: 0 4px 14px rgba(160,99,122,0.3);
    transition: all 0.25s ease;
}
.content-inner .inline-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(160,99,122,0.4); }

.content-inner .inline-btn.gold-btn {
    background: linear-gradient(135deg, #C9A87C, #B8946A);
    box-shadow: 0 4px 14px rgba(201,168,124,0.3);
}
.content-inner .inline-btn.gold-btn:hover { box-shadow: 0 7px 20px rgba(201,168,124,0.45); }

/* ---- SOCIAL ROW ---- */
.social-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.15s both;
}
.social-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--card-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    gap: 0;
}
.social-btn.handle {
    width: auto;
    padding: 0 18px;
    border-radius: 99px;
    gap: 8px;
}
.social-btn span {
    font-size: 13px;
    font-weight: 600;
    display: none;
}
.social-btn.handle span {
    display: block;
}
.social-btn:hover {
    background: var(--brand-accent);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(139, 44, 51, 0.25);
    border-color: var(--brand-accent);
}
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- QUOTE BLOCK ---- */
.quote-block {
    background: linear-gradient(135deg, rgba(160,99,122,0.08), rgba(201,168,124,0.08));
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--brand-accent);
    border-radius: 14px;
    padding: 20px 18px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.25s both;
}
.quote-text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--brand-dark);
    line-height: 1.6;
    margin-bottom: 8px;
}
.quote-author {
    font-size: 12px;
    color: var(--brand-accent);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ---- FOOTER ---- */
.footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 11px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    animation: fadeInUp 0.8s ease 0.5s both;
    line-height: 1.8;
}
.footer a { color: inherit; text-decoration: none; font-weight: 700; }
.footer a:hover { color: var(--brand-accent); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(43,27,46,0.4); }
    70%  { box-shadow: 0 0 0 10px rgba(43,27,46,0); }
    100% { box-shadow: 0 0 0 0 rgba(43,27,46,0); }
}

/* ---- TAGS ---- */
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}
.tag {
    background: var(--brand-medium);
    color: var(--brand-accent);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 99px;
    border: 1px solid var(--card-border);
    letter-spacing: 0.3px;
}

/* ---- BTNS SECTION ---- */
.btns-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
