/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #101728;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 35px;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16, 23, 40, 0.95);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img{
    max-width: 200px;
    max-height: 60px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #B388FF;
}

.nav-link.active {
    color: #ffffff;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero-text{
    margin-left: 50px;
}

/* About Intro Section */
.about-intro {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.about-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-intro-title .highlight {
    color: #B388FF;
}

.about-intro-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Brain Graphic */
.brain-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><radialGradient id="g" cx="250" cy="250" r="250" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 -1 0 500)"><stop offset="0" stop-color="rgba(182,117,227,0.9)"/><stop offset=".33" stop-color="rgba(50,172,245,0.3)"/><stop offset=".66" stop-color="rgba(103,124,239,0.3)"/><stop offset="1" stop-color="rgba(161,79,240,0.0)"/></radialGradient><circle cx="250" cy="250" r="250" fill="url(%23g)"/></svg>') center/contain no-repeat;
}

.brain-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: scale(1.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-graphic {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: scale(1.1);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #B388FF;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding-left: 20px;
}

.benefits-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    align-items: center;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #B388FF;
    border-radius: 50%;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
}

.how-we-work-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-list {
    list-style: none;
}

.process-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.process-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #B388FF;
    border-radius: 50%;
}

.process-list strong {
    color: #B388FF;
    font-weight: 800;
}

/* Process Circle */
.process-graphic {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><radialGradient id="g" cx="250" cy="250" r="250" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1 0 0 -1 0 500)"><stop offset="0" stop-color="rgba(182,117,227,0.2)"/><stop offset=".33" stop-color="rgba(50,172,245,0.3)"/><stop offset=".66" stop-color="rgba(103,124,239,0.3)"/><stop offset="1" stop-color="rgba(161,79,240,0.0)"/></radialGradient><circle cx="250" cy="250" r="250" fill="url(%23g)"/></svg>') center/contain no-repeat;

}

.process-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
    transform: scale(1.1);
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.solutions-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-item {
    padding: 20px;
    border-left: 3px solid #B388FF;
    background: rgba(179, 136, 255, 0.05);
    border-radius: 0 8px 8px 0;
}

.solution-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #B388FF;
    margin-bottom: 10px;
}

.solution-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.5;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #FF6B9D, #B388FF);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(179, 136, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(179, 136, 255, 0.4);
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img{
    max-width: 200px;
    max-height: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 30px;
    }
    
    .hero-content,
    .benefits-content,
    .how-we-work-content,
    .solutions-content {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-intro-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .brain-container,
    .process-graphic,
    .benefits-graphic {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .contact-hero-text {
    margin-left: 0;
    }
    
    .contact-graphic{
        display: none;
    }
    
    .hero-content,
    .benefits-content,
    .how-we-work-content,
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .about-intro-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    .about-intro-description {
        font-size: 1.1rem;
    }

    .brain-container,
    .benefits-graphic,
    .process-graphic {
        height: 400px;
        order: -1;
    }
    
    .benefits-graphic {
        order: -1;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .about-intro,
    .benefits,
    .how-we-work,
    .solutions,
    .cta {
        padding: 60px 0;
    }
    
    .benefits-list li,
    .process-list li {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .solution-item {
        padding: 18px;
    }
    
    .solution-title {
        font-size: 1rem;
    }
    
    .solution-description {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-intro-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .about-intro-description {
        font-size: 1rem;
    }
    
    .brain-container,
    .process-graphic,
    .benefits-graphic {
        height: 350px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about-intro-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about-intro-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero {
        padding: 90px 0 50px;
        min-height: 85vh;
    }

    .about-intro,
    .benefits,
    .how-we-work,
    .solutions,
    .cta {
        padding: 50px 0;
    }
    
    .brain-container,
    .process-graphic,
    .benefits-graphic {
        height: 300px;
    }
    
    .benefits-list li,
    .process-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .benefits-list li::before,
    .process-list li::before {
        width: 6px;
        height: 6px;
        top: 6px;
    }
    
    .solution-item {
        padding: 15px;
    }
    
    .solution-title {
        font-size: 0.95rem;
    }
    
    .solution-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
        border-radius: 40px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo img {
        max-width: 200px;
        max-height: 60px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .nav {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .about-intro-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }

    .about-intro-description {
        font-size: 0.9rem;
    }
    
    .brain-container,
    .process-graphic,
    .benefits-graphic {
        height: 250px;
    }
    
    .benefits-list li,
    .process-list li {
        font-size: 0.9rem;
        padding-left: 18px;
    }
    
    .solution-item {
        padding: 12px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .logo img {
        max-width: 180px;
        max-height: 55px;
    }
    
    .logo-text {
        font-size: 14px;
    }
}
