/*--------------------------------------------------------------
# General RDX
--------------------------------------------------------------*/

/* --- Scrollbar Colors --- */
::-webkit-scrollbar {
    width: 0.425rem;
    background-color: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 0.625rem;
}

::-webkit-scrollbar-corner {
    background-color: #ccc;
}
/* Chrome, Safari, Edge, Opera */

body input::-webkit-inner-spin-button,
body input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a.navbar-brand {
    max-width: 70px;
        transition: all 0.3s;
}

.navbar.sticky a.navbar-brand {
    max-width: 60px;
        transition: all 0.3s;
}
footer .navbar-brand {
    max-width: 166px !important;
    display: block;
    transition: all 0.3s;
}
.navbar-brand img {
    max-width: 100%;

}
.navbar.sticky{
    position: sticky;
    top: 0;
    z-index: 9;
    transition: all 0.3s;
}
:root {
    --primary-color: #1ba345;
    --primary-dark: #b86f06;
    --primary-light: #127331;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgb(19 121 51);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(223, 136, 7, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, #39a3406e 0%, #ffffff00 100%);
    min-height: 76vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 48px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23df8807" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: #000000;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title.text-left::after {
    left: 0;
    transform: inherit;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.stats-section {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-carousel .owl-nav button {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -60px;
}

.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: -60px;
}

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/*.pulse-animation {*/
/*    animation: pulse 2s infinite;*/
/*}*/
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #1ba345cc;
    }
    70% {
        box-shadow: 0 0 0 10px #1ba345b3;
    }
    100% {
        box-shadow: 0 0 0 0 #1ba34540);
    }
}

.navbar-custom {
    background: rgb(49 142 55);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #ffffff8a !important;
}



@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .price-amount {
        font-size: 2rem;
    }

    .owl-carousel .owl-nav .owl-next,
    .owl-carousel .owl-nav .owl-prev {
        display: none;
    }
}

.bonus-item {
    /* text-align: center; */
    padding: 0 1rem;
    /* background: rgb(16 12 12 / 10%); */
    backdrop-filter: blur(10px);
    border-radius: 2px;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    display: flex;
    grid-gap: 15px;
    border-left: 4px solid #1ba345;
}
.bonus-item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.bonus-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.final-cta {
    padding: 100px 0;
    color: #000000;
    text-align: center;
    background: #e6f9e2;
}

.cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons-final {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons-final {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline-custom,
    .btn-primary-custom {
        width: 100%;
        max-width: 300px;
    }
}

/* Owl Carousel Custom Styles */
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot span {
    border: 2px solid var(--primary-color);
}

.owl-theme .owl-nav [class*="owl-"] {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 10px 15px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--primary-dark);
}

/* Program Details */
.program-details {
    padding: 50px 0;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.program-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.program-card ul {
    list-style: none;
    padding: 0;
}

.program-card ul li {
    padding: 4px 0;
    position: relative;
    padding-left: 25px;
    font-size: 17px;
}

.program-card ul li::before {
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Features Carousel */
.features-section {
    padding: 60px 0;
    background: #e6f9e2;
    color: white;
}

.feature-slide {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    /* font-size: 4rem; */
    /* color: var(--primary-color); */
    /* margin-bottom: 2rem; */
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.feature-description {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
    color: #000;
}

/* form */

.form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    margin: 10px 0;
}

.form-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(104, 159, 56, 0.15);
}

.form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: left;
    display: block;
}

.btn-submit {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 15px 5px;
    font-weight: 600;
    border-radius: 40px;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(104, 159, 56, 0.3);
    background: #000;
}

.form-floating-icons {
    position: absolute;
    font-size: 3rem;
    color: rgb(27 163 69 / 19%);
    z-index: 1;
}

