:root {
    --primary: #8a56e2;
    --secondary: #f8c156;
    --dark: #333;
    --light: #f9f9f9;
    --success: #28a745;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #7442d3;
    border-color: #7442d3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(138, 86, 226, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaed 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('imagens/download.png') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.price-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.price-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-header {
    background: var(--primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.price-features {
    padding: 30px;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-features li i {
    color: var(--success);
    margin-right: 10px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-answer {
    padding: 20px;
    display: none;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-item {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.countdown-number {
    font-size: 24px;
    font-weight: 700;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
}

.feature-icon {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 20px;
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #6a3fc3 100%);
    color: white;
    padding: 80px 0;
}

.floating-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.benefits-list li {
    margin-bottom: 15px;
}

.module-card {
    height: 100%;
}

.module-number {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

.guarantee-badge {
    width: 150px;
    height: 150px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 30px;
    transform: rotate(-10deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.crown-icon {
    color: var(--secondary);
    margin-right: 10px;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-light-purple {
    background-color: rgba(138, 86, 226, 0.1);
}

.border-primary {
    border-color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}