.elementor-38934 .elementor-element.elementor-element-400f8af{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-38934 .elementor-element.elementor-element-20db0d2 .elementor-heading-title{font-family:"PT Serif", Sans-serif;font-weight:600;}.elementor-38934 .elementor-element.elementor-element-ed4fdfa .elementor-heading-title{font-family:"Poppins", Sans-serif;font-weight:600;}:root{--page-title-display:none;}/* Start custom CSS for heading, class: .elementor-element-20db0d2 */.elementor-38934 .elementor-element.elementor-element-20db0d2 {
    display: none;
}/* End custom CSS */
/* Start custom CSS for heading, class: .elementor-element-ed4fdfa */.elementor-38934 .elementor-element.elementor-element-ed4fdfa {
    display: none;
}/* End custom CSS */
/* Start custom CSS */header {
    display: none;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D32478;
    --secondary-color: #F9E0E2;
    --text-dark: #2D2D2D;
    --text-light: #666;
    --white: #FFFFFF;
    --gradient-bg: linear-gradient(135deg, #F9E0E2 0%, #FFE8EC 50%, #F9E0E2 100%);
    --shadow-soft: 0 4px 20px rgba(211, 36, 120, 0.1);
    --shadow-hover: 0 6px 25px rgba(211, 36, 120, 0.15);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', serif !important;
    line-height: 1.3 !important;
    color: var(--text-dark) !important;
    font-weight: bold !important;
}

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

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-light) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Question Cards */
.question-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.question-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.question-number {
    font-size: 1rem;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.question-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin-bottom: 25px;
}

/* Custom Radio Buttons */
.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 15px;
    border-radius: 12px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.option:hover {
    background: #FFD4DC;
    transform: translateX(5px);
}

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

.option input[type="radio"]:checked + .option-text::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.option input[type="radio"]:checked + .option-text::after {
    opacity: 1;
}

.option-text {
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark) !important;
    line-height: 1.5;
}

.option-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: var(--white);
    transition: all 0.3s ease;
}

.option-text::after {
    content: '';
    position: absolute;
    left: 11px;
    top: 13px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

/* Submit Button */
.submit-container {
    text-align: center;
    margin-top: 50px;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 18px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 36, 120, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #B01F64;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 36, 120, 0.4);
}

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

/* Result Section */
.result-section {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 45px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.result-hero h1 {
    font-size: 2rem;
    color: var(--text-dark) !important;
    margin-bottom: 20px;
    line-height: 1.4;
}

#archetype-name {
    color: var(--primary-color) !important;
}

.result-subtitle {
    font-size: 1.1rem;
    color: var(--text-light) !important;
    font-style: italic;
}

/* Image Placeholders */
.archetype-image-container,
.book-mockup-container {
    margin: 40px 0;
}

.image-placeholder {
    background: var(--secondary-color);
    border: 3px dashed var(--primary-color);
    border-radius: 16px;
    width: 100%;
    text-align: center;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Content Sections */
.archetype-description,
.generic-section,
.transition-section,
.book-presentation,
.personal-message,
.archetype-benefits {
    background: var(--white) !important;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.archetype-description h2,
.transition-section h2,
.book-presentation h2,
.archetype-benefits h2 {
    font-size: 1.8rem;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
}

.archetype-description h3 {
    font-size: 1.3rem;
    color: var(--text-dark) !important;
    margin-top: 25px;
    margin-bottom: 15px;
}

.archetype-description p,
.generic-section p,
.transition-section p,
.book-presentation p,
.personal-message p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.archetype-description ul,
.transition-section ul,
.book-presentation ul,
.personal-message ul {
    margin: 20px 0;
    padding-left: 25px;
}

.archetype-description li,
.transition-section li,
.book-presentation li,
.personal-message li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.emphasis-text {
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 1.15rem;
}

.dynamic-archetype {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.mirror-list {
    list-style: none;
    padding-left: 0;
}

.mirror-list li {
    padding-left: 30px;
    position: relative;
}

.mirror-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.book-benefits,
.magnetic-woman-traits,
.cta-list {
    list-style: none;
    padding-left: 0;
}

.book-benefits li,
.magnetic-woman-traits li,
.cta-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.book-benefits li::before,
.magnetic-woman-traits li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.sub-list {
    margin-top: 10px;
    padding-left: 20px;
}

.sub-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.book-intro {
    font-weight: 600;
    margin-top: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light) !important;
    font-style: italic;
    margin-bottom: 30px;
}

.book-presentation h3 {
    font-size: 1.4rem;
    color: var(--text-dark) !important;
    margin-top: 30px;
    margin-bottom: 20px;
}

.book-contents {
    padding-left: 25px;
}

.recommendation {
    margin-top: 25px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
}

.final-message {
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 20px;
    color: var(--primary-color) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #B01F64);
    border-radius: 20px;
    padding: 50px 45px;
    margin: 50px 0;
    box-shadow: 0 8px 30px rgba(211, 36, 120, 0.3);
    color: var(--white) !important;
}

.cta-section h2 {
    color: var(--white) !important;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 35px;
}

.cta-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    color: var(--text-dark) !important;
}

.cta-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    margin-bottom: 25px;
}

.cta-list li {
    font-size: 1.05rem;
    line-height: 1.7;
}

.price {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin: 30px 0;
    font-family: 'PT Serif', serif;
}

.price-container {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(194, 150, 130, 0.1) 0%, rgba(194, 150, 130, 0.05) 100%);
    border-radius: 16px;
    position: relative;
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin: 0 0 10px 0;
    font-weight: 400;
    opacity: 0.7;
}

