/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-purple: #1A0033;
    --purple: #6B46C1;
    --purple-light: #A78BFA;
    --yellow: #FFD700;
    --yellow-dark: #FFC107;
    --white: #FFFFFF;
    --black: #000000;
    --gray-light: #F5F5F5;
    --gray: #E5E5E5;
    --gray-dark: #333333;
    --green: #25D366;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark-purple);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background-color: var(--dark-purple);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    font-size: 20px;
    color: var(--yellow);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--yellow);
}

.btn-demo {
    background-color: var(--purple);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-demo:hover {
    background-color: var(--purple-light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--dark-purple);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: var(--dark-purple);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background-color: var(--purple);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.text-purple {
    color: var(--purple);
}

.text-purple-light {
    color: var(--purple-light);
}

.text-yellow {
    color: var(--yellow);
}

.text-gradient {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.arrow {
    font-size: 20px;
}

.hero-image {
    position: relative;
}

.hero-person-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.3);
}

/* Problem Section */
.problem {
    background-color: var(--white);
    padding: 100px 0;
}

.problem .section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.problem .section-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--black);
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.problem-card {
    background-color: var(--gray-light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--yellow-dark);
    display: flex;
    justify-content: center;
}

.problem-card .card-icon i {
    font-size: 48px;
}

.problem-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.problem-card .card-text {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    background-color: var(--dark-purple);
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.solution .section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution .section-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: rgba(107, 70, 193, 0.2);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.solution-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--yellow);
    display: flex;
    justify-content: center;
}

.solution-card .card-icon i {
    font-size: 48px;
}

.solution-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.solution-card .card-text {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.card-features {
    list-style: none;
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
}

.card-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-features li i {
    font-size: 12px;
}

/* Onboarding Section */
.onboarding {
    background-color: var(--dark-purple);
    padding: 100px 0;
}

.onboarding-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.onboarding .section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.onboarding .section-description {
    font-size: 18px;
    line-height: 1.8;
}

.onboarding-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-flow {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flow-item {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    color: var(--white);
}

.flow-item i {
    font-size: 40px;
}

.flow-arrow {
    font-size: 32px;
    color: var(--yellow);
}

.flow-arrow i {
    font-size: 32px;
}

/* Progress Control Section */
.progress-control {
    background-color: var(--dark-purple);
    padding: 100px 0;
}

.progress-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.progress-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green) 0%, #20B2AA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 2;
    color: var(--white);
}

.circle-center i {
    font-size: 50px;
}

.circle-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
    color: var(--white);
}

.circle-item i {
    font-size: 24px;
}

.item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.item-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.item-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.progress-text .section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.progress-text .section-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.follow-up-badge {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

/* Community Section */
.community {
    background-color: var(--dark-purple);
    padding: 100px 0;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.community .section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.community .section-description {
    font-size: 18px;
    line-height: 1.8;
}

.community-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.community-circle {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.community-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
    z-index: 2;
    color: var(--white);
}

.community-center i {
    font-size: 40px;
}

.community-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    color: var(--black);
    z-index: 1;
}

.community-item i {
    font-size: 20px;
}

/* 4 items positioned at 90-degree intervals around the circle */
/* Radius: 35% from center (112px from center of 320px circle) */
.community-item.item-1 {
    /* Top - 0 degrees */
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.community-item.item-2 {
    /* Right - 90 degrees */
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.community-item.item-3 {
    /* Bottom - 180 degrees */
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.community-item.item-4 {
    /* Left - 270 degrees */
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

/* Comparison Section */
.comparison {
    background-color: var(--white);
    padding: 100px 0;
}

.comparison .section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: var(--gray-dark);
    color: var(--white);
    font-weight: 700;
}

.table-header .table-col {
    padding: 20px;
    text-align: center;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row .table-col {
    padding: 20px;
    text-align: center;
    color: var(--black);
}

.table-row .table-col:first-child {
    font-weight: 600;
    background-color: var(--gray-light);
}

.table-row .table-col:last-child {
    color: var(--green);
    font-weight: 600;
}

.checkmark {
    color: var(--green);
    font-size: 20px;
    margin-left: 10px;
}

/* Pricing Section */
.pricing {
    background-color: var(--dark-purple);
    padding: 100px 0;
    text-align: center;
}

.pricing .section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.pricing .section-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.special-offer {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--black);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 40px;
}

.pricing-card {
    background-color: rgba(107, 70, 193, 0.2);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 15px 0;
    color: var(--white);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .checkmark {
    color: var(--yellow);
    margin-right: 15px;
    font-size: 20px;
}

.btn-email,
.btn-whatsapp {
    background-color: var(--purple);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    margin-bottom: 20px;
    text-decoration: none;
}

.btn-email:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.4);
    background-color: var(--purple-light);
}

.email-icon,
.whatsapp-icon {
    font-size: 24px;
}

.pricing-note {
    font-size: 14px;
    color: var(--white);
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: var(--dark-purple);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer-copyright {
    font-size: 14px;
    color: var(--white);
    opacity: 0.7;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    font-size: 18px;
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .problem-cards,
    .solution-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .onboarding-content,
    .progress-content,
    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .onboarding-illustration,
    .progress-illustration,
    .community-illustration {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-person-image {
        max-width: 100%;
        height: auto;
    }
    
    .problem,
    .solution,
    .onboarding,
    .progress-control,
    .community,
    .comparison,
    .pricing {
        padding: 60px 0;
    }
    
    .problem .section-title,
    .solution .section-title,
    .onboarding .section-title,
    .progress-text .section-title,
    .community .section-title,
    .comparison .section-title,
    .pricing .section-title {
        font-size: 32px;
    }
    
    .problem-cards,
    .solution-cards {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-header .table-col,
    .table-row .table-col {
        padding: 15px;
        text-align: left;
    }
    
    .table-row .table-col:first-child {
        background-color: var(--gray-dark);
        color: var(--white);
        font-weight: 700;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .illustration-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .problem .section-title,
    .solution .section-title,
    .onboarding .section-title,
    .progress-text .section-title,
    .community .section-title,
    .comparison .section-title,
    .pricing .section-title {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .progress-circle,
    .community-circle {
        width: 250px;
        height: 250px;
    }
    
    .community-item {
        width: 50px;
        height: 50px;
    }
    
    .community-item i {
        font-size: 16px;
    }
}

