/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c63ff;
    --primary-light: #8a84ff;
    --primary-dark: #554fd8;
    --secondary-color: #36d1dc;
    --accent-color: #ff6b9d;
    --light-color: #f8f9ff;
    --dark-color: #2a2d3e;
    --text-color: #333344;
    --text-light: #777788;
    --success-color: #5cd85c;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(108, 99, 255, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.highlight {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.bg-light {
    background-color: var(--light-color);
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover:after {
    width: 100%;
}

.nav-whatsapp {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    margin-left: 20px !important;
}

.nav-whatsapp:hover {
    background-color: var(--primary-dark);
    color: white !important;
}

.nav-whatsapp:after {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.whatsapp-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.25);
    color: white;
}

.whatsapp-btn.large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-note i {
    color: var(--success-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--box-shadow);
}

.image-placeholder i {
    font-size: 8rem;
    color: white;
    opacity: 0.8;
}

.dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.dots:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.7;
}

.dots:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.7;
}

/* Workflow Section */
.workflow {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.workflow-column {
    flex: 1;
    min-width: 300px;
}

.workflow-column h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.workflow-column h3 i {
    color: var(--primary-color);
}

.task-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.task-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.task-card.creator {
    border-left-color: var(--accent-color);
}

.task-card.manager {
    border-left-color: var(--secondary-color);
}

.task-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.task-card.creator .task-icon {
    background-color: rgba(255, 107, 157, 0.1);
    color: var(--accent-color);
}

.task-card.manager .task-icon {
    background-color: rgba(54, 209, 220, 0.1);
    color: var(--secondary-color);
}

.task-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.task-card p {
    color: var(--text-light);
}

.economy-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    padding: 40px;
    color: white;
    margin-top: 40px;
}

.economy-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: white;
}

.percentage-display {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.percentage-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.percentage-circle span {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.percentage-text {
    flex: 1;
    min-width: 300px;
}

.percentage-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.payment-info i {
    color: var(--success-color);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.advantage-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.advantage-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.whats-not {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.whats-not h3 {
    text-align: center;
    margin-bottom: 40px;
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.not-item {
    text-align: center;
}

.not-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.not-item p {
    font-weight: 500;
}

.not-item small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.profile-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--box-shadow);
}

.profile-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-quote {
    background-color: rgba(108, 99, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-color);
    position: relative;
}

.about-quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    top: 15px;
    left: 15px;
}

.about-quote p {
    padding-left: 30px;
    font-style: italic;
    font-size: 1.1rem;
}

.about-points {
    margin-top: 30px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.point i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6c63ff 0%, #36d1dc 100%);
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-box > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-highlight {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.cta-highlight i {
    font-size: 3rem;
    opacity: 0.8;
}

.cta-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-highlight p {
    opacity: 0.9;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 15px;
    opacity: 0.8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp flotante */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-note {
        justify-content: center;
    }
    
    .workflow-column {
        min-width: 100%;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-quote p {
        padding-left: 0;
        padding-top: 10px;
    }
    
    .point {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-whatsapp {
        margin: 15px 0 0 !important;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .not-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .percentage-display {
        justify-content: center;
        text-align: center;
    }
    
    .percentage-text {
        min-width: 100%;
    }
}