.sale-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sale-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C29682 0%, #B08572 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(194, 150, 130, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(194, 150, 130, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(194, 150, 130, 0.5);
    }
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 40px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-align: center;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(211, 36, 120, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #B01F64;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 36, 120, 0.5);
}

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

/* Retake Button */
.retake-container {
    text-align: center;
    margin: 50px 0 30px;
}

.retake-btn {
    background: var(--white);
    color: var(--primary-color) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retake-btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 36, 120, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .question-card {
        padding: 25px 20px;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .option {
        padding: 12px;
    }

    .option-text {
        font-size: 0.95rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 15px 40px;
        width: 100%;
    }

    .result-hero h1 {
        font-size: 1.5rem;
    }

    .result-subtitle {
        font-size: 1rem;
    }

    .archetype-description,
    .generic-section,
    .transition-section,
    .book-presentation,
    .personal-message,
    .archetype-benefits {
        padding: 25px 20px;
    }

    .archetype-description h2,
    .transition-section h2,
    .book-presentation h2,
    .archetype-benefits h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 35px 20px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .price {
        font-size: 2.5rem;
    }

    .sale-price {
        font-size: 2.8rem;
    }

    .original-price {
        font-size: 1.2rem;
    }

    .sale-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 30px 15px;
    }

    .question-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .question-number {
        font-size: 0.9rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .option {
        padding: 10px;
    }

    .option-text {
        font-size: 0.9rem;
        padding-left: 30px;
    }

    .option-text::before {
        width: 20px;
        height: 20px;
    }

    .option-text::after {
        left: 10px;
        top: 12px;
        width: 8px;
        height: 8px;
    }

    .result-hero h1 {
        font-size: 1.3rem;
    }

    .archetype-description h2,
    .transition-section h2,
    .book-presentation h2,
    .archetype-benefits h2 {
        font-size: 1.3rem;
    }

    .emphasis-text {
        font-size: 1.05rem;
    }

    .price {
        font-size: 2rem;
    }

    .sale-price {
        font-size: 2.5rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .sale-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
    }

    .price-container {
        padding: 15px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 60px 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .question-card {
        padding: 40px;
    }

    .archetype-description,
    .generic-section,
    .transition-section,
    .book-presentation,
    .personal-message,
    .archetype-benefits {
        padding: 45px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hidden utility class */
.hidden {
    display: none !important;
}/* End custom CSS */