:root {
    --primary-blue: #2E9CCA;
    --primary-white: #ffffff;
    --primary-black: #2e3133;
    --dark-black: #08151b;
    --primary-orange: #F5A623;
    --dark-blue: #1E6B8C;
    --light-orange: #FFD699;
    --bg-light: #f8f9fa;
}

/* Dark mode variables */
[data-bs-theme="dark"] {
    --bg-light: #1a1a2e;
    --bs-body-bg: #0f0f1a;
    --bs-body-color: #e9ecef;
}

[data-bs-theme="dark"] .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff !important;
    font-size: clamp(32px, 5vw, 42px);
}

.bg-light {
    background-color: #d8dce0 !important;
}

[data-bs-theme="dark"] .bg-light {
    background-color: #1a1a2e !important;
}

[data-bs-theme="dark"] .contact-form-container {
    background-color: #47474d !important;
}

[data-bs-theme="dark"] .text-muted {
    color: #adb5bd !important;
}

[data-bs-theme="dark"] .course-card,
[data-bs-theme="dark"] .ebook-card,
[data-bs-theme="dark"] .testimonial-card,
[data-bs-theme="dark"] .app-card {
    background-color: #2d2d44;
    color: #e9ecef;
}

[data-bs-theme="dark"] .consultoria-card {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
}

[data-bs-theme="dark"] .about-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

[data-bs-theme="dark"] .contact-form .form-control {
    background-color: #2d2d44;
    border-color: #3d3d5c;
    color: #e9ecef;
}

[data-bs-theme="dark"] .contact-form .form-control::placeholder {
    color: #6c757d;
}

[data-bs-theme="dark"] .navbar {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%) !important;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    cursor: pointer;
}

a.linkloginadm {
    display: block;
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 1000;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-black) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    filter: brightness(0) invert(1);
}



/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.theme-toggle i {
    font-size: 1.2rem;
}

[data-bs-theme="dark"] .theme-toggle {
    background: rgba(245, 166, 35, 0.2);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}


.btn-primary-custom {
    background-color: var(--primary-orange);
    border: none;
    color: white;
    padding: 4px 6px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #e09513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

.btn-primary-custom-laranja {
    background-color: var(--primary-orange);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom-laranja:hover {
    background-color: #e09513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.4);
}

.btn-outline-custom {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--primary-black);
}

.section-title {
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    font-size: 2rem;

    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

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

.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    background: white;
}

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

.course-card .card-img-top {
    height: 50px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-black), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.badge-custom {
    background-color: var(--primary-orange);
    color: white;
}

.ebook-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.ebook-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.ebook-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: #2d2d44;
    color: #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    position: relative;
    transition: all 0.3s ease;

}

.testimonial-card small {
    color: #ff9900;

}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 60px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.3;
    font-family: Georgia, serif;
}



.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-black), var(--primary-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.consultoria-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.consultoria-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.app-card {
    background-color: #2d2d44;
    color: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.app-card:hover {
    transform: scale(1.02);
}

.app-header {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-blue));
    color: white;
    padding: 30px;
    text-align: center;
}

.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.2rem rgba(46, 156, 202, 0.25);
}

.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1a2e 100%);
    color: white;
    padding: 60px 0 30px;
}

[data-bs-theme="dark"] .footer {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), #e09513);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.stats-section {
    background: var(--primary-black);
    color: white;
    padding: 60px 0;
}

.stat-number {
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    /* .section-title {
        font-size: 48px;
    } */

    .theme-toggle {
        margin-top: 10px;
        margin-left: 10px;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Smooth transitions for theme change */
*,
*::before,
*::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}