/* Premium Carbon Style for Tenavelim Chile */
:root {
    --carbon-bg: #060708;
    --amber-main: #FFC55E;
    --amber-hover: #ffd994;
    --text-light: #e0e0e0;
    --text-muted: #a0a0a0;
    --card-bg: #0f1113;
    --border-color: rgba(255, 197, 94, 0.2);
    --gold-glow: 0 0 15px rgba(255, 197, 94, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body.tenavelimChilePulseRoutine_Body_111 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--carbon-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.tenavelimChilePulseRoutine_Container_333 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.tenavelimChilePulseRoutine_HeaderMain_222 {
    background: #000;
    border-bottom: 2px solid var(--amber-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.tenavelimChilePulseRoutine_HeaderFlex_444 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tenavelimChilePulseRoutine_LogoText_555 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--amber-main);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tenavelimChilePulseRoutine_NavList_999 {
    display: flex;
    list-style: none;
    gap: 25px;
}

.tenavelimChilePulseRoutine_NavLink_000,
.tenavelimChilePulseRoutine_NavLink_001,
.tenavelimChilePulseRoutine_NavLink_002,
.tenavelimChilePulseRoutine_NavLink_003,
.tenavelimChilePulseRoutine_NavLink_004,
.tenavelimChilePulseRoutine_NavLink_005 {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
}

.tenavelimChilePulseRoutine_NavLink_000:hover { color: var(--amber-main); }

/* Burger Menu (No JS) */
.tenavelimChilePulseRoutine_NavTrigger_666 {
    display: none;
}

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

.tenavelimChilePulseRoutine_BurgerBtn_777 span {
    width: 25px;
    height: 3px;
    background: var(--amber-main);
}

/* Hero Section */
.tenavelimChilePulseRoutine_HeroSection_101 {
    padding: 80px 0;
}

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

.tenavelimChilePulseRoutine_QuickBtn_103 {
    background: transparent;
    border: 1px solid var(--amber-main);
    color: var(--amber-main);
    padding: 8px 18px;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.tenavelimChilePulseRoutine_QuickBtn_103:hover {
    background: var(--amber-main);
    color: #000;
}

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

.tenavelimChilePulseRoutine_HeroImageWrap_105 {
    flex: 1;
}

.tenavelimChilePulseRoutine_HeroImg_106 {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--gold-glow);
    object-fit: cover;
}

.tenavelimChilePulseRoutine_HeroContent_107 {
    flex: 1.2;
}

.tenavelimChilePulseRoutine_MainTitle_108 {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--amber-main);
    margin-bottom: 20px;
}

.tenavelimChilePulseRoutine_SubTitle_109 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.tenavelimChilePulseRoutine_HeroPara_110 {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.tenavelimChilePulseRoutine_CtaButton_111 {
    display: inline-block;
    background: var(--amber-main);
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.tenavelimChilePulseRoutine_CtaButton_111:hover {
    background: var(--amber-hover);
    box-shadow: var(--gold-glow);
}

/* Prices */
.tenavelimChilePulseRoutine_PriceSection_201 {
    padding: 80px 0;
    background: #0a0c0e;
}

.tenavelimChilePulseRoutine_SecTitle_202 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--amber-main);
}

.tenavelimChilePulseRoutine_PriceQuick_203 {
    text-align: center;
    margin-bottom: 30px;
}

.tenavelimChilePulseRoutine_SmallLink_204 {
    color: var(--amber-main);
    margin: 0 15px;
    text-decoration: underline;
    font-size: 0.9rem;
}

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

.tenavelimChilePulseRoutine_PriceCard_206 {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    flex: 1;
    text-align: center;
    transition: transform 0.3s;
}

.tenavelimChilePulseRoutine_PriceCard_206:hover {
    transform: translateY(-10px);
    border-color: var(--amber-main);
}

.tenavelimChilePulseRoutine_Featured_212 {
    border: 2px solid var(--amber-main);
    position: relative;
    transform: scale(1.05);
}

.tenavelimChilePulseRoutine_CardTitle_207 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tenavelimChilePulseRoutine_PriceTag_208 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--amber-main);
    margin-bottom: 20px;
}

.tenavelimChilePulseRoutine_Discount_209 {
    display: block;
    font-size: 0.9rem;
    color: #00ff88;
}

