/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.soleravonChileMotionPulse_body {
    background-color: #0A0C10;
    color: #E0E0E0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.soleravonChileMotionPulse_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
.soleravonChileMotionPulse_h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #CFFF35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 900;
}

.soleravonChileMotionPulse_h2 {
    font-size: 2.5rem;
    color: #CFFF35;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
}

.soleravonChileMotionPulse_h3 {
    font-size: 1.5rem;
    color: #CFFF35;
    margin-bottom: 1rem;
}

.soleravonChileMotionPulse_subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #A0A0A0;
}

/* HEADER */
.soleravonChileMotionPulse_header {
    background-color: rgba(10, 12, 16, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.soleravonChileMotionPulse_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.soleravonChileMotionPulse_logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #CFFF35;
    letter-spacing: -1px;
}

.soleravonChileMotionPulse_nav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.soleravonChileMotionPulse_nav_link {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.soleravonChileMotionPulse_nav_link:hover {
    color: #CFFF35;
}

.soleravonChileMotionPulse_pulsing_line {
    height: 2px;
    background: #CFFF35;
    width: 100%;
    animation: pulseLine 3s infinite;
}

@keyframes pulseLine {
    0% { opacity: 0.2; }
    50% { opacity: 1; box-shadow: 0 0 10px #CFFF35; }
    100% { opacity: 0.2; }
}

/* MOBILE MENU */
.soleravonChileMotionPulse_nav_toggle {
    display: none;
}

.soleravonChileMotionPulse_burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.soleravonChileMotionPulse_burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #CFFF35;
}

/* HERO */
.soleravonChileMotionPulse_hero {
    padding: 150px 0 80px;
}

.soleravonChileMotionPulse_hero_grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.soleravonChileMotionPulse_hero_image_box {
    flex: 1;
}

.soleravonChileMotionPulse_img_hero {
    width: 100%;
    height: auto;
    border-radius: 5px;
    filter: grayscale(0.5);
    border-left: 5px solid #CFFF35;
}

.soleravonChileMotionPulse_hero_content {
    flex: 1.2;
}

.soleravonChileMotionPulse_hero_blocks {
    margin-bottom: 30px;
}

.soleravonChileMotionPulse_hero_text_item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 2px solid #333;
}

/* BUTTONS */
.soleravonChileMotionPulse_btn_primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #CFFF35;
    color: #0A0C10;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.soleravonChileMotionPulse_btn_primary:hover {
    box-shadow: 0 0 20px rgba(207, 255, 53, 0.6);
    transform: translateY(-2px);
}

.soleravonChileMotionPulse_btn_secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #CFFF35;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #CFFF35;
    transition: all 0.3s ease;
}

.soleravonChileMotionPulse_btn_secondary:hover {
    background-color: #CFFF35;
    color: #0A0C10;
}

/* DIVIDER */
.soleravonChileMotionPulse_divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #CFFF35, transparent);
    margin: 40px 0;
}

/* PRICES */
.soleravonChileMotionPulse_prices {
    padding: 80px 0;
}

.soleravonChileMotionPulse_quick_links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.soleravonChileMotionPulse_tag {
    color: #CFFF35;
    text-decoration: none;
    border: 1px solid #333;
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.soleravonChileMotionPulse_price_grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.soleravonChileMotionPulse_price_card {
    background-color: #12151A;
    padding: 40px;
    flex: 1;
    border: 1px solid #1A1D23;
    display: flex;
    flex-direction: column;
}

.soleravonChileMotionPulse_price_featured {
    border: 2px solid #CFFF35;
    transform: scale(1.05);
    z-index: 2;
}

.soleravonChileMotionPulse_amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 10px 0 20px;
}

.soleravonChileMotionPulse_price_list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.soleravonChileMotionPulse_price_list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.soleravonChileMotionPulse_price_list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #CFFF35;
}

/* FOR WHOM */
.soleravonChileMotionPulse_for_whom {
    padding: 80px 0;
    background-color: #0D0F14;
}

.soleravonChileMotionPulse_intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

.soleravonChileMotionPulse_for_whom_main_grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.soleravonChileMotionPulse_for_whom_image {
    flex: 1;
    position: relative;
}

.soleravonChileMotionPulse_offer_badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #CFFF35;
    color: #0A0C10;
    padding: 20px;
    font-weight: 900;
    transform: rotate(3deg);
}

.soleravonChileMotionPulse_for_whom_details {
    flex: 1;
}

.soleravonChileMotionPulse_detailed_list {
    list-style: none;
}

.soleravonChileMotionPulse_detailed_list li {
    margin-bottom: 25px;
}

.soleravonChileMotionPulse_detailed_list strong {
    color: #CFFF35;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* REVIEWS SLIDER */
.soleravonChileMotionPulse_reviews {
    padding: 80px 0;
}

.soleravonChileMotionPulse_slider_wrapper {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.soleravonChileMotionPulse_slider_wrapper input {
    display: none;
}

.soleravonChileMotionPulse_slides {
    display: flex;
    transition: transform 0.5s ease;
}

.soleravonChileMotionPulse_slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.soleravonChileMotionPulse_blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #E0E0E0;
}

.soleravonChileMotionPulse_blockquote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    color: #CFFF35;
    text-transform: uppercase;
}

