* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SoehneLeicht', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
}

.growth-section {
    padding: 60px 25px;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.growth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.growth-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(31, 38, 78, 0.15);
}

.growth-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.growth-content {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.growth-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f264e;
    margin-bottom: 36px;
    line-height: 1.2;
}

.growth-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.feature-item {
    background: #F8F9FA;
    padding: 18px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 100, 173, 0.1);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(45, 100, 173, 0.15);
    border-color: rgba(45, 100, 173, 0.3);
    background: #ffffff;
}

.feature-number {
    font-size: 30px;
    font-weight: 700;
    color: #418ce2;
    min-width: 50px;
    opacity: 0.95;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f264e;
    margin-bottom: 4px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.growth-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: #1f264e;
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.growth-btn:hover {
    background: #2d64ad;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 38, 78, 0.25);
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.growth-btn:hover .btn-icon {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .growth-section {
        padding: 50px 25px;
        min-height: auto;
    }

    .growth-container {
        gap: 50px;
    }

    .growth-content {
        padding: 0 10px;
    }

    .growth-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .feature-number {
        font-size: 28px;
        min-width: 45px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    .growth-features {
        gap: 12px;
        margin-bottom: 30px;
    }

    .feature-item {
        padding: 16px 20px;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .growth-section {
        padding: 50px 25px;
        min-height: auto;
    }

    .growth-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Cambiar orden: contenido primero, imagen después */
    .growth-content {
        order: 1;
        padding: 0;
    }

    .growth-image-wrapper {
        order: 2;
        height: auto;
    }

    .growth-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .growth-features {
        gap: 12px;
        margin-bottom: 32px;
    }

    .feature-item {
        padding: 16px 20px;
        gap: 16px;
    }

    .feature-number {
        font-size: 26px;
        min-width: 42px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    .growth-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .growth-section {
        padding: 50px 20px;
    }

    .growth-title {
        font-size: 30px;
    }

    .growth-subtitle {
        font-size: 15px;
    }

    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .feature-number {
        font-size: 32px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 14px;
    }
}