.tenavelimChilePulseRoutine_CardList_210 {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.tenavelimChilePulseRoutine_CardList_210 li {
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 0.95rem;
}

.tenavelimChilePulseRoutine_CardBtn_211 {
    display: block;
    border: 1px solid var(--amber-main);
    color: var(--amber-main);
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* Who Section */
.tenavelimChilePulseRoutine_WhoSection_301 {
    padding: 80px 0;
}

.tenavelimChilePulseRoutine_LineAccent_302 {
    width: 60px;
    height: 4px;
    background: var(--amber-main);
    margin: 0 auto 20px;
}

.tenavelimChilePulseRoutine_WhoGrid_304 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.tenavelimChilePulseRoutine_WhoItem_305 {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    width: calc(50% - 10px);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 3px solid var(--amber-main);
}

.tenavelimChilePulseRoutine_Icon_306 {
    color: var(--amber-main);
    font-weight: bold;
}

/* Reviews */
.tenavelimChilePulseRoutine_ReviewsSection_401 {
    padding: 60px 0;
    background: #000;
}

.tenavelimChilePulseRoutine_ReviewsGrid_402 {
    display: flex;
    gap: 20px;
}

.tenavelimChilePulseRoutine_ReviewCard_403 {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    border-top: 2px solid var(--amber-main);
}

.tenavelimChilePulseRoutine_ReviewText_404 {
    font-style: italic;
    margin-bottom: 20px;
}

.tenavelimChilePulseRoutine_ReviewAuthor_405 {
    color: var(--amber-main);
    font-weight: bold;
}

/* Benefits Section */
.tenavelimChilePulseRoutine_BenefitsSection_501 {
    padding: 80px 0;
}

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

.tenavelimChilePulseRoutine_BenefitsContent_503 { flex: 1; }
.tenavelimChilePulseRoutine_BenefitsImage_507 { flex: 1; }

.tenavelimChilePulseRoutine_BenefitsList_504 {
    list-style: none;
    margin-top: 30px;
}

.tenavelimChilePulseRoutine_BenefitItem_505 {
    margin-bottom: 25px;
}

.tenavelimChilePulseRoutine_ItemTitle_506 {
    color: var(--amber-main);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Expert Section */
.tenavelimChilePulseRoutine_ExpertSection_601 {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://placehold.co/1200x400/060708/060708?width=1200&height=400');
    background-size: cover;
}

.tenavelimChilePulseRoutine_ExpertBox_602 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.tenavelimChilePulseRoutine_AuthorInfo_604 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tenavelimChilePulseRoutine_AuthorName_606 {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--amber-main);
}

/* Text Sections */
.tenavelimChilePulseRoutine_TextSection_701 {
    padding: 100px 0;
}

.tenavelimChilePulseRoutine_AltBg_703 {
    background: #0a0a0a;
}

.tenavelimChilePulseRoutine_TextContent_702 {
    max-width: 900px;
    margin: 0 auto;
}

.tenavelimChilePulseRoutine_TextContent_702 p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.tenavelimChilePulseRoutine_BulletList_704 {
    margin: 30px 0;
    padding-left: 20px;
}

.tenavelimChilePulseRoutine_BulletList_704 li {
    margin-bottom: 15px;
    position: relative;
    list-style: none;
}

.tenavelimChilePulseRoutine_BulletList_704 li::before {
    content: "•";
    color: var(--amber-main);
    position: absolute;
    left: -20px;
}

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

.tenavelimChilePulseRoutine_FaqList_802 {
    max-width: 800px;
    margin: 40px auto;
}

.tenavelimChilePulseRoutine_FaqItem_803 {
    background: #111;
    margin-bottom: 15px;
    border-radius: 5px;
}

.tenavelimChilePulseRoutine_FaqSummary_804 {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: var(--amber-main);
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.tenavelimChilePulseRoutine_FaqSummary_804::after {
    content: "+";
}

.tenavelimChilePulseRoutine_FaqContent_805 {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* Form */
.tenavelimChilePulseRoutine_FormSection_901 {
    padding: 100px 0;
    background: #000;
}

.tenavelimChilePulseRoutine_FormCard_902 {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--amber-main);
}

.tenavelimChilePulseRoutine_Form_903 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.tenavelimChilePulseRoutine_FormGroup_904 {
    display: flex;
    flex-direction: column;
}

.tenavelimChilePulseRoutine_Label_905 {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.tenavelimChilePulseRoutine_Input_906,
.tenavelimChilePulseRoutine_Textarea_907 {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 12px;
    color: #fff;
    border-radius: 4px;
}

.tenavelimChilePulseRoutine_Textarea_907 {
    height: 120px;
    resize: vertical;
}

.tenavelimChilePulseRoutine_CheckboxWrap_908 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

/* Footer */
.tenavelimChilePulseRoutine_Footer_001 {
    background: #000;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.tenavelimChilePulseRoutine_FooterTop_002 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.tenavelimChilePulseRoutine_FooterLogo_003 {
    font-weight: bold;
    color: var(--amber-main);
    font-size: 1.5rem;
}

.tenavelimChilePulseRoutine_FooterBottom_004 {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.tenavelimChilePulseRoutine_FooterLinks_005 a {
    color: var(--text-muted);
    text-decoration: none;
}

.tenavelimChilePulseRoutine_FooterLinks_005 a:hover {
    color: var(--amber-main);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .tenavelimChilePulseRoutine_HeroGrid_104,
    .tenavelimChilePulseRoutine_BenefitsGrid_502 {
        flex-direction: column;
    }
    .tenavelimChilePulseRoutine_PriceGrid_205 {
        flex-direction: column;
        align-items: center;
    }
    .tenavelimChilePulseRoutine_PriceCard_206 {
        width: 100%;
        max-width: 450px;
    }
    .tenavelimChilePulseRoutine_Featured_212 {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .tenavelimChilePulseRoutine_BurgerBtn_777 {
        display: flex;
    }
    .tenavelimChilePulseRoutine_Navbar_888 {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        display: none;
        padding: 20px 0;
        border-bottom: 2px solid var(--amber-main);
    }
    .tenavelimChilePulseRoutine_NavList_999 {
        flex-direction: column;
        align-items: center;
    }
    .tenavelimChilePulseRoutine_NavTrigger_666:checked ~ .tenavelimChilePulseRoutine_Navbar_888 {
        display: block;
    }
    .tenavelimChilePulseRoutine_WhoItem_305 {
        width: 100%;
    }
    .tenavelimChilePulseRoutine_MainTitle_108 {
        font-size: 2.2rem;
    }
    .tenavelimChilePulseRoutine_ReviewsGrid_402 {
        flex-direction: column;
    }
}