.soleravonChileMotionPulse_slider_controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.soleravonChileMotionPulse_slider_controls label {
    width: 12px;
    height: 12px;
    background: #333;
    cursor: pointer;
    border-radius: 50%;
}

#slvn_s1:checked ~ .soleravonChileMotionPulse_slides { transform: translateX(0); }
#slvn_s2:checked ~ .soleravonChileMotionPulse_slides { transform: translateX(-100%); }
#slvn_s3:checked ~ .soleravonChileMotionPulse_slides { transform: translateX(-200%); }

#slvn_s1:checked ~ .soleravonChileMotionPulse_slider_controls label[for="slvn_s1"],
#slvn_s2:checked ~ .soleravonChileMotionPulse_slider_controls label[for="slvn_s2"],
#slvn_s3:checked ~ .soleravonChileMotionPulse_slider_controls label[for="slvn_s3"] {
    background: #CFFF35;
}

/* BENEFITS */
.soleravonChileMotionPulse_benefits {
    padding: 80px 0;
}

.soleravonChileMotionPulse_benefits_grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.soleravonChileMotionPulse_check_list {
    list-style: none;
}

.soleravonChileMotionPulse_check_list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.soleravonChileMotionPulse_check_list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #CFFF35;
    font-weight: 900;
}

.soleravonChileMotionPulse_img_rounded {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #CFFF35;
    padding: 10px;
}

/* EXPERT */
.soleravonChileMotionPulse_expert {
    padding: 100px 0;
    background: linear-gradient(rgba(10,12,16,0.8), rgba(10,12,16,0.8)), url('https://placehold.co/1200x400/0A0C10/111?text=Rancagua+Vibe');
    background-size: cover;
}

.soleravonChileMotionPulse_expert_box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.soleravonChileMotionPulse_expert_quote {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 30px;
}

.soleravonChileMotionPulse_expert_name {
    color: #CFFF35;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
}

/* FAQ */
.soleravonChileMotionPulse_faq {
    padding: 80px 0;
}

.soleravonChileMotionPulse_details {
    background: #12151A;
    margin-bottom: 15px;
    border-radius: 5px;
}

.soleravonChileMotionPulse_summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: #CFFF35;
    list-style: none;
    position: relative;
}

.soleravonChileMotionPulse_summary::-webkit-details-marker { display: none; }

.soleravonChileMotionPulse_summary::after {
    content: "+";
    position: absolute;
    right: 20px;
}

.soleravonChileMotionPulse_details[open] .soleravonChileMotionPulse_summary::after {
    content: "-";
}

.soleravonChileMotionPulse_answer {
    padding: 0 20px 20px;
    color: #A0A0A0;
}

/* FORM */
.soleravonChileMotionPulse_contact {
    padding: 80px 0;
    background-color: #0D0F14;
}

.soleravonChileMotionPulse_form_wrapper {
    max-width: 700px;
}

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

.soleravonChileMotionPulse_form_group {
    margin-bottom: 20px;
}

.soleravonChileMotionPulse_form_group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.soleravonChileMotionPulse_input,
.soleravonChileMotionPulse_textarea {
    width: 100%;
    padding: 15px;
    background: #1A1D23;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0;
}

.soleravonChileMotionPulse_input:focus,
.soleravonChileMotionPulse_textarea:focus {
    outline: none;
    border-color: #CFFF35;
}

.soleravonChileMotionPulse_checkbox_group {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.soleravonChileMotionPulse_btn_submit {
    width: 100%;
    padding: 18px;
    background-color: #CFFF35;
    color: #0A0C10;
    border: none;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* EXTRA ARTICLES */
.soleravonChileMotionPulse_article {
    margin-bottom: 80px;
}

.soleravonChileMotionPulse_article p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.soleravonChileMotionPulse_article ul {
    margin: 20px 0;
    list-style: none;
}

.soleravonChileMotionPulse_article ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.soleravonChileMotionPulse_article ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #CFFF35;
}

/* FOOTER */
.soleravonChileMotionPulse_footer {
    padding: 60px 0;
    border-top: 1px solid #1A1D23;
    text-align: center;
    background-color: #0A0C10;
}

.soleravonChileMotionPulse_footer_links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.soleravonChileMotionPulse_footer_links a {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
}

.soleravonChileMotionPulse_footer_links a:hover {
    color: #CFFF35;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .soleravonChileMotionPulse_h1 { font-size: 2.5rem; }
    .soleravonChileMotionPulse_hero_grid,
    .soleravonChileMotionPulse_price_grid,
    .soleravonChileMotionPulse_for_whom_main_grid,
    .soleravonChileMotionPulse_benefits_grid {
        flex-direction: column;
    }
    .soleravonChileMotionPulse_price_card { width: 100%; transform: none; }
}

@media (max-width: 768px) {
    .soleravonChileMotionPulse_burger { display: flex; z-index: 1001; }
    .soleravonChileMotionPulse_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0A0C10;
        padding-top: 100px;
        transition: 0.3s;
    }
    .soleravonChileMotionPulse_nav_list {
        flex-direction: column;
        align-items: center;
    }
    .soleravonChileMotionPulse_nav_toggle:checked ~ .soleravonChileMotionPulse_nav {
        right: 0;
    }
}