.elementor-2643 .elementor-element.elementor-element-faad3ea{--display:flex;}.elementor-2643 .elementor-element.elementor-element-b39e513{--display:flex;}.elementor-2643 .elementor-element.elementor-element-eab3192{--display:flex;}.elementor-2643 .elementor-element.elementor-element-1c380db{--display:flex;}.elementor-2643 .elementor-element.elementor-element-5f661c0{--display:flex;}.elementor-2643 .elementor-element.elementor-element-76fac25{--display:flex;}.elementor-2643 .elementor-element.elementor-element-19f9cb6{--display:flex;}.elementor-2643 .elementor-element.elementor-element-584ca8f{--display:flex;}.elementor-2643 .elementor-element.elementor-element-cfd632f{--display:flex;}.elementor-2643 .elementor-element.elementor-element-3199929{--display:flex;}.elementor-2643 .elementor-element.elementor-element-4ff160f{--display:flex;}.elementor-2643 .elementor-element.elementor-element-75f34c0{--display:flex;}.elementor-2643 .elementor-element.elementor-element-4e5d385{--display:flex;}body.elementor-page-2643:not(.elementor-motion-effects-element-type-background), body.elementor-page-2643 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000A18;}/* Start custom CSS for html, class: .elementor-element-ba4c2e0 */.card {
    background: white !important;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a10fd7d */.faq-question h3 {
    padding: 0;
    margin: 0;
}/* End custom CSS */
/* Start custom CSS */:root {
    --primary-color: #001a33;
    --secondary-color: #ff7a29;
    --text-color: #ffffff;
    --accent-color: #00bf7d;
    --dark-accent: #00965f;
    --light-bg: #f7f9fc;
    --card-bg: #ffffff;
    --text-dark: #ffffff;
    --text-medium: #666666;
}


body {
    margin: 0;
    padding: 0;
    background: var(--primary-color);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-weight: 900;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-white {
    color: white;
}

.text-center {
    text-align: center !important;
}

.font-bold {
    font-weight: 700;
}

.highlight-text {
    color: var(--secondary-color);
    font-weight: 900;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-5 {
    margin-top: 3rem;
}

.px-2 {
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00325e 100%);
    position: relative;
    padding: 50px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

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

.hero-logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.hero-logo-image {
    top: 0;
    left: 0;
    width: 35%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtext {
    font-size: 1.25rem;
    margin: 2rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    position: relative;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 191, 125, 0.4);
}

.btn-primary:hover {
    background: var(--dark-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 191, 125, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 50px 50px;
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.4rem;
}

/* Features Section */
.features {
    background: linear-gradient(to bottom, var(--primary-color) 0%, #001529 100%);
}

.features-heading {
    margin-bottom: 4rem;
}


.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.card {
    background: #dc6626;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.card-list {
    list-style: none;
    text-align: left;
    padding-left: 10px;
    margin-bottom: 0;
    flex-grow: 1;
}

.card-list li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 25px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Course Value */
.course-value {
    background: linear-gradient(to bottom, #001529 0%, var(--primary-color) 100%);
    text-align: center;
}

.value-statement {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.3rem;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

/* Pricing Section */
.pricing {
    background: #001529;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    opacity: 0.05;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.pricing::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

.pricing-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.pricing-content {
    flex: 1;
    min-width: 300px;
}

.pricing-cards {
    flex: 1;
    min-width: 300px;
    position: relative;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.pricing-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
}

.pricing-lote {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem !important;
    color: var(--text-color) !important;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color) 100%) !important;
    padding: 32px;
    line-height: 16px;
}

.pricing-lote .value {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.border-radius-t {
    border-radius: 15px 15px 0 0;
}

.border-radius-b {
    border-radius:  0 0 32px 32px;
}

.w-full {
    width: 100%;
}

.w-80 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-25 {
    opacity: 0.25;
}

.pricing-card {
    background: white;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 2px solid var(--accent-color);
}

.pricing-card-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: bold;
    white-space: nowrap;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-medium);
    font-size: 1.2rem;
}

.current-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin: 15px 0;
}

.pricing-seats {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--text-medium);
}

.pricing-payment-methods {
    margin-top: 20px;
    max-width: 100%;
}

.countdown-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    min-width: 70px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 900;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom, var(--primary-color) 0%, #001529 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 30px !important; 
    margin-top: 50px !important;
    color: var(--primary-color);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    pointer-events: none;
    user-select: none;
}

.testimonial-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-info {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.testimonial-content {
    padding: 20px;
    color: var(--primary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specialists */
.specialists {
    background: linear-gradient(to bottom, #001529 0%, var(--primary-color) 100%);
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 50px;
}

.specialist-card {
    position: relative;
    background: #001f3d;
    border-radius: 20px;
    padding: 220px 30px 30px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.specialist-card:hover:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    padding: 10px;

    background: #01294c;
    border-radius: 50px;
    opacity: 0.1;
    cursor: pointer;
}

.specialist-image {
    position: absolute !important;
    top: 32px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    object-fit: contain !important;
    border: 5px solid var(--text-dark) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    background: rgba(1, 37, 76, 0.27) !important;
}

.specialist-name {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.specialist-list {
    list-style: none;
}

.specialist-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

.specialist-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 0.8;
}

.specialist-title {
    text-align: center;
}

/* CTA Section */
.cta {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 30px;
}

.btn-secondary {
    background: white;
    color: var(--accent-color);
    font-weight: 900;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background: var(--primary-color);
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-list a:hover {
    opacity: 1;
}

.footer-contact li {
    padding-left: 30px;
    position: relative;
}

.copyright {
    text-align: center;
    opacity: 0.7;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-badge-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 45px 0 80px;
    }

    .hero::before {
        width: 30%;
    }
}


.hero-bullets {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    padding: 20px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    color: #ff7a29;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bullet-text {
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
        padding: 32px 0;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 45px 0 70px;
        text-align: center;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .btn-large {
        padding: 18px 36px;
        font-size: 1.2rem;
    }

    .pricing-flex {
        flex-direction: column;
    }

    .pricing-content, .pricing-cards {
        width: 100%;
    }

    .specialist-card {
        padding-top: 180px;
    }

    .specialist-image {
        width: 150px;
        height: 150px;
    }

    .cta {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        min-height: 100vh;
    }

    .card {
        width: 100%;
        padding: 28px 32px;
    }

    .hero-bullets {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
    }

    .bullet-text {
        font-size: 16px;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 70px 0;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .countdown-container {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 60px;
    }

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

    .feature-info {
        text-align: center;
        font-weight: bold;
        font-size: 1.4rem;
    }

    .card {
        width: 100%;
        padding: 8px 16px !important;
        margin: 0;
    }

    .features-heading {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

    .cards-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 4px 0;
        gap: 12px !important;
        margin: 0;
    }

    .hero-bullets {
        padding: 15px;
        flex-direction: column;
    }

    .bullet-text {
        font-size: 12px;
    }
    
    .specialist-name {
        margin-top: 65px;
    }
    
    .specialist-title {
        font-size: 20px;
    }
    
    .old-price {
        font-size: 16px;
    }
}/* End custom CSS */