.icon-1 {
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.icon-2 {
    bottom: -20px;
    left: -20px;
    animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Outcomes Section */
.outcomes-section {

    background-image: url("../img/bg_018.png");

    background-position: center;

    background-size: cover;

    padding: 100px 0;

    background-attachment: fixed;

}

.outcome-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.outcome-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(10px);
}
.outcome-item strong {

    font-size: 21px;

    font-weight: normal;

}

.outcome-check {
    color: #fff;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}
.outcome-item:hover .outcome-check {
    background: white;
    color: var(--primary-color)!important;
}

/* FAQ */

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    /* color: var(--primary-color); */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: #000000;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-button {
    background-color: #fff;
    /* border: 2px solid #e9ecef; */
    color: #212529;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 16px;
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(223, 136, 7, 0.3);
}
.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(223, 136, 7, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.accordion-body {
    background-color: #fff;
    padding: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.accordion-body ul {
    margin: 15px 0;
    padding-left: 0;
}

.accordion-body li {
    list-style: none;
    padding: 2px 0 2px 25px;
    position: relative;
    color: #000;
}

.accordion-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-number {
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
    flex: none;
}

section#program {
    background-color: #f3f3f3;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #000;
}

.detail-card {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 20px;
    margin: 10px 0;
    border-radius: 17px;
    position: relative;
    box-shadow: 8px 8px 26px #ccc;
}
.detail-card:after {
    content: '';
    display: block;
    background-image: url("../img/bg_05.png");
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
}

.detail-card i {
    background-color: #fff;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 100%;
    font-size: 30px;
}

.bonus-item i {
    color: var(--primary-color);
}

.bonuses_content p {
    font-size: 15px;
    margin-bottom: 3px;
}

.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 16px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

footer .navbar-brand {
    max-width: 99px !important;
    display: block;
}

.navbar-brand {
    font-weight: 700;
}
.nav-link {

    font-size: 16px;

    color: #000;
}

.back-to-top.show {
    visibility: visible;
    opacity: 1;
}
.back-to-top {
    position: fixed;
    text-decoration: none;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #000;
    width: 40px;
    height: 40px;
    /* font-size: 18px; */
    border-radius: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 21px;
    color: #fff;
    line-height: 42px;
    text-align: center;
    display: block;
}
/* hero section */

a.whatsapp__chat {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    background-color: #0e870e;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 46px;
    font-size: 22px;
    /* padding: 10px; */
    position: fixed;
    left: 15px;
    bottom: 20px;
    z-index: 99;
    box-shadow: 2px 2px 10px #0000002e;
}

.form-clickOuter {
    position: fixed;
    bottom: 48%;
    right: -57px;
    -webkit-transform: rotate(352deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(270deg);
    animation: blinker 2s linear infinite;
    z-index: 9999;
    transition: all 0.3s;
}
.form-click:hover {
    color: #fff;
    transition: all 0.3s;
}
.form-click {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 20px;
    cursor: pointer;
    display: inline-block;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 7px 7px 0 0;
    color: #fff;
    background: #2c58cc;
    text-decoration: none;
}

.whatsapp_btn {
    background-color: rgb(255 255 255);
    font-size: 17px;
    font-weight: 600;
    color: rgb(0 0 0);
    margin-left: 20px;
    padding: 3px 11px;
    border-radius: 5px;
}
.whatsapp_btn i{
    color: var(--primary-color);
    font-size:18px;
}

.whatsapp_btn:hover {
    background-color: #186d36;
    color: #fff;

}
button.navbar-toggler {
    padding: 0;
    border: 0;
}

footer .list-unstyled a.text-white {
    text-decoration: none;
    display: block;
    padding: 4px 0;
}
.feature-card li {
    display: flex
;
    align-items: baseline;
    border-bottom: 1px dashed #2f8835;
    padding: 8px 1px;
}
@media (max-width: 992px) {
.outcomes-section {
    padding: 50px 0;
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    position: absolute;
    top: 73px;
    background-color: #ffffff;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 15px;
}
.navbar-collapse  .nav-link {
    font-size: 16px;
    color: #000!important;
}
.program-details {
    padding: 50px 0;
}
}
@media (max-width: 767px) {

.outcome-item strong {
    font-size: 18px;
    font-weight: normal;
}
a.navbar-brand {
    max-width: 54px;